Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofile_saver.cc50 ProfileSaver* ProfileSaver::instance_ = nullptr;
51 pthread_t ProfileSaver::profiler_pthread_ = 0U;
84 ProfileSaver::ProfileSaver(const ProfileSaverOptions& options, in ProfileSaver() function in art::ProfileSaver
108 ProfileSaver::~ProfileSaver() { in ~ProfileSaver()
114 void ProfileSaver::NotifyStartupCompleted() { in NotifyStartupCompleted()
124 void ProfileSaver::Run() { in Run()
218 void ProfileSaver::NotifyJitActivity() { in NotifyJitActivity()
226 void ProfileSaver::WakeUpSaver() { in WakeUpSaver()
232 void ProfileSaver::NotifyJitActivityInternal() { in NotifyJitActivityInternal()
406 void ProfileSaver::FetchAndCacheResolvedClassesAndMethods(bool startup) { in FetchAndCacheResolvedClassesAndMethods()
[all …]
Dprofile_saver.h29 class ProfileSaver {
61 ProfileSaver(const ProfileSaverOptions& options,
65 ~ProfileSaver();
113 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
161 DISALLOW_COPY_AND_ASSIGN(ProfileSaver);
Dprofile_saver_test.cc45 profile_saver_ = new ProfileSaver( in PostRuntimeCreate()
67 ProfileSaver* profile_saver_ = nullptr;
Djit.cc208 ProfileSaver::DumpInstanceInfo(os); in DumpForSigQuit()
395 ProfileSaver::Start(options_->GetProfileSaverOptions(), filename, code_cache_, code_paths); in StartProfileSaver()
400 if (options_->GetSaveProfilingInfo() && ProfileSaver::IsStarted()) { in StopProfileSaver()
401 ProfileSaver::Stop(options_->DumpJitInfoOnShutdown()); in StopProfileSaver()
414 DCHECK(!options_->GetSaveProfilingInfo() || !ProfileSaver::IsStarted()); in ~Jit()
810 ProfileSaver::NotifyJitActivity(); in Run()
/art/test/595-profile-saving/
Dprofile-saving.cc48 ProfileSaver::ForceProcessProfiles(); in Java_Main_ensureProfileProcessing()
60 return ProfileSaver::HasSeenMethod(std::string(filename_chars.c_str()), in Java_Main_presentInProfile()
/art/runtime/
Dsignal_catcher.cc148 ProfileSaver::ForceProcessProfiles(); in HandleSigUsr1()
Druntime.cc3014 ProfileSaver::NotifyStartupCompleted(); in NotifyStartupCompleted()