| 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/v8.h" | 5 #include "src/cpu-profiler.h" |
| 6 | |
| 7 #include "src/cpu-profiler-inl.h" | |
| 8 | 6 |
| 9 #include "src/compiler.h" | 7 #include "src/compiler.h" |
| 8 #include "src/cpu-profiler-inl.h" |
| 10 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
| 11 #include "src/frames-inl.h" | 10 #include "src/frames-inl.h" |
| 12 #include "src/hashmap.h" | 11 #include "src/hashmap.h" |
| 13 #include "src/log-inl.h" | 12 #include "src/log-inl.h" |
| 14 #include "src/vm-state-inl.h" | 13 #include "src/vm-state-inl.h" |
| 15 | 14 |
| 16 #include "include/v8-profiler.h" | 15 #include "include/v8-profiler.h" |
| 17 | 16 |
| 18 namespace v8 { | 17 namespace v8 { |
| 19 namespace internal { | 18 namespace internal { |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 Builtins::Name id = static_cast<Builtins::Name>(i); | 541 Builtins::Name id = static_cast<Builtins::Name>(i); |
| 543 rec->start = builtins->builtin(id)->address(); | 542 rec->start = builtins->builtin(id)->address(); |
| 544 rec->builtin_id = id; | 543 rec->builtin_id = id; |
| 545 processor_->Enqueue(evt_rec); | 544 processor_->Enqueue(evt_rec); |
| 546 } | 545 } |
| 547 } | 546 } |
| 548 | 547 |
| 549 | 548 |
| 550 } // namespace internal | 549 } // namespace internal |
| 551 } // namespace v8 | 550 } // namespace v8 |
| OLD | NEW |