Home
last modified time | relevance | path

Searched refs:quick_oat_code (Results 1 – 3 of 3) sorted by relevance

/art/compiler/
Doat_test.cc55 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod() local
56 if (quick_oat_code != nullptr) { in CheckMethod()
60 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2); in CheckMethod()
61 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned); in CheckMethod()
65 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size)) in CheckMethod()
67 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size)); in CheckMethod()
79 EXPECT_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size)) in CheckMethod()
81 CHECK_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size)); in CheckMethod()
Delf_patcher.cc134 const void* quick_oat_code = class_linker->GetQuickOatCodeFor(patch->GetDexFile(), in SetPatchLocation() local
138 uint8_t* base = reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(quick_oat_code) & ~0x1); in SetPatchLocation()
220 const void* quick_oat_code = in PatchElf() local
229 quick_oat_code = in PatchElf()
230 reinterpret_cast<const void*>(reinterpret_cast<uintptr_t>(quick_oat_code) + in PatchElf()
233 uintptr_t base = reinterpret_cast<uintptr_t>(quick_oat_code); in PatchElf()
/art/oatdump/
Doatdump.cc1307 const void* quick_oat_code = state->GetQuickOatCodeBegin(method); in Callback() local
1309 state->ComputeOatSize(quick_oat_code, &first_occurrence); in Callback()
1313 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCode()) { in Callback()
1314 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code); in Callback()