Home
last modified time | relevance | path

Searched refs:hotness (Results 1 – 15 of 15) sorted by relevance

/art/test/674-hotness-compiled/
DAndroid.bp3 // 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"],
Drun17 ${RUN} "$@" -Xcompiler-option --count-hotness-in-compiled-code
Dinfo.txt1 Test for the --count-hotness-in-compiled-code compiler option.
/art/test/2230-profile-save-hotness/
Dinfo.txt1 Check that profile recording with AOT hotness.
Drun17 -Xcompiler-option --count-hotness-in-compiled-code \
/art/test/595-profile-saving/
Dprofile-saving.cc79 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/
Dprofile_assistant_test.cc346 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()
Dprofman.cc798 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/
Dprofile_compilation_info.cc2092 MethodHotness hotness = dex_data->GetHotnessInfo(method_idx); in GetClassesAndMethods() local
2093 if (hotness.IsStartup()) { in GetClassesAndMethods()
2096 if (hotness.IsPostStartup()) { in GetClassesAndMethods()
2908 MethodHotness hotness = dex_data->GetHotnessInfo(method_idx); in ExtractProfileData() local
2909 if (!hotness.IsInProfile()) { in ExtractProfileData()
2917 metadata.flags_ |= hotness.flags_; in ExtractProfileData()
Dprofile_compilation_info_test.cc665 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/
Ddexlayout.cc1764 Hotness hotness = info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems() local
1766 if (hotness.IsHot()) { in LayoutCodeItems()
1770 } else if (is_startup_clinit || hotness.GetFlags() == Hotness::kFlagStartup) { in LayoutCodeItems()
1775 } else if (hotness.IsInProfile()) { in LayoutCodeItems()
/art/runtime/interpreter/mterp/arm/
Dmain.S422 mov rPROFILE, r0 @ Starting hotness countdown to rPROFILE
/art/compiler/optimizing/
Dinliner.cc647 ProfileCompilationInfo::MethodHotness hotness = pci->GetMethodHotness(MethodReference( in GetInlineCacheAOT() local
649 if (!hotness.IsHot()) { in GetInlineCacheAOT()
653 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in GetInlineCacheAOT()
/art/dex2oat/driver/
Dcompiler_driver.cc583 ProfileCompilationInfo::MethodHotness hotness = in ResolveConstStrings() local
585 if (only_startup_strings ? !hotness.IsStartup() : !hotness.IsInProfile()) { in ResolveConstStrings()
/art/dex2oat/linker/
Doat_writer.cc1104 bool hotness[] = { in GetMethodHotnessOrder() local
1116 for (size_t i = 0; i < arraysize(hotness); ++i) { in GetMethodHotnessOrder()
1117 if (hotness[i]) { in GetMethodHotnessOrder()