Home
last modified time | relevance | path

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

/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/test/2230-profile-save-hotness/
Dinfo.txt1 Check that profile recording with AOT hotness.
Drun17 -Xcompiler-option --count-hotness-in-compiled-code \
/art/libprofile/profile/
Dprofile_compilation_info.cc1608 MethodHotness hotness(GetMethodHotness(method_ref, annotation)); in GetHotMethodInfo() local
1609 if (!hotness.IsHot()) { in GetHotMethodInfo()
1612 const InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in GetHotMethodInfo()
1760 MethodHotness hotness = dex_data->GetHotnessInfo(method_idx); in GetClassesAndMethods() local
1761 if (hotness.IsStartup()) { in GetClassesAndMethods()
1764 if (hotness.IsPostStartup()) { in GetClassesAndMethods()
2323 MethodHotness hotness = dex_data->GetHotnessInfo(method_idx); in ExtractProfileData() local
2324 if (!hotness.IsInProfile()) { in ExtractProfileData()
2332 metadata.flags_ |= hotness.flags_; in ExtractProfileData()
/art/runtime/jit/
Dprofile_saver.cc935 const ProfileCompilationInfo::MethodHotness hotness = info.GetMethodHotness(ref); in HasSeenMethod() local
936 return hot ? hotness.IsHot() : hotness.IsInProfile(); in HasSeenMethod()
/art/dexlayout/
Ddexlayout.cc1761 Hotness hotness = info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems() local
1763 if (hotness.IsHot()) { in LayoutCodeItems()
1767 } else if (is_startup_clinit || hotness.GetFlags() == Hotness::kFlagStartup) { in LayoutCodeItems()
1772 } else if (hotness.IsInProfile()) { in LayoutCodeItems()
/art/runtime/interpreter/mterp/arm/
Dmain.S422 mov rPROFILE, r0 @ Starting hotness countdown to rPROFILE
/art/dex2oat/driver/
Dcompiler_driver.cc715 ProfileCompilationInfo::MethodHotness hotness = in ResolveConstStrings() local
717 if (added_preresolved_string_array ? !hotness.IsStartup() : !hotness.IsInProfile()) { in ResolveConstStrings()
/art/dex2oat/linker/
Doat_writer.cc1084 bool hotness[] = { in GetMethodHotnessOrder() local
1096 for (size_t i = 0; i < arraysize(hotness); ++i) { in GetMethodHotnessOrder()
1097 if (hotness[i]) { in GetMethodHotnessOrder()