reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Object/COFFObjectFile.cpp
 1133   if (R->SymbolTableIndex >= getNumberOfSymbols())
 1136     Ref.p = reinterpret_cast<uintptr_t>(SymbolTable16 + R->SymbolTableIndex);
 1138     Ref.p = reinterpret_cast<uintptr_t>(SymbolTable32 + R->SymbolTableIndex);
 1823     Expected<COFFSymbolRef> Sym = Obj->getSymbol(R.SymbolTableIndex);
lib/Object/WindowsResource.cpp
  980     Reloc->SymbolTableIndex = NextSymbolIndex++;
tools/lld/COFF/Chunks.cpp
  335         check(file->getCOFFObj()->getSymbol(rel.SymbolTableIndex));
  340       getSymbolLocations(file, rel.SymbolTableIndex);
  375         dyn_cast_or_null<Defined>(file->getSymbol(rel.SymbolTableIndex));
  459     Symbol *target = file->getSymbol(rel.SymbolTableIndex);
  553         dyn_cast_or_null<Defined>(file->getSymbol(rel.SymbolTableIndex));
tools/lld/COFF/Chunks.h
  198     Symbol *operator*() const { return file->getSymbol(I->SymbolTableIndex); }
tools/lld/COFF/ICF.cpp
  153     Symbol *b1 = a->file->getSymbol(r1.SymbolTableIndex);
  154     Symbol *b2 = b->file->getSymbol(r2.SymbolTableIndex);
  179     Symbol *b1 = a->file->getSymbol(r1.SymbolTableIndex);
  180     Symbol *b2 = b->file->getSymbol(r2.SymbolTableIndex);
tools/lld/COFF/PDB.cpp
 1731               c->file->getSymbols()[r.SymbolTableIndex]))
tools/lld/COFF/SymbolTable.cpp
  150       if (r.SymbolTableIndex != symIndex)
tools/lld/COFF/Writer.cpp
  423       Symbol *relocTarget = file->getSymbol(rel.SymbolTableIndex);
  488         newRelocs[i].SymbolTableIndex = nextReplacement->second;
  508       Symbol *relocTarget = sc->file->getSymbol(rel.SymbolTableIndex);
 1563       Symbol *ref = sc->file->getSymbol(reloc.SymbolTableIndex);
tools/llvm-objcopy/COFF/Reader.cpp
  179       if (R.Reloc.SymbolTableIndex >= RawSymbolTable.size())
  182       const Symbol *Sym = RawSymbolTable[R.Reloc.SymbolTableIndex];
tools/llvm-objcopy/COFF/Writer.cpp
   34       R.Reloc.SymbolTableIndex = Sym->RawIndex;
tools/obj2yaml/coff2yaml.cpp
  212         Rel.SymbolTableIndex = reloc->SymbolTableIndex;