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

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: address comments 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 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1779 RUNTIME_FUNCTION(Runtime_DebugIsActive) { 1780 RUNTIME_FUNCTION(Runtime_DebugIsActive) {
1780 SealHandleScope shs(isolate); 1781 SealHandleScope shs(isolate);
1781 return Smi::FromInt(isolate->debug()->is_active()); 1782 return Smi::FromInt(isolate->debug()->is_active());
1782 } 1783 }
1783 1784
1784 1785
1785 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) { 1786 RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) {
1786 UNIMPLEMENTED(); 1787 UNIMPLEMENTED();
1787 return NULL; 1788 return NULL;
1788 } 1789 }
1790
1791 RUNTIME_FUNCTION(Runtime_GetWasmFunctionOffsetTable) {
1792 DCHECK(args.length() == 1);
1793 HandleScope scope(isolate);
1794 CONVERT_ARG_CHECKED(JSValue, script_val, 0);
1795
1796 RUNTIME_ASSERT(script_val->value()->IsScript());
1797 Handle<Script> script = Handle<Script>(Script::cast(script_val->value()));
1798
1799 Handle<wasm::WasmDebugInfo> debug_info(
1800 wasm::GetDebugInfo(script->wasm_object()), isolate);
1801 Handle<FixedArray> elements = wasm::WasmDebugInfo::GetFunctionOffsetTable(
1802 debug_info, 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 Handle<wasm::WasmDebugInfo> debug_info(
1815 wasm::GetDebugInfo(script->wasm_object()), isolate);
1816 return *wasm::WasmDebugInfo::DisassembleFunction(
1817 debug_info, script->wasm_function_index());
1818 }
1819
1789 } // namespace internal 1820 } // namespace internal
1790 } // namespace v8 1821 } // namespace v8
OLDNEW
« src/objects-inl.h ('K') | « src/runtime/runtime.h ('k') | src/wasm/ast-decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698