Searched refs:hotness (Results 1 – 12 of 12) sorted by relevance
/art/profman/ |
D | boot_image_profile.cc | 61 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/ |
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/libprofile/profile/ |
D | profile_compilation_info.cc | 1726 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()
|
D | profile_compilation_info.h | 309 bool AddMethodHotness(const MethodReference& method_ref, const MethodHotness& hotness);
|
/art/runtime/jit/ |
D | profile_saver.cc | 912 ProfileCompilationInfo::MethodHotness hotness = info.GetMethodHotness(ref); in HasSeenMethod() local 916 return hotness.IsInProfile(); in HasSeenMethod()
|
/art/dexlayout/ |
D | dexlayout.cc | 1760 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/ |
D | main.S | 422 mov rPROFILE, r0 @ Starting hotness countdown to rPROFILE
|
/art/runtime/interpreter/mterp/mips64/ |
D | main.S | 418 move rPROFILE, v0 # Starting hotness countdown to rPROFILE
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 711 ProfileCompilationInfo::MethodHotness hotness = in ResolveConstStrings() local 713 if (added_preresolved_string_array ? !hotness.IsStartup() : !hotness.IsInProfile()) { in ResolveConstStrings()
|
/art/runtime/interpreter/mterp/mips/ |
D | main.S | 798 move rPROFILE, v0 # Starting hotness countdown to rPROFILE
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 1063 bool hotness[] = { in GetMethodHotnessOrder() local 1075 for (size_t i = 0; i < arraysize(hotness); ++i) { in GetMethodHotnessOrder() 1076 if (hotness[i]) { in GetMethodHotnessOrder()
|