OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_SAMPLER_H_ | 5 #ifndef V8_SAMPLER_H_ |
6 #define V8_SAMPLER_H_ | 6 #define V8_SAMPLER_H_ |
7 | 7 |
| 8 #include "include/v8.h" |
| 9 |
8 #include "src/base/atomicops.h" | 10 #include "src/base/atomicops.h" |
9 #include "src/frames.h" | 11 #include "src/frames.h" |
10 #include "src/globals.h" | 12 #include "src/globals.h" |
11 | 13 |
12 namespace v8 { | 14 namespace v8 { |
13 namespace internal { | 15 namespace internal { |
14 | 16 |
15 class Isolate; | 17 class Isolate; |
16 | 18 |
| 19 class ScopedSemaphore { |
| 20 public: |
| 21 explicit ScopedSemaphore(base::Semaphore* sem) {semaphore_ = sem;} |
| 22 ~ScopedSemaphore() {semaphore_->Signal();} |
| 23 private: |
| 24 base::Semaphore* semaphore_; |
| 25 }; |
| 26 |
| 27 |
17 // ---------------------------------------------------------------------------- | 28 // ---------------------------------------------------------------------------- |
18 // Sampler | 29 // Sampler |
19 // | 30 // |
20 // A sampler periodically samples the state of the VM and optionally | 31 // A sampler periodically samples the state of the VM and optionally |
21 // (if used for profiling) the program counter and stack pointer for | 32 // (if used for profiling) the program counter and stack pointer for |
22 // the thread that created it. | 33 // the thread that created it. |
23 | 34 |
24 struct RegisterState { | 35 struct RegisterState { |
25 RegisterState() : pc(NULL), sp(NULL), fp(NULL) {} | 36 RegisterState() : pc(NULL), sp(NULL), fp(NULL) {} |
26 Address pc; // Instruction pointer. | 37 Address pc; // Instruction pointer. |
27 Address sp; // Stack pointer. | 38 Address sp; // Stack pointer. |
28 Address fp; // Frame pointer. | 39 Address fp; // Frame pointer. |
29 }; | 40 }; |
30 | 41 |
31 // TickSample captures the information collected for each sample. | 42 // TickSample captures the information collected for each sample. |
32 struct TickSample { | 43 struct TickSample : v8::Sample { |
33 TickSample() | 44 TickSample() |
34 : state(OTHER), | 45 : state(OTHER), |
35 pc(NULL), | 46 pc(NULL), |
36 external_callback(NULL), | 47 external_callback(NULL), |
37 frames_count(0), | |
38 has_external_callback(false), | 48 has_external_callback(false), |
39 top_frame_type(StackFrame::NONE) {} | 49 top_frame_type(StackFrame::NONE) {} |
40 void Init(Isolate* isolate, const RegisterState& state); | 50 void Init(Isolate* isolate, const RegisterState& state); |
41 StateTag state; // The state of the VM. | 51 StateTag state; // The state of the VM. |
42 Address pc; // Instruction pointer. | 52 Address pc; // Instruction pointer. |
43 union { | 53 union { |
44 Address tos; // Top stack value (*sp). | 54 Address tos; // Top stack value (*sp). |
45 Address external_callback; | 55 Address external_callback; |
46 }; | 56 }; |
47 static const unsigned kMaxFramesCountLog2 = 8; | |
48 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1; | |
49 Address stack[kMaxFramesCount]; // Call stack. | |
50 base::TimeTicks timestamp; | 57 base::TimeTicks timestamp; |
51 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames. | |
52 bool has_external_callback : 1; | 58 bool has_external_callback : 1; |
53 StackFrame::Type top_frame_type : 4; | 59 StackFrame::Type top_frame_type : 4; |
54 }; | 60 }; |
55 | 61 |
56 class Sampler { | 62 class Sampler { |
57 public: | 63 public: |
58 // Initializes the Sampler support. Called once at VM startup. | 64 // Initializes the Sampler support. Called once at VM startup. |
59 static void SetUp(); | 65 static void SetUp(); |
60 static void TearDown(); | 66 static void TearDown(); |
61 | 67 |
(...skipping 16 matching lines...) Expand all Loading... |
78 return base::NoBarrier_Load(&profiling_) > 0 && | 84 return base::NoBarrier_Load(&profiling_) > 0 && |
79 !base::NoBarrier_Load(&has_processing_thread_); | 85 !base::NoBarrier_Load(&has_processing_thread_); |
80 } | 86 } |
81 void IncreaseProfilingDepth(); | 87 void IncreaseProfilingDepth(); |
82 void DecreaseProfilingDepth(); | 88 void DecreaseProfilingDepth(); |
83 | 89 |
84 // Whether the sampler is running (that is, consumes resources). | 90 // Whether the sampler is running (that is, consumes resources). |
85 bool IsActive() const { return base::NoBarrier_Load(&active_); } | 91 bool IsActive() const { return base::NoBarrier_Load(&active_); } |
86 | 92 |
87 void DoSample(); | 93 void DoSample(); |
| 94 void GetSample(v8::Sample* sample); |
88 // If true next sample must be initiated on the profiler event processor | 95 // If true next sample must be initiated on the profiler event processor |
89 // thread right after latest sample is processed. | 96 // thread right after latest sample is processed. |
90 void SetHasProcessingThread(bool value) { | 97 void SetHasProcessingThread(bool value) { |
91 base::NoBarrier_Store(&has_processing_thread_, value); | 98 base::NoBarrier_Store(&has_processing_thread_, value); |
92 } | 99 } |
93 | 100 |
94 // Used in tests to make sure that stack sampling is performed. | 101 // Used in tests to make sure that stack sampling is performed. |
95 unsigned js_and_external_sample_count() const { | 102 unsigned js_and_external_sample_count() const { |
96 return js_and_external_sample_count_; | 103 return js_and_external_sample_count_; |
97 } | 104 } |
(...skipping 15 matching lines...) Expand all Loading... |
113 | 120 |
114 Isolate* isolate_; | 121 Isolate* isolate_; |
115 const int interval_; | 122 const int interval_; |
116 base::Atomic32 profiling_; | 123 base::Atomic32 profiling_; |
117 base::Atomic32 has_processing_thread_; | 124 base::Atomic32 has_processing_thread_; |
118 base::Atomic32 active_; | 125 base::Atomic32 active_; |
119 PlatformData* data_; // Platform specific data. | 126 PlatformData* data_; // Platform specific data. |
120 bool is_counting_samples_; | 127 bool is_counting_samples_; |
121 // Counts stack samples taken in JS VM state. | 128 // Counts stack samples taken in JS VM state. |
122 unsigned js_and_external_sample_count_; | 129 unsigned js_and_external_sample_count_; |
| 130 void* GetSampleHelper(); |
123 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler); | 131 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler); |
124 }; | 132 }; |
125 | 133 |
126 | 134 |
127 } } // namespace v8::internal | 135 } } // namespace v8::internal |
128 | 136 |
129 #endif // V8_SAMPLER_H_ | 137 #endif // V8_SAMPLER_H_ |
OLD | NEW |