| 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 namespace v8 { | 15 namespace v8 { |
| 16 namespace internal { | 16 namespace internal { |
| 17 | 17 |
| 18 static const int kProfilerStackSize = 64 * KB; | 18 static const int kProfilerStackSize = 64 * KB; |
| 19 | 19 |
| 20 class CpuSampler : public sampler::Sampler { | 20 class CpuSampler : public sampler::Sampler { |
| 21 public: | 21 public: |
| 22 CpuSampler(Isolate* isolate, ProfilerEventsProcessor* processor) | 22 CpuSampler(Isolate* isolate, ProfilerEventsProcessor* processor) |
| 23 : sampler::Sampler(reinterpret_cast<v8::Isolate*>(isolate)), | 23 : sampler::Sampler(reinterpret_cast<v8::Isolate*>(isolate)), |
| 24 processor_(processor) {} | 24 processor_(processor) {} |
| 25 | 25 |
| 26 void SampleStack(const v8::RegisterState& regs) override { | 26 void SampleStack(const v8::RegisterState& state) override { |
| 27 v8::Isolate* v8_isolate = isolate(); |
| 28 Isolate* i_isolate = reinterpret_cast<Isolate*>(v8_isolate); |
| 29 #if defined(USE_SIMULATOR) |
| 30 v8::RegisterState regs; |
| 31 if (!SimulatorHelper::FillRegisters(i_isolate, ®s)) return; |
| 32 #else |
| 33 const v8::RegisterState& regs = state; |
| 34 #endif |
| 27 TickSample* sample = processor_->StartTickSample(); | 35 TickSample* sample = processor_->StartTickSample(); |
| 28 if (sample == nullptr) return; | 36 if (sample == NULL) return; |
| 29 Isolate* isolate = reinterpret_cast<Isolate*>(this->isolate()); | 37 sample->Init(i_isolate, regs, TickSample::kIncludeCEntryFrame, true); |
| 30 sample->Init(isolate, regs, TickSample::kIncludeCEntryFrame, true); | |
| 31 if (is_counting_samples_ && !sample->timestamp.IsNull()) { | 38 if (is_counting_samples_ && !sample->timestamp.IsNull()) { |
| 32 if (sample->state == JS) ++js_sample_count_; | 39 if (sample->state == JS) ++js_sample_count_; |
| 33 if (sample->state == EXTERNAL) ++external_sample_count_; | 40 if (sample->state == EXTERNAL) ++external_sample_count_; |
| 34 } | 41 } |
| 35 processor_->FinishTickSample(); | 42 processor_->FinishTickSample(); |
| 36 } | 43 } |
| 37 | 44 |
| 38 private: | 45 private: |
| 39 ProfilerEventsProcessor* processor_; | 46 ProfilerEventsProcessor* processor_; |
| 40 }; | 47 }; |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 ReportBuiltinEventRecord* rec = &evt_rec.ReportBuiltinEventRecord_; | 381 ReportBuiltinEventRecord* rec = &evt_rec.ReportBuiltinEventRecord_; |
| 375 Builtins::Name id = static_cast<Builtins::Name>(i); | 382 Builtins::Name id = static_cast<Builtins::Name>(i); |
| 376 rec->start = builtins->builtin(id)->address(); | 383 rec->start = builtins->builtin(id)->address(); |
| 377 rec->builtin_id = id; | 384 rec->builtin_id = id; |
| 378 processor_->Enqueue(evt_rec); | 385 processor_->Enqueue(evt_rec); |
| 379 } | 386 } |
| 380 } | 387 } |
| 381 | 388 |
| 382 } // namespace internal | 389 } // namespace internal |
| 383 } // namespace v8 | 390 } // namespace v8 |
| OLD | NEW |