Searched defs:pParent (Results 1 - 15 of 15) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DFragment.cpp25 Fragment::Fragment(Type pKind, SectionData *pParent) argument
26 : m_Kind(pKind), m_pParent(pParent), m_Offset(~uint64_t(0)), m_LayoutOrder(~(0U)) {
/frameworks/compile/mclinker/lib/Support/
H A DMemoryRegion.cpp15 MemoryRegion::MemoryRegion(Space& pParent, argument
18 : m_Parent(pParent), m_VMAStart(pVMAStart), m_Length(pSize) {
H A DDirectory.cpp149 DirIterator::DirIterator(Directory* pParent, argument
151 : m_pParent(pParent),
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFDynamic.cpp15 ARMELFDynamic::ARMELFDynamic(const GNULDBackend& pParent) argument
16 : ELFDynamic(pParent)
H A DARMPLT.cpp39 ARMPLT0::ARMPLT0(SectionData* pParent) argument
40 : PLTEntry(sizeof(arm_plt0), pParent) {}
42 ARMPLT1::ARMPLT1(SectionData* pParent) argument
43 : PLTEntry(sizeof(arm_plt1), pParent) {}
H A DARMRelocationFactory.cpp32 ARMRelocationFactory& pParent);
51 ARMGNULDBackend& pParent)
53 m_Target(pParent) {
136 ARMRelocationFactory& pParent)
140 ARMGNULDBackend& ld_backend = pParent.getTarget();
157 helper_use_relative_reloc(*rsym, pLDInfo, pParent)) {
179 ARMRelocationFactory::Address helper_GOT_ORG(ARMRelocationFactory& pParent) argument
181 return pParent.getTarget().getGOT().getSection().addr();
188 ARMRelocationFactory& pParent)
190 GOTEntry& got_entry = helper_get_GOT_and_init(pReloc, pLDInfo, pParent);
50 ARMRelocationFactory(size_t pNum, ARMGNULDBackend& pParent) argument
134 helper_get_GOT_and_init(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
186 helper_GOT(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
196 helper_get_PLT_and_init(Relocation& pReloc, ARMRelocationFactory& pParent) argument
228 helper_PLT_ORG(ARMRelocationFactory& pParent) argument
235 helper_PLT(Relocation& pReloc, ARMRelocationFactory& pParent) argument
245 helper_DynRel(Relocation& pReloc, ARMRelocationFactory::Type pType, ARMRelocationFactory& pParent) argument
379 none(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
387 abs32(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
442 rel32(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
455 base_prel(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
466 gotoff32(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
480 got_brel(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
497 got_prel(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
516 call(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
571 thm_call(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
644 movw_abs_nc(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
676 movw_prel_nc(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
698 movt_abs(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
728 movt_prel(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
746 thm_movw_abs_nc(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
776 thm_movw_prel_nc(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
797 thm_movw_brel(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
817 thm_movt_abs(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
854 thm_movt_prel(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
872 prel31(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
899 tls(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
906 unsupport(Relocation& pReloc, const MCLDInfo& pLDInfo, ARMRelocationFactory& pParent) argument
[all...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86ELFDynamic.cpp15 X86ELFDynamic::X86ELFDynamic(const GNULDBackend& pParent) argument
16 : ELFDynamic(pParent)
H A DX86PLT.cpp53 X86PLT0::X86PLT0(SectionData* pParent, unsigned int pSize) argument
54 : PLTEntry(pSize, pParent) { }
56 X86PLT1::X86PLT1(SectionData* pParent, unsigned int pSize) argument
57 : PLTEntry(pSize, pParent) { }
H A DX86RelocationFactory.cpp31 X86RelocationFactory& pParent);
50 X86GNULDBackend& pParent)
52 m_Target(pParent) {
102 X86RelocationFactory& pParent)
106 X86GNULDBackend& ld_backend = pParent.getTarget();
121 if (helper_use_relative_reloc(*rsym, pLDInfo, pParent)) {
143 X86RelocationFactory::Address helper_GOT_ORG(X86RelocationFactory& pParent) argument
145 return pParent.getTarget().getGOTPLT().getSection().addr();
152 X86RelocationFactory& pParent)
154 GOTEntry& got_entry = helper_get_GOT_and_init(pReloc, pLDInfo, pParent);
49 X86RelocationFactory(size_t pNum, X86GNULDBackend& pParent) argument
100 helper_get_GOT_and_init(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
150 helper_GOT(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
162 helper_get_PLT_and_init(Relocation& pReloc, X86RelocationFactory& pParent) argument
194 helper_PLT_ORG(X86RelocationFactory& pParent) argument
201 helper_PLT(Relocation& pReloc, X86RelocationFactory& pParent) argument
211 helper_DynRel(Relocation& pReloc, X86RelocationFactory::Type pType, X86RelocationFactory& pParent) argument
237 none(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
245 abs32(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
299 rel32(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
343 gotoff32(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
356 gotpc32(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
368 got32(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
385 plt32(Relocation& pReloc, const MCLDInfo& pLDInfo, X86RelocationFactory& pParent) argument
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DPLT.cpp19 PLTEntry::PLTEntry(size_t pSize, SectionData* pParent) argument
20 : TargetFragment(Fragment::Target, pParent),
H A DGOT.cpp20 GOTEntry::GOTEntry(uint64_t pContent, size_t pEntrySize, SectionData* pParent) argument
21 : TargetFragment(Fragment::Target, pParent),
H A DELFDynamic.cpp32 ELFDynamic::ELFDynamic(const GNULDBackend& pParent) argument
34 if (32 == pParent.bitclass() && pParent.isLittleEndian()) {
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsELFDynamic.cpp27 MipsELFDynamic::MipsELFDynamic(const MipsGNULDBackend& pParent) argument
28 : ELFDynamic(pParent),
29 m_pParent(pParent)
H A DMipsRelocationFactory.cpp48 MipsGNULDBackend& pParent)
50 m_Target(pParent),
108 RelocationFactory::Address helper_GetGP(MipsRelocationFactory& pParent) argument
110 return pParent.getTarget().getGOT().getSection().addr() + 0x7FF0;
115 MipsRelocationFactory& pParent,
120 MipsGNULDBackend& ld_backend = pParent.getTarget();
143 MipsRelocationFactory& pParent)
146 GOTEntry& got_entry = helper_GetGOTEntry(pReloc, pParent, exist, 0);
147 return pParent.getLayout().getOutputOffset(got_entry) - 0x7FF0;
169 MipsRelocationFactory& pParent)
47 MipsRelocationFactory(size_t pNum, MipsGNULDBackend& pParent) argument
114 helper_GetGOTEntry(Relocation& pReloc, MipsRelocationFactory& pParent, bool& pExist, int32_t value) argument
142 helper_GetGOTOffset(Relocation& pReloc, MipsRelocationFactory& pParent) argument
168 helper_DynRel(Relocation& pReloc, MipsRelocationFactory& pParent) argument
202 none(Relocation& pReloc, const MCLDInfo& pLDInfo, MipsRelocationFactory& pParent) argument
211 abs32(Relocation& pReloc, const MCLDInfo& pLDInfo, MipsRelocationFactory& pParent) argument
245 hi16(Relocation& pReloc, const MCLDInfo& pLDInfo, MipsRelocationFactory& pParent) argument
277 lo16(Relocation& pReloc, const MCLDInfo& pLDInfo, MipsRelocationFactory& pParent) argument
308 got16(Relocation& pReloc, const MCLDInfo& pLDInfo, MipsRelocationFactory& pParent) argument
343 call16(Relocation& pReloc, const MCLDInfo& pLDInfo, MipsRelocationFactory& pParent) argument
357 gprel32(Relocation& pReloc, const MCLDInfo& pLDInfo, MipsRelocationFactory& pParent) argument
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DMCLDAttribute.cpp49 AttributeProxy::AttributeProxy(AttributeFactory& pParent, Attribute& pBase) argument
50 : m_AttrPool(pParent), m_pBase(&pBase) {
97 static inline void ReplaceOrRecord(AttributeFactory& pParent, argument
101 Attribute *result = pParent.exists(*pCopy);
103 pParent.record(*pCopy);

Completed in 2814 milliseconds