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

References

tools/lld/ELF/InputSection.cpp
  687     return sym.getVA(a) - in.mipsGot->getGp(file);
  689     return in.mipsGot->getGp(file) + a;
  698     uint64_t v = in.mipsGot->getGp(file) + a - p;
  709     return in.mipsGot->getVA() + in.mipsGot->getPageEntryOffset(file, sym, a) -
  709     return in.mipsGot->getVA() + in.mipsGot->getPageEntryOffset(file, sym, a) -
  710            in.mipsGot->getGp(file);
  716     return in.mipsGot->getVA() + in.mipsGot->getSymEntryOffset(file, sym, a) -
  716     return in.mipsGot->getVA() + in.mipsGot->getSymEntryOffset(file, sym, a) -
  717            in.mipsGot->getGp(file);
  719     return in.mipsGot->getVA() + in.mipsGot->getGlobalDynOffset(file, sym) -
  719     return in.mipsGot->getVA() + in.mipsGot->getGlobalDynOffset(file, sym) -
  720            in.mipsGot->getGp(file);
  722     return in.mipsGot->getVA() + in.mipsGot->getTlsIndexOffset(file) -
  722     return in.mipsGot->getVA() + in.mipsGot->getTlsIndexOffset(file) -
  723            in.mipsGot->getGp(file);
tools/lld/ELF/Relocations.cpp
  137     in.mipsGot->addTlsIndex(*c.file);
  142     in.mipsGot->addDynTlsEntry(*c.file, sym);
 1071         in.mipsGot->addEntry(*sec.file, sym, addend, expr);
 1285         in.mipsGot->addEntry(*sec.file, sym, addend, expr);
tools/lld/ELF/SyntheticSections.cpp
  162     reginfo.ri_gp_value = in.mipsGot->getGp();
  219     reginfo.ri_gp_value = in.mipsGot->getGp();
 1462     add(DT_MIPS_LOCAL_GOTNO, [] { return in.mipsGot->getLocalEntriesNum(); });
 1464     if (const Symbol *b = in.mipsGot->getFirstGlobalEntry())
 1468     addInSec(DT_PLTGOT, in.mipsGot);
tools/lld/ELF/Writer.cpp
  467     in.mipsGot = make<MipsGotSection>();
  468     add(in.mipsGot);
 1043       gotSection = in.mipsGot ? cast<InputSection>(in.mipsGot)
 1043       gotSection = in.mipsGot ? cast<InputSection>(in.mipsGot)
 1577     if (in.mipsGot)
 1578       in.mipsGot->updateAllocSize();
 1811   if (in.mipsGot)
 1812     in.mipsGot->build();
 1881   finalizeSynthetic(in.mipsGot);