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

/art/compiler/
H A Doat_test.cc55 const void* quick_oat_code = oat_method.GetQuickCode(); local
56 if (quick_oat_code != nullptr) {
60 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
61 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
65 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
67 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
79 EXPECT_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size))
81 CHECK_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size));
H A Delf_patcher.cc144 const void* quick_oat_code = class_linker->GetQuickOatCodeFor(patch->GetDexFile(), local
148 uint8_t* base = reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(quick_oat_code) & ~0x1);
231 const void* quick_oat_code = local
240 quick_oat_code =
241 reinterpret_cast<const void*>(reinterpret_cast<uintptr_t>(quick_oat_code) +
244 uintptr_t base = reinterpret_cast<uintptr_t>(quick_oat_code);
/art/oatdump/
H A Doatdump.cc1320 const void* quick_oat_code = state->GetQuickOatCodeBegin(method); local
1322 state->ComputeOatSize(quick_oat_code, &first_occurrence);
1326 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCodePtrSize(
1328 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);

Completed in 2611 milliseconds