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/runtime/runtime-utils.h" | 5 #include "src/runtime/runtime-utils.h" |
6 | 6 |
7 #include "src/arguments.h" | 7 #include "src/arguments.h" |
8 #include "src/debug/debug.h" | 8 #include "src/debug/debug.h" |
9 #include "src/debug/debug-evaluate.h" | 9 #include "src/debug/debug-evaluate.h" |
10 #include "src/debug/debug-frames.h" | 10 #include "src/debug/debug-frames.h" |
11 #include "src/debug/debug-scopes.h" | 11 #include "src/debug/debug-scopes.h" |
12 #include "src/frames-inl.h" | 12 #include "src/frames-inl.h" |
13 #include "src/isolate-inl.h" | 13 #include "src/isolate-inl.h" |
14 #include "src/runtime/runtime.h" | 14 #include "src/runtime/runtime.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); |
21 DCHECK(args.length() == 0); | 21 DCHECK(args.length() == 0); |
22 // Get the top-most JavaScript frame. | 22 // Get the top-most JavaScript frame. |
23 JavaScriptFrameIterator it(isolate); | 23 JavaScriptFrameIterator it(isolate); |
24 isolate->debug()->Break(args, it.frame()); | 24 isolate->debug()->Break(args, it.frame()); |
25 isolate->debug()->SetAfterBreakTarget(it.frame()); | 25 return isolate->debug()->SetAfterBreakTarget(it.frame()); |
26 return isolate->heap()->undefined_value(); | |
27 } | 26 } |
28 | 27 |
29 | 28 |
30 RUNTIME_FUNCTION(Runtime_HandleDebuggerStatement) { | 29 RUNTIME_FUNCTION(Runtime_HandleDebuggerStatement) { |
31 SealHandleScope shs(isolate); | 30 SealHandleScope shs(isolate); |
32 DCHECK(args.length() == 0); | 31 DCHECK(args.length() == 0); |
33 if (isolate->debug()->break_points_active()) { | 32 if (isolate->debug()->break_points_active()) { |
34 isolate->debug()->HandleDebugBreak(); | 33 isolate->debug()->HandleDebugBreak(); |
35 } | 34 } |
36 return isolate->heap()->undefined_value(); | 35 return isolate->heap()->undefined_value(); |
(...skipping 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1676 return Smi::FromInt(isolate->debug()->is_active()); | 1675 return Smi::FromInt(isolate->debug()->is_active()); |
1677 } | 1676 } |
1678 | 1677 |
1679 | 1678 |
1680 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { | 1679 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { |
1681 UNIMPLEMENTED(); | 1680 UNIMPLEMENTED(); |
1682 return NULL; | 1681 return NULL; |
1683 } | 1682 } |
1684 } // namespace internal | 1683 } // namespace internal |
1685 } // namespace v8 | 1684 } // namespace v8 |
OLD | NEW |