Searched refs:GetMethodHotness (Results 1 – 11 of 11) sorted by relevance
/art/libprofile/profile/ |
D | profile_compilation_info_test.cc | 777 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 …]
|
D | profile_compilation_info.h | 451 MethodHotness GetMethodHotness(
|
D | profile_compilation_info.cc | 1596 ProfileCompilationInfo::MethodHotness ProfileCompilationInfo::GetMethodHotness( in GetMethodHotness() function in art::ProfileCompilationInfo 1608 MethodHotness hotness(GetMethodHotness(method_ref, annotation)); in GetHotMethodInfo()
|
/art/runtime/jit/ |
D | profiling_info_test.cc | 224 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()
|
D | profile_saver.cc | 935 const ProfileCompilationInfo::MethodHotness hotness = info.GetMethodHotness(ref); in HasSeenMethod()
|
/art/dexlayout/ |
D | dex_visualize.cc | 179 if (!profile_info->GetMethodHotness(MethodReference(dex_file, method_idx)).IsHot()) { in DumpMethodItem()
|
D | dexlayout.cc | 1653 info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())).IsInProfile(); in LayoutStringData() 1761 Hotness hotness = info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1407 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsHot()); in TEST_F() 1408 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F() 1411 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsStartup()); in TEST_F() 1414 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex.get(), id)).IsPostStartup()); in TEST_F()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 716 profile_compilation_info->GetMethodHotness(method.GetReference()); in ResolveConstStrings() 963 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot(); in ShouldCompileBasedOnProfile()
|
/art/profman/ |
D | profman.cc | 1191 DCHECK(profile->GetMethodHotness(ref, annotation).IsInProfile()) << method_spec; in ProcessLine()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 1220 ? writer_->profile_compilation_info_->GetMethodHotness(method_ref) in VisitMethod()
|