Searched refs:ProfileMethodInfo (Results 1 – 8 of 8) sorted by relevance
/art/runtime/jit/ |
D | profiling_info_test.cc | 105 std::vector<ProfileMethodInfo> profile_methods; in SaveProfilingInfo() 135 /*out*/ SafeMap<ArtMethod*, ProfileMethodInfo>* profile_methods_map) { in SaveProfilingInfoWithFakeInlineCaches() 137 std::vector<ProfileMethodInfo> profile_methods; in SaveProfilingInfoWithFakeInlineCaches() 140 std::vector<ProfileMethodInfo::ProfileInlineCache> caches; in SaveProfilingInfoWithFakeInlineCaches() 168 ProfileMethodInfo pmi(MethodReference(method->GetDexFile(), in SaveProfilingInfoWithFakeInlineCaches() 190 const ProfileMethodInfo& pmi) { in ConvertProfileMethodInfo() 301 SafeMap<ArtMethod*, ProfileMethodInfo> profile_methods_map; in TEST_F() 315 const ProfileMethodInfo& pmi = profile_methods_map.find(m)->second; in TEST_F()
|
D | jit_code_cache.h | 44 struct ProfileMethodInfo; 226 std::vector<ProfileMethodInfo>& methods)
|
D | profile_saver.cc | 540 std::vector<ProfileMethodInfo> profile_methods; in ProcessProfilingInfo()
|
D | jit_code_cache.cc | 1955 std::vector<ProfileMethodInfo>& methods) { in GetProfiledMethods() 1969 std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; in GetProfiledMethods()
|
/art/libprofile/profile/ |
D | profile_compilation_info.h | 43 struct ProfileMethodInfo { struct 55 explicit ProfileMethodInfo(MethodReference reference) : ref(reference) {} in ProfileMethodInfo() function 57 ProfileMethodInfo(MethodReference reference, const std::vector<ProfileInlineCache>& caches) in ProfileMethodInfo() function 249 bool AddMethods(const std::vector<ProfileMethodInfo>& methods, MethodHotness::Flag flags); 286 bool AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags);
|
D | profile_compilation_info.cc | 189 bool ProfileCompilationInfo::AddMethods(const std::vector<ProfileMethodInfo>& methods, in AddMethods() 191 for (const ProfileMethodInfo& method : methods) { in AddMethods() 767 bool ProfileCompilationInfo::AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags) { in AddMethod() 778 for (const ProfileMethodInfo::ProfileInlineCache& cache : pmi.inline_caches) { in AddMethod()
|
/art/profman/ |
D | profman.cc | 990 std::vector<ProfileMethodInfo> methods; in ProcessLine() 998 methods.push_back(ProfileMethodInfo(method.GetReference())); in ProcessLine() 1036 std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; in ProcessLine() 1055 profile->AddMethod(ProfileMethodInfo(ref, inline_caches), in ProcessLine()
|
/art/test/common/ |
D | runtime_state.cc | 335 std::vector<ProfileMethodInfo> unused_vector; in Java_Main_fetchProfiles()
|