Home
last modified time | relevance | path

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

/art/profman/
Dboot_image_profile.cc61 Hotness hotness = profile->GetMethodHotness(ref); in GenerateBootImageProfile() local
62 if (hotness.IsInProfile()) { in GenerateBootImageProfile()
64 out_profile->AddMethodHotness(ref, hotness); in GenerateBootImageProfile()
72 Hotness hotness; in GenerateBootImageProfile() local
73 hotness.AddFlag(Hotness::kFlagHot); in GenerateBootImageProfile()
74 out_profile->AddMethodHotness(ref, hotness); in GenerateBootImageProfile()
/art/test/674-hotness-compiled/
Drun17 ${RUN} "$@" -Xcompiler-option --count-hotness-in-compiled-code
Dinfo.txt1 Test for the --count-hotness-in-compiled-code compiler option.
/art/libprofile/profile/
Dprofile_compilation_info.cc1726 const MethodHotness& hotness) { in AddMethodHotness() argument
1731 static_cast<MethodHotness::Flag>(hotness.GetFlags()), method_ref.index); in AddMethodHotness()
1749 MethodHotness hotness(GetMethodHotness(dex_location, dex_checksum, dex_method_index)); in GetMethod() local
1750 if (!hotness.IsHot()) { in GetMethod()
1753 const InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in GetMethod()
1888 MethodHotness hotness = dex_data->GetHotnessInfo(method_idx); in GetClassesAndMethods() local
1889 if (hotness.IsStartup()) { in GetClassesAndMethods()
1892 if (hotness.IsPostStartup()) { in GetClassesAndMethods()
Dprofile_compilation_info.h309 bool AddMethodHotness(const MethodReference& method_ref, const MethodHotness& hotness);
/art/runtime/jit/
Dprofile_saver.cc912 ProfileCompilationInfo::MethodHotness hotness = info.GetMethodHotness(ref); in HasSeenMethod() local
916 return hotness.IsInProfile(); in HasSeenMethod()
/art/dexlayout/
Ddexlayout.cc1760 Hotness hotness = info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems() local
1762 if (hotness.IsHot()) { in LayoutCodeItems()
1766 } else if (is_startup_clinit || hotness.GetFlags() == Hotness::kFlagStartup) { in LayoutCodeItems()
1771 } else if (hotness.IsInProfile()) { in LayoutCodeItems()
/art/runtime/interpreter/mterp/arm/
Dmain.S422 mov rPROFILE, r0 @ Starting hotness countdown to rPROFILE
/art/runtime/interpreter/mterp/mips64/
Dmain.S418 move rPROFILE, v0 # Starting hotness countdown to rPROFILE
/art/dex2oat/driver/
Dcompiler_driver.cc711 ProfileCompilationInfo::MethodHotness hotness = in ResolveConstStrings() local
713 if (added_preresolved_string_array ? !hotness.IsStartup() : !hotness.IsInProfile()) { in ResolveConstStrings()
/art/runtime/interpreter/mterp/mips/
Dmain.S798 move rPROFILE, v0 # Starting hotness countdown to rPROFILE
/art/dex2oat/linker/
Doat_writer.cc1063 bool hotness[] = { in GetMethodHotnessOrder() local
1075 for (size_t i = 0; i < arraysize(hotness); ++i) { in GetMethodHotnessOrder()
1076 if (hotness[i]) { in GetMethodHotnessOrder()