Searched defs:got_entry (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOTPLT.cpp89 GOTEntry* got_entry = NULL; local
91 got_entry = new GOTEntry(0, getEntrySize(),&(getSectionData()));
92 if (!got_entry)
H A DX86RelocationFactory.cpp109 GOTEntry& got_entry = *ld_backend.getGOT().getEntry(*rsym, exist); local
114 got_entry.setContent(pReloc.symValue());
123 got_entry.setContent(pReloc.symValue());
128 got_entry.setContent(0);
132 rel_entry.targetRef().assign(got_entry);
138 return got_entry;
154 GOTEntry& got_entry = helper_get_GOT_and_init(pReloc, pLDInfo, pParent); local
157 return got_addr + pParent.getLayout().getOutputOffset(got_entry);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp81 GOTEntry* got_entry = 0; local
83 got_entry= new GOTEntry(0, getEntrySize(),&(getSectionData()));
85 if (!got_entry)
H A DARMRelocationFactory.cpp143 GOTEntry& got_entry = *ld_backend.getGOT().getEntry(*rsym, exist); local
148 got_entry.setContent(pReloc.symValue());
159 got_entry.setContent(pReloc.symValue());
165 got_entry.setContent(0);
169 rel_entry.targetRef().assign(got_entry);
175 return got_entry;
190 GOTEntry& got_entry = helper_get_GOT_and_init(pReloc, pLDInfo, pParent); local
191 return helper_GOT_ORG(pParent) + pParent.getLayout().getOutputOffset(got_entry);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocationFactory.cpp123 GOTEntry& got_entry = *got.getEntry(*rsym, pExist); local
126 return got_entry;
131 got_entry.setContent(pReloc.symValue());
138 return got_entry;
146 GOTEntry& got_entry = helper_GetGOTEntry(pReloc, pParent, exist, 0); local
147 return pParent.getLayout().getOutputOffset(got_entry) - 0x7FF0;
326 GOTEntry& got_entry = helper_GetGOTEntry(pReloc, pParent, exist, res); local
328 got_entry.setContent(res);
329 G = pParent.getLayout().getOutputOffset(got_entry) - 0x7FF0;

Completed in 63 milliseconds