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