Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Remarks/
H A DRemarkLinker.cpp104 Expected<Optional<StringRef>> SectionOrErr = getRemarksSectionContents(Obj); in link() local
105 if (!SectionOrErr) in link()
106 return SectionOrErr.takeError(); in link()
108 if (Optional<StringRef> Section = *SectionOrErr) in link()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A 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()
H A DRuntimeDyldCOFFThumb.h74 auto SectionOrErr = Symbol->getSection(); in processRelocationRef() local
75 if (!SectionOrErr) in processRelocationRef()
76 return SectionOrErr.takeError(); in processRelocationRef()
77 auto Section = *SectionOrErr; in processRelocationRef()
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DMachODebugMapParser.cpp571 Expected<section_iterator> SectionOrErr = Sym.getSection(); in loadMainBinarySymbols() local
572 if (!SectionOrErr) { in loadMainBinarySymbols()
574 consumeError(SectionOrErr.takeError()); in loadMainBinarySymbols()
577 Section = *SectionOrErr; in loadMainBinarySymbols()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DELF.h1135 Expected<const Elf_Shdr *> SectionOrErr = in getStringTableForSymtab() local
1137 if (!SectionOrErr) in getStringTableForSymtab()
1138 return SectionOrErr.takeError(); in getStringTableForSymtab()
1139 return getStringTable(**SectionOrErr); in getStringTableForSymtab()
H A DELFObjectFile.h587 Expected<const Elf_Shdr *> SectionOrErr = in getSymbolAddress() local
589 if (!SectionOrErr) in getSymbolAddress()
590 return SectionOrErr.takeError(); in getSymbolAddress()
591 const Elf_Shdr *Section = *SectionOrErr; in getSymbolAddress()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1226 auto SectionOrErr = Symbol->getSection(); in processRelocationRef() local
1227 if (!SectionOrErr) { in processRelocationRef()
1230 logAllUnhandledErrors(SectionOrErr.takeError(), OS); in processRelocationRef()
1234 section_iterator si = *SectionOrErr; in processRelocationRef()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOObjectFile.cpp298 auto SectionOrErr = getStructOrErr<Section>(Obj, Sec); in parseSegmentLoadCommand() local
299 if (!SectionOrErr) in parseSegmentLoadCommand()
300 return SectionOrErr.takeError(); in parseSegmentLoadCommand()
301 Section s = SectionOrErr.get(); in parseSegmentLoadCommand()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp5809 Expected<const Elf_Shdr *> SectionOrErr = in printStackSize() local
5811 if (!SectionOrErr) { in printStackSize()
5814 (*TargetOrErr).Name + "': " + toString(SectionOrErr.takeError())); in printStackSize()
5815 } else if (*SectionOrErr != FunctionSec) { in printStackSize()
5820 FunctionSec = *SectionOrErr; in printStackSize()