Home
last modified time | relevance | path

Searched refs:ProfileMethodInfo (Results 1 – 7 of 7) sorted by relevance

/art/runtime/jit/
Dprofile_compilation_info.h41 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);
Dprofile_compilation_info_test.cc106 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()
Djit_code_cache.h40 struct ProfileMethodInfo;
231 std::vector<ProfileMethodInfo>& methods)
Dprofile_compilation_info.cc169 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()
Dprofile_saver.cc511 std::vector<ProfileMethodInfo> profile_methods; in ProcessProfilingInfo()
/art/profman/
Dprofman.cc926 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/
Druntime_state.cc284 std::vector<ProfileMethodInfo> unused_vector; in Java_Main_fetchProfiles()