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

/art/compiler/
H A Doat_test.cc48 const void* oat_code = oat_method.GetCode(); local
49 EXPECT_TRUE(oat_code != NULL) << PrettyMethod(method);
50 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(oat_code), 2);
51 oat_code = reinterpret_cast<const void*>(oat_code_aligned);
55 EXPECT_EQ(0, memcmp(oat_code, &code[0], code_size))
57 CHECK_EQ(0, memcmp(oat_code, &code[0], code_size));
H A Dimage_writer.cc701 const void* oat_code = class_linker->GetOatCodeFor(patch->GetDexFile(), local
706 uint8_t* base = reinterpret_cast<uint8_t*>(reinterpret_cast<uint32_t>(oat_code) & ~0x1);
/art/oatdump/
H A Doatdump.cc987 const void* oat_code = state->GetOatCodeBegin(method); local
989 state->ComputeOatSize(oat_code, &first_occurrence);
993 if (oat_code != method->GetEntryPointFromCompiledCode()) {
994 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);

Completed in 115 milliseconds