Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A 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()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h363 auto SectionsOrErr = EF.sections(); in toDRI() local
364 if (!SectionsOrErr) { in toDRI()
369 uintptr_t SHT = reinterpret_cast<uintptr_t>((*SectionsOrErr).begin()); in toDRI()
423 auto SectionsOrErr = EF.sections(); in getBuildAttributes() local
424 if (!SectionsOrErr) in getBuildAttributes()
425 return SectionsOrErr.takeError(); in getBuildAttributes()
426 for (const Elf_Shdr &Sec : *SectionsOrErr) { in getBuildAttributes()
525 auto SectionsOrErr = EF.sections(); in initContent() local
526 if (!SectionsOrErr) in initContent()
527 return SectionsOrErr.takeError(); in initContent()
[all …]
H A DELF.h1244 auto SectionsOrErr = sections(); in getSHNDXTable() local
1245 if (!SectionsOrErr) in getSHNDXTable()
1246 return SectionsOrErr.takeError(); in getSHNDXTable()
1247 return getSHNDXTable(Section, *SectionsOrErr); in getSHNDXTable()
1282 auto SectionsOrErr = sections(); in getStringTableForSymtab() local
1283 if (!SectionsOrErr) in getStringTableForSymtab()
1284 return SectionsOrErr.takeError(); in getStringTableForSymtab()
1285 return getStringTableForSymtab(Sec, *SectionsOrErr); in getStringTableForSymtab()
1324 auto SectionsOrErr = sections(); in getSectionName() local
1325 if (!SectionsOrErr) in getSectionName()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h274 if (auto SectionsOrErr = Obj.sections()) in prepare() local
275 Sections = *SectionsOrErr; in prepare()
277 return SectionsOrErr.takeError(); in prepare()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp489 auto SectionsOrErr = getSectionNames(getPdb()); in dumpModules() local
490 if (!SectionsOrErr) in dumpModules()
491 return SectionsOrErr.takeError(); in dumpModules()
492 ArrayRef<std::string> Sections = *SectionsOrErr; in dumpModules()