/aosp12/frameworks/compile/mclinker/lib/LD/ |
H A D | RelocData.cpp | 46 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()
|
H A D | RelocationFactory.cpp | 83 void RelocationFactory::destroy(Relocation* pRelocation) { in destroy() argument
|
/aosp12/frameworks/compile/mclinker/lib/Fragment/ |
H A D | Relocation.cpp | 54 void Relocation::Destroy(Relocation*& pRelocation) { in Destroy() argument 55 g_RelocationFactory->destroy(pRelocation); in Destroy() 56 pRelocation = NULL; in Destroy()
|
/aosp12/frameworks/compile/mclinker/lib/Target/X86/ |
H A D | X86Relocator.h | 67 virtual Result applyRelocation(Relocation& pRelocation) = 0; 129 Result applyRelocation(Relocation& pRelocation); 193 Result applyRelocation(Relocation& pRelocation);
|
H A D | X86Relocator.cpp | 278 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()
|
/aosp12/frameworks/compile/mclinker/include/mcld/LD/ |
H A D | RelocData.h | 73 RelocData& append(Relocation& pRelocation); 74 Relocation& remove(Relocation& pRelocation);
|
H A D | RelocationFactory.h | 49 void destroy(Relocation* pRelocation);
|
H A D | Relocator.h | 41 virtual Result applyRelocation(Relocation& pRelocation) = 0;
|
/aosp12/frameworks/compile/mclinker/lib/Target/ARM/ |
H A D | ARMRelocator.h | 64 Result applyRelocation(Relocation& pRelocation);
|
H A D | ARMRelocator.cpp | 307 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()
|
/aosp12/frameworks/compile/mclinker/include/mcld/Fragment/ |
H A D | Relocation.h | 66 static void Destroy(Relocation*& pRelocation);
|
/aosp12/frameworks/compile/mclinker/lib/Target/AArch64/ |
H A D | AArch64Relocator.h | 70 Result applyRelocation(Relocation& pRelocation);
|
H A D | AArch64Relocator.cpp | 72 Relocator::Result AArch64Relocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument 73 Relocation::Type type = pRelocation.type(); in applyRelocation() 81 return ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
|
/aosp12/frameworks/compile/mclinker/lib/Target/Hexagon/ |
H A D | HexagonRelocator.h | 70 Result applyRelocation(Relocation& pRelocation);
|
H A D | HexagonRelocator.cpp | 176 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()
|
/aosp12/frameworks/compile/mclinker/include/mcld/ |
H A D | IRBuilder.h | 318 static void AppendRelocation(Relocation& pRelocation, RelocData& pRD);
|
/aosp12/frameworks/compile/mclinker/lib/Core/ |
H A D | IRBuilder.cpp | 370 void IRBuilder::AppendRelocation(Relocation& pRelocation, RelocData& pRD) { in AppendRelocation() argument 371 pRD.append(pRelocation); in AppendRelocation()
|