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_PROFILER_SAMPLER_H_ | 5 #ifndef V8_PROFILER_SAMPLER_H_ |
6 #define V8_PROFILER_SAMPLER_H_ | 6 #define V8_PROFILER_SAMPLER_H_ |
7 | 7 |
8 #include "include/v8.h" | 8 #include "include/v8.h" |
9 | 9 |
10 #include "src/base/atomicops.h" | 10 #include "src/base/atomicops.h" |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 base::Atomic32 registered_; | 134 base::Atomic32 registered_; |
135 PlatformData* data_; // Platform specific data. | 135 PlatformData* data_; // Platform specific data. |
136 // Counts stack samples taken in various VM states. | 136 // Counts stack samples taken in various VM states. |
137 bool is_counting_samples_; | 137 bool is_counting_samples_; |
138 unsigned js_sample_count_; | 138 unsigned js_sample_count_; |
139 unsigned external_sample_count_; | 139 unsigned external_sample_count_; |
140 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler); | 140 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler); |
141 }; | 141 }; |
142 | 142 |
143 | 143 |
| 144 #if defined(USE_SIMULATOR) |
| 145 class SimulatorHelper : AllStatic { |
| 146 public: |
| 147 // Returns true if register values were successfully retrieved |
| 148 // from the simulator, otherwise returns false. |
| 149 static bool FillRegisters(Isolate* isolate, v8::RegisterState* state); |
| 150 }; |
| 151 #endif // USE_SIMULATOR |
| 152 |
| 153 |
144 } // namespace internal | 154 } // namespace internal |
145 } // namespace v8 | 155 } // namespace v8 |
146 | 156 |
147 #endif // V8_PROFILER_SAMPLER_H_ | 157 #endif // V8_PROFILER_SAMPLER_H_ |
OLD | NEW |