Home
last modified time | relevance | path

Searched refs:pRelocation (Results 1 – 17 of 17) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
DRelocData.cpp46 RelocData& RelocData::append(Relocation& pRelocation) { in append() argument
47 m_Relocations.push_back(&pRelocation); in append()
51 Relocation& RelocData::remove(Relocation& pRelocation) { in remove() argument
52 iterator iter(pRelocation); in remove()
DRelocationFactory.cpp83 void RelocationFactory::destroy(Relocation* pRelocation) { in destroy() argument
/frameworks/compile/mclinker/lib/Fragment/
DRelocation.cpp54 void Relocation::Destroy(Relocation*& pRelocation) { in Destroy() argument
55 g_RelocationFactory->destroy(pRelocation); in Destroy()
56 pRelocation = NULL; in Destroy()
/frameworks/compile/mclinker/lib/Target/X86/
DX86Relocator.h67 virtual Result applyRelocation(Relocation& pRelocation) = 0;
129 Result applyRelocation(Relocation& pRelocation);
193 Result applyRelocation(Relocation& pRelocation);
DX86Relocator.cpp278 Relocator::Result X86_32Relocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument
279 Relocation::Type type = pRelocation.type(); in applyRelocation()
286 return X86_32ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
1237 Relocator::Result X86_64Relocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument
1238 Relocation::Type type = pRelocation.type(); in applyRelocation()
1245 return X86_64ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
/frameworks/compile/mclinker/include/mcld/LD/
DRelocData.h73 RelocData& append(Relocation& pRelocation);
74 Relocation& remove(Relocation& pRelocation);
DRelocationFactory.h49 void destroy(Relocation* pRelocation);
DRelocator.h41 virtual Result applyRelocation(Relocation& pRelocation) = 0;
/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.h64 Result applyRelocation(Relocation& pRelocation);
DARMRelocator.cpp307 Relocator::Result ARMRelocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument
308 Relocation::Type type = pRelocation.type(); in applyRelocation()
313 return ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
/frameworks/compile/mclinker/include/mcld/Fragment/
DRelocation.h66 static void Destroy(Relocation*& pRelocation);
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64Relocator.h65 Result applyRelocation(Relocation& pRelocation);
DAArch64Relocator.cpp72 Relocator::Result AArch64Relocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument
73 Relocation::Type type = pRelocation.type(); in applyRelocation()
79 return ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonRelocator.h70 Result applyRelocation(Relocation& pRelocation);
DHexagonRelocator.cpp176 Relocator::Result HexagonRelocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument
177 Relocation::Type type = pRelocation.type(); in applyRelocation()
184 return ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
/frameworks/compile/mclinker/include/mcld/
DIRBuilder.h318 static void AppendRelocation(Relocation& pRelocation, RelocData& pRD);
/frameworks/compile/mclinker/lib/Core/
DIRBuilder.cpp369 void IRBuilder::AppendRelocation(Relocation& pRelocation, RelocData& pRD) { in AppendRelocation() argument
370 pRD.append(pRelocation); in AppendRelocation()