Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(646)

Side by Side Diff: src/runtime/runtime-debug.cc

Issue 2063013004: [wasm] Disassemble wasm code from script (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-frame-inspection
Patch Set: Add test case Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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-evaluate.h" 8 #include "src/debug/debug-evaluate.h"
9 #include "src/debug/debug-frames.h" 9 #include "src/debug/debug-frames.h"
10 #include "src/debug/debug-scopes.h" 10 #include "src/debug/debug-scopes.h"
11 #include "src/debug/debug.h" 11 #include "src/debug/debug.h"
12 #include "src/frames-inl.h" 12 #include "src/frames-inl.h"
13 #include "src/interpreter/bytecodes.h" 13 #include "src/interpreter/bytecodes.h"
14 #include "src/interpreter/interpreter.h" 14 #include "src/interpreter/interpreter.h"
15 #include "src/isolate-inl.h" 15 #include "src/isolate-inl.h"
16 #include "src/runtime/runtime.h" 16 #include "src/runtime/runtime.h"
17 #include "src/wasm/wasm-debug.h"
17 #include "src/wasm/wasm-module.h" 18 #include "src/wasm/wasm-module.h"
18 19
19 namespace v8 { 20 namespace v8 {
20 namespace internal { 21 namespace internal {
21 22
22 RUNTIME_FUNCTION(Runtime_DebugBreak) { 23 RUNTIME_FUNCTION(Runtime_DebugBreak) {
23 SealHandleScope shs(isolate); 24 SealHandleScope shs(isolate);
24 DCHECK(args.length() == 1); 25 DCHECK(args.length() == 1);
25 CONVERT_ARG_HANDLE_CHECKED(Object, value, 0); 26 CONVERT_ARG_HANDLE_CHECKED(Object, value, 0);
26 isolate->debug()->set_return_value(value); 27 isolate->debug()->set_return_value(value);
(...skipping 1753 matching lines...) Expand 10 before | Expand all | Expand 10 after
1780 RUNTIME_FUNCTION(Runtime_DebugIsActive) { 1781 RUNTIME_FUNCTION(Runtime_DebugIsActive) {
1781 SealHandleScope shs(isolate); 1782 SealHandleScope shs(isolate);
1782 return Smi::FromInt(isolate->debug()->is_active()); 1783 return Smi::FromInt(isolate->debug()->is_active());
1783 } 1784 }
1784 1785
1785 1786
1786 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { 1787 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) {
1787 UNIMPLEMENTED(); 1788 UNIMPLEMENTED();
1788 return NULL; 1789 return NULL;
1789 } 1790 }
1791
1792 RUNTIME_FUNCTION(Runtime_GetWasmFunctionOffsetTable) {
1793 DCHECK(args.length() == 1);
1794 HandleScope scope(isolate);
1795 CONVERT_ARG_CHECKED(JSValue, script_val, 0);
1796
1797 RUNTIME_ASSERT(script_val->value()->IsScript());
1798 Handle<Script> script = Handle<Script>(Script::cast(script_val->value()));
1799
1800 Handle<FixedArray> elements =
1801 wasm::GetDebugInfo(script->wasm_object())
1802 ->GetFunctionOffsetTable(script->wasm_function_index());
1803 return *isolate->factory()->NewJSArrayWithElements(elements);
1804 }
1805
1806 RUNTIME_FUNCTION(Runtime_DisassembleWasmFunction) {
1807 DCHECK(args.length() == 1);
1808 HandleScope scope(isolate);
1809 CONVERT_ARG_CHECKED(JSValue, script_val, 0);
1810
1811 RUNTIME_ASSERT(script_val->value()->IsScript());
1812 Handle<Script> script = Handle<Script>(Script::cast(script_val->value()));
1813
1814 return *wasm::GetDebugInfo(script->wasm_object())
1815 ->DisassembleFunction(script->wasm_function_index());
1816 }
1817
1790 } // namespace internal 1818 } // namespace internal
1791 } // namespace v8 1819 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698