Home
last modified time | relevance | path

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

/art/oatdump/
Doatdump.cc285 void WalkOatMethod(const OatFile::OatMethod& oat_method, in WalkOatMethod() argument
296 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader(); in WalkOatMethod()
302 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset(); in WalkOatMethod()
314 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second; in WalkOatMethod()
852 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets() argument
853 uint32_t code_offset = oat_method.GetCodeOffset(); in AddOffsets()
858 offsets_.insert(oat_method.GetVmapTableOffset()); in AddOffsets()
1112 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod() local
1113 uint32_t code_offset = oat_method.GetCodeOffset(); in DumpOatMethod()
1114 uint32_t code_size = oat_method.GetQuickCodeSize(); in DumpOatMethod()
[all …]
/art/dex2oat/linker/
Doat_writer_test.cc62 const OatFile::OatMethod& oat_method, in CheckMethod() argument
70 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << method->PrettyMethod() << " " in CheckMethod()
71 << oat_method.GetQuickCode(); in CheckMethod()
72 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U); in CheckMethod()
73 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U); in CheckMethod()
74 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U); in CheckMethod()
76 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod()
/art/runtime/
Dart_method.cc596 OatFile::OatMethod oat_method = in GetOatQuickMethodHeader() local
615 const void* oat_entry_point = oat_method.GetQuickCode(); in GetOatQuickMethodHeader()
637 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); in GetOatMethodQuickCode() local
639 return oat_method.GetQuickCode(); in GetOatMethodQuickCode()
Dclass_linker.cc3462 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() local
3463 quick_code = oat_method.GetQuickCode(); in FixupStaticTrampolines()
3529 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() local
3530 quick_code = oat_method.GetQuickCode(); in LinkCode()