Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofiling_info_test.cc105 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()
Djit_code_cache.h44 struct ProfileMethodInfo;
226 std::vector<ProfileMethodInfo>& methods)
Dprofile_saver.cc540 std::vector<ProfileMethodInfo> profile_methods; in ProcessProfilingInfo()
Djit_code_cache.cc1955 std::vector<ProfileMethodInfo>& methods) { in GetProfiledMethods()
1969 std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; in GetProfiledMethods()
/art/libprofile/profile/
Dprofile_compilation_info.h43 struct ProfileMethodInfo { struct
55 explicit ProfileMethodInfo(MethodReference reference) : ref(reference) {} in ProfileMethodInfo() function
57 ProfileMethodInfo(MethodReference reference, const std::vector<ProfileInlineCache>& caches) in ProfileMethodInfo() argument
249 bool AddMethods(const std::vector<ProfileMethodInfo>& methods, MethodHotness::Flag flags);
286 bool AddMethod(const ProfileMethodInfo& pmi, MethodHotness::Flag flags);
Dprofile_compilation_info.cc189 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/
Dprofman.cc990 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/
Druntime_state.cc335 std::vector<ProfileMethodInfo> unused_vector; in Java_Main_fetchProfiles()