Home
last modified time | relevance | path

Searched refs:SectionOrErr (Results 1 – 10 of 10) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/Remarks/
DRemarkLinker.cpp110 Expected<std::optional<StringRef>> SectionOrErr = in link() local
112 if (!SectionOrErr) in link()
113 return SectionOrErr.takeError(); in link()
115 if (std::optional<StringRef> Section = *SectionOrErr) in link()
/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFI386.h52 auto SectionOrErr = Symbol->getSection(); in processRelocationRef() local
53 if (!SectionOrErr) in processRelocationRef()
54 return SectionOrErr.takeError(); in processRelocationRef()
55 auto Section = *SectionOrErr; in processRelocationRef()
DRuntimeDyldCOFFThumb.h73 auto SectionOrErr = Symbol->getSection(); in processRelocationRef() local
74 if (!SectionOrErr) in processRelocationRef()
75 return SectionOrErr.takeError(); in processRelocationRef()
76 auto Section = *SectionOrErr; in processRelocationRef()
DRuntimeDyldCOFFAArch64.h156 auto SectionOrErr = Symbol->getSection(); in processRelocationRef() local
157 if (!SectionOrErr) in processRelocationRef()
158 return SectionOrErr.takeError(); in processRelocationRef()
159 auto Section = *SectionOrErr; in processRelocationRef()
/openbsd/src/gnu/llvm/llvm/tools/dsymutil/
DMachODebugMapParser.cpp596 Expected<section_iterator> SectionOrErr = Sym.getSection(); in loadMainBinarySymbols() local
597 if (!SectionOrErr) { in loadMainBinarySymbols()
603 Section = *SectionOrErr; in loadMainBinarySymbols()
/openbsd/src/gnu/llvm/llvm/include/llvm/Object/
DELF.h1169 Expected<const Elf_Shdr *> SectionOrErr = in getStringTableForSymtab() local
1171 if (!SectionOrErr) in getStringTableForSymtab()
1172 return SectionOrErr.takeError(); in getStringTableForSymtab()
1173 return getStringTable(**SectionOrErr); in getStringTableForSymtab()
DELFObjectFile.h603 Expected<const Elf_Shdr *> SectionOrErr = in getSymbolAddress() local
605 if (!SectionOrErr) in getSymbolAddress()
606 return SectionOrErr.takeError(); in getSymbolAddress()
607 const Elf_Shdr *Section = *SectionOrErr; in getSymbolAddress()
/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp1263 auto SectionOrErr = Symbol->getSection(); in processRelocationRef() local
1264 if (!SectionOrErr) { in processRelocationRef()
1267 logAllUnhandledErrors(SectionOrErr.takeError(), OS); in processRelocationRef()
1270 section_iterator si = *SectionOrErr; in processRelocationRef()
/openbsd/src/gnu/llvm/llvm/lib/Object/
DMachOObjectFile.cpp301 auto SectionOrErr = getStructOrErr<Section>(Obj, Sec); in parseSegmentLoadCommand() local
302 if (!SectionOrErr) in parseSegmentLoadCommand()
303 return SectionOrErr.takeError(); in parseSegmentLoadCommand()
304 Section s = SectionOrErr.get(); in parseSegmentLoadCommand()
/openbsd/src/gnu/llvm/llvm/tools/llvm-readobj/
DELFDumper.cpp6139 Expected<const Elf_Shdr *> SectionOrErr = in printStackSize() local
6141 if (!SectionOrErr) { in printStackSize()
6144 (*TargetOrErr).Name + "': " + toString(SectionOrErr.takeError())); in printStackSize()
6145 } else if (*SectionOrErr != FunctionSec) { in printStackSize()
6150 FunctionSec = *SectionOrErr; in printStackSize()