Searched refs:symIndex (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | SymbolTable.cpp | 136 getSymbolLocations(ObjFile *file, uint32_t symIndex, size_t maxStrings) { in getSymbolLocations() argument 149 if (r.SymbolTableIndex != symIndex) in getSymbolLocations() 187 std::vector<std::string> getSymbolLocations(ObjFile *file, uint32_t symIndex) { in getSymbolLocations() argument 188 return getSymbolLocations(file, symIndex, SIZE_MAX).first; in getSymbolLocations() 192 getSymbolLocations(InputFile *file, uint32_t symIndex, size_t maxStrings) { in getSymbolLocations() argument 194 return getSymbolLocations(o, symIndex, maxStrings); in getSymbolLocations() 212 uint32_t symIndex; member 225 ref.file, ref.symIndex, maxUndefReferences - numDisplayedRefs); in reportUndefinedSymbol() 397 uint32_t symIndex = (uint32_t)-1; in reportProblemSymbols() local 399 ++symIndex; in reportProblemSymbols() [all …]
|
| H A D | SymbolTable.h | 226 std::vector<std::string> getSymbolLocations(ObjFile *file, uint32_t symIndex);
|
| H A D | Driver.cpp | 1211 uint64_t symIndex = decodeULEB128(cur, &size, contents.end(), &err); in findKeepUniqueSections() local 1215 if (symIndex >= syms.size()) in findKeepUniqueSections() 1218 markAddrsig(syms[symIndex]); in findKeepUniqueSections()
|
| H A D | Writer.cpp | 2213 for (uint32_t symIndex : symIndices) { in getSymbolsFromSections() local 2214 if (symIndex >= objSymbols.size()) { in getSymbolsFromSections() 2219 if (Symbol *s = objSymbols[symIndex]) { in getSymbolsFromSections()
|
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | DWARF.cpp | 113 uint32_t symIndex = rel.getSymbol(ctx.arg.isMips64EL); in findAux() local 114 const typename ELFT::Sym &sym = file->template getELFSyms<ELFT>()[symIndex]; in findAux()
|
| H A D | InputFiles.h | 111 uint32_t symIndex = rel.getSymbol(ctx.arg.isMips64EL); in getRelocTargetSym() local 112 return getSymbol(symIndex); in getRelocTargetSym()
|
| H A D | Relocations.cpp | 502 uint32_t symIndex = rel.getSymbol(ctx.arg.isMips64EL); in computeMipsAddend() local 508 ri->getSymbol(ctx.arg.isMips64EL) == symIndex) in computeMipsAddend() 1500 uint32_t symIndex = rel.getSymbol(ctx.arg.isMips64EL); in scanOne() local 1501 Symbol &sym = sec->getFile<ELFT>()->getSymbol(symIndex); in scanOne() 1537 if (sym.isUndefined() && symIndex != 0 && in scanOne()
|
| H A D | Driver.cpp | 2586 uint64_t symIndex = decodeULEB128(cur, &size, contents.end(), &err); in findKeepUniqueSections() local 2591 markAddrsig(icfSafe, syms[symIndex]); in findKeepUniqueSections()
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | InputFiles.cpp | 840 const uint32_t symIndex = symbolIndices[j]; in parseSymbols() local 841 const NList &sym = nList[symIndex]; in parseSymbols() 851 symbols[symIndex] = in parseSymbols() 876 const uint32_t symIndex = symbolIndices[j]; in parseSymbols() local 877 const NList &sym = nList[symIndex]; in parseSymbols() 898 symbols[symIndex] = createDefined(sym, name, isec, symbolOffset, in parseSymbols() 917 symbols[symIndex] = createDefined(sym, name, nextIsec, /*value=*/0, in parseSymbols()
|