Searched refs:ProfileMethodInfo (Results 1 – 7 of 7) sorted by relevance
/art/runtime/jit/ |
D | profile_compilation_info.h | 41 struct ProfileMethodInfo { struct 53 explicit ProfileMethodInfo(MethodReference reference) : ref(reference) {} in ProfileMethodInfo() argument 55 ProfileMethodInfo(MethodReference reference, const std::vector<ProfileInlineCache>& caches) in ProfileMethodInfo() argument 244 bool AddMethods(const std::vector<ProfileMethodInfo>& methods, MethodHotness::Flag flags); 281 bool AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags);
|
D | profile_compilation_info_test.cc | 106 std::vector<ProfileMethodInfo> profile_methods; in SaveProfilingInfo() 136 /*out*/ SafeMap<ArtMethod*, ProfileMethodInfo>* profile_methods_map) { in SaveProfilingInfoWithFakeInlineCaches() 138 std::vector<ProfileMethodInfo> profile_methods; in SaveProfilingInfoWithFakeInlineCaches() 141 std::vector<ProfileMethodInfo::ProfileInlineCache> caches; in SaveProfilingInfoWithFakeInlineCaches() 169 ProfileMethodInfo pmi(MethodReference(method->GetDexFile(), in SaveProfilingInfoWithFakeInlineCaches() 191 const ProfileMethodInfo& pmi) { in ConvertProfileMethodInfo() 740 SafeMap<ArtMethod*, ProfileMethodInfo> profile_methods_map; in TEST_F() 754 const ProfileMethodInfo& pmi = profile_methods_map.find(m)->second; in TEST_F()
|
D | jit_code_cache.h | 40 struct ProfileMethodInfo; 231 std::vector<ProfileMethodInfo>& methods)
|
D | profile_compilation_info.cc | 169 bool ProfileCompilationInfo::AddMethods(const std::vector<ProfileMethodInfo>& methods, in AddMethods() 171 for (const ProfileMethodInfo& method : methods) { in AddMethods() 704 bool ProfileCompilationInfo::AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags) { in AddMethod() 715 for (const ProfileMethodInfo::ProfileInlineCache& cache : pmi.inline_caches) { in AddMethod()
|
D | profile_saver.cc | 511 std::vector<ProfileMethodInfo> profile_methods; in ProcessProfilingInfo()
|
/art/profman/ |
D | profman.cc | 926 std::vector<ProfileMethodInfo> methods; in ProcessLine() 938 methods.push_back(ProfileMethodInfo(MethodReference(dex_file, method_idx))); in ProcessLine() 978 std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; in ProcessLine() 997 profile->AddMethod(ProfileMethodInfo(ref, inline_caches), in ProcessLine()
|
/art/test/common/ |
D | runtime_state.cc | 284 std::vector<ProfileMethodInfo> unused_vector; in Java_Main_fetchProfiles()
|