Home
last modified time | relevance | path

Searched refs:oat_method (Results 1 – 5 of 5) sorted by relevance

/art/compiler/
Doat_test.cc39 const OatFile::OatMethod& oat_method, in CheckMethod() argument
47 EXPECT_TRUE(oat_method.GetQuickCode() == NULL) << PrettyMethod(method) << " " in CheckMethod()
48 << oat_method.GetQuickCode(); in CheckMethod()
49 EXPECT_TRUE(oat_method.GetPortableCode() == NULL) << PrettyMethod(method) << " " in CheckMethod()
50 << oat_method.GetPortableCode(); in CheckMethod()
51 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U); in CheckMethod()
52 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U); in CheckMethod()
53 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U); in CheckMethod()
55 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod()
57 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); in CheckMethod()
[all …]
Dcommon_compiler_test.cc208 OatFile::OatMethod oat_method = CreateOatMethod(method_code); in MakeExecutable() local
209 oat_method.LinkMethod(method); in MakeExecutable()
220 OatFile::OatMethod oat_method = CreateOatMethod(method_code); in MakeExecutable() local
221 oat_method.LinkMethod(method); in MakeExecutable()
226 OatFile::OatMethod oat_method = CreateOatMethod(method_code); in MakeExecutable() local
227 oat_method.LinkMethod(method); in MakeExecutable()
/art/oatdump/
Doatdump.cc350 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets() argument
351 uint32_t code_offset = oat_method.GetCodeOffset(); in AddOffsets()
356 offsets_.insert(oat_method.GetMappingTableOffset()); in AddOffsets()
357 offsets_.insert(oat_method.GetVmapTableOffset()); in AddOffsets()
358 offsets_.insert(oat_method.GetGcMapOffset()); in AddOffsets()
474 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod() local
490 uint32_t code_offset = oat_method.GetCodeOffset(); in DumpOatMethod()
492 uint32_t aligned_code_begin = AlignCodeOffset(oat_method.GetCodeOffset()); in DumpOatMethod()
503 *indent2_os << StringPrintf("%p ", oat_method.GetGcMap()); in DumpOatMethod()
505 uint32_t gc_map_offset = oat_method.GetGcMapOffset(); in DumpOatMethod()
[all …]
/art/runtime/
Dclass_linker.cc2392 bool ClassLinker::FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method) { in FindOatMethodFor() argument
2393 DCHECK(oat_method != nullptr); in FindOatMethodFor()
2429 *oat_method = oat_class.GetOatMethod(oat_method_index); in FindOatMethodFor()
2439 OatFile::OatMethod oat_method; in GetQuickOatCodeFor() local
2441 if (FindOatMethodFor(method, &oat_method)) { in GetQuickOatCodeFor()
2442 result = oat_method.GetQuickCode(); in GetQuickOatCodeFor()
2470 OatFile::OatMethod oat_method; in GetPortableOatCodeFor() local
2473 if (FindOatMethodFor(method, &oat_method)) { in GetPortableOatCodeFor()
2474 result = oat_method.GetPortableCode(); in GetPortableOatCodeFor()
2475 quick_code = oat_method.GetQuickCode(); in GetPortableOatCodeFor()
[all …]
Dclass_linker.h431 bool FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method)