Home
last modified time | relevance | path

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

/art/oatdump/
Doatdump.cc287 void WalkOatMethod(const OatFile::OatMethod& oat_method, in WalkOatMethod() argument
298 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader(); in WalkOatMethod()
304 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset(); in WalkOatMethod()
316 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second; in WalkOatMethod()
870 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets() argument
871 uint32_t code_offset = oat_method.GetCodeOffset(); in AddOffsets()
876 offsets_.insert(oat_method.GetVmapTableOffset()); in AddOffsets()
1130 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod() local
1131 uint32_t code_offset = oat_method.GetCodeOffset(); in DumpOatMethod()
1132 uint32_t code_size = oat_method.GetQuickCodeSize(); in DumpOatMethod()
[all …]
/art/dex2oat/linker/
Doat_writer_test.cc61 const OatFile::OatMethod& oat_method, in CheckMethod() argument
69 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << method->PrettyMethod() << " " in CheckMethod()
70 << oat_method.GetQuickCode(); in CheckMethod()
71 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U); in CheckMethod()
72 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U); in CheckMethod()
73 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U); in CheckMethod()
75 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod()
/art/runtime/
Dart_method.cc626 OatFile::OatMethod oat_method = in GetOatQuickMethodHeader() local
642 const void* oat_entry_point = oat_method.GetQuickCode(); in GetOatQuickMethodHeader()
664 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); in GetOatMethodQuickCode() local
666 return oat_method.GetQuickCode(); in GetOatMethodQuickCode()
Dclass_linker.cc3446 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() local
3447 quick_code = oat_method.GetQuickCode(); in FixupStaticTrampolines()
3490 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() local
3491 oat_method.LinkMethod(method); in LinkCode()