Home
last modified time | relevance | path

Searched refs:patches (Results 1 – 9 of 9) sorted by relevance

/art/compiler/linker/x86/
Drelative_patcher_x86_test.cc45 LinkerPatch patches[] = { in TEST_F() local
48 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
87 LinkerPatch patches[] = { in TEST_F() local
90 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
114 LinkerPatch patches[] = { in TEST_F() local
117 AddCompiledMethod(MethodRef(1u), code, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
/art/compiler/linker/x86_64/
Drelative_patcher_x86_64_test.cc55 LinkerPatch patches[] = { in TEST_F() local
58 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
97 LinkerPatch patches[] = { in TEST_F() local
100 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
117 LinkerPatch patches[] = { in TEST_F() local
120 AddCompiledMethod(MethodRef(1u), kDexCacheLoadCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
/art/compiler/
Dcompiled_method.cc135 const ArrayRef<const LinkerPatch>& patches) in CompiledMethod() argument
140 patches_(patches.begin(), patches.end(), driver->GetSwapSpaceAllocator()) { in CompiledMethod()
182 const ArrayRef<const LinkerPatch>& patches) { in SwapAllocCompiledMethod() argument
187 cfi_info, patches); in SwapAllocCompiledMethod()
Dcompiled_method.h323 const ArrayRef<const LinkerPatch>& patches);
339 const ArrayRef<const LinkerPatch>& patches);
/art/compiler/linker/arm/
Drelative_patcher_thumb2_test.cc134 LinkerPatch patches[] = { in TestDexCachereference() local
138 AddCompiledMethod(MethodRef(1u), code, ArrayRef<const LinkerPatch>(patches)); in TestDexCachereference()
181 LinkerPatch patches[] = { in TEST_F() local
184 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
221 LinkerPatch patches[] = { in TEST_F() local
224 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
/art/compiler/linker/arm64/
Drelative_patcher_arm64_test.cc182 LinkerPatch patches[] = { in TestNopsAdrpLdr() local
187 ArrayRef<const LinkerPatch>(patches)); in TestNopsAdrpLdr()
211 LinkerPatch patches[] = { in PrepareNopsAdrpInsn2Ldr() local
216 ArrayRef<const LinkerPatch>(patches)); in PrepareNopsAdrpInsn2Ldr()
334 LinkerPatch patches[] = { in TEST_F() local
337 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
374 LinkerPatch patches[] = { in TEST_F() local
377 AddCompiledMethod(MethodRef(1u), kCallCode, ArrayRef<const LinkerPatch>(patches)); in TEST_F()
/art/compiler/linker/
Drelative_patcher_test.h72 const ArrayRef<const LinkerPatch>& patches) { in AddCompiledMethod() argument
78 patches)); in AddCompiledMethod()
/art/runtime/
Delf_file_impl.h124 static void ApplyOatPatches(const uint8_t* patches, const uint8_t* patches_end, Elf_Addr delta,
Delf_file.cc1442 const uint8_t* patches, const uint8_t* patches_end, Elf_Addr delta, in ApplyOatPatches() argument
1445 while (patches < patches_end) { in ApplyOatPatches()
1446 to_patch += DecodeUnsignedLeb128(&patches); in ApplyOatPatches()
1447 DCHECK_LE(patches, patches_end) << "Unexpected end of patch list."; in ApplyOatPatches()