Searched defs:quick_oat_code (Results 1 - 2 of 2) sorted by relevance

/art/compiler/
H A Doat_test.cc59 const void* quick_oat_code = oat_method.GetQuickCode(); local
60 EXPECT_TRUE(quick_oat_code != nullptr) << PrettyMethod(method);
64 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
65 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
69 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
71 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
/art/oatdump/
H A Doatdump.cc1807 const void* quick_oat_code = state->GetQuickOatCodeBegin(method); local
1809 state->ComputeOatSize(quick_oat_code, &first_occurrence);
1813 if (quick_oat_code != method->GetEntryPointFromQuickCompiledCodePtrSize(image_pointer_size)) {
1814 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);

Completed in 1134 milliseconds