Home
last modified time | relevance | path

Searched refs:SectionsOrErr (Results 1 – 6 of 6) sorted by relevance

/openbsd/src/gnu/llvm/llvm/tools/llvm-readobj/
DDwarfCFIEHPrinter.h51 Expected<typename ELFT::ShdrRange> SectionsOrErr = in findSectionByAddress() local
53 if (!SectionsOrErr) in findSectionByAddress()
54 reportError(SectionsOrErr.takeError(), ObjF.getFileName()); in findSectionByAddress()
56 for (const typename ELFT::Shdr &Shdr : *SectionsOrErr) in findSectionByAddress()
82 Expected<typename ELFT::ShdrRange> SectionsOrErr = Obj.sections(); in printUnwindInformation() local
83 if (!SectionsOrErr) in printUnwindInformation()
84 reportError(SectionsOrErr.takeError(), ObjF.getFileName()); in printUnwindInformation()
86 for (const Elf_Shdr &Shdr : *SectionsOrErr) { in printUnwindInformation()
/openbsd/src/gnu/llvm/llvm/include/llvm/Object/
DELFObjectFile.h334 auto SectionsOrErr = EF.sections(); in toDRI() local
335 if (!SectionsOrErr) { in toDRI()
340 uintptr_t SHT = reinterpret_cast<uintptr_t>((*SectionsOrErr).begin()); in toDRI()
379 auto SectionsOrErr = EF.sections(); in getBuildAttributes() local
380 if (!SectionsOrErr) in getBuildAttributes()
381 return SectionsOrErr.takeError(); in getBuildAttributes()
383 for (const Elf_Shdr &Sec : *SectionsOrErr) { in getBuildAttributes()
476 auto SectionsOrErr = EF.sections(); in initContent() local
477 if (!SectionsOrErr) in initContent()
478 return SectionsOrErr.takeError(); in initContent()
[all …]
DELF.h1117 auto SectionsOrErr = sections(); in getSHNDXTable() local
1118 if (!SectionsOrErr) in getSHNDXTable()
1119 return SectionsOrErr.takeError(); in getSHNDXTable()
1120 return getSHNDXTable(Section, *SectionsOrErr); in getSHNDXTable()
1155 auto SectionsOrErr = sections(); in getStringTableForSymtab() local
1156 if (!SectionsOrErr) in getStringTableForSymtab()
1157 return SectionsOrErr.takeError(); in getStringTableForSymtab()
1158 return getStringTableForSymtab(Sec, *SectionsOrErr); in getStringTableForSymtab()
1197 auto SectionsOrErr = sections(); in getSectionName() local
1198 if (!SectionsOrErr) in getSectionName()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
DELFLinkGraphBuilder.h260 if (auto SectionsOrErr = Obj.sections()) in prepare() local
261 Sections = *SectionsOrErr; in prepare()
263 return SectionsOrErr.takeError(); in prepare()
/openbsd/src/gnu/llvm/llvm/tools/obj2yaml/
Delf2yaml.cpp289 auto SectionsOrErr = Obj.sections(); in dump() local
290 if (!SectionsOrErr) in dump()
291 return SectionsOrErr.takeError(); in dump()
292 Sections = *SectionsOrErr; in dump()
/openbsd/src/gnu/llvm/llvm/tools/llvm-pdbutil/
DDumpOutputStyle.cpp488 auto SectionsOrErr = getSectionNames(getPdb()); in dumpModules() local
489 if (!SectionsOrErr) in dumpModules()
490 return SectionsOrErr.takeError(); in dumpModules()
491 ArrayRef<std::string> Sections = *SectionsOrErr; in dumpModules()