sampler.h 3.07 KB
Newer Older
1
// Copyright 2016 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5 6
#ifndef V8_LIBSAMPLER_SAMPLER_H_
#define V8_LIBSAMPLER_SAMPLER_H_
7

8 9
#include "include/v8.h"

10
#include "src/base/atomicops.h"
lpy's avatar
lpy committed
11
#include "src/base/macros.h"
12 13

namespace v8 {
14
namespace sampler {
15 16 17 18 19 20 21 22 23 24

// ----------------------------------------------------------------------------
// 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.

class Sampler {
 public:
25 26 27
  static const int kMaxFramesCountLog2 = 8;
  static const unsigned kMaxFramesCount = (1u << kMaxFramesCountLog2) - 1;

28 29 30 31 32
  // Initializes the Sampler support. Called once at VM startup.
  static void SetUp();
  static void TearDown();

  // Initialize sampler.
33
  explicit Sampler(Isolate* isolate);
34 35 36 37 38
  virtual ~Sampler();

  Isolate* isolate() const { return isolate_; }

  // Performs stack sampling.
39 40 41
  // Clients should override this method in order to do something on samples,
  // for example buffer samples in a queue.
  virtual void SampleStack(const v8::RegisterState& regs) = 0;
42 43 44 45 46

  // Start and stop sampler.
  void Start();
  void Stop();

47 48
  // Whether the sampling thread should use this Sampler for CPU profiling?
  bool IsProfiling() const {
49 50
    return base::Relaxed_Load(&profiling_) > 0 &&
           !base::Relaxed_Load(&has_processing_thread_);
51
  }
52 53
  void IncreaseProfilingDepth();
  void DecreaseProfilingDepth();
54 55

  // Whether the sampler is running (that is, consumes resources).
56
  bool IsActive() const { return base::Relaxed_Load(&active_) != 0; }
57

58 59 60
  // CpuProfiler collects samples by calling DoSample directly
  // without calling Start. To keep it working, we register the sampler
  // with the CpuProfiler.
61
  bool IsRegistered() const { return base::Relaxed_Load(&registered_) != 0; }
62

63
  void DoSample();
64

65
  void SetHasProcessingThread(bool value) {
66
    base::Relaxed_Store(&has_processing_thread_, value);
67 68
  }

69
  // Used in tests to make sure that stack sampling is performed.
70 71
  unsigned js_sample_count() const { return js_sample_count_; }
  unsigned external_sample_count() const { return external_sample_count_; }
72
  void StartCountingSamples() {
73 74 75
    js_sample_count_ = 0;
    external_sample_count_ = 0;
    is_counting_samples_ = true;
76
  }
77 78 79 80

  class PlatformData;
  PlatformData* platform_data() const { return data_; }

81
 protected:
82 83 84 85
  // Counts stack samples taken in various VM states.
  bool is_counting_samples_;
  unsigned js_sample_count_;
  unsigned external_sample_count_;
86

87
 private:
88 89
  void SetActive(bool value) { base::Relaxed_Store(&active_, value); }
  void SetRegistered(bool value) { base::Relaxed_Store(&registered_, value); }
90

91
  Isolate* isolate_;
92 93 94
  base::Atomic32 profiling_;
  base::Atomic32 has_processing_thread_;
  base::Atomic32 active_;
95
  base::Atomic32 registered_;
96 97 98 99
  PlatformData* data_;  // Platform specific data.
  DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler);
};

100
}  // namespace sampler
101
}  // namespace v8
102

103
#endif  // V8_LIBSAMPLER_SAMPLER_H_