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 "src/base/atomicops.h" | 8 #include "src/base/atomicops.h" |
9 #include "src/frames.h" | 9 #include "src/frames.h" |
10 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 RegisterState() : pc(NULL), sp(NULL), fp(NULL) {} | 25 RegisterState() : pc(NULL), sp(NULL), fp(NULL) {} |
26 Address pc; // Instruction pointer. | 26 Address pc; // Instruction pointer. |
27 Address sp; // Stack pointer. | 27 Address sp; // Stack pointer. |
28 Address fp; // Frame pointer. | 28 Address fp; // Frame pointer. |
29 }; | 29 }; |
30 | 30 |
31 // TickSample captures the information collected for each sample. | 31 // TickSample captures the information collected for each sample. |
32 struct TickSample { | 32 struct TickSample { |
33 TickSample() | 33 TickSample() |
34 : state(OTHER), | 34 : state(OTHER), |
| 35 frames_count(0), |
35 pc(NULL), | 36 pc(NULL), |
36 external_callback(NULL), | 37 external_callback(NULL), |
37 frames_count(0), | |
38 has_external_callback(false), | 38 has_external_callback(false), |
39 top_frame_type(StackFrame::NONE) {} | 39 top_frame_type(StackFrame::NONE) {} |
40 void Init(Isolate* isolate, const RegisterState& state); | 40 static const unsigned kMaxFramesCountLog2 = 8; |
41 StateTag state; // The state of the VM. | 41 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1; |
| 42 |
| 43 StateTag state; // The state of the VM. |
| 44 Address stack[kMaxFramesCount]; // Call stack. |
| 45 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames. |
| 46 |
| 47 void Init(Isolate* isolate, |
| 48 const RegisterState& state, |
| 49 unsigned max_frame_count = kMaxFramesCount); |
42 Address pc; // Instruction pointer. | 50 Address pc; // Instruction pointer. |
43 union { | 51 union { |
44 Address tos; // Top stack value (*sp). | 52 Address tos; // Top stack value (*sp). |
45 Address external_callback; | 53 Address external_callback; |
46 }; | 54 }; |
47 static const unsigned kMaxFramesCountLog2 = 8; | |
48 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1; | |
49 Address stack[kMaxFramesCount]; // Call stack. | |
50 base::TimeTicks timestamp; | 55 base::TimeTicks timestamp; |
51 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames. | |
52 bool has_external_callback : 1; | 56 bool has_external_callback : 1; |
53 StackFrame::Type top_frame_type : 4; | 57 StackFrame::Type top_frame_type : 4; |
54 }; | 58 }; |
55 | 59 |
56 class Sampler { | 60 class Sampler { |
57 public: | 61 public: |
58 // Initializes the Sampler support. Called once at VM startup. | 62 // Initializes the Sampler support. Called once at VM startup. |
59 static void SetUp(); | 63 static void SetUp(); |
60 static void TearDown(); | 64 static void TearDown(); |
61 | 65 |
(...skipping 16 matching lines...) Expand all Loading... |
78 return base::NoBarrier_Load(&profiling_) > 0 && | 82 return base::NoBarrier_Load(&profiling_) > 0 && |
79 !base::NoBarrier_Load(&has_processing_thread_); | 83 !base::NoBarrier_Load(&has_processing_thread_); |
80 } | 84 } |
81 void IncreaseProfilingDepth(); | 85 void IncreaseProfilingDepth(); |
82 void DecreaseProfilingDepth(); | 86 void DecreaseProfilingDepth(); |
83 | 87 |
84 // Whether the sampler is running (that is, consumes resources). | 88 // Whether the sampler is running (that is, consumes resources). |
85 bool IsActive() const { return base::NoBarrier_Load(&active_); } | 89 bool IsActive() const { return base::NoBarrier_Load(&active_); } |
86 | 90 |
87 void DoSample(); | 91 void DoSample(); |
| 92 void GetSample(TickSample* sample, unsigned max_frame_count); |
88 // If true next sample must be initiated on the profiler event processor | 93 // If true next sample must be initiated on the profiler event processor |
89 // thread right after latest sample is processed. | 94 // thread right after latest sample is processed. |
90 void SetHasProcessingThread(bool value) { | 95 void SetHasProcessingThread(bool value) { |
91 base::NoBarrier_Store(&has_processing_thread_, value); | 96 base::NoBarrier_Store(&has_processing_thread_, value); |
92 } | 97 } |
93 | 98 |
94 // Used in tests to make sure that stack sampling is performed. | 99 // Used in tests to make sure that stack sampling is performed. |
95 unsigned js_and_external_sample_count() const { | 100 unsigned js_and_external_sample_count() const { |
96 return js_and_external_sample_count_; | 101 return js_and_external_sample_count_; |
97 } | 102 } |
(...skipping 15 matching lines...) Expand all Loading... |
113 | 118 |
114 Isolate* isolate_; | 119 Isolate* isolate_; |
115 const int interval_; | 120 const int interval_; |
116 base::Atomic32 profiling_; | 121 base::Atomic32 profiling_; |
117 base::Atomic32 has_processing_thread_; | 122 base::Atomic32 has_processing_thread_; |
118 base::Atomic32 active_; | 123 base::Atomic32 active_; |
119 PlatformData* data_; // Platform specific data. | 124 PlatformData* data_; // Platform specific data. |
120 bool is_counting_samples_; | 125 bool is_counting_samples_; |
121 // Counts stack samples taken in JS VM state. | 126 // Counts stack samples taken in JS VM state. |
122 unsigned js_and_external_sample_count_; | 127 unsigned js_and_external_sample_count_; |
| 128 void CaptureRegisterState_(); |
| 129 void CaptureRegisterState_(RegisterState* state, bool* captured_successfully); |
123 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler); | 130 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler); |
124 }; | 131 }; |
125 | 132 |
126 | 133 |
127 } } // namespace v8::internal | 134 } } // namespace v8::internal |
128 | 135 |
129 #endif // V8_SAMPLER_H_ | 136 #endif // V8_SAMPLER_H_ |
OLD | NEW |