OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_CPU_PROFILER_H_ | 5 #ifndef V8_PROFILER_CPU_PROFILER_H_ |
6 #define V8_PROFILER_CPU_PROFILER_H_ | 6 #define V8_PROFILER_CPU_PROFILER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
11 #include "src/base/atomic-utils.h" | 11 #include "src/base/atomic-utils.h" |
12 #include "src/base/atomicops.h" | 12 #include "src/base/atomicops.h" |
13 #include "src/base/platform/time.h" | 13 #include "src/base/platform/time.h" |
14 #include "src/compiler.h" | 14 #include "src/compiler.h" |
15 #include "src/isolate.h" | 15 #include "src/isolate.h" |
16 #include "src/libsampler/v8-sampler.h" | 16 #include "src/libsampler/sampler.h" |
17 #include "src/locked-queue.h" | 17 #include "src/locked-queue.h" |
18 #include "src/profiler/circular-queue.h" | 18 #include "src/profiler/circular-queue.h" |
19 #include "src/profiler/profiler-listener.h" | 19 #include "src/profiler/profiler-listener.h" |
20 #include "src/profiler/tick-sample.h" | 20 #include "src/profiler/tick-sample.h" |
21 | 21 |
22 namespace v8 { | 22 namespace v8 { |
23 namespace internal { | 23 namespace internal { |
24 | 24 |
25 // Forward declarations. | 25 // Forward declarations. |
26 class CodeEntry; | 26 class CodeEntry; |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 bool is_profiling_; | 232 bool is_profiling_; |
233 | 233 |
234 DISALLOW_COPY_AND_ASSIGN(CpuProfiler); | 234 DISALLOW_COPY_AND_ASSIGN(CpuProfiler); |
235 }; | 235 }; |
236 | 236 |
237 } // namespace internal | 237 } // namespace internal |
238 } // namespace v8 | 238 } // namespace v8 |
239 | 239 |
240 | 240 |
241 #endif // V8_PROFILER_CPU_PROFILER_H_ | 241 #endif // V8_PROFILER_CPU_PROFILER_H_ |
OLD | NEW |