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/profile-generator.h" | 5 #include "src/profiler/profile-generator.h" |
6 | 6 |
| 7 #include "src/ast/scopeinfo.h" |
7 #include "src/debug/debug.h" | 8 #include "src/debug/debug.h" |
8 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
9 #include "src/global-handles.h" | 10 #include "src/global-handles.h" |
10 #include "src/profiler/profile-generator-inl.h" | 11 #include "src/profiler/profile-generator-inl.h" |
11 #include "src/profiler/sampler.h" | 12 #include "src/profiler/sampler.h" |
12 #include "src/scopeinfo.h" | |
13 #include "src/splay-tree-inl.h" | 13 #include "src/splay-tree-inl.h" |
14 #include "src/unicode.h" | 14 #include "src/unicode.h" |
15 | 15 |
16 namespace v8 { | 16 namespace v8 { |
17 namespace internal { | 17 namespace internal { |
18 | 18 |
19 | 19 |
20 JITLineInfoTable::JITLineInfoTable() {} | 20 JITLineInfoTable::JITLineInfoTable() {} |
21 | 21 |
22 | 22 |
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 case EXTERNAL: | 685 case EXTERNAL: |
686 return program_entry_; | 686 return program_entry_; |
687 case IDLE: | 687 case IDLE: |
688 return idle_entry_; | 688 return idle_entry_; |
689 default: return NULL; | 689 default: return NULL; |
690 } | 690 } |
691 } | 691 } |
692 | 692 |
693 } // namespace internal | 693 } // namespace internal |
694 } // namespace v8 | 694 } // namespace v8 |
OLD | NEW |