| 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/profile-generator.h" |
| 6 | |
| 7 #include "src/profile-generator-inl.h" | |
| 8 | 6 |
| 9 #include "src/compiler.h" | 7 #include "src/compiler.h" |
| 10 #include "src/debug/debug.h" | 8 #include "src/debug/debug.h" |
| 11 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
| 12 #include "src/global-handles.h" | 10 #include "src/global-handles.h" |
| 11 #include "src/profile-generator-inl.h" |
| 13 #include "src/sampler.h" | 12 #include "src/sampler.h" |
| 14 #include "src/scopeinfo.h" | 13 #include "src/scopeinfo.h" |
| 15 #include "src/splay-tree-inl.h" | 14 #include "src/splay-tree-inl.h" |
| 16 #include "src/unicode.h" | 15 #include "src/unicode.h" |
| 17 | 16 |
| 18 namespace v8 { | 17 namespace v8 { |
| 19 namespace internal { | 18 namespace internal { |
| 20 | 19 |
| 21 | 20 |
| 22 JITLineInfoTable::JITLineInfoTable() {} | 21 JITLineInfoTable::JITLineInfoTable() {} |
| (...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 case EXTERNAL: | 694 case EXTERNAL: |
| 696 return program_entry_; | 695 return program_entry_; |
| 697 case IDLE: | 696 case IDLE: |
| 698 return idle_entry_; | 697 return idle_entry_; |
| 699 default: return NULL; | 698 default: return NULL; |
| 700 } | 699 } |
| 701 } | 700 } |
| 702 | 701 |
| 703 } // namespace internal | 702 } // namespace internal |
| 704 } // namespace v8 | 703 } // namespace v8 |
| OLD | NEW |