OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/arguments.h" | 8 #include "src/arguments.h" |
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/parser.h" | 12 #include "src/parser.h" |
13 #include "src/runtime/runtime.h" | 13 #include "src/runtime/runtime.h" |
14 #include "src/runtime/runtime-utils.h" | 14 #include "src/runtime/runtime-utils.h" |
15 | 15 |
16 namespace v8 { | 16 namespace v8 { |
17 namespace internal { | 17 namespace internal { |
18 | 18 |
19 RUNTIME_FUNCTION(Runtime_DebugBreak) { | 19 RUNTIME_FUNCTION(Runtime_DebugBreak) { |
20 SealHandleScope shs(isolate); | 20 SealHandleScope shs(isolate); |
(...skipping 3170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3191 return *isolate->factory()->undefined_value(); | 3191 return *isolate->factory()->undefined_value(); |
3192 } | 3192 } |
3193 | 3193 |
3194 | 3194 |
3195 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { | 3195 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { |
3196 UNIMPLEMENTED(); | 3196 UNIMPLEMENTED(); |
3197 return NULL; | 3197 return NULL; |
3198 } | 3198 } |
3199 } // namespace internal | 3199 } // namespace internal |
3200 } // namespace v8 | 3200 } // namespace v8 |
OLD | NEW |