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

References

tools/lld/ELF/Arch/AArch64.cpp
  191   write64le(buf, in.plt->getVA());
  208   uint64_t plt = in.plt->getVA();
  610   uint64_t plt = in.plt->getVA();
tools/lld/ELF/Arch/ARM.cpp
  154   write32le(buf, in.plt->getVA());
  176   uint64_t l1 = in.plt->getVA() + 8;
  194   uint64_t offset = in.gotPlt->getVA() - in.plt->getVA() - 4;
tools/lld/ELF/Arch/Hexagon.cpp
  300   uint64_t off = in.gotPlt->getVA() - in.plt->getVA();
tools/lld/ELF/Arch/Mips.cpp
  197   uint64_t va = in.plt->getVA();
  250     uint64_t plt = in.plt->getVA();
tools/lld/ELF/Arch/PPC.cpp
   84   uint32_t glink = in.plt->getVA(); // VA of .glink
   87     uint32_t afterBcl = in.plt->getSize() - target->pltHeaderSize + 12;
  168   write32(buf, in.plt->getVA() + 4 * s.pltIndex);
tools/lld/ELF/Arch/PPC64.cpp
  666   int64_t gotPltOffset = in.gotPlt->getVA() - (in.plt->getVA() + 8);
tools/lld/ELF/Arch/RISCV.cpp
  139     write64le(buf, in.plt->getVA());
  141     write32le(buf, in.plt->getVA());
  153   uint32_t offset = in.gotPlt->getVA() - in.plt->getVA();
tools/lld/ELF/Arch/X86_64.cpp
  153   uint64_t plt = in.plt->getVA();
  626   uint64_t plt = in.plt->getVA();
tools/lld/ELF/Relocations.cpp
 1132         addPltEntry<ELFT>(in.plt, in.gotPlt, in.relaPlt, target->pltRel, sym);
 1135             sym, in.plt,
 1273       addPltEntry<ELFT>(in.plt, in.gotPlt, in.relaPlt, target->pltRel, sym);
tools/lld/ELF/Symbols.cpp
  171   PltSection *plt = isInIplt ? in.iplt : in.plt;
tools/lld/ELF/SyntheticSections.cpp
 1391       addInSec(DT_PLTGOT, in.plt);
 1484   if (config->emachine == EM_PPC64 && in.plt->isNeeded()) {
 1489                          return in.plt->getVA(0) + offset;
 2477   size_t pltOff = isIplt ? in.plt->getSize() : 0;
tools/lld/ELF/Writer.cpp
  518   in.plt = make<PltSection>(false);
  519   add(in.plt);
 1753   if (in.plt && in.plt->isNeeded())
 1753   if (in.plt && in.plt->isNeeded())
 1754     in.plt->addSymbols();
 1886   finalizeSynthetic(in.plt);