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/ast/scopeinfo.h" |
8 #include "src/debug/debug.h" | 8 #include "src/debug/debug.h" |
9 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
10 #include "src/global-handles.h" | 10 #include "src/global-handles.h" |
11 #include "src/profiler/profile-generator-inl.h" | 11 #include "src/profiler/profile-generator-inl.h" |
12 #include "src/profiler/sampler.h" | 12 #include "src/profiler/tick-sample.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 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 case EXTERNAL: | 710 case EXTERNAL: |
711 return program_entry_; | 711 return program_entry_; |
712 case IDLE: | 712 case IDLE: |
713 return idle_entry_; | 713 return idle_entry_; |
714 default: return NULL; | 714 default: return NULL; |
715 } | 715 } |
716 } | 716 } |
717 | 717 |
718 } // namespace internal | 718 } // namespace internal |
719 } // namespace v8 | 719 } // namespace v8 |
OLD | NEW |