Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFI386.h53 auto SectionOrErr = Symbol->getSection(); in processRelocationRef() local
54 if (!SectionOrErr) in processRelocationRef()
55 return SectionOrErr.takeError(); in processRelocationRef()
56 auto Section = *SectionOrErr; in processRelocationRef()
DRuntimeDyldCOFFThumb.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()
/external/llvm/tools/dsymutil/
DMachODebugMapParser.cpp459 Expected<section_iterator> SectionOrErr = Sym.getSection(); in loadMainBinarySymbols() local
460 if (!SectionOrErr) { in loadMainBinarySymbols()
462 consumeError(SectionOrErr.takeError()); in loadMainBinarySymbols()
465 Section = *SectionOrErr; in loadMainBinarySymbols()
/external/llvm/include/llvm/Object/
DELF.h478 ErrorOr<const Elf_Shdr *> SectionOrErr = getSection(Sec.sh_link); in getStringTableForSymtab() local
479 if (std::error_code EC = SectionOrErr.getError()) in getStringTableForSymtab()
481 return getStringTable(*SectionOrErr); in getStringTableForSymtab()
DELFObjectFile.h415 ErrorOr<const Elf_Shdr *> SectionOrErr = in getSymbolAddress() local
417 if (std::error_code EC = SectionOrErr.getError()) in getSymbolAddress()
419 const Elf_Shdr *Section = *SectionOrErr; in getSymbolAddress()
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp1015 Expected<section_iterator> SectionOrErr = Symbol.getSection(); in DisassembleObject() local
1016 error(errorToErrorCode(SectionOrErr.takeError())); in DisassembleObject()
1017 section_iterator SecI = *SectionOrErr; in DisassembleObject()
1412 Expected<section_iterator> SectionOrErr = Symbol.getSection(); in PrintSymbolTable() local
1413 error(errorToErrorCode(SectionOrErr.takeError())); in PrintSymbolTable()
1414 section_iterator Section = *SectionOrErr; in PrintSymbolTable()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp1239 auto SectionOrErr = Symbol->getSection(); in processRelocationRef() local
1240 if (!SectionOrErr) { in processRelocationRef()
1243 logAllUnhandledErrors(SectionOrErr.takeError(), OS, ""); in processRelocationRef()
1247 section_iterator si = *SectionOrErr; in processRelocationRef()