Home
last modified time | relevance | path

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

/art/oatdump/
Doatdump.cc247 void WalkOatMethod(const OatFile::OatMethod& oat_method, in WalkOatMethod() argument
258 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader(); in WalkOatMethod()
264 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset(); in WalkOatMethod()
276 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second; in WalkOatMethod()
781 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets() argument
782 uint32_t code_offset = oat_method.GetCodeOffset(); in AddOffsets()
787 offsets_.insert(oat_method.GetVmapTableOffset()); in AddOffsets()
1144 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod() local
1145 uint32_t code_offset = oat_method.GetCodeOffset(); in DumpOatMethod()
1146 uint32_t code_size = oat_method.GetQuickCodeSize(); in DumpOatMethod()
[all …]
/art/compiler/
Doat_test.cc64 const OatFile::OatMethod& oat_method, in CheckMethod() argument
72 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << method->PrettyMethod() << " " in CheckMethod()
73 << oat_method.GetQuickCode(); in CheckMethod()
74 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U); in CheckMethod()
75 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U); in CheckMethod()
76 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U); in CheckMethod()
78 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod()
80 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); in CheckMethod()
81 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); in CheckMethod()
82 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask()); in CheckMethod()
/art/runtime/
Dart_method.cc579 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); in GetQuickenedInfo() local
580 if (!found || (oat_method.GetQuickCode() != nullptr)) { in GetQuickenedInfo()
584 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader(); in GetQuickenedInfo()
597 return oat_method.GetVmapTable(); in GetQuickenedInfo()
657 OatFile::OatMethod oat_method = in GetOatQuickMethodHeader() local
677 const void* oat_entry_point = oat_method.GetQuickCode(); in GetOatQuickMethodHeader()
699 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); in GetOatMethodQuickCode() local
701 return oat_method.GetQuickCode(); in GetOatMethodQuickCode()
Dclass_linker.cc3018 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() local
3019 quick_code = oat_method.GetQuickCode(); in FixupStaticTrampolines()
3057 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() local
3058 oat_method.LinkMethod(method); in LinkCode()
8526 OatFile::OatMethod oat_method(base, code_offset); in SetEntryPointsToCompiledCode() local
8527 oat_method.LinkMethod(method); in SetEntryPointsToCompiledCode()