| 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 #include "src/profiler/cpu-profiler.h" | 5 #include "src/profiler/cpu-profiler.h" |
| 6 | 6 |
| 7 #include "src/debug/debug.h" | 7 #include "src/debug/debug.h" |
| 8 #include "src/deoptimizer.h" | 8 #include "src/deoptimizer.h" |
| 9 #include "src/frames-inl.h" | 9 #include "src/frames-inl.h" |
| 10 #include "src/locked-queue-inl.h" | 10 #include "src/locked-queue-inl.h" |
| 11 #include "src/log-inl.h" | 11 #include "src/log-inl.h" |
| 12 #include "src/profiler/cpu-profiler-inl.h" | 12 #include "src/profiler/cpu-profiler-inl.h" |
| 13 #include "src/vm-state-inl.h" | 13 #include "src/vm-state-inl.h" |
| 14 | 14 |
| 15 #include "include/v8-profiler.h" | |
| 16 | |
| 17 namespace v8 { | 15 namespace v8 { |
| 18 namespace internal { | 16 namespace internal { |
| 19 | 17 |
| 20 static const int kProfilerStackSize = 64 * KB; | 18 static const int kProfilerStackSize = 64 * KB; |
| 21 | 19 |
| 22 | 20 |
| 23 ProfilerEventsProcessor::ProfilerEventsProcessor(ProfileGenerator* generator, | 21 ProfilerEventsProcessor::ProfilerEventsProcessor(ProfileGenerator* generator, |
| 24 sampler::Sampler* sampler, | 22 sampler::Sampler* sampler, |
| 25 base::TimeDelta period) | 23 base::TimeDelta period) |
| 26 : Thread(Thread::Options("v8:ProfEvntProc", kProfilerStackSize)), | 24 : Thread(Thread::Options("v8:ProfEvntProc", kProfilerStackSize)), |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 ReportBuiltinEventRecord* rec = &evt_rec.ReportBuiltinEventRecord_; | 358 ReportBuiltinEventRecord* rec = &evt_rec.ReportBuiltinEventRecord_; |
| 361 Builtins::Name id = static_cast<Builtins::Name>(i); | 359 Builtins::Name id = static_cast<Builtins::Name>(i); |
| 362 rec->start = builtins->builtin(id)->address(); | 360 rec->start = builtins->builtin(id)->address(); |
| 363 rec->builtin_id = id; | 361 rec->builtin_id = id; |
| 364 processor_->Enqueue(evt_rec); | 362 processor_->Enqueue(evt_rec); |
| 365 } | 363 } |
| 366 } | 364 } |
| 367 | 365 |
| 368 } // namespace internal | 366 } // namespace internal |
| 369 } // namespace v8 | 367 } // namespace v8 |
| OLD | NEW |