Home
last modified time | relevance | path

Searched refs:X86_64GOTEntry (Results 1 – 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/Target/X86/
DX86GOT.h44 class X86_64GOTEntry : public GOT::Entry<8> {
46 X86_64GOTEntry(uint64_t pContent, SectionData* pParent) in X86_64GOTEntry() function
60 X86_64GOTEntry* create();
DX86GOT.cpp40 X86_64GOTEntry* X86_64GOT::create() { in create()
41 return new X86_64GOTEntry(0, m_SectionData); in create()
DX86GOTPLT.cpp70 llvm::cast<X86_64GOTEntry>(*(m_SectionData->getFragmentList().begin())) in applyGOT0()
82 llvm::cast<X86_64GOTEntry>(*it).setValue(plt_addr + 6); in applyAllGOTPLT()
DX86LDBackend.cpp658 X86_64GOTEntry* got = 0; in emitGOTSectionData()
659 unsigned int EntrySize = X86_64GOTEntry::EntrySize; in emitGOTSectionData()
664 got = &(llvm::cast<X86_64GOTEntry>((*it))); in emitGOTSectionData()
681 X86_64GOTEntry* got = 0; in emitGOTPLTSectionData()
682 unsigned int EntrySize = X86_64GOTEntry::EntrySize; in emitGOTPLTSectionData()
688 got = &(llvm::cast<X86_64GOTEntry>((*it))); in emitGOTPLTSectionData()
DX86Relocator.h186 typedef KeyEntryMap<ResolveInfo, X86_64GOTEntry> SymGOTMap;
187 typedef KeyEntryMap<ResolveInfo, X86_64GOTEntry> SymGOTPLTMap;
DX86Relocator.cpp1135 static X86_64GOTEntry& helper_GOT_init(Relocation& pReloc, in helper_GOT_init()
1143 X86_64GOTEntry* got_entry = ld_backend.getGOT().create(); in helper_GOT_init()
1172 X86_64GOTEntry* got_entry = pParent.getSymGOTMap().lookUp(*pReloc.symInfo()); in helper_get_GOT_address()
1197 X86_64GOTEntry* gotplt_entry = ld_backend.getGOTPLT().create(); in helper_PLT_init()
1613 X86_64GOTEntry* got_entry = pParent.getSymGOTMap().lookUp(*pReloc.symInfo()); in gotpcrel()
DX86PLT.cpp254 uint64_t GOTEntrySize = X86_64GOTEntry::EntrySize; in applyPLT1()