Home
last modified time | relevance | path

Searched refs:RelSecOrErr (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp362 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection(); in loadObjectImpl() local
363 if (!RelSecOrErr) in loadObjectImpl()
364 return RelSecOrErr.takeError(); in loadObjectImpl()
366 section_iterator RelocatedSection = *RelSecOrErr; in loadObjectImpl()
673 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection(); in computeSectionStubBufSize() local
674 if (!RelSecOrErr) in computeSectionStubBufSize()
675 report_fatal_error(toString(RelSecOrErr.takeError())); in computeSectionStubBufSize()
677 section_iterator RelSecI = *RelSecOrErr; in computeSectionStubBufSize()
H A DRuntimeDyldELF.cpp675 Expected<section_iterator> RelSecOrErr = si->getRelocatedSection(); in findOPDEntrySection() local
676 if (!RelSecOrErr) in findOPDEntrySection()
677 report_fatal_error(toString(RelSecOrErr.takeError())); in findOPDEntrySection()
679 section_iterator RelSecI = *RelSecOrErr; in findOPDEntrySection()
1950 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection(); in finalizeLoad() local
1951 if (!RelSecOrErr) in finalizeLoad()
1953 toString(RelSecOrErr.takeError())); in finalizeLoad()
1955 section_iterator RelocatedSection = *RelSecOrErr; in finalizeLoad()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DELFObjectFile.h408 auto RelSecOrErr = EF.getSection(Rel.d.a); in getRelSection() local
409 if (!RelSecOrErr) in getRelSection()
410 report_fatal_error(errorToErrorCode(RelSecOrErr.takeError()).message()); in getRelSection()
411 return *RelSecOrErr; in getRelSection()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp5898 Expected<const Elf_Shdr *> RelSecOrErr = Obj.getSection(Sec.sh_info); in printRelocatableStackSizes() local
5899 if (!RelSecOrErr) { in printRelocatableStackSizes()
5902 toString(RelSecOrErr.takeError())); in printRelocatableStackSizes()
5906 const Elf_Shdr *ContentsSec = *RelSecOrErr; in printRelocatableStackSizes()
5907 if (this->getPrintableSectionName(**RelSecOrErr) != ".stack_sizes") in printRelocatableStackSizes()