Home
last modified time | relevance | path

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

/art/libprofile/profile/
Dprofile_compilation_info_test.cc777 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 2)).IsInProfile()); in TEST_F()
778 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 4)).IsInProfile()); in TEST_F()
779 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 1)).IsStartup()); in TEST_F()
780 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 3)).IsStartup()); in TEST_F()
781 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 5)).IsPostStartup()); in TEST_F()
782 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 6)).IsStartup()); in TEST_F()
783 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex2, 2)).IsStartup()); in TEST_F()
784 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex2, 4)).IsPostStartup()); in TEST_F()
800 EXPECT_FALSE(test_info.GetMethodHotness(MethodReference(dex1, 11)).IsStartup()); in TEST_F()
806 EXPECT_TRUE(test_info.GetMethodHotness(MethodReference(dex1, 11)).IsStartup()); in TEST_F()
[all …]
Dprofile_compilation_info.h451 MethodHotness GetMethodHotness(
Dprofile_compilation_info.cc1596 ProfileCompilationInfo::MethodHotness ProfileCompilationInfo::GetMethodHotness( in GetMethodHotness() function in art::ProfileCompilationInfo
1608 MethodHotness hotness(GetMethodHotness(method_ref, annotation)); in GetHotMethodInfo()
/art/runtime/jit/
Dprofiling_info_test.cc224 Hotness h = info1.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
245 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
250 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
286 Hotness h = info.GetMethodHotness(method_ref); in TEST_F()
Dprofile_saver.cc935 const ProfileCompilationInfo::MethodHotness hotness = info.GetMethodHotness(ref); in HasSeenMethod()
/art/dexlayout/
Ddex_visualize.cc179 if (!profile_info->GetMethodHotness(MethodReference(dex_file, method_idx)).IsHot()) { in DumpMethodItem()
Ddexlayout.cc1656 info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())).IsInProfile(); in LayoutStringData()
1764 Hotness hotness = info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems()
/art/dex2oat/
Ddex2oat_test.cc1396 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsHot()); in TEST_F()
1397 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F()
1400 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F()
1403 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsPostStartup()); in TEST_F()
/art/profman/
Dprofman.cc1191 DCHECK(profile->GetMethodHotness(ref, annotation).IsInProfile()) << method_spec; in ProcessLine()
/art/dex2oat/driver/
Dcompiler_driver.cc713 profile_compilation_info->GetMethodHotness(method.GetReference()); in ResolveConstStrings()
960 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot(); in ShouldCompileBasedOnProfile()
/art/dex2oat/linker/
Doat_writer.cc1231 ? writer_->profile_compilation_info_->GetMethodHotness(method_ref) in VisitMethod()