Searched refs:pRelocation (Results 1 – 17 of 17) sorted by relevance
46 RelocData& RelocData::append(Relocation& pRelocation) { in append() argument47 m_Relocations.push_back(&pRelocation); in append()51 Relocation& RelocData::remove(Relocation& pRelocation) { in remove() argument52 iterator iter(pRelocation); in remove()
83 void RelocationFactory::destroy(Relocation* pRelocation) { in destroy() argument
54 void Relocation::Destroy(Relocation*& pRelocation) { in Destroy() argument55 g_RelocationFactory->destroy(pRelocation); in Destroy()56 pRelocation = NULL; in Destroy()
67 virtual Result applyRelocation(Relocation& pRelocation) = 0;129 Result applyRelocation(Relocation& pRelocation);193 Result applyRelocation(Relocation& pRelocation);
278 Relocator::Result X86_32Relocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument279 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() argument1238 Relocation::Type type = pRelocation.type(); in applyRelocation()1245 return X86_64ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
73 RelocData& append(Relocation& pRelocation);74 Relocation& remove(Relocation& pRelocation);
49 void destroy(Relocation* pRelocation);
41 virtual Result applyRelocation(Relocation& pRelocation) = 0;
64 Result applyRelocation(Relocation& pRelocation);
307 Relocator::Result ARMRelocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument308 Relocation::Type type = pRelocation.type(); in applyRelocation()313 return ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
66 static void Destroy(Relocation*& pRelocation);
65 Result applyRelocation(Relocation& pRelocation);
72 Relocator::Result AArch64Relocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument73 Relocation::Type type = pRelocation.type(); in applyRelocation()79 return ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
70 Result applyRelocation(Relocation& pRelocation);
176 Relocator::Result HexagonRelocator::applyRelocation(Relocation& pRelocation) { in applyRelocation() argument177 Relocation::Type type = pRelocation.type(); in applyRelocation()184 return ApplyFunctions[type].func(pRelocation, *this); in applyRelocation()
318 static void AppendRelocation(Relocation& pRelocation, RelocData& pRD);
369 void IRBuilder::AppendRelocation(Relocation& pRelocation, RelocData& pRD) { in AppendRelocation() argument370 pRD.append(pRelocation); in AppendRelocation()