Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Target/X86/
DX86GOT.h22 class X86_32GOTEntry : public GOT::Entry<4> {
24 X86_32GOTEntry(uint64_t pContent, SectionData* pParent) in X86_32GOTEntry() function
38 X86_32GOTEntry* create();
DX86GOT.cpp27 X86_32GOTEntry* X86_32GOT::create() { in create()
28 return new X86_32GOTEntry(0, m_SectionData); in create()
DX86Relocator.h119 typedef KeyEntryMap<ResolveInfo, X86_32GOTEntry> SymGOTMap;
120 typedef KeyEntryMap<ResolveInfo, X86_32GOTEntry> SymGOTPLTMap;
145 X86_32GOTEntry& getTLSModuleID();
DX86GOTPLT.cpp37 llvm::cast<X86_32GOTEntry>(*(m_SectionData->getFragmentList().begin())) in applyGOT0()
49 llvm::cast<X86_32GOTEntry>(*it).setValue(plt_addr + 6); in applyAllGOTPLT()
DX86Relocator.cpp59 static X86_32GOTEntry& helper_GOT_init(Relocation& pReloc, in helper_GOT_init()
67 X86_32GOTEntry* got_entry = ld_backend.getGOT().create(); in helper_GOT_init()
94 X86_32GOTEntry* got_entry = pParent.getSymGOTMap().lookUp(*pReloc.symInfo()); in helper_get_GOT_address()
112 X86_32GOTEntry* gotplt_entry = ld_backend.getGOTPLT().create(); in helper_PLT_init()
416 X86_32GOTEntry* got_entry1 = getTarget().getGOT().create(); in scanLocalReloc()
417 X86_32GOTEntry* got_entry2 = getTarget().getGOT().create(); in scanLocalReloc()
460 X86_32GOTEntry* got_entry = getTarget().getGOT().create(); in scanLocalReloc()
477 X86_32GOTEntry* got_entry = getTarget().getGOT().create(); in scanLocalReloc()
668 X86_32GOTEntry* got_entry1 = getTarget().getGOT().create(); in scanGlobalReloc()
669 X86_32GOTEntry* got_entry2 = getTarget().getGOT().create(); in scanGlobalReloc()
[all …]
DX86LDBackend.cpp473 X86_32GOTEntry* got = 0; in emitGOTSectionData()
474 unsigned int EntrySize = X86_32GOTEntry::EntrySize; in emitGOTSectionData()
479 got = &(llvm::cast<X86_32GOTEntry>((*it))); in emitGOTSectionData()
496 X86_32GOTEntry* got = 0; in emitGOTPLTSectionData()
497 unsigned int EntrySize = X86_32GOTEntry::EntrySize; in emitGOTPLTSectionData()
503 got = &(llvm::cast<X86_32GOTEntry>((*it))); in emitGOTPLTSectionData()
DX86PLT.cpp171 uint64_t GOTEntrySize = X86_32GOTEntry::EntrySize; in applyPLT1()