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