Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofile_saver.cc47 ProfileSaver* ProfileSaver::instance_ = nullptr;
48 pthread_t ProfileSaver::profiler_pthread_ = 0U;
81 ProfileSaver::ProfileSaver(const ProfileSaverOptions& options, in ProfileSaver() function in art::ProfileSaver
106 ProfileSaver::~ProfileSaver() { in ~ProfileSaver()
112 void ProfileSaver::NotifyStartupCompleted() { in NotifyStartupCompleted()
122 void ProfileSaver::Run() { in Run()
212 void ProfileSaver::NotifyJitActivity() { in NotifyJitActivity()
220 void ProfileSaver::WakeUpSaver() { in WakeUpSaver()
226 void ProfileSaver::NotifyJitActivityInternal() { in NotifyJitActivityInternal()
400 void ProfileSaver::FetchAndCacheResolvedClassesAndMethods(bool startup) { in FetchAndCacheResolvedClassesAndMethods()
[all …]
Dprofile_saver.h29 class ProfileSaver {
66 ProfileSaver(const ProfileSaverOptions& options,
70 ~ProfileSaver();
111 static ProfileSaver* instance_ GUARDED_BY(Locks::profiler_lock_);
156 DISALLOW_COPY_AND_ASSIGN(ProfileSaver);
Djit.cc169 ProfileSaver::DumpInstanceInfo(os); in DumpForSigQuit()
331 ProfileSaver::Start(options_->GetProfileSaverOptions(), filename, code_cache_, code_paths); in StartProfileSaver()
336 if (options_->GetSaveProfilingInfo() && ProfileSaver::IsStarted()) { in StopProfileSaver()
337 ProfileSaver::Stop(options_->DumpJitInfoOnShutdown()); in StopProfileSaver()
350 DCHECK(!options_->GetSaveProfilingInfo() || !ProfileSaver::IsStarted()); in ~Jit()
603 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.cc147 ProfileSaver::ForceProcessProfiles(); in HandleSigUsr1()
Druntime.cc2876 ProfileSaver::NotifyStartupCompleted(); in NotifyStartupCompleted()