Home
last modified time | relevance | path

Searched refs:ShndxTable (Results 1 – 14 of 14) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DELF.h282 ArrayRef<Elf_Word> ShndxTable) const;
285 ArrayRef<Elf_Word> ShndxTable) const;
288 ArrayRef<Elf_Word> ShndxTable) const;
321 ArrayRef<typename ELFT::Word> ShndxTable) { in getExtendedSymbolTableIndex() argument
324 if (Index >= ShndxTable.size()) in getExtendedSymbolTableIndex()
328 Twine(ShndxTable.size())); in getExtendedSymbolTableIndex()
331 return ShndxTable[Index]; in getExtendedSymbolTableIndex()
337 ArrayRef<Elf_Word> ShndxTable) const { in getSectionIndex() argument
341 Sym, Syms.begin(), ShndxTable); in getSectionIndex()
354 ArrayRef<Elf_Word> ShndxTable) const { in getSection() argument
[all …]
DELFObjectFile.h249 ArrayRef<Elf_Word> ShndxTable);
256 ArrayRef<Elf_Word> ShndxTable; variable
532 auto SectionOrErr = EF.getSection(ESym, SymTab, ShndxTable); in getSymbolAddress()
666 auto ESecOrErr = EF.getSection(ESym, SymTab, ShndxTable); in getSymbolSection()
960 ArrayRef<Elf_Word> ShndxTable; in create() local
977 ShndxTable = *TableOrErr; in create()
983 ShndxTable); in create()
990 ArrayRef<Elf_Word> ShndxTable) in ELFObjectFile() argument
995 ShndxTable(ShndxTable) {} in ELFObjectFile()
1000 Other.DotSymtabSec, Other.ShndxTable) {} in ELFObjectFile()
/external/llvm/include/llvm/Object/
DELF.h186 ArrayRef<Elf_Word> ShndxTable) const;
189 ArrayRef<Elf_Word> ShndxTable) const;
193 ArrayRef<Elf_Word> ShndxTable) const;
214 ArrayRef<Elf_Word> ShndxTable) const { in getExtendedSymbolTableIndex() argument
215 return getExtendedSymbolTableIndex(Sym, symbol_begin(SymTab), ShndxTable); in getExtendedSymbolTableIndex()
221 ArrayRef<Elf_Word> ShndxTable) const { in getExtendedSymbolTableIndex() argument
226 return ShndxTable[Index]; in getExtendedSymbolTableIndex()
232 ArrayRef<Elf_Word> ShndxTable) const { in getSection() argument
235 return getSection(getExtendedSymbolTableIndex(Sym, SymTab, ShndxTable)); in getSection()
DELFObjectFile.h206 ArrayRef<Elf_Word> ShndxTable; variable
416 EF.getSection(ESym, SymTab, ShndxTable); in getSymbolAddress()
536 ErrorOr<const Elf_Shdr *> ESecOrErr = EF.getSection(ESym, SymTab, ShndxTable); in getSymbolSection()
786 ShndxTable = *TableOrErr; in ELFObjectFile()
/external/llvm-project/llvm/include/llvm/Object/
DELF.h301 ArrayRef<Elf_Word> ShndxTable) const;
304 ArrayRef<Elf_Word> ShndxTable) const;
307 ArrayRef<Elf_Word> ShndxTable) const;
340 ArrayRef<typename ELFT::Word> ShndxTable) { in getExtendedSymbolTableIndex() argument
342 if (SymIndex >= ShndxTable.size()) in getExtendedSymbolTableIndex()
346 Twine(ShndxTable.size())); in getExtendedSymbolTableIndex()
349 return ShndxTable[SymIndex]; in getExtendedSymbolTableIndex()
355 ArrayRef<Elf_Word> ShndxTable) const { in getSectionIndex() argument
359 getExtendedSymbolTableIndex<ELFT>(Sym, &Sym - Syms.begin(), ShndxTable); in getSectionIndex()
372 ArrayRef<Elf_Word> ShndxTable) const { in getSection() argument
[all …]
DELFObjectFile.h581 ArrayRef<Elf_Word> ShndxTable; in getSymbolAddress() local
586 ShndxTable = *ShndxTableOrErr; in getSymbolAddress()
592 EF.getSection(*ESym, *SymTabOrErr, ShndxTable); in getSymbolAddress()
737 ArrayRef<Elf_Word> ShndxTable; in getSymbolSection() local
744 ShndxTable = *ShndxTableOrErr; in getSymbolSection()
747 auto ESecOrErr = EF.getSection(*ESym, SymTab, ShndxTable); in getSymbolSection()
/external/llvm/test/Transforms/AlignmentFromAssumptions/
Dstart-unk.ll112 %ShndxTable.0309 = phi %type1* [ %1, %for.body137.lr.ph ], [ %incdec.ptr, %test1b.exit ]
113 %ret.0..sroa_cast.i.i106 = bitcast %type1* %ShndxTable.0309 to i32*
117 %incdec.ptr = getelementptr inbounds %type1, %type1* %ShndxTable.0309, i64 1
/external/llvm-project/llvm/test/Transforms/AlignmentFromAssumptions/
Dstart-unk.ll112 %ShndxTable.0309 = phi %type1* [ %1, %for.body137.lr.ph ], [ %incdec.ptr, %test1b.exit ]
113 %ret.0..sroa_cast.i.i106 = bitcast %type1* %ShndxTable.0309 to i32*
117 %incdec.ptr = getelementptr inbounds %type1, %type1* %ShndxTable.0309, i64 1
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp29 ArrayRef<Elf_Word> ShndxTable; member in __anon1a674b1e0111::ELFDumper
92 ShndxTable = *TableOrErr; in dump()
190 ErrorOr<const Elf_Shdr *> ShdrOrErr = Obj.getSection(Sym, SymTab, ShndxTable); in dumpSymbol()
/external/llvm/tools/llvm-readobj/
DARMEHABIPrinter.h317 ArrayRef<Elf_Word> ShndxTable; variable
402 ELF->getSection(Symbol, SymTab, ShndxTable); in FindExceptionTable()
DELFDumper.cpp192 ArrayRef<Elf_Word> ShndxTable; member in __anon148931850111::ELFDumper
237 ArrayRef<Elf_Word> getShndxTable() const { return ShndxTable; } in getShndxTable()
712 ArrayRef<typename ELFO::Elf_Word> ShndxTable, in getSectionNameIndex() argument
730 Obj.getExtendedSymbolTableIndex(Symbol, FirstSym, ShndxTable); in getSectionNameIndex()
1336 ShndxTable = unwrapOrError(Obj->getSHNDXTable(Sec)); in ELFDumper()
/external/llvm-project/llvm/tools/llvm-readobj/
DARMEHABIPrinter.h333 ArrayRef<Elf_Word> ShndxTable; variable
427 auto Ret = ELF.getSection(*Symbol, SymTab, ShndxTable); in FindExceptionTable()
DELFDumper.cpp346 ArrayRef<Elf_Word> ShndxTable; member in __anonb7e302f30111::ELFDumper
417 ArrayRef<Elf_Word> getShndxTable() const { return ShndxTable; } in getShndxTable()
1246 ShndxTable); in getSymbolSectionIndex()
2058 ShndxTable = *ShndxTableOrErr; in ELFDumper()
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/
DObject.h695 void setShndxTable(SectionIndexSection *ShndxTable) { in setShndxTable() argument
696 SectionIndexTable = ShndxTable; in setShndxTable()