Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: src/profiler/cpu-profiler.h

Issue 2284313003: Separate CompilationInfo into its own file. (Closed)
Patch Set: fix Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/interpreter/interpreter.cc ('k') | src/profiler/profile-generator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « src/interpreter/interpreter.cc ('k') | src/profiler/profile-generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698