Home
last modified time | relevance | path

Searched refs:GetMethodHotness (Results 1 – 9 of 9) sorted by relevance

/art/runtime/jit/
Dprofile_compilation_info_test.cc362 Hotness h = info1.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
381 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
386 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
751 Hotness h = info.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
925 EXPECT_FALSE(info.GetMethodHotness(kDex1, kChecksum1, 2).IsInProfile()); in TEST_F()
926 EXPECT_FALSE(info.GetMethodHotness(kDex1, kChecksum1, 4).IsInProfile()); in TEST_F()
927 EXPECT_TRUE(info.GetMethodHotness(kDex1, kChecksum1, 1).IsStartup()); in TEST_F()
928 EXPECT_FALSE(info.GetMethodHotness(kDex1, kChecksum1, 3).IsStartup()); in TEST_F()
929 EXPECT_TRUE(info.GetMethodHotness(kDex1, kChecksum1, 5).IsPostStartup()); in TEST_F()
930 EXPECT_FALSE(info.GetMethodHotness(kDex1, kChecksum1, 6).IsStartup()); in TEST_F()
[all …]
Dprofile_compilation_info.h359 MethodHotness GetMethodHotness(const MethodReference& method_ref) const;
360 MethodHotness GetMethodHotness(const std::string& dex_location,
Dprofile_compilation_info.cc1562 ProfileCompilationInfo::MethodHotness ProfileCompilationInfo::GetMethodHotness( in GetMethodHotness() function in art::ProfileCompilationInfo
1581 ProfileCompilationInfo::MethodHotness ProfileCompilationInfo::GetMethodHotness( in GetMethodHotness() function in art::ProfileCompilationInfo
1594 MethodHotness hotness(GetMethodHotness(dex_location, dex_checksum, dex_method_index)); in GetMethod()
Dprofile_saver.cc847 ProfileCompilationInfo::MethodHotness hotness = info.GetMethodHotness(ref); in HasSeenMethod()
/art/profman/
Dboot_image_profile.cc60 Hotness hotness = profile->GetMethodHotness(ref); in GenerateBootImageProfile()
Dprofman.cc1005 DCHECK(profile->GetMethodHotness(ref).IsInProfile()); in ProcessLine()
/art/dexlayout/
Ddex_visualize.cc179 if (!profile_info->GetMethodHotness(MethodReference(dex_file, method_idx)).IsHot()) { in DumpMethodItem()
Ddexlayout.cc1648 info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())).IsInProfile(); in LayoutStringData()
1757 Hotness hotness = info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems()
/art/compiler/driver/
Dcompiler_driver.cc999 bool result = profile_compilation_info_->GetMethodHotness(method_ref).IsHot(); in ShouldCompileBasedOnProfile()