Home
last modified time | relevance | path

Searched refs:profile_info (Results 1 – 5 of 5) sorted by relevance

/art/dexlayout/
Ddexlayout_main.cc191 std::unique_ptr<ProfileCompilationInfo> profile_info; in DexlayoutDriver() local
203 profile_info.reset(new ProfileCompilationInfo()); in DexlayoutDriver()
204 if (!profile_info->Load(profile_fd)) { in DexlayoutDriver()
212 DexLayout dex_layout(options, profile_info.get(), out_file, /*header=*/ nullptr); in DexlayoutDriver()
Ddex_visualize.cc176 ProfileCompilationInfo* profile_info) { in DumpMethodItem() argument
177 if (profile_info != nullptr) { in DumpMethodItem()
179 if (!profile_info->GetMethodHotness(MethodReference(dex_file, method_idx)).IsHot()) { in DumpMethodItem()
248 ProfileCompilationInfo* profile_info) { in VisualizeDexLayout() argument
259 if (profile_info != nullptr && !profile_info->ContainsClass(*dex_file, type_idx)) { in VisualizeDexLayout()
292 dumper->DumpMethodItem(&method_item, dex_file, class_index, profile_info); in VisualizeDexLayout()
297 dumper->DumpMethodItem(&method_item, dex_file, class_index, profile_info); in VisualizeDexLayout()
Ddex_visualize.h39 ProfileCompilationInfo* profile_info);
/art/runtime/jit/
Djit.cc1373 ProfileBootInfo profile_info; in CompileMethodsFromBootProfile() local
1374 if (!profile_info.Load(profile.Fd(), dex_files)) { in CompileMethodsFromBootProfile()
1383 for (const DexFile* dex_file : profile_info.GetDexFiles()) { in CompileMethodsFromBootProfile()
1388 for (const std::pair<uint32_t, uint32_t>& pair : profile_info.GetMethods()) { in CompileMethodsFromBootProfile()
1423 ProfileCompilationInfo profile_info; in CompileMethodsFromProfile() local
1424 if (!profile_info.Load(profile.Fd())) { in CompileMethodsFromProfile()
1441 if (!profile_info.GetClassesAndMethods(*dex_file, in CompileMethodsFromProfile()
/art/profman/
Dprofman.cc731 ProfileCompilationInfo profile_info; in GetClassNamesAndMethods() local
732 if (!profile_info.Load(fd)) { in GetClassNamesAndMethods()
742 if (profile_info.GetClassesAndMethods(*dex_file.get(), in GetClassNamesAndMethods()