Searched refs:oat_method (Results 1 – 4 of 4) sorted by relevance
/art/oatdump/ |
D | oatdump.cc | 231 void WalkOatMethod(const OatFile::OatMethod& oat_method, in WalkOatMethod() argument 242 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader(); in WalkOatMethod() 248 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset(); in WalkOatMethod() 260 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second; in WalkOatMethod() 562 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets() argument 563 uint32_t code_offset = oat_method.GetCodeOffset(); in AddOffsets() 568 offsets_.insert(oat_method.GetVmapTableOffset()); in AddOffsets() 797 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod() local 798 uint32_t code_offset = oat_method.GetCodeOffset(); in DumpOatMethod() 799 uint32_t code_size = oat_method.GetQuickCodeSize(); in DumpOatMethod() [all …]
|
/art/compiler/ |
D | oat_test.cc | 60 const OatFile::OatMethod& oat_method, in CheckMethod() argument 68 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << PrettyMethod(method) << " " in CheckMethod() 69 << oat_method.GetQuickCode(); in CheckMethod() 70 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U); in CheckMethod() 71 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U); in CheckMethod() 72 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U); in CheckMethod() 74 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod() 76 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); in CheckMethod() 77 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); in CheckMethod() 78 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask()); in CheckMethod()
|
/art/runtime/ |
D | art_method.cc | 363 OatFile::OatMethod oat_method = in GetQuickenedInfo() local 365 if (!found || (oat_method.GetQuickCode() != nullptr)) { in GetQuickenedInfo() 368 return oat_method.GetVmapTable(); in GetQuickenedInfo() 427 OatFile::OatMethod oat_method = class_linker->FindOatMethodFor(this, &found); in GetOatQuickMethodHeader() local 446 const void* oat_entry_point = oat_method.GetQuickCode(); in GetOatQuickMethodHeader()
|
D | class_linker.cc | 2722 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found); in GetQuickOatCodeFor() local 2724 auto* code = oat_method.GetQuickCode(); in GetQuickOatCodeFor() 2741 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found); in GetOatMethodQuickCodeFor() local 2743 return oat_method.GetQuickCode(); in GetOatMethodQuickCodeFor() 2830 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() local 2831 quick_code = oat_method.GetQuickCode(); in FixupStaticTrampolines() 2864 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() local 2865 oat_method.LinkMethod(method); in LinkCode() 7737 OatFile::OatMethod oat_method = CreateOatMethod(method_code); in SetEntryPointsToCompiledCode() local 7738 oat_method.LinkMethod(method); in SetEntryPointsToCompiledCode() [all …]
|