Home
last modified time | relevance | path

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

/art/libprofile/profile/
Dprofile_compilation_info_test.cc72 return info.GetMethodHotness(MethodReference(dex, method_idx), annotation); in GetMethod()
821 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 2)).IsInProfile()); in TEST_F()
822 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 4)).IsInProfile()); in TEST_F()
823 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 1)).IsStartup()); in TEST_F()
824 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 3)).IsStartup()); in TEST_F()
825 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex1, 5)).IsPostStartup()); in TEST_F()
826 EXPECT_FALSE(info.GetMethodHotness(MethodReference(dex1, 6)).IsStartup()); in TEST_F()
827 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex2, 2)).IsStartup()); in TEST_F()
828 EXPECT_TRUE(info.GetMethodHotness(MethodReference(dex2, 4)).IsPostStartup()); in TEST_F()
843 EXPECT_FALSE(test_info.GetMethodHotness(MethodReference(dex1, 11)).IsStartup()); in TEST_F()
[all …]
Dprofile_compilation_info.h527 MethodHotness GetMethodHotness(
Dprofile_compilation_info.cc2061 ProfileCompilationInfo::MethodHotness ProfileCompilationInfo::GetMethodHotness( in GetMethodHotness() function in art::ProfileCompilationInfo
/art/runtime/jit/
Dprofiling_info_test.cc202 Hotness h = info1.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
222 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
227 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F()
263 Hotness h = info.GetMethodHotness(method_ref); in TEST_F()
267 ProfileCompilationInfo::MethodHotness offline_hotness = info.GetMethodHotness(method_ref); in TEST_F()
/art/profman/
Dprofile_assistant_test.cc349 info.GetMethodHotness(MethodReference(method->GetDexFile(), method->GetDexMethodIndex())); in AssertInlineCaches()
367 info.GetMethodHotness(MethodReference(method->GetDexFile(), method->GetDexMethodIndex())); in AssertInlineCaches()
847 info.GetMethodHotness(MethodReference(method.GetDexFile(), method.GetDexMethodIndex())); in TEST_F()
1338 ProfileCompilationInfo::MethodHotness hotness_no_inline_cache = info.GetMethodHotness( in TEST_F()
1478 ProfileCompilationInfo::MethodHotness hotness_no_inline_cache = info.GetMethodHotness( in TEST_F()
1555 ProfileCompilationInfo::MethodHotness hotness_super = info.GetMethodHotness( in TEST_F()
1574 info.GetMethodHotness(MethodReference(dex_file, sub_method_index)); in TEST_F()
1650 info.GetMethodHotness(MethodReference(dex_file, inline_monomorphic->GetDexMethodIndex())); in TEST_F()
2013 ASSERT_TRUE(result.GetMethodHotness(MethodReference(&d1, i)).IsHot()) << i; in TEST_F()
2014 ASSERT_TRUE(result.GetMethodHotness(MethodReference(&d2, i)).IsHot()) << i; in TEST_F()
[all …]
Dprofman.cc813 profile_info.GetMethodHotness(MethodReference(dex_file, dex_method_idx)); in GetInlineCacheLine()
1645 DCHECK(profile->GetMethodHotness(ref, annotation).IsInProfile()) << method_spec; in ProcessLine()
/art/test/common/
Druntime_state.cc546 return info.GetMethodHotness(ref); in GetMethodHotnessFromProfile()
/art/compiler/optimizing/
Dinliner.cc744 ProfileCompilationInfo::MethodHotness hotness = pci->GetMethodHotness(MethodReference( in GetInlineCacheAOT()