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, jit::JitCodeCache* jit_code_cache) in ProfileSaver() function in art::ProfileSaver
104 ProfileSaver::~ProfileSaver() { in ~ProfileSaver()
110 void ProfileSaver::NotifyStartupCompleted() { in NotifyStartupCompleted()
120 void ProfileSaver::Run() { in Run()
256 bool ProfileSaver::IsFirstSave() { in IsFirstSave()
283 void ProfileSaver::NotifyJitActivity() { in NotifyJitActivity()
291 void ProfileSaver::WakeUpSaver() { in WakeUpSaver()
297 void ProfileSaver::NotifyJitActivityInternal() { in NotifyJitActivityInternal()
[all …]
Dprofile_saver.h29 class ProfileSaver {
66 ProfileSaver(const ProfileSaverOptions& options, jit::JitCodeCache* jit_code_cache);
67 ~ProfileSaver();
122 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
183 DISALLOW_COPY_AND_ASSIGN(ProfileSaver);
Dprofile_saver_test.cc43 profile_saver_ = new ProfileSaver( in PostRuntimeCreate()
63 ProfileSaver* profile_saver_ = nullptr;
Djit.cc210 ProfileSaver::DumpInstanceInfo(os); in DumpForSigQuit()
397 ProfileSaver::Start(options_->GetProfileSaverOptions(), in StartProfileSaver()
406 if (options_->GetSaveProfilingInfo() && ProfileSaver::IsStarted()) { in StopProfileSaver()
407 ProfileSaver::Stop(options_->DumpJitInfoOnShutdown()); in StopProfileSaver()
420 DCHECK(!options_->GetSaveProfilingInfo() || !ProfileSaver::IsStarted()); in ~Jit()
809 ProfileSaver::NotifyJitActivity(); in Run()
/art/test/595-profile-saving/
Dprofile-saving.cc48 ProfileSaver::ForceProcessProfiles(); in Java_Main_ensureProfileProcessing()
/art/runtime/
Dsignal_catcher.cc148 ProfileSaver::ForceProcessProfiles(); in HandleSigUsr1()
Druntime.cc3218 ProfileSaver::NotifyStartupCompleted(); in NotifyStartupCompleted()