| 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" | |
| 15 #include "src/isolate.h" | 14 #include "src/isolate.h" |
| 16 #include "src/libsampler/sampler.h" | 15 #include "src/libsampler/sampler.h" |
| 17 #include "src/locked-queue.h" | 16 #include "src/locked-queue.h" |
| 18 #include "src/profiler/circular-queue.h" | 17 #include "src/profiler/circular-queue.h" |
| 19 #include "src/profiler/profiler-listener.h" | 18 #include "src/profiler/profiler-listener.h" |
| 20 #include "src/profiler/tick-sample.h" | 19 #include "src/profiler/tick-sample.h" |
| 21 | 20 |
| 22 namespace v8 { | 21 namespace v8 { |
| 23 namespace internal { | 22 namespace internal { |
| 24 | 23 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 bool is_profiling_; | 231 bool is_profiling_; |
| 233 | 232 |
| 234 DISALLOW_COPY_AND_ASSIGN(CpuProfiler); | 233 DISALLOW_COPY_AND_ASSIGN(CpuProfiler); |
| 235 }; | 234 }; |
| 236 | 235 |
| 237 } // namespace internal | 236 } // namespace internal |
| 238 } // namespace v8 | 237 } // namespace v8 |
| 239 | 238 |
| 240 | 239 |
| 241 #endif // V8_PROFILER_CPU_PROFILER_H_ | 240 #endif // V8_PROFILER_CPU_PROFILER_H_ |
| OLD | NEW |