Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3361)

Unified Diff: base/profiler/stack_sampling_profiler.cc

Issue 2554123002: Support parallel captures from the StackSamplingProfiler. (Closed)
Patch Set: pass ID instead of pointers Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/profiler/stack_sampling_profiler.h ('k') | base/profiler/stack_sampling_profiler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/profiler/stack_sampling_profiler.cc
diff --git a/base/profiler/stack_sampling_profiler.cc b/base/profiler/stack_sampling_profiler.cc
index d77858427edd6c922a17df7f29e985551640e99d..d083e3146ca86d6c7ebd5ba9393bd222f18f75a1 100644
--- a/base/profiler/stack_sampling_profiler.cc
+++ b/base/profiler/stack_sampling_profiler.cc
@@ -5,16 +5,23 @@
#include "base/profiler/stack_sampling_profiler.h"
#include <algorithm>
+#include <map>
+#include <queue>
#include <utility>
+#include "base/atomic_sequence_num.h"
+#include "base/atomicops.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "base/lazy_instance.h"
#include "base/location.h"
#include "base/macros.h"
+#include "base/memory/ptr_util.h"
+#include "base/memory/singleton.h"
#include "base/profiler/native_stack_sampler.h"
#include "base/synchronization/lock.h"
+#include "base/threading/thread.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/timer/elapsed_timer.h"
@@ -22,9 +29,6 @@ namespace base {
namespace {
-// Used to ensure only one profiler is running at a time.
-LazyInstance<Lock>::Leaky concurrent_profiling_lock = LAZY_INSTANCE_INITIALIZER;
-
// AsyncRunner ----------------------------------------------------------------
// Helper class to allow a profiler to be run completely asynchronously from the
@@ -160,102 +164,272 @@ StackSamplingProfiler::CallStackProfile::CallStackProfile(
// StackSamplingProfiler::SamplingThread --------------------------------------
-StackSamplingProfiler::SamplingThread::SamplingThread(
- std::unique_ptr<NativeStackSampler> native_sampler,
- const SamplingParams& params,
- const CompletedCallback& completed_callback)
- : native_sampler_(std::move(native_sampler)),
- params_(params),
- stop_event_(WaitableEvent::ResetPolicy::AUTOMATIC,
- WaitableEvent::InitialState::NOT_SIGNALED),
- completed_callback_(completed_callback) {}
+class StackSamplingProfiler::SamplingThread : public Thread {
+ public:
+ struct CollectionContext {
+ CollectionContext(PlatformThreadId target,
+ const SamplingParams& params,
+ const CompletedCallback& callback,
+ std::unique_ptr<NativeStackSampler> sampler)
+ : collection_id(next_collection_id_.GetNext()),
+ target(target),
+ params(params),
+ callback(callback),
+ native_sampler(std::move(sampler)) {}
+ ~CollectionContext() {}
+
+ // Updates the |next_sample_time| time based on configured parameters.
+ // This will keep a consistent average interval between samples but will
+ // result in constant series of acquisitions, thus nearly locking out the
+ // target thread, if the interval is smaller than the time it takes to
+ // actually acquire the sample. Anything sampling that quickly is going
+ // to be a problem anyway so don't worry about it.
+ bool UpdateNextSampleTime() {
+ if (++sample < params.samples_per_burst) {
+ next_sample_time += params.sampling_interval;
+ return true;
+ }
-StackSamplingProfiler::SamplingThread::~SamplingThread() {}
+ if (++burst < params.bursts) {
+ sample = 0;
+ next_sample_time += params.burst_interval;
+ return true;
+ }
-void StackSamplingProfiler::SamplingThread::ThreadMain() {
- PlatformThread::SetName("Chrome_SamplingProfilerThread");
+ return false;
+ }
- // For now, just ignore any requests to profile while another profiler is
- // working.
- if (!concurrent_profiling_lock.Get().Try())
- return;
+ // An identifier for this collection, used to uniquely identify it to
+ // outside interests.
+ const int collection_id;
- CallStackProfiles profiles;
- CollectProfiles(&profiles);
- concurrent_profiling_lock.Get().Release();
- completed_callback_.Run(std::move(profiles));
-}
-
-// Depending on how long the sampling takes and the length of the sampling
-// interval, a burst of samples could take arbitrarily longer than
-// samples_per_burst * sampling_interval. In this case, we (somewhat
-// arbitrarily) honor the number of samples requested rather than strictly
-// adhering to the sampling intervals. Once we have established users for the
-// StackSamplingProfiler and the collected data to judge, we may go the other
-// way or make this behavior configurable.
-void StackSamplingProfiler::SamplingThread::CollectProfile(
- CallStackProfile* profile,
- TimeDelta* elapsed_time,
- bool* was_stopped) {
- ElapsedTimer profile_timer;
- native_sampler_->ProfileRecordingStarting(&profile->modules);
- profile->sampling_period = params_.sampling_interval;
- *was_stopped = false;
- TimeDelta previous_elapsed_sample_time;
- for (int i = 0; i < params_.samples_per_burst; ++i) {
- if (i != 0) {
- // Always wait, even if for 0 seconds, so we can observe a signal on
- // stop_event_.
- if (stop_event_.TimedWait(
- std::max(params_.sampling_interval - previous_elapsed_sample_time,
- TimeDelta()))) {
- *was_stopped = true;
- break;
- }
- }
- ElapsedTimer sample_timer;
- profile->samples.push_back(Sample());
- native_sampler_->RecordStackSample(&profile->samples.back());
- previous_elapsed_sample_time = sample_timer.Elapsed();
+ Time next_sample_time;
+
+ PlatformThreadId target;
+ SamplingParams params;
+ CompletedCallback callback;
+
+ std::unique_ptr<NativeStackSampler> native_sampler;
+
+ // Counters that indicate the current position along the acquisition.
+ int burst = 0;
+ int sample = 0;
+
+ // The time that a profile was started, for calculating the total duration.
+ Time profile_start_time;
+
+ // The collected stack samples. The active profile is always at the back().
+ CallStackProfiles profiles;
+
+ private:
+ static StaticAtomicSequenceNumber next_collection_id_;
+ };
+
+ // Gets the single instance of this class.
+ static SamplingThread* GetInstance();
+
+ // Starts the thread.
+ void Start();
+
+ // Adds a new CollectionContext to the thread. This can be called externally
+ // from any thread. This returns an ID that can later be used to stop
+ // the sampling.
+ int Add(std::unique_ptr<CollectionContext> collection);
+
+ // Stops an active collection based on its ID, forcing it to run its callback
+ // if any data has been collected. This can be called externally from any
+ // thread.
+ void Stop(int id);
+
+ private:
+ SamplingThread();
+ ~SamplingThread() override;
+ friend struct DefaultSingletonTraits<SamplingThread>;
+
+ // Finishes a collection and reports collected data via callback.
+ void FinishCollection(CollectionContext* collection);
+
+ // Records a single sample of a collection.
+ void RecordSample(CollectionContext* collection);
+
+ // These methods are tasks that get posted to the internal message queue.
+ void StartCollectionTask(std::unique_ptr<CollectionContext> collection_ptr);
+ void StopCollectionTask(int id);
+ void PerformCollectionTask(int id);
+
+ // Thread:
+ void CleanUp() override;
+
+ // The task-runner for the sampling thread. This is saved so that it can
+ // be freely used by any calling thread.
+ scoped_refptr<SingleThreadTaskRunner> task_runner_;
+ Lock task_runner_lock_;
+
+ // A map of IDs to collection contexts. Because this class is a singleton
+ // that is never destroyed, context objects will never be destructed except
+ // by explicit action. Thus, it's acceptable to pass unretained pointers
+ // to these objects when posting tasks.
+ std::map<int, std::unique_ptr<CollectionContext>> active_collections_;
+
+ DISALLOW_COPY_AND_ASSIGN(SamplingThread);
+};
+
+StaticAtomicSequenceNumber StackSamplingProfiler::SamplingThread::
+ CollectionContext::next_collection_id_;
+
+StackSamplingProfiler::SamplingThread::SamplingThread()
+ : Thread("Chrome_SamplingProfilerThread") {}
+
+StackSamplingProfiler::SamplingThread::~SamplingThread() {
+ Thread::Stop();
+}
+
+StackSamplingProfiler::SamplingThread*
+StackSamplingProfiler::SamplingThread::GetInstance() {
+ return Singleton<SamplingThread, LeakySingletonTraits<SamplingThread>>::get();
+}
+
+void StackSamplingProfiler::SamplingThread::Start() {
+ Thread::Options options;
+ // Use a higher priority for a more accurate sampling interval.
+ options.priority = ThreadPriority::DISPLAY;
+ Thread::StartWithOptions(options);
+}
+
+int StackSamplingProfiler::SamplingThread::Add(
+ std::unique_ptr<CollectionContext> collection) {
+ int id = collection->collection_id;
+
+ AutoLock lock(task_runner_lock_);
+ if (!task_runner_) {
+ // The thread is not running. Start it and get associated runner.
+ Start();
+ task_runner_ = task_runner();
+ }
+
+ task_runner_->PostTask(
+ FROM_HERE, Bind(&SamplingThread::StartCollectionTask, Unretained(this),
+ Passed(&collection)));
+ return id;
+}
+
+void StackSamplingProfiler::SamplingThread::Stop(int id) {
+ AutoLock lock(task_runner_lock_);
+ if (!task_runner_)
+ return; // Everything has already stopped.
+
+ // This can fail if the thread were to exit between acquisition of the task
+ // runner above and the call below. In that case, however, everything has
+ // stopped so there's no need to try to stop it.
+ task_runner_->PostTask(FROM_HERE, Bind(&SamplingThread::StopCollectionTask,
+ Unretained(this), id));
+}
+
+void StackSamplingProfiler::SamplingThread::FinishCollection(
+ CollectionContext* collection) {
+ // If there is no duration for the final profile (because it was stopped),
+ // calculated it now.
+ if (!collection->profiles.empty() &&
+ collection->profiles.back().profile_duration == TimeDelta()) {
+ collection->profiles.back().profile_duration =
+ Time::Now() - collection->profile_start_time;
}
- *elapsed_time = profile_timer.Elapsed();
- profile->profile_duration = *elapsed_time;
- native_sampler_->ProfileRecordingStopped();
+ // Run the associated callback, passing the collected profiles. It's okay to
+ // move them because this collection is about to be deleted.
+ collection->callback.Run(std::move(collection->profiles));
+
+ // Remove this collection from the map of known ones. This must be done
+ // last as the |collection| parameter is invalid after this point.
+ size_t count = active_collections_.erase(collection->collection_id);
+ DCHECK_EQ(1U, count);
}
-// In an analogous manner to CollectProfile() and samples exceeding the expected
-// total sampling time, bursts may also exceed the burst_interval. We adopt the
-// same wait-and-see approach here.
-void StackSamplingProfiler::SamplingThread::CollectProfiles(
- CallStackProfiles* profiles) {
- if (stop_event_.TimedWait(params_.initial_delay))
+void StackSamplingProfiler::SamplingThread::RecordSample(
+ CollectionContext* collection) {
+ DCHECK(collection->native_sampler);
+
+ // If this is the first sample of a burst, a new Profile needs to be created
+ // and filled.
+ if (collection->sample == 0) {
+ collection->profiles.push_back(CallStackProfile());
+ CallStackProfile& profile = collection->profiles.back();
+ profile.sampling_period = collection->params.sampling_interval;
+ collection->profile_start_time = Time::Now();
+ collection->native_sampler->ProfileRecordingStarting(&profile.modules);
+ }
+
+ // The currently active profile being acptured.
+ CallStackProfile& profile = collection->profiles.back();
+
+ // Record a single sample.
+ profile.samples.push_back(Sample());
+ collection->native_sampler->RecordStackSample(&profile.samples.back());
+
+ // If this is the last sample of a burst, record the total time.
+ if (collection->sample == collection->params.samples_per_burst - 1) {
+ profile.profile_duration = Time::Now() - collection->profile_start_time;
+ collection->native_sampler->ProfileRecordingStopped();
+ }
+}
+
+void StackSamplingProfiler::SamplingThread::StartCollectionTask(
+ std::unique_ptr<CollectionContext> collection_ptr) {
+ // Ownership of the collection is going to be given to a map but a pointer
+ // to it will be needed later.
+ CollectionContext* collection = collection_ptr.get();
+ active_collections_.insert(
+ std::make_pair(collection->collection_id, std::move(collection_ptr)));
+
+ task_runner()->PostDelayedTask(
+ FROM_HERE, Bind(&SamplingThread::PerformCollectionTask, Unretained(this),
+ collection->collection_id),
+ collection->params.initial_delay);
+}
+
+void StackSamplingProfiler::SamplingThread::StopCollectionTask(int id) {
+ auto found = active_collections_.find(id);
+ if (found == active_collections_.end())
return;
- TimeDelta previous_elapsed_profile_time;
- for (int i = 0; i < params_.bursts; ++i) {
- if (i != 0) {
- // Always wait, even if for 0 seconds, so we can observe a signal on
- // stop_event_.
- if (stop_event_.TimedWait(
- std::max(params_.burst_interval - previous_elapsed_profile_time,
- TimeDelta())))
- return;
- }
+ FinishCollection(found->second.get());
+}
- CallStackProfile profile;
- bool was_stopped = false;
- CollectProfile(&profile, &previous_elapsed_profile_time, &was_stopped);
- if (!profile.samples.empty())
- profiles->push_back(std::move(profile));
+void StackSamplingProfiler::SamplingThread::PerformCollectionTask(int id) {
+ auto found = active_collections_.find(id);
+ if (found == active_collections_.end())
Mike Wittman 2016/12/22 17:38:22 It would be good to retain the comment here indica
bcwhite 2017/01/05 16:35:58 Done.
+ return;
- if (was_stopped)
- return;
+ CollectionContext* collection = found->second.get();
+
+ // Handle first-run with no "next time".
+ if (collection->next_sample_time == Time())
+ collection->next_sample_time = Time::Now();
+
+ // Do the collection of a single sample.
+ RecordSample(collection);
+
+ // Update the time of the next sample recording.
+ if (collection->UpdateNextSampleTime()) {
+ // Place the updated entry back on the queue.
+ bool success = task_runner()->PostDelayedTask(
+ FROM_HERE,
+ Bind(&SamplingThread::PerformCollectionTask, Unretained(this), id),
+ std::max(collection->next_sample_time - Time::Now(), TimeDelta()));
+ DCHECK(success);
+ } else {
+ // All capturing has completed so finish the collection. Let object expire.
+ // The |collection| variable will be invalid after this call.
+ FinishCollection(collection);
}
}
-void StackSamplingProfiler::SamplingThread::Stop() {
- stop_event_.Signal();
+void StackSamplingProfiler::SamplingThread::CleanUp() {
+ // There should be no collections remaining when the thread stops.
+ DCHECK(active_collections_.empty());
+
+ // Let the parent clean up.
+ Thread::CleanUp();
}
// StackSamplingProfiler ------------------------------------------------------
@@ -287,8 +461,6 @@ StackSamplingProfiler::StackSamplingProfiler(
StackSamplingProfiler::~StackSamplingProfiler() {
Stop();
- if (!sampling_thread_handle_.is_null())
- PlatformThread::Join(sampling_thread_handle_);
}
// static
@@ -310,16 +482,13 @@ void StackSamplingProfiler::Start() {
if (!native_sampler)
return;
- sampling_thread_.reset(new SamplingThread(std::move(native_sampler), params_,
- completed_callback_));
- if (!PlatformThread::Create(0, sampling_thread_.get(),
- &sampling_thread_handle_))
- sampling_thread_.reset();
+ collection_id_ = SamplingThread::GetInstance()->Add(
+ MakeUnique<SamplingThread::CollectionContext>(
+ thread_id_, params_, completed_callback_, std::move(native_sampler)));
}
void StackSamplingProfiler::Stop() {
- if (sampling_thread_)
- sampling_thread_->Stop();
+ SamplingThread::GetInstance()->Stop(collection_id_);
}
// static
« no previous file with comments | « base/profiler/stack_sampling_profiler.h ('k') | base/profiler/stack_sampling_profiler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698