| 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/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/runtime/runtime.h" | 13 #include "src/runtime/runtime.h" |
| 14 #include "src/runtime/runtime-utils.h" | |
| 15 | 14 |
| 16 namespace v8 { | 15 namespace v8 { |
| 17 namespace internal { | 16 namespace internal { |
| 18 | 17 |
| 19 RUNTIME_FUNCTION(Runtime_DebugBreak) { | 18 RUNTIME_FUNCTION(Runtime_DebugBreak) { |
| 20 SealHandleScope shs(isolate); | 19 SealHandleScope shs(isolate); |
| 21 DCHECK(args.length() == 0); | 20 DCHECK(args.length() == 0); |
| 22 // Get the top-most JavaScript frame. | 21 // Get the top-most JavaScript frame. |
| 23 JavaScriptFrameIterator it(isolate); | 22 JavaScriptFrameIterator it(isolate); |
| 24 isolate->debug()->Break(args, it.frame()); | 23 isolate->debug()->Break(args, it.frame()); |
| (...skipping 1698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1723 return *isolate->factory()->undefined_value(); | 1722 return *isolate->factory()->undefined_value(); |
| 1724 } | 1723 } |
| 1725 | 1724 |
| 1726 | 1725 |
| 1727 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { | 1726 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { |
| 1728 UNIMPLEMENTED(); | 1727 UNIMPLEMENTED(); |
| 1729 return NULL; | 1728 return NULL; |
| 1730 } | 1729 } |
| 1731 } // namespace internal | 1730 } // namespace internal |
| 1732 } // namespace v8 | 1731 } // namespace v8 |
| OLD | NEW |