Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/tools/llvm-ar/
Dllvm-ar.cpp100 bool SymTable = true; ///< 's' & 'S' modifiers variable
206 case 's': SymTable = true; break; in parseCommandLine()
207 case 'S': SymTable = false; break; in parseCommandLine()
506 if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg)) in doDelete()
561 if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg)) in doMove()
586 if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg)) in doQuickAppend()
684 if (TheArchive->writeToDisk(SymTable,TruncateNames,Compression,ErrMsg)) in doReplaceOrInsert()
/external/llvm/include/llvm/Object/
DELF.h464 const Elf_Shdr &SymTable = **SymTableOrErr; in getSHNDXTable() local
465 if (SymTable.sh_type != ELF::SHT_SYMTAB && in getSHNDXTable()
466 SymTable.sh_type != ELF::SHT_DYNSYM) in getSHNDXTable()
468 if (NumSymbols != (SymTable.sh_size / sizeof(Elf_Sym))) in getSHNDXTable()
DELFObjectFile.h255 DataRefImpl toDRI(const Elf_Shdr *SymTable, unsigned SymbolNum) const { in toDRI() argument
257 if (!SymTable) { in toDRI()
262 assert(SymTable->sh_type == ELF::SHT_SYMTAB || in toDRI()
263 SymTable->sh_type == ELF::SHT_DYNSYM); in toDRI()
267 (reinterpret_cast<uintptr_t>(SymTable) - SHT) / sizeof(Elf_Shdr); in toDRI()
369 StringRef SymTable = *EF.getStringTable(StringTableSec); in getSymbolName() local
370 return ESym->getName(SymTable); in getSymbolName()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DELF.h577 const Elf_Shdr &SymTable = **SymTableOrErr; in getSHNDXTable() local
578 if (SymTable.sh_type != ELF::SHT_SYMTAB && in getSHNDXTable()
579 SymTable.sh_type != ELF::SHT_DYNSYM) in getSHNDXTable()
581 if (V.size() != (SymTable.sh_size / sizeof(Elf_Sym))) in getSHNDXTable()
DELFObjectFile.h286 DataRefImpl toDRI(const Elf_Shdr *SymTable, unsigned SymbolNum) const { in toDRI() argument
288 if (!SymTable) { in toDRI()
293 assert(SymTable->sh_type == ELF::SHT_SYMTAB || in toDRI()
294 SymTable->sh_type == ELF::SHT_DYNSYM); in toDRI()
304 (reinterpret_cast<uintptr_t>(SymTable) - SHT) / sizeof(Elf_Shdr); in toDRI()
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp2050 const Elf_Shdr *SymTable = in parsePLT() local
2052 StringRef StrTable = unwrapOrError(Obj->getStringTableForSymtab(*SymTable)); in parsePLT()
2073 const Elf_Sym *Sym = Obj->getRelocationSymbol(&*RI, SymTable); in parsePLT()
2081 const Elf_Sym *Sym = Obj->getRelocationSymbol(&*RI, SymTable); in parsePLT()