| Index: src/profiler/sampler.h
|
| diff --git a/src/profiler/sampler.h b/src/profiler/sampler.h
|
| index d890f71c258aa5c8b70a970aa0de74aa70e752b2..b8fb60a1affe608e0b62bf15075f33dc5fce1656 100644
|
| --- a/src/profiler/sampler.h
|
| +++ b/src/profiler/sampler.h
|
| @@ -7,23 +7,14 @@
|
|
|
| #include "include/v8.h"
|
|
|
| -#include "src/base/atomicops.h"
|
| #include "src/base/platform/time.h"
|
| #include "src/frames.h"
|
| -#include "src/globals.h"
|
|
|
| namespace v8 {
|
| namespace internal {
|
|
|
| class Isolate;
|
|
|
| -// ----------------------------------------------------------------------------
|
| -// Sampler
|
| -//
|
| -// A sampler periodically samples the state of the VM and optionally
|
| -// (if used for profiling) the program counter and stack pointer for
|
| -// the thread that created it.
|
| -
|
| // TickSample captures the information collected for each sample.
|
| struct TickSample {
|
| // Internal profiling (with --prof + tools/$OS-tick-processor) wants to
|
| @@ -61,78 +52,6 @@ struct TickSample {
|
| StackFrame::Type top_frame_type : 4;
|
| };
|
|
|
| -class Sampler {
|
| - public:
|
| - // Initializes the Sampler support. Called once at VM startup.
|
| - static void SetUp();
|
| - static void TearDown();
|
| -
|
| - // Initialize sampler.
|
| - Sampler(Isolate* isolate, int interval);
|
| - virtual ~Sampler();
|
| -
|
| - Isolate* isolate() const { return isolate_; }
|
| - int interval() const { return interval_; }
|
| -
|
| - // Performs stack sampling.
|
| - void SampleStack(const v8::RegisterState& regs);
|
| -
|
| - // Start and stop sampler.
|
| - void Start();
|
| - void Stop();
|
| -
|
| - // Whether the sampling thread should use this Sampler for CPU profiling?
|
| - bool IsProfiling() const {
|
| - return base::NoBarrier_Load(&profiling_) > 0 &&
|
| - !base::NoBarrier_Load(&has_processing_thread_);
|
| - }
|
| - void IncreaseProfilingDepth();
|
| - void DecreaseProfilingDepth();
|
| -
|
| - // Whether the sampler is running (that is, consumes resources).
|
| - bool IsActive() const { return base::NoBarrier_Load(&active_); }
|
| -
|
| - void DoSample();
|
| - // If true next sample must be initiated on the profiler event processor
|
| - // thread right after latest sample is processed.
|
| - void SetHasProcessingThread(bool value) {
|
| - base::NoBarrier_Store(&has_processing_thread_, value);
|
| - }
|
| -
|
| - // Used in tests to make sure that stack sampling is performed.
|
| - unsigned js_sample_count() const { return js_sample_count_; }
|
| - unsigned external_sample_count() const { return external_sample_count_; }
|
| - void StartCountingSamples() {
|
| - js_sample_count_ = 0;
|
| - external_sample_count_ = 0;
|
| - is_counting_samples_ = true;
|
| - }
|
| -
|
| - class PlatformData;
|
| - PlatformData* platform_data() const { return data_; }
|
| -
|
| - protected:
|
| - // This method is called for each sampling period with the current
|
| - // program counter.
|
| - virtual void Tick(TickSample* sample) = 0;
|
| -
|
| - private:
|
| - void SetActive(bool value) { base::NoBarrier_Store(&active_, value); }
|
| -
|
| - Isolate* isolate_;
|
| - const int interval_;
|
| - base::Atomic32 profiling_;
|
| - base::Atomic32 has_processing_thread_;
|
| - base::Atomic32 active_;
|
| - PlatformData* data_; // Platform specific data.
|
| - // Counts stack samples taken in various VM states.
|
| - bool is_counting_samples_;
|
| - unsigned js_sample_count_;
|
| - unsigned external_sample_count_;
|
| - DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler);
|
| -};
|
| -
|
| -
|
| } // namespace internal
|
| } // namespace v8
|
|
|
|
|