Searched refs:mipsGot (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/lld/ELF/ |
D | InputSection.cpp | 712 return sym.getVA(a) - in.mipsGot->getGp(file); in getRelocTargetVA() 714 return in.mipsGot->getGp(file) + a; in getRelocTargetVA() 723 uint64_t v = in.mipsGot->getGp(file) + a - p; in getRelocTargetVA() 734 return in.mipsGot->getVA() + in.mipsGot->getPageEntryOffset(file, sym, a) - in getRelocTargetVA() 735 in.mipsGot->getGp(file); in getRelocTargetVA() 741 return in.mipsGot->getVA() + in.mipsGot->getSymEntryOffset(file, sym, a) - in getRelocTargetVA() 742 in.mipsGot->getGp(file); in getRelocTargetVA() 744 return in.mipsGot->getVA() + in.mipsGot->getGlobalDynOffset(file, sym) - in getRelocTargetVA() 745 in.mipsGot->getGp(file); in getRelocTargetVA() 747 return in.mipsGot->getVA() + in.mipsGot->getTlsIndexOffset(file) - in getRelocTargetVA() [all …]
|
D | Writer.cpp | 499 in.mipsGot = make<MipsGotSection>(); in createSyntheticSections() 500 add(in.mipsGot); in createSyntheticSections() 1138 gotSection = in.mipsGot ? cast<InputSection>(in.mipsGot) in setReservedSymbolSections() 1739 if (in.mipsGot) in finalizeAddressDependentContent() 1740 in.mipsGot->updateAllocSize(); in finalizeAddressDependentContent() 2052 if (in.mipsGot) in finalizeSections() 2053 in.mipsGot->build(); in finalizeSections() 2135 finalizeSynthetic(in.mipsGot); in finalizeSections()
|
D | Relocations.cpp | 169 in.mipsGot->addTlsIndex(*c.file); in handleMipsTlsRelocation() 174 in.mipsGot->addDynTlsEntry(*c.file, sym); in handleMipsTlsRelocation() 1182 in.mipsGot->addEntry(*sec.file, sym, addend, expr); in processRelocAux() 1432 in.mipsGot->addEntry(*sec.file, sym, addend, expr); in scanReloc()
|
D | SyntheticSections.cpp | 164 reginfo.ri_gp_value = in.mipsGot->getGp(); in writeTo() 221 reginfo.ri_gp_value = in.mipsGot->getGp(); in writeTo() 1507 add(DT_MIPS_LOCAL_GOTNO, [] { return in.mipsGot->getLocalEntriesNum(); }); in finalizeContents() 1509 if (const Symbol *b = in.mipsGot->getFirstGlobalEntry()) in finalizeContents() 1513 addInSec(DT_PLTGOT, in.mipsGot); in finalizeContents()
|
D | SyntheticSections.h | 1210 MipsGotSection *mipsGot; member
|