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

References

tools/lld/ELF/Arch/AArch64.cpp
  207   uint64_t got = in.gotPlt->getVA();
  609   uint64_t got = in.gotPlt->getVA();
tools/lld/ELF/Arch/ARM.cpp
  175   uint64_t gotPlt = in.gotPlt->getVA();
  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
  249     uint64_t gotPlt = in.gotPlt->getVA();
  302   uint64_t gotPlt = in.gotPlt->getVA();
tools/lld/ELF/Arch/PPC64.cpp
  666   int64_t gotPltOffset = in.gotPlt->getVA() - (in.plt->getVA() + 8);
tools/lld/ELF/Arch/RISCV.cpp
  153   uint32_t offset = in.gotPlt->getVA() - in.plt->getVA();
tools/lld/ELF/Arch/X86.cpp
  211   uint32_t gotPlt = in.gotPlt->getVA();
  226     write32le(buf + 2, gotPltEntryAddr - in.gotPlt->getVA());
  476   uint32_t ebx = in.gotPlt->getVA();
  515   uint32_t gotPlt = in.gotPlt->getVA();
tools/lld/ELF/Arch/X86_64.cpp
  152   uint64_t gotPlt = in.gotPlt->getVA();
  625   uint64_t gotPlt = in.gotPlt->getVA();
tools/lld/ELF/InputSection.cpp
  667     return in.gotPlt->getVA() + a - p;
  672     return sym.getVA(a) - in.gotPlt->getVA();
  675     return sym.getGotVA() + a - in.gotPlt->getVA();
  810     return in.got->getVA() + in.got->getGlobalDynOffset(sym) + a - in.gotPlt->getVA();
  814     return in.got->getVA() + in.got->getTlsIndexOff() + a - in.gotPlt->getVA();
tools/lld/ELF/Relocations.cpp
 1132         addPltEntry<ELFT>(in.plt, in.gotPlt, in.relaPlt, target->pltRel, sym);
 1246     in.gotPlt->hasGotPltOffRel = true;
 1273       addPltEntry<ELFT>(in.plt, in.gotPlt, in.relaPlt, target->pltRel, sym);
tools/lld/ELF/Symbols.cpp
  156   return in.gotPlt->getVA() + getGotPltOffset();
tools/lld/ELF/SyntheticSections.cpp
 1388       addInSec(DT_MIPS_PLTGOT, in.gotPlt);
 1394       addInSec(DT_PLTGOT, in.gotPlt);
 1569     getParent()->info = in.gotPlt->getParent()->sectionIndex;
tools/lld/ELF/Writer.cpp
  484   in.gotPlt = make<GotPltSection>();
  485   add(in.gotPlt);
  493       in.gotPlt->hasGotPltOffRel = true;
  791   if (sec == in.gotPlt->getParent())
 1041     InputSection *gotSection = in.gotPlt;
 1883   finalizeSynthetic(in.gotPlt);