Searched refs:symIndex (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | SymbolTable.cpp | 177 getSymbolLocations(ObjFile *file, uint32_t symIndex, size_t maxStrings) { in getSymbolLocations() argument 190 if (r.SymbolTableIndex != symIndex) in getSymbolLocations() 228 std::vector<std::string> getSymbolLocations(ObjFile *file, uint32_t symIndex) { in getSymbolLocations() argument 229 return getSymbolLocations(file, symIndex, SIZE_MAX).first; in getSymbolLocations() 233 getSymbolLocations(InputFile *file, uint32_t symIndex, size_t maxStrings) { in getSymbolLocations() argument 235 return getSymbolLocations(o, symIndex, maxStrings); in getSymbolLocations() 253 uint32_t symIndex; member 268 ref.file, ref.symIndex, maxUndefReferences - numDisplayedRefs); in reportUndefinedSymbol() 420 uint32_t symIndex = (uint32_t)-1; in reportProblemSymbols() local 422 ++symIndex; in reportProblemSymbols() [all …]
|
| H A D | SymbolTable.h | 144 std::vector<std::string> getSymbolLocations(ObjFile *file, uint32_t symIndex);
|
| H A D | Writer.cpp | 2000 for (uint32_t symIndex : symIndices) { in getSymbolsFromSections() local 2001 if (symIndex >= objSymbols.size()) { in getSymbolsFromSections() 2006 if (Symbol *s = objSymbols[symIndex]) { in getSymbolsFromSections()
|
| H A D | Driver.cpp | 1214 uint64_t symIndex = decodeULEB128(cur, &size, contents.end(), &err); in findKeepUniqueSections() local 1217 if (symIndex >= syms.size()) in findKeepUniqueSections() 1219 markAddrsig(syms[symIndex]); in findKeepUniqueSections()
|
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | DWARF.cpp | 115 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in findAux() local 116 const typename ELFT::Sym &sym = file->template getELFSyms<ELFT>()[symIndex]; in findAux()
|
| H A D | InputFiles.h | 111 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in getRelocTargetSym() local 112 return getSymbol(symIndex); in getRelocTargetSym()
|
| H A D | Relocations.cpp | 507 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in computeMipsAddend() local 513 ri->getSymbol(config->isMips64EL) == symIndex) in computeMipsAddend() 1442 uint32_t symIndex = rel.getSymbol(config->isMips64EL); in scanOne() local 1443 Symbol &sym = sec->getFile<ELFT>()->getSymbol(symIndex); in scanOne() 1478 if (sym.isUndefined() && symIndex != 0 && in scanOne()
|
| H A D | Driver.cpp | 2408 uint64_t symIndex = decodeULEB128(cur, &size, contents.end(), &err); in findKeepUniqueSections() local 2411 markAddrsig(syms[symIndex]); in findKeepUniqueSections()
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | InputFiles.cpp | 842 const uint32_t symIndex = symbolIndices[j]; in parseSymbols() local 843 const NList &sym = nList[symIndex]; in parseSymbols() 853 symbols[symIndex] = in parseSymbols() 878 const uint32_t symIndex = symbolIndices[j]; in parseSymbols() local 879 const NList &sym = nList[symIndex]; in parseSymbols() 900 symbols[symIndex] = createDefined(sym, name, isec, symbolOffset, in parseSymbols() 919 symbols[symIndex] = createDefined(sym, name, nextIsec, /*value=*/0, in parseSymbols()
|