Searched refs:mipsGot (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | InputSection.cpp | 780 return sym.getVA(a) - in.mipsGot->getGp(file); in getRelocTargetVA() 782 return in.mipsGot->getGp(file) + a; in getRelocTargetVA() 791 uint64_t v = in.mipsGot->getGp(file) + a - p; in getRelocTargetVA() 802 return in.mipsGot->getVA() + in.mipsGot->getPageEntryOffset(file, sym, a) - in getRelocTargetVA() 803 in.mipsGot->getGp(file); in getRelocTargetVA() 809 return in.mipsGot->getVA() + in.mipsGot->getSymEntryOffset(file, sym, a) - in getRelocTargetVA() 810 in.mipsGot->getGp(file); in getRelocTargetVA() 812 return in.mipsGot->getVA() + in.mipsGot->getGlobalDynOffset(file, sym) - in getRelocTargetVA() 813 in.mipsGot->getGp(file); in getRelocTargetVA() 815 return in.mipsGot->getVA() + in.mipsGot->getTlsIndexOffset(file) - in getRelocTargetVA() [all …]
|
H A D | Writer.cpp | 819 sec = in.mipsGot ? cast<InputSection>(in.mipsGot.get()) in setReservedSymbolSections() 1472 if (in.mipsGot) in finalizeAddressDependentContent() 1473 in.mipsGot->updateAllocSize(); in finalizeAddressDependentContent() 1877 if (in.mipsGot) in finalizeSections() 1878 in.mipsGot->build(); in finalizeSections() 1969 finalizeSynthetic(in.mipsGot.get()); in finalizeSections()
|
H A D | Relocations.cpp | 1101 in.mipsGot->addEntry(*sec->file, sym, addend, expr); in processAux() 1191 in.mipsGot->addEntry(*sec->file, sym, addend, expr); in processAux() 1276 in.mipsGot->addTlsIndex(*c.file); in handleMipsTlsRelocation() 1281 in.mipsGot->addDynTlsEntry(*c.file, sym); in handleMipsTlsRelocation()
|
H A D | SyntheticSections.cpp | 171 reginfo.ri_gp_value = in.mipsGot->getGp(); in writeTo() 228 reginfo.ri_gp_value = in.mipsGot->getGp(); in writeTo() 1537 addInt(DT_MIPS_LOCAL_GOTNO, in.mipsGot->getLocalEntriesNum()); in computeContents() 1539 if (const Symbol *b = in.mipsGot->getFirstGlobalEntry()) in computeContents() 1543 addInSec(DT_PLTGOT, *in.mipsGot); in computeContents() 4473 mipsGot.reset(); in reset() 4832 in.mipsGot = std::make_unique<MipsGotSection>(); in createSyntheticSections() 4833 add(*in.mipsGot); in createSyntheticSections()
|
H A D | SyntheticSections.h | 1497 std::unique_ptr<MipsGotSection> mipsGot; member
|