/art/test/2230-profile-save-hotness/ |
D | Android.bp | 3 // Build rules for ART run-test `2230-profile-save-hotness`. 16 name: "art-run-test-2230-profile-save-hotness", 21 ":art-run-test-2230-profile-save-hotness-expected-stdout", 22 ":art-run-test-2230-profile-save-hotness-expected-stderr", 28 name: "art-run-test-2230-profile-save-hotness-expected-stdout", 29 out: ["art-run-test-2230-profile-save-hotness-expected-stdout.txt"], 36 name: "art-run-test-2230-profile-save-hotness-expected-stderr", 37 out: ["art-run-test-2230-profile-save-hotness-expected-stderr.txt"],
|
D | info.txt | 1 Check that profile recording with AOT hotness.
|
D | run | 17 -Xcompiler-option --count-hotness-in-compiled-code \
|
/art/test/674-hotness-compiled/ |
D | Android.bp | 3 // Build rules for ART run-test `674-hotness-compiled`. 16 name: "art-run-test-674-hotness-compiled", 21 ":art-run-test-674-hotness-compiled-expected-stdout", 22 ":art-run-test-674-hotness-compiled-expected-stderr", 28 name: "art-run-test-674-hotness-compiled-expected-stdout", 29 out: ["art-run-test-674-hotness-compiled-expected-stdout.txt"], 36 name: "art-run-test-674-hotness-compiled-expected-stderr", 37 out: ["art-run-test-674-hotness-compiled-expected-stderr.txt"],
|
D | run | 17 ${RUN} "$@" -Xcompiler-option --count-hotness-in-compiled-code
|
D | info.txt | 1 Test for the --count-hotness-in-compiled-code compiler option.
|
/art/test/595-profile-saving/ |
D | profile-saving.cc | 79 const ProfileCompilationInfo::MethodHotness hotness = info.GetMethodHotness(ref); in Java_Main_presentInProfile() local 82 return hotness.IsHot() ? JNI_TRUE : JNI_FALSE; in Java_Main_presentInProfile()
|
/art/profman/ |
D | profile_assistant_test.cc | 346 ProfileCompilationInfo::MethodHotness hotness = in AssertInlineCaches() local 348 ASSERT_TRUE(hotness.IsHot()); in AssertInlineCaches() 349 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in AssertInlineCaches() 364 ProfileCompilationInfo::MethodHotness hotness = in AssertInlineCaches() local 366 ASSERT_TRUE(hotness.IsHot()); in AssertInlineCaches() 367 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in AssertInlineCaches() 866 ProfileCompilationInfo::MethodHotness hotness = in TEST_F() local 868 ASSERT_TRUE(hotness.IsHot()) << method.PrettyMethod(); in TEST_F() 1670 ProfileCompilationInfo::MethodHotness hotness = in TEST_F() local 1672 ASSERT_FALSE(hotness.IsHot()); in TEST_F()
|
D | profman.cc | 798 ProfileCompilationInfo::MethodHotness hotness = in GetInlineCacheLine() local 800 DCHECK(!hotness.IsHot() || hotness.GetInlineCacheMap() != nullptr); in GetInlineCacheLine() 801 if (!hotness.IsHot() || hotness.GetInlineCacheMap()->empty()) { in GetInlineCacheLine() 804 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in GetInlineCacheLine()
|
/art/libprofile/profile/ |
D | profile_compilation_info.cc | 2102 MethodHotness hotness = dex_data->GetHotnessInfo(method_idx); in GetClassesAndMethods() local 2103 if (hotness.IsStartup()) { in GetClassesAndMethods() 2106 if (hotness.IsPostStartup()) { in GetClassesAndMethods() 2896 MethodHotness hotness = dex_data->GetHotnessInfo(method_idx); in ExtractProfileData() local 2897 if (!hotness.IsInProfile()) { in ExtractProfileData() 2905 metadata.flags_ |= hotness.flags_; in ExtractProfileData()
|
D | profile_compilation_info_test.cc | 665 Hotness hotness = GetMethod(info, dex2, /*method_idx=*/ 0); in TEST_F() local 666 ASSERT_TRUE(hotness.IsHot()); in TEST_F() 667 ASSERT_TRUE(EqualInlineCaches(inline_caches, dex2, hotness, info)); in TEST_F() 668 const ProfileCompilationInfo::InlineCacheMap* inline_cache_map = hotness.GetInlineCacheMap(); in TEST_F()
|
/art/dexlayout/ |
D | dexlayout.cc | 1831 Hotness hotness = info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems() local 1833 if (hotness.IsHot()) { in LayoutCodeItems() 1837 } else if (is_startup_clinit || hotness.GetFlags() == Hotness::kFlagStartup) { in LayoutCodeItems() 1842 } else if (hotness.IsInProfile()) { in LayoutCodeItems()
|
/art/compiler/optimizing/ |
D | inliner.cc | 653 ProfileCompilationInfo::MethodHotness hotness = pci->GetMethodHotness(MethodReference( in GetInlineCacheAOT() local 655 if (!hotness.IsHot()) { in GetInlineCacheAOT() 659 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in GetInlineCacheAOT()
|
/art/runtime/interpreter/mterp/arm64ng/ |
D | main.S | 305 #error Expected 0 for hotness value 427 #error Expected 0 for hotness value
|
/art/runtime/interpreter/mterp/x86ng/ |
D | main.S | 307 #error Expected 0 for hotness value 973 #error Expected 0 for hotness value
|
/art/runtime/interpreter/mterp/x86_64ng/ |
D | main.S | 265 #error Expected 0 for hotness value 827 #error Expected 0 for hotness value
|