Searched refs:GetMethodHotness (Results 1 – 9 of 9) sorted by relevance
/art/runtime/jit/ |
D | profile_compilation_info_test.cc | 362 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 …]
|
D | profile_compilation_info.h | 359 MethodHotness GetMethodHotness(const MethodReference& method_ref) const; 360 MethodHotness GetMethodHotness(const std::string& dex_location,
|
D | profile_compilation_info.cc | 1562 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()
|
D | profile_saver.cc | 847 ProfileCompilationInfo::MethodHotness hotness = info.GetMethodHotness(ref); in HasSeenMethod()
|
/art/profman/ |
D | boot_image_profile.cc | 60 Hotness hotness = profile->GetMethodHotness(ref); in GenerateBootImageProfile()
|
D | profman.cc | 1005 DCHECK(profile->GetMethodHotness(ref).IsInProfile()); in ProcessLine()
|
/art/dexlayout/ |
D | dex_visualize.cc | 179 if (!profile_info->GetMethodHotness(MethodReference(dex_file, method_idx)).IsHot()) { in DumpMethodItem()
|
D | dexlayout.cc | 1648 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/ |
D | compiler_driver.cc | 999 bool result = profile_compilation_info_->GetMethodHotness(method_ref).IsHot(); in ShouldCompileBasedOnProfile()
|