Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DELF_x86_64.cpp273 auto StrTabSec = Obj.getSection(SecRef.sh_link); in createNormalizedSymbols() local
274 if (!StrTabSec) in createNormalizedSymbols()
275 return StrTabSec.takeError(); in createNormalizedSymbols()
276 auto StringTable = Obj.getStringTable(**StrTabSec); in createNormalizedSymbols()
471 auto StrTabSec = Obj.getSection(SecRef.sh_link); in graphifyRegularSymbols() local
472 if (!StrTabSec) in graphifyRegularSymbols()
473 return StrTabSec.takeError(); in graphifyRegularSymbols()
474 auto StringTable = Obj.getStringTable(**StrTabSec); in graphifyRegularSymbols()
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp215 ErrorOr<const Elf_Shdr *> StrTabSec = Obj.getSection(SymTab->sh_link); in dumpRelocation() local
216 if (std::error_code EC = StrTabSec.getError()) in dumpRelocation()
218 ErrorOr<StringRef> StrTabOrErr = Obj.getStringTable(*StrTabSec); in dumpRelocation()
/external/llvm-project/llvm/tools/llvm-objdump/
DELFDump.cpp342 const typename ELFT::Shdr *StrTabSec = in printSymbolVersionInfo() local
344 StringRef StrTab = unwrapOrError(Elf.getStringTable(*StrTabSec), FileName); in printSymbolVersionInfo()
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp713 auto StrTabSec = Obj.getSection(SymTab->sh_link); in dumpRelocation() local
714 if (!StrTabSec) in dumpRelocation()
715 return StrTabSec.takeError(); in dumpRelocation()
716 auto StrTabOrErr = Obj.getStringTable(**StrTabSec); in dumpRelocation()
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp508 ErrorOr<const Elf_Shdr *> StrTabSec = EF.getSection(SymTab->sh_link); in getRelocationValueString() local
509 if (std::error_code EC = StrTabSec.getError()) in getRelocationValueString()
511 ErrorOr<StringRef> StrTabOrErr = EF.getStringTable(*StrTabSec); in getRelocationValueString()