Searched refs:symIndex (Results 1 – 10 of 10) sorted by relevance
/external/llvm-project/lld/COFF/ |
D | SymbolTable.cpp | 142 getSymbolLocations(ObjFile *file, uint32_t symIndex, size_t maxStrings) { in getSymbolLocations() argument 155 if (r.SymbolTableIndex != symIndex) in getSymbolLocations() 193 std::vector<std::string> getSymbolLocations(ObjFile *file, uint32_t symIndex) { in getSymbolLocations() argument 194 return getSymbolLocations(file, symIndex, SIZE_MAX).first; in getSymbolLocations() 198 getSymbolLocations(InputFile *file, uint32_t symIndex, size_t maxStrings) { in getSymbolLocations() argument 200 return getSymbolLocations(o, symIndex, maxStrings); in getSymbolLocations() 218 uint32_t symIndex; member 234 ref.file, ref.symIndex, maxUndefReferences - numDisplayedRefs); in reportUndefinedSymbol() 355 uint32_t symIndex = (uint32_t)-1; in reportProblemSymbols() local 357 ++symIndex; in reportProblemSymbols() [all …]
|
D | SymbolTable.h | 135 std::vector<std::string> getSymbolLocations(ObjFile *file, uint32_t symIndex);
|
D | Writer.cpp | 1726 for (uint32_t symIndex : symIndices) { in getSymbolsFromSections() local 1727 if (symIndex >= objSymbols.size()) { in getSymbolsFromSections() 1732 if (Symbol *s = objSymbols[symIndex]) { in getSymbolsFromSections()
|
D | Driver.cpp | 1036 uint64_t symIndex = decodeULEB128(cur, &size, contents.end(), &err); in findKeepUniqueSections() local 1039 if (symIndex >= syms.size()) in findKeepUniqueSections() 1041 markAddrsig(syms[symIndex]); in findKeepUniqueSections()
|
/external/llvm-project/lld/ELF/ |
D | DWARF.cpp | 116 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in findAux() local 117 const typename ELFT::Sym &sym = file->template getELFSyms<ELFT>()[symIndex]; in findAux()
|
D | SymbolTable.cpp | 72 int &symIndex = p.first->second; in insert() local 76 return symVector[symIndex]; in insert()
|
D | InputFiles.h | 223 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in getRelocTargetSym() local 224 return getSymbol(symIndex); in getRelocTargetSym()
|
D | Relocations.cpp | 641 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in computeMipsAddend() local 647 ri->getSymbol(config->isMips64EL) == symIndex) in computeMipsAddend() 1286 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in scanReloc() local 1287 Symbol &sym = sec.getFile<ELFT>()->getSymbol(symIndex); in scanReloc() 1305 if (symIndex != 0 && maybeReportUndefined(sym, sec, rel.r_offset)) in scanReloc()
|
D | Driver.cpp | 1777 uint64_t symIndex = decodeULEB128(cur, &size, contents.end(), &err); in findKeepUniqueSections() local 1780 markAddrsig(syms[symIndex]); in findKeepUniqueSections()
|
/external/llvm-project/lld/wasm/ |
D | SymbolTable.cpp | 101 int &symIndex = p.first->second; in insertName() local 103 if (symIndex == -1) { in insertName() 104 symIndex = symVector.size(); in insertName() 110 return {symVector[symIndex], false}; in insertName()
|