Commit f4d408fd authored by Benedikt Meurer's avatar Benedikt Meurer Committed by Commit Bot

[wasm][debug] Make Scope order consistent.

JavaScript scopes are reported from inner-most to outer-most, while
previously we would report WebAssembly frames from outer-most to
inner-most. This is quite confusing for developers, and also doesn't
really make sense, so this CL fixes this inconsistency.

Bug: chromium:1071432
Change-Id: I6a4742f13b9a0df33e50c6fcd40992873996aaf5
Fixed: chromium:1159309
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2602947
Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
Commit-Queue: Yang Guo <yangguo@chromium.org>
Auto-Submit: Benedikt Meurer <bmeurer@chromium.org>
Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
Cr-Commit-Position: refs/heads/master@{#71875}
parent 7a7027f8
...@@ -132,7 +132,13 @@ DebugWasmScopeIterator::DebugWasmScopeIterator(Isolate* isolate, ...@@ -132,7 +132,13 @@ DebugWasmScopeIterator::DebugWasmScopeIterator(Isolate* isolate,
WasmFrame* frame) WasmFrame* frame)
: isolate_(isolate), : isolate_(isolate),
frame_(frame), frame_(frame),
type_(debug::ScopeIterator::ScopeTypeModule) {} type_(debug::ScopeIterator::ScopeTypeWasmExpressionStack) {
// Skip local scope and expression stack scope if the frame is not
// inspectable.
if (!frame->is_inspectable()) {
type_ = debug::ScopeIterator::ScopeTypeModule;
}
}
bool DebugWasmScopeIterator::Done() { bool DebugWasmScopeIterator::Done() {
return type_ == debug::ScopeIterator::ScopeTypeWith; return type_ == debug::ScopeIterator::ScopeTypeWith;
...@@ -141,16 +147,13 @@ bool DebugWasmScopeIterator::Done() { ...@@ -141,16 +147,13 @@ bool DebugWasmScopeIterator::Done() {
void DebugWasmScopeIterator::Advance() { void DebugWasmScopeIterator::Advance() {
DCHECK(!Done()); DCHECK(!Done());
switch (type_) { switch (type_) {
case ScopeTypeModule: case ScopeTypeWasmExpressionStack:
// Skip local scope and expression stack scope if the frame is not type_ = debug::ScopeIterator::ScopeTypeLocal;
// inspectable.
type_ = frame_->is_inspectable() ? debug::ScopeIterator::ScopeTypeLocal
: debug::ScopeIterator::ScopeTypeWith;
break; break;
case ScopeTypeLocal: case ScopeTypeLocal:
type_ = debug::ScopeIterator::ScopeTypeWasmExpressionStack; type_ = debug::ScopeIterator::ScopeTypeModule;
break; break;
case ScopeTypeWasmExpressionStack: case ScopeTypeModule:
// We use ScopeTypeWith type as marker for done. // We use ScopeTypeWith type as marker for done.
type_ = debug::ScopeIterator::ScopeTypeWith; type_ = debug::ScopeIterator::ScopeTypeWith;
break; break;
...@@ -173,13 +176,13 @@ v8::Local<v8::Object> DebugWasmScopeIterator::GetObject() { ...@@ -173,13 +176,13 @@ v8::Local<v8::Object> DebugWasmScopeIterator::GetObject() {
return Utils::ToLocal(wasm::GetModuleScopeObject(instance)); return Utils::ToLocal(wasm::GetModuleScopeObject(instance));
} }
case debug::ScopeIterator::ScopeTypeLocal: { case debug::ScopeIterator::ScopeTypeLocal: {
DCHECK(frame_->is_wasm()); DCHECK(frame_->is_inspectable());
wasm::DebugInfo* debug_info = frame_->native_module()->GetDebugInfo(); wasm::DebugInfo* debug_info = frame_->native_module()->GetDebugInfo();
return Utils::ToLocal(debug_info->GetLocalScopeObject( return Utils::ToLocal(debug_info->GetLocalScopeObject(
isolate_, frame_->pc(), frame_->fp(), frame_->callee_fp())); isolate_, frame_->pc(), frame_->fp(), frame_->callee_fp()));
} }
case debug::ScopeIterator::ScopeTypeWasmExpressionStack: { case debug::ScopeIterator::ScopeTypeWasmExpressionStack: {
DCHECK(frame_->is_wasm()); DCHECK(frame_->is_inspectable());
wasm::DebugInfo* debug_info = frame_->native_module()->GetDebugInfo(); wasm::DebugInfo* debug_info = frame_->native_module()->GetDebugInfo();
return Utils::ToLocal(debug_info->GetStackScopeObject( return Utils::ToLocal(debug_info->GetStackScopeObject(
isolate_, frame_->pc(), frame_->fp(), frame_->callee_fp())); isolate_, frame_->pc(), frame_->fp(), frame_->callee_fp()));
......
...@@ -3,100 +3,100 @@ Testing i32. ...@@ -3,100 +3,100 @@ Testing i32.
Waiting for wasm script. Waiting for wasm script.
Setting 20 breakpoints. Setting 20 breakpoints.
Calling main. Calling main.
Paused at offset 48; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [] Paused at offset 48; wasm-expression-stack: []; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 50; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0] Paused at offset 50; wasm-expression-stack: [0]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 52; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1] Paused at offset 52; wasm-expression-stack: [0, 1]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 54; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2] Paused at offset 54; wasm-expression-stack: [0, 1, 2]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 56; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3] Paused at offset 56; wasm-expression-stack: [0, 1, 2, 3]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 58; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4] Paused at offset 58; wasm-expression-stack: [0, 1, 2, 3, 4]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 60; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5] Paused at offset 60; wasm-expression-stack: [0, 1, 2, 3, 4, 5]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 62; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6] Paused at offset 62; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 64; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7] Paused at offset 64; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 66; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8] Paused at offset 66; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 68; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] Paused at offset 68; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 69; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 17] Paused at offset 69; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 17]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 70; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 24] Paused at offset 70; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 24]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 71; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 30] Paused at offset 71; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 30]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 72; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 35] Paused at offset 72; wasm-expression-stack: [0, 1, 2, 3, 4, 35]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 73; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 39] Paused at offset 73; wasm-expression-stack: [0, 1, 2, 3, 39]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 74; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 42] Paused at offset 74; wasm-expression-stack: [0, 1, 2, 42]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 75; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 44] Paused at offset 75; wasm-expression-stack: [0, 1, 44]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 76; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 45] Paused at offset 76; wasm-expression-stack: [0, 45]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 77; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [45] Paused at offset 77; wasm-expression-stack: [45]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
main returned. main returned.
Testing i64. Testing i64.
Waiting for wasm script. Waiting for wasm script.
Setting 20 breakpoints. Setting 20 breakpoints.
Calling main. Calling main.
Paused at offset 48; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [] Paused at offset 48; wasm-expression-stack: []; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 50; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0] Paused at offset 50; wasm-expression-stack: [0]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 52; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1] Paused at offset 52; wasm-expression-stack: [0, 1]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 54; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2] Paused at offset 54; wasm-expression-stack: [0, 1, 2]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 56; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3] Paused at offset 56; wasm-expression-stack: [0, 1, 2, 3]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 58; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4] Paused at offset 58; wasm-expression-stack: [0, 1, 2, 3, 4]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 60; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5] Paused at offset 60; wasm-expression-stack: [0, 1, 2, 3, 4, 5]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 62; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6] Paused at offset 62; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 64; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7] Paused at offset 64; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 66; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8] Paused at offset 66; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 68; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] Paused at offset 68; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 69; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 17] Paused at offset 69; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 17]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 70; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 24] Paused at offset 70; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 24]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 71; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 30] Paused at offset 71; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 30]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 72; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 35] Paused at offset 72; wasm-expression-stack: [0, 1, 2, 3, 4, 35]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 73; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 39] Paused at offset 73; wasm-expression-stack: [0, 1, 2, 3, 39]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 74; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 42] Paused at offset 74; wasm-expression-stack: [0, 1, 2, 42]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 75; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 44] Paused at offset 75; wasm-expression-stack: [0, 1, 44]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 76; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 45] Paused at offset 76; wasm-expression-stack: [0, 45]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 77; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [45] Paused at offset 77; wasm-expression-stack: [45]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
main returned. main returned.
Testing f32. Testing f32.
Waiting for wasm script. Waiting for wasm script.
Setting 20 breakpoints. Setting 20 breakpoints.
Calling main. Calling main.
Paused at offset 48; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [] Paused at offset 48; wasm-expression-stack: []; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 50; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0] Paused at offset 50; wasm-expression-stack: [0]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 52; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1] Paused at offset 52; wasm-expression-stack: [0, 1]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 54; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2] Paused at offset 54; wasm-expression-stack: [0, 1, 2]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 56; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3] Paused at offset 56; wasm-expression-stack: [0, 1, 2, 3]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 58; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4] Paused at offset 58; wasm-expression-stack: [0, 1, 2, 3, 4]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 60; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5] Paused at offset 60; wasm-expression-stack: [0, 1, 2, 3, 4, 5]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 62; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6] Paused at offset 62; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 64; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7] Paused at offset 64; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 66; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8] Paused at offset 66; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 68; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] Paused at offset 68; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 69; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 17] Paused at offset 69; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 17]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 70; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 24] Paused at offset 70; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 24]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 71; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 30] Paused at offset 71; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 30]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 72; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 35] Paused at offset 72; wasm-expression-stack: [0, 1, 2, 3, 4, 35]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 73; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 39] Paused at offset 73; wasm-expression-stack: [0, 1, 2, 3, 39]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 74; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 42] Paused at offset 74; wasm-expression-stack: [0, 1, 2, 42]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 75; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 44] Paused at offset 75; wasm-expression-stack: [0, 1, 44]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 76; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 45] Paused at offset 76; wasm-expression-stack: [0, 45]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 77; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [45] Paused at offset 77; wasm-expression-stack: [45]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
main returned. main returned.
Testing f64. Testing f64.
Waiting for wasm script. Waiting for wasm script.
Setting 20 breakpoints. Setting 20 breakpoints.
Calling main. Calling main.
Paused at offset 48; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [] Paused at offset 48; wasm-expression-stack: []; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 50; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0] Paused at offset 50; wasm-expression-stack: [0]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 52; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1] Paused at offset 52; wasm-expression-stack: [0, 1]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 54; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2] Paused at offset 54; wasm-expression-stack: [0, 1, 2]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 56; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3] Paused at offset 56; wasm-expression-stack: [0, 1, 2, 3]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 58; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4] Paused at offset 58; wasm-expression-stack: [0, 1, 2, 3, 4]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 60; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5] Paused at offset 60; wasm-expression-stack: [0, 1, 2, 3, 4, 5]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 62; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6] Paused at offset 62; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 64; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7] Paused at offset 64; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 66; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8] Paused at offset 66; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 68; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] Paused at offset 68; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 69; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 17] Paused at offset 69; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 7, 17]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 70; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 24] Paused at offset 70; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 6, 24]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 71; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 30] Paused at offset 71; wasm-expression-stack: [0, 1, 2, 3, 4, 5, 30]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 72; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 4, 35] Paused at offset 72; wasm-expression-stack: [0, 1, 2, 3, 4, 35]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 73; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 3, 39] Paused at offset 73; wasm-expression-stack: [0, 1, 2, 3, 39]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 74; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 2, 42] Paused at offset 74; wasm-expression-stack: [0, 1, 2, 42]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 75; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 1, 44] Paused at offset 75; wasm-expression-stack: [0, 1, 44]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 76; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [0, 45] Paused at offset 76; wasm-expression-stack: [0, 45]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Paused at offset 77; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; wasm-expression-stack: [45] Paused at offset 77; wasm-expression-stack: [45]; local: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
main returned. main returned.
Finished! Finished!
...@@ -12,10 +12,7 @@ Paused: ...@@ -12,10 +12,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 147: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/c723f83a byte offset 147: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at func (0:147): at func (0:147):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 4 (i32) i32Arg: 4 (i32)
...@@ -24,16 +21,19 @@ at func (0:147): ...@@ -24,16 +21,19 @@ at func (0:147):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -42,10 +42,8 @@ Paused: ...@@ -42,10 +42,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 149: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/c723f83a byte offset 149: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at func (0:149): at func (0:149):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 11 (i32)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 4 (i32) i32Arg: 4 (i32)
...@@ -54,17 +52,19 @@ at func (0:149): ...@@ -54,17 +52,19 @@ at func (0:149):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 11 (i32)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -73,10 +73,7 @@ Paused: ...@@ -73,10 +73,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 151: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/c723f83a byte offset 151: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at func (0:151): at func (0:151):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -85,16 +82,19 @@ at func (0:151): ...@@ -85,16 +82,19 @@ at func (0:151):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -103,10 +103,8 @@ Paused: ...@@ -103,10 +103,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 153: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/c723f83a byte offset 153: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at func (0:153): at func (0:153):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 47 (i32)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -115,17 +113,19 @@ at func (0:153): ...@@ -115,17 +113,19 @@ at func (0:153):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 47 (i32)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -134,10 +134,7 @@ Paused: ...@@ -134,10 +134,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 155: Wasm opcode 0x42 (kExprI64Const) Script wasm://wasm/c723f83a byte offset 155: Wasm opcode 0x42 (kExprI64Const)
Scope: Scope:
at func (0:155): at func (0:155):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -146,16 +143,19 @@ at func (0:155): ...@@ -146,16 +143,19 @@ at func (0:155):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -164,10 +164,8 @@ Paused: ...@@ -164,10 +164,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 166: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/c723f83a byte offset 166: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at func (0:166): at func (0:166):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 9223372036854775807 (i64)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -176,17 +174,19 @@ at func (0:166): ...@@ -176,17 +174,19 @@ at func (0:166):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 9223372036854775807 (i64)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -195,10 +195,7 @@ Paused: ...@@ -195,10 +195,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 168: Wasm opcode 0x42 (kExprI64Const) Script wasm://wasm/c723f83a byte offset 168: Wasm opcode 0x42 (kExprI64Const)
Scope: Scope:
at func (0:168): at func (0:168):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -207,16 +204,19 @@ at func (0:168): ...@@ -207,16 +204,19 @@ at func (0:168):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -225,10 +225,8 @@ Paused: ...@@ -225,10 +225,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 179: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/c723f83a byte offset 179: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at func (0:179): at func (0:179):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: -9223372036854775808 (i64)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -237,17 +235,19 @@ at func (0:179): ...@@ -237,17 +235,19 @@ at func (0:179):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: -9223372036854775808 (i64)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -256,10 +256,7 @@ Paused: ...@@ -256,10 +256,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 181: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/c723f83a byte offset 181: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at func (0:181): at func (0:181):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -268,16 +265,19 @@ at func (0:181): ...@@ -268,16 +265,19 @@ at func (0:181):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -286,10 +286,8 @@ Paused: ...@@ -286,10 +286,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 183: Wasm opcode 0xb8 (kExprF64UConvertI32) Script wasm://wasm/c723f83a byte offset 183: Wasm opcode 0xb8 (kExprF64UConvertI32)
Scope: Scope:
at func (0:183): at func (0:183):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 1 (i32)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -298,17 +296,19 @@ at func (0:183): ...@@ -298,17 +296,19 @@ at func (0:183):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 1 (i32)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -317,10 +317,8 @@ Paused: ...@@ -317,10 +317,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 184: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/c723f83a byte offset 184: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at func (0:184): at func (0:184):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 1 (f64)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -329,17 +327,19 @@ at func (0:184): ...@@ -329,17 +327,19 @@ at func (0:184):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 1 (f64)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -348,10 +348,9 @@ Paused: ...@@ -348,10 +348,9 @@ Paused:
Script wasm://wasm/c723f83a byte offset 186: Wasm opcode 0xb8 (kExprF64UConvertI32) Script wasm://wasm/c723f83a byte offset 186: Wasm opcode 0xb8 (kExprF64UConvertI32)
Scope: Scope:
at func (0:186): at func (0:186):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 1 (f64)
exported_memory: Memory(1) 1: 7 (i32)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -360,18 +359,19 @@ at func (0:186): ...@@ -360,18 +359,19 @@ at func (0:186):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 1 (f64)
1: 7 (i32)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -380,10 +380,9 @@ Paused: ...@@ -380,10 +380,9 @@ Paused:
Script wasm://wasm/c723f83a byte offset 187: Wasm opcode 0xa3 (kExprF64Div) Script wasm://wasm/c723f83a byte offset 187: Wasm opcode 0xa3 (kExprF64Div)
Scope: Scope:
at func (0:187): at func (0:187):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 1 (f64)
exported_memory: Memory(1) 1: 7 (f64)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -392,18 +391,19 @@ at func (0:187): ...@@ -392,18 +391,19 @@ at func (0:187):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 1 (f64)
1: 7 (f64)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -412,10 +412,8 @@ Paused: ...@@ -412,10 +412,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 188: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/c723f83a byte offset 188: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at func (0:188): at func (0:188):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 0.14285714285714285 (f64)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -424,17 +422,19 @@ at func (0:188): ...@@ -424,17 +422,19 @@ at func (0:188):
unicode☼f64: 0 (f64) unicode☼f64: 0 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 0.14285714285714285 (f64)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -443,10 +443,7 @@ Paused: ...@@ -443,10 +443,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 190: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/c723f83a byte offset 190: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at func (0:190): at func (0:190):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -455,16 +452,19 @@ at func (0:190): ...@@ -455,16 +452,19 @@ at func (0:190):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -473,10 +473,8 @@ Paused: ...@@ -473,10 +473,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 192: Wasm opcode 0xfd (kSimdPrefix) Script wasm://wasm/c723f83a byte offset 192: Wasm opcode 0xfd (kSimdPrefix)
Scope: Scope:
at func (0:192): at func (0:192):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 23 (i32)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -485,17 +483,19 @@ at func (0:192): ...@@ -485,17 +483,19 @@ at func (0:192):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 23 (i32)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -504,10 +504,8 @@ Paused: ...@@ -504,10 +504,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 194: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/c723f83a byte offset 194: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at func (0:194): at func (0:194):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -516,17 +514,19 @@ at func (0:194): ...@@ -516,17 +514,19 @@ at func (0:194):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128) var6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -535,10 +535,7 @@ Paused: ...@@ -535,10 +535,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 196: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/c723f83a byte offset 196: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at func (0:196): at func (0:196):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -547,16 +544,19 @@ at func (0:196): ...@@ -547,16 +544,19 @@ at func (0:196):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -565,10 +565,8 @@ Paused: ...@@ -565,10 +565,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 198: Wasm opcode 0xb3 (kExprF32UConvertI32) Script wasm://wasm/c723f83a byte offset 198: Wasm opcode 0xb3 (kExprF32UConvertI32)
Scope: Scope:
at func (0:198): at func (0:198):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 21 (i32)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -577,17 +575,19 @@ at func (0:198): ...@@ -577,17 +575,19 @@ at func (0:198):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 21 (i32)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -596,10 +596,8 @@ Paused: ...@@ -596,10 +596,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 199: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/c723f83a byte offset 199: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at func (0:199): at func (0:199):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 21 (f32)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -608,17 +606,19 @@ at func (0:199): ...@@ -608,17 +606,19 @@ at func (0:199):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
var7: 0 (f32) var7: 0 (f32)
- scope (wasm-expression-stack):
0: 21 (f32)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -627,10 +627,7 @@ Paused: ...@@ -627,10 +627,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 201: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/c723f83a byte offset 201: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at func (0:201): at func (0:201):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -639,16 +636,19 @@ at func (0:201): ...@@ -639,16 +636,19 @@ at func (0:201):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
var7: 21 (f32) var7: 21 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -657,10 +657,8 @@ Paused: ...@@ -657,10 +657,8 @@ Paused:
Script wasm://wasm/c723f83a byte offset 203: Wasm opcode 0x24 (kExprGlobalSet) Script wasm://wasm/c723f83a byte offset 203: Wasm opcode 0x24 (kExprGlobalSet)
Scope: Scope:
at func (0:203): at func (0:203):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 15 (i32)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -669,17 +667,19 @@ at func (0:203): ...@@ -669,17 +667,19 @@ at func (0:203):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
var7: 21 (f32) var7: 21 (f32)
- scope (wasm-expression-stack):
0: 15 (i32)
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -688,10 +688,7 @@ Paused: ...@@ -688,10 +688,7 @@ Paused:
Script wasm://wasm/c723f83a byte offset 205: Wasm opcode 0x0b (kExprEnd) Script wasm://wasm/c723f83a byte offset 205: Wasm opcode 0x0b (kExprEnd)
Scope: Scope:
at func (0:205): at func (0:205):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 15 (i32)
- scope (local): - scope (local):
0: 0 (f64) 0: 0 (f64)
i32Arg: 11 (i32) i32Arg: 11 (i32)
...@@ -700,16 +697,19 @@ at func (0:205): ...@@ -700,16 +697,19 @@ at func (0:205):
unicode☼f64: 0.14285714285714285 (f64) unicode☼f64: 0.14285714285714285 (f64)
var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) var6: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
var7: 21 (f32) var7: 21 (f32)
- scope (wasm-expression-stack):
at call_func (0:132):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 15 (i32) globals: "exported_global": 15 (i32)
at call_func (0:132):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 4 (i32) var0: 4 (i32)
var1: 7.199999809265137 (f32) var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 15 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -718,14 +718,14 @@ Paused: ...@@ -718,14 +718,14 @@ Paused:
Script wasm://wasm/c723f83a byte offset 134: Wasm opcode 0x0b (kExprEnd) Script wasm://wasm/c723f83a byte offset 134: Wasm opcode 0x0b (kExprEnd)
Scope: Scope:
at call_func (0:134): at call_func (0:134):
- scope (wasm-expression-stack):
- scope (local):
var0: 4 (i32)
var1: 7.199999809265137 (f32)
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 15 (i32) globals: "exported_global": 15 (i32)
- scope (local):
var0: 4 (i32)
var1: 7.199999809265137 (f32)
- scope (wasm-expression-stack):
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
......
...@@ -12,20 +12,19 @@ Paused: ...@@ -12,20 +12,19 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 169: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/e33badc2 byte offset 169: Wasm opcode 0x20 (kExprLocalGet)
Scope: Scope:
at C (interpreted) (0:169): at C (interpreted) (0:169):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
i32_arg: 42 (i32) i32_arg: 42 (i32)
i32_local: 0 (i32) i32_local: 0 (i32)
var2: 0 (f32) var2: 0 (f32)
- scope (wasm-expression-stack):
at B (liftoff) (0:158):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at B (liftoff) (0:158):
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
- scope (local): - scope (local):
0: 0 (f32) 0: 0 (f32)
i32_arg: 42 (i32) i32_arg: 42 (i32)
...@@ -33,17 +32,18 @@ at B (liftoff) (0:158): ...@@ -33,17 +32,18 @@ at B (liftoff) (0:158):
f32_local: 7.199999809265137 (f32) f32_local: 7.199999809265137 (f32)
var5: 0 (f32) var5: 0 (f32)
v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
at A (liftoff) (0:128):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at A (liftoff) (0:128):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 42 (i32) var0: 42 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -52,21 +52,20 @@ Paused: ...@@ -52,21 +52,20 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 171: Wasm opcode 0x24 (kExprGlobalSet) Script wasm://wasm/e33badc2 byte offset 171: Wasm opcode 0x24 (kExprGlobalSet)
Scope: Scope:
at C (interpreted) (0:171): at C (interpreted) (0:171):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 42 (i32)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
- scope (local): - scope (local):
i32_arg: 42 (i32) i32_arg: 42 (i32)
i32_local: 0 (i32) i32_local: 0 (i32)
var2: 0 (f32) var2: 0 (f32)
- scope (wasm-expression-stack):
0: 42 (i32)
at B (liftoff) (0:158):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at B (liftoff) (0:158):
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
- scope (local): - scope (local):
0: 0 (f32) 0: 0 (f32)
i32_arg: 42 (i32) i32_arg: 42 (i32)
...@@ -74,17 +73,18 @@ at B (liftoff) (0:158): ...@@ -74,17 +73,18 @@ at B (liftoff) (0:158):
f32_local: 7.199999809265137 (f32) f32_local: 7.199999809265137 (f32)
var5: 0 (f32) var5: 0 (f32)
v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
at A (liftoff) (0:128):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 0 (i32) globals: "exported_global": 0 (i32)
at A (liftoff) (0:128):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 42 (i32) var0: 42 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 0 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -93,20 +93,19 @@ Paused: ...@@ -93,20 +93,19 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 173: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/e33badc2 byte offset 173: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at C (interpreted) (0:173): at C (interpreted) (0:173):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
- scope (local): - scope (local):
i32_arg: 42 (i32) i32_arg: 42 (i32)
i32_local: 0 (i32) i32_local: 0 (i32)
var2: 0 (f32) var2: 0 (f32)
- scope (wasm-expression-stack):
at B (liftoff) (0:158):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at B (liftoff) (0:158):
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
- scope (local): - scope (local):
0: 0 (f32) 0: 0 (f32)
i32_arg: 42 (i32) i32_arg: 42 (i32)
...@@ -114,17 +113,18 @@ at B (liftoff) (0:158): ...@@ -114,17 +113,18 @@ at B (liftoff) (0:158):
f32_local: 7.199999809265137 (f32) f32_local: 7.199999809265137 (f32)
var5: 0 (f32) var5: 0 (f32)
v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
at A (liftoff) (0:128):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at A (liftoff) (0:128):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 42 (i32) var0: 42 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -133,21 +133,20 @@ Paused: ...@@ -133,21 +133,20 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 175: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/e33badc2 byte offset 175: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at C (interpreted) (0:175): at C (interpreted) (0:175):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 47 (i32)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
- scope (local): - scope (local):
i32_arg: 42 (i32) i32_arg: 42 (i32)
i32_local: 0 (i32) i32_local: 0 (i32)
var2: 0 (f32) var2: 0 (f32)
- scope (wasm-expression-stack):
0: 47 (i32)
at B (liftoff) (0:158):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at B (liftoff) (0:158):
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
- scope (local): - scope (local):
0: 0 (f32) 0: 0 (f32)
i32_arg: 42 (i32) i32_arg: 42 (i32)
...@@ -155,17 +154,18 @@ at B (liftoff) (0:158): ...@@ -155,17 +154,18 @@ at B (liftoff) (0:158):
f32_local: 7.199999809265137 (f32) f32_local: 7.199999809265137 (f32)
var5: 0 (f32) var5: 0 (f32)
v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
at A (liftoff) (0:128):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at A (liftoff) (0:128):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 42 (i32) var0: 42 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -174,20 +174,19 @@ Paused: ...@@ -174,20 +174,19 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 177: Wasm opcode 0x0b (kExprEnd) Script wasm://wasm/e33badc2 byte offset 177: Wasm opcode 0x0b (kExprEnd)
Scope: Scope:
at C (interpreted) (0:177): at C (interpreted) (0:177):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
- scope (local): - scope (local):
i32_arg: 42 (i32) i32_arg: 42 (i32)
i32_local: 47 (i32) i32_local: 47 (i32)
var2: 0 (f32) var2: 0 (f32)
- scope (wasm-expression-stack):
at B (liftoff) (0:158):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at B (liftoff) (0:158):
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
- scope (local): - scope (local):
0: 0 (f32) 0: 0 (f32)
i32_arg: 42 (i32) i32_arg: 42 (i32)
...@@ -195,17 +194,18 @@ at B (liftoff) (0:158): ...@@ -195,17 +194,18 @@ at B (liftoff) (0:158):
f32_local: 7.199999809265137 (f32) f32_local: 7.199999809265137 (f32)
var5: 0 (f32) var5: 0 (f32)
v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
at A (liftoff) (0:128):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at A (liftoff) (0:128):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 42 (i32) var0: 42 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -214,10 +214,9 @@ Paused: ...@@ -214,10 +214,9 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 160: Wasm opcode 0x1a (kExprDrop) Script wasm://wasm/e33badc2 byte offset 160: Wasm opcode 0x1a (kExprDrop)
Scope: Scope:
at B (liftoff) (0:160): at B (liftoff) (0:160):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 42 (i32)
exported_memory: Memory(1) 1: 3 (i32)
globals: "exported_global": 42 (i32)
- scope (local): - scope (local):
0: 0 (f32) 0: 0 (f32)
i32_arg: 42 (i32) i32_arg: 42 (i32)
...@@ -225,17 +224,18 @@ at B (liftoff) (0:160): ...@@ -225,17 +224,18 @@ at B (liftoff) (0:160):
f32_local: 7.199999809265137 (f32) f32_local: 7.199999809265137 (f32)
var5: 0 (f32) var5: 0 (f32)
v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
- scope (wasm-expression-stack):
0: 42 (i32)
1: 3 (i32)
at A (liftoff) (0:128):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at A (liftoff) (0:128):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 42 (i32) var0: 42 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -244,10 +244,8 @@ Paused: ...@@ -244,10 +244,8 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 161: Wasm opcode 0x1a (kExprDrop) Script wasm://wasm/e33badc2 byte offset 161: Wasm opcode 0x1a (kExprDrop)
Scope: Scope:
at B (liftoff) (0:161): at B (liftoff) (0:161):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) 0: 42 (i32)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
- scope (local): - scope (local):
0: 0 (f32) 0: 0 (f32)
i32_arg: 42 (i32) i32_arg: 42 (i32)
...@@ -255,16 +253,18 @@ at B (liftoff) (0:161): ...@@ -255,16 +253,18 @@ at B (liftoff) (0:161):
f32_local: 7.199999809265137 (f32) f32_local: 7.199999809265137 (f32)
var5: 0 (f32) var5: 0 (f32)
v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
- scope (wasm-expression-stack):
0: 42 (i32)
at A (liftoff) (0:128):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at A (liftoff) (0:128):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 42 (i32) var0: 42 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -273,10 +273,7 @@ Paused: ...@@ -273,10 +273,7 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 162: Wasm opcode 0x0b (kExprEnd) Script wasm://wasm/e33badc2 byte offset 162: Wasm opcode 0x0b (kExprEnd)
Scope: Scope:
at B (liftoff) (0:162): at B (liftoff) (0:162):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
- scope (local): - scope (local):
0: 0 (f32) 0: 0 (f32)
i32_arg: 42 (i32) i32_arg: 42 (i32)
...@@ -284,15 +281,18 @@ at B (liftoff) (0:162): ...@@ -284,15 +281,18 @@ at B (liftoff) (0:162):
f32_local: 7.199999809265137 (f32) f32_local: 7.199999809265137 (f32)
var5: 0 (f32) var5: 0 (f32)
v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128) v128_local: 17 00 00 00 17 00 00 00 17 00 00 00 17 00 00 00 (v128)
- scope (wasm-expression-stack):
at A (liftoff) (0:128):
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
at A (liftoff) (0:128):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 42 (i32) var0: 42 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1)
globals: "exported_global": 42 (i32)
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
...@@ -301,13 +301,13 @@ Paused: ...@@ -301,13 +301,13 @@ Paused:
Script wasm://wasm/e33badc2 byte offset 130: Wasm opcode 0x0b (kExprEnd) Script wasm://wasm/e33badc2 byte offset 130: Wasm opcode 0x0b (kExprEnd)
Scope: Scope:
at A (liftoff) (0:130): at A (liftoff) (0:130):
- scope (wasm-expression-stack):
- scope (local):
var0: 42 (i32)
- scope (module): - scope (module):
instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function) instance: exports: "exported_global" (Global), "exported_memory" (Memory), "exported_table" (Table), "main" (Function)
exported_memory: Memory(1) exported_memory: Memory(1)
globals: "exported_global": 42 (i32) globals: "exported_global": 42 (i32)
- scope (local):
var0: 42 (i32)
- scope (wasm-expression-stack):
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped globals -- skipped globals
......
...@@ -7,16 +7,16 @@ Paused: ...@@ -7,16 +7,16 @@ Paused:
Script wasm://wasm/0c10a5fe byte offset 38: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/0c10a5fe byte offset 38: Wasm opcode 0x01 (kExprNop)
Scope: Scope:
at wasm_A (0:38): at wasm_A (0:38):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
at wasm_B (0:56): - scope (local):
- scope (module): - scope (module):
instance: exports: "main" (Function) instance: exports: "main" (Function)
at wasm_B (0:56):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 3 (i32) var0: 3 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Setting breakpoint at offset 39 on script v8://test/runWasm Setting breakpoint at offset 39 on script v8://test/runWasm
...@@ -32,359 +32,359 @@ Paused: ...@@ -32,359 +32,359 @@ Paused:
Script wasm://wasm/0c10a5fe byte offset 39: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/0c10a5fe byte offset 39: Wasm opcode 0x01 (kExprNop)
Scope: Scope:
at wasm_A (0:39): at wasm_A (0:39):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
at wasm_B (0:56): - scope (local):
- scope (module): - scope (module):
instance: exports: "main" (Function) instance: exports: "main" (Function)
at wasm_B (0:56):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 3 (i32) var0: 3 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 45: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/0c10a5fe byte offset 45: Wasm opcode 0x20 (kExprLocalGet)
Scope: Scope:
at wasm_B (0:45): at wasm_B (0:45):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "main" (Function)
- scope (local): - scope (local):
var0: 3 (i32) var0: 3 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 47: Wasm opcode 0x04 (kExprIf) Script wasm://wasm/0c10a5fe byte offset 47: Wasm opcode 0x04 (kExprIf)
Scope: Scope:
at wasm_B (0:47): at wasm_B (0:47):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 3 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 3 (i32) 0: 3 (i32)
- scope (local):
var0: 3 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 49: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/0c10a5fe byte offset 49: Wasm opcode 0x20 (kExprLocalGet)
Scope: Scope:
at wasm_B (0:49): at wasm_B (0:49):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "main" (Function)
- scope (local): - scope (local):
var0: 3 (i32) var0: 3 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 51: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/0c10a5fe byte offset 51: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at wasm_B (0:51): at wasm_B (0:51):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 3 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 3 (i32) 0: 3 (i32)
- scope (local):
var0: 3 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 53: Wasm opcode 0x6b (kExprI32Sub) Script wasm://wasm/0c10a5fe byte offset 53: Wasm opcode 0x6b (kExprI32Sub)
Scope: Scope:
at wasm_B (0:53): at wasm_B (0:53):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 3 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 3 (i32) 0: 3 (i32)
1: 1 (i32) 1: 1 (i32)
- scope (local):
var0: 3 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 54: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/0c10a5fe byte offset 54: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at wasm_B (0:54): at wasm_B (0:54):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 3 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 2 (i32) 0: 2 (i32)
- scope (local):
var0: 3 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 38: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/0c10a5fe byte offset 38: Wasm opcode 0x01 (kExprNop)
Scope: Scope:
at wasm_A (0:38): at wasm_A (0:38):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
at wasm_B (0:56): - scope (local):
- scope (module): - scope (module):
instance: exports: "main" (Function) instance: exports: "main" (Function)
at wasm_B (0:56):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 2 (i32) var0: 2 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 39: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/0c10a5fe byte offset 39: Wasm opcode 0x01 (kExprNop)
Scope: Scope:
at wasm_A (0:39): at wasm_A (0:39):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
at wasm_B (0:56): - scope (local):
- scope (module): - scope (module):
instance: exports: "main" (Function) instance: exports: "main" (Function)
at wasm_B (0:56):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 2 (i32) var0: 2 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 45: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/0c10a5fe byte offset 45: Wasm opcode 0x20 (kExprLocalGet)
Scope: Scope:
at wasm_B (0:45): at wasm_B (0:45):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "main" (Function)
- scope (local): - scope (local):
var0: 2 (i32) var0: 2 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 47: Wasm opcode 0x04 (kExprIf) Script wasm://wasm/0c10a5fe byte offset 47: Wasm opcode 0x04 (kExprIf)
Scope: Scope:
at wasm_B (0:47): at wasm_B (0:47):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 2 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 2 (i32) 0: 2 (i32)
- scope (local):
var0: 2 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 49: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/0c10a5fe byte offset 49: Wasm opcode 0x20 (kExprLocalGet)
Scope: Scope:
at wasm_B (0:49): at wasm_B (0:49):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "main" (Function)
- scope (local): - scope (local):
var0: 2 (i32) var0: 2 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 51: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/0c10a5fe byte offset 51: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at wasm_B (0:51): at wasm_B (0:51):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 2 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 2 (i32) 0: 2 (i32)
- scope (local):
var0: 2 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 53: Wasm opcode 0x6b (kExprI32Sub) Script wasm://wasm/0c10a5fe byte offset 53: Wasm opcode 0x6b (kExprI32Sub)
Scope: Scope:
at wasm_B (0:53): at wasm_B (0:53):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 2 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 2 (i32) 0: 2 (i32)
1: 1 (i32) 1: 1 (i32)
- scope (local):
var0: 2 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 54: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/0c10a5fe byte offset 54: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at wasm_B (0:54): at wasm_B (0:54):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 2 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 1 (i32) 0: 1 (i32)
- scope (local):
var0: 2 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 38: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/0c10a5fe byte offset 38: Wasm opcode 0x01 (kExprNop)
Scope: Scope:
at wasm_A (0:38): at wasm_A (0:38):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
at wasm_B (0:56): - scope (local):
- scope (module): - scope (module):
instance: exports: "main" (Function) instance: exports: "main" (Function)
at wasm_B (0:56):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 1 (i32) var0: 1 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 39: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/0c10a5fe byte offset 39: Wasm opcode 0x01 (kExprNop)
Scope: Scope:
at wasm_A (0:39): at wasm_A (0:39):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
at wasm_B (0:56): - scope (local):
- scope (module): - scope (module):
instance: exports: "main" (Function) instance: exports: "main" (Function)
at wasm_B (0:56):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 1 (i32) var0: 1 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 45: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/0c10a5fe byte offset 45: Wasm opcode 0x20 (kExprLocalGet)
Scope: Scope:
at wasm_B (0:45): at wasm_B (0:45):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "main" (Function)
- scope (local): - scope (local):
var0: 1 (i32) var0: 1 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 47: Wasm opcode 0x04 (kExprIf) Script wasm://wasm/0c10a5fe byte offset 47: Wasm opcode 0x04 (kExprIf)
Scope: Scope:
at wasm_B (0:47): at wasm_B (0:47):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 1 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 1 (i32) 0: 1 (i32)
- scope (local):
var0: 1 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 49: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/0c10a5fe byte offset 49: Wasm opcode 0x20 (kExprLocalGet)
Scope: Scope:
at wasm_B (0:49): at wasm_B (0:49):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "main" (Function)
- scope (local): - scope (local):
var0: 1 (i32) var0: 1 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 51: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/0c10a5fe byte offset 51: Wasm opcode 0x41 (kExprI32Const)
Scope: Scope:
at wasm_B (0:51): at wasm_B (0:51):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 1 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 1 (i32) 0: 1 (i32)
- scope (local):
var0: 1 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 53: Wasm opcode 0x6b (kExprI32Sub) Script wasm://wasm/0c10a5fe byte offset 53: Wasm opcode 0x6b (kExprI32Sub)
Scope: Scope:
at wasm_B (0:53): at wasm_B (0:53):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 1 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 1 (i32) 0: 1 (i32)
1: 1 (i32) 1: 1 (i32)
- scope (local):
var0: 1 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 54: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/0c10a5fe byte offset 54: Wasm opcode 0x21 (kExprLocalSet)
Scope: Scope:
at wasm_B (0:54): at wasm_B (0:54):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 1 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 0 (i32) 0: 0 (i32)
- scope (local):
var0: 1 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 38: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/0c10a5fe byte offset 38: Wasm opcode 0x01 (kExprNop)
Scope: Scope:
at wasm_A (0:38): at wasm_A (0:38):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
at wasm_B (0:56): - scope (local):
- scope (module): - scope (module):
instance: exports: "main" (Function) instance: exports: "main" (Function)
at wasm_B (0:56):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 0 (i32) var0: 0 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 39: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/0c10a5fe byte offset 39: Wasm opcode 0x01 (kExprNop)
Scope: Scope:
at wasm_A (0:39): at wasm_A (0:39):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
at wasm_B (0:56): - scope (local):
- scope (module): - scope (module):
instance: exports: "main" (Function) instance: exports: "main" (Function)
at wasm_B (0:56):
- scope (wasm-expression-stack):
- scope (local): - scope (local):
var0: 0 (i32) var0: 0 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 45: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/0c10a5fe byte offset 45: Wasm opcode 0x20 (kExprLocalGet)
Scope: Scope:
at wasm_B (0:45): at wasm_B (0:45):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "main" (Function)
- scope (local): - scope (local):
var0: 0 (i32) var0: 0 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 47: Wasm opcode 0x04 (kExprIf) Script wasm://wasm/0c10a5fe byte offset 47: Wasm opcode 0x04 (kExprIf)
Scope: Scope:
at wasm_B (0:47): at wasm_B (0:47):
- scope (module):
instance: exports: "main" (Function)
- scope (local):
var0: 0 (i32)
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
0: 0 (i32) 0: 0 (i32)
- scope (local):
var0: 0 (i32)
- scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
Paused: Paused:
Script wasm://wasm/0c10a5fe byte offset 61: Wasm opcode 0x0b (kExprEnd) Script wasm://wasm/0c10a5fe byte offset 61: Wasm opcode 0x0b (kExprEnd)
Scope: Scope:
at wasm_B (0:61): at wasm_B (0:61):
- scope (module): - scope (wasm-expression-stack):
instance: exports: "main" (Function)
- scope (local): - scope (local):
var0: 0 (i32) var0: 0 (i32)
- scope (wasm-expression-stack): - scope (module):
instance: exports: "main" (Function)
at (anonymous) (0:17): at (anonymous) (0:17):
-- skipped -- skipped
exports.main returned! exports.main returned!
......
...@@ -4,9 +4,9 @@ Wait for script ...@@ -4,9 +4,9 @@ Wait for script
Got wasm script: wasm://wasm/c84b7cde Got wasm script: wasm://wasm/c84b7cde
Run Run
Expecting to pause at 61 Expecting to pause at 61
Paused at offset 61; local: [12]; wasm-expression-stack: [] Paused at offset 61; wasm-expression-stack: []; local: [12]
Paused at offset 62; local: [12]; wasm-expression-stack: [] Paused at offset 62; wasm-expression-stack: []; local: [12]
Paused at offset 64; local: [12]; wasm-expression-stack: [12] Paused at offset 64; wasm-expression-stack: [12]; local: [12]
Paused at offset 66; local: [12]; wasm-expression-stack: [12, 1] Paused at offset 66; wasm-expression-stack: [12, 1]; local: [12]
Paused at offset 67; local: [12]; wasm-expression-stack: [13] Paused at offset 67; wasm-expression-stack: [13]; local: [12]
Finished! Finished!
...@@ -11,318 +11,318 @@ Setting breakpoint on offset 54 (on the setlocal before the call), url wasm://wa ...@@ -11,318 +11,318 @@ Setting breakpoint on offset 54 (on the setlocal before the call), url wasm://wa
} }
Script wasm://wasm/9b4bf87e byte offset 54: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/9b4bf87e byte offset 54: Wasm opcode 0x21 (kExprLocalSet)
at wasm_B (0:54): at wasm_B (0:54):
- scope (module):
-- skipped
- scope (local):
{"var0":4}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{"0":3} {"0":3}
- scope (local):
{"var0":4}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 56: Wasm opcode 0x10 (kExprCallFunction) Script wasm://wasm/9b4bf87e byte offset 56: Wasm opcode 0x10 (kExprCallFunction)
at wasm_B (0:56): at wasm_B (0:56):
- scope (module):
-- skipped
- scope (local):
{"var0":3}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":3}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 38: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/9b4bf87e byte offset 38: Wasm opcode 0x01 (kExprNop)
at wasm_A (0:38): at wasm_A (0:38):
- scope (module):
-- skipped
- scope (local):
{}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
at wasm_B (0:56): - scope (local):
{}
- scope (module): - scope (module):
-- skipped -- skipped
- scope (local): at wasm_B (0:56):
{"var0":3}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":3}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepOver called Debugger.stepOver called
Script wasm://wasm/9b4bf87e byte offset 39: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/9b4bf87e byte offset 39: Wasm opcode 0x01 (kExprNop)
at wasm_A (0:39): at wasm_A (0:39):
- scope (module):
-- skipped
- scope (local):
{}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
at wasm_B (0:56): - scope (local):
{}
- scope (module): - scope (module):
-- skipped -- skipped
- scope (local): at wasm_B (0:56):
{"var0":3}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":3}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepOut called Debugger.stepOut called
Script wasm://wasm/9b4bf87e byte offset 58: Wasm opcode 0x0c (kExprBr) Script wasm://wasm/9b4bf87e byte offset 58: Wasm opcode 0x0c (kExprBr)
at wasm_B (0:58): at wasm_B (0:58):
- scope (module):
-- skipped
- scope (local):
{"var0":3}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":3}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepOut called Debugger.stepOut called
Script wasm://wasm/9b4bf87e byte offset 54: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/9b4bf87e byte offset 54: Wasm opcode 0x21 (kExprLocalSet)
at wasm_B (0:54): at wasm_B (0:54):
- scope (module):
-- skipped
- scope (local):
{"var0":3}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{"0":2} {"0":2}
- scope (local):
{"var0":3}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepOver called Debugger.stepOver called
Script wasm://wasm/9b4bf87e byte offset 56: Wasm opcode 0x10 (kExprCallFunction) Script wasm://wasm/9b4bf87e byte offset 56: Wasm opcode 0x10 (kExprCallFunction)
at wasm_B (0:56): at wasm_B (0:56):
- scope (module):
-- skipped
- scope (local):
{"var0":2}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":2}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepOver called Debugger.stepOver called
Script wasm://wasm/9b4bf87e byte offset 58: Wasm opcode 0x0c (kExprBr) Script wasm://wasm/9b4bf87e byte offset 58: Wasm opcode 0x0c (kExprBr)
at wasm_B (0:58): at wasm_B (0:58):
- scope (module):
-- skipped
- scope (local):
{"var0":2}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":2}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.resume called Debugger.resume called
Script wasm://wasm/9b4bf87e byte offset 54: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/9b4bf87e byte offset 54: Wasm opcode 0x21 (kExprLocalSet)
at wasm_B (0:54): at wasm_B (0:54):
- scope (module):
-- skipped
- scope (local):
{"var0":2}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{"0":1} {"0":1}
- scope (local):
{"var0":2}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 56: Wasm opcode 0x10 (kExprCallFunction) Script wasm://wasm/9b4bf87e byte offset 56: Wasm opcode 0x10 (kExprCallFunction)
at wasm_B (0:56): at wasm_B (0:56):
- scope (module):
-- skipped
- scope (local):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 38: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/9b4bf87e byte offset 38: Wasm opcode 0x01 (kExprNop)
at wasm_A (0:38): at wasm_A (0:38):
- scope (module):
-- skipped
- scope (local):
{}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
at wasm_B (0:56): - scope (local):
{}
- scope (module): - scope (module):
-- skipped -- skipped
- scope (local): at wasm_B (0:56):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepOut called Debugger.stepOut called
Script wasm://wasm/9b4bf87e byte offset 58: Wasm opcode 0x0c (kExprBr) Script wasm://wasm/9b4bf87e byte offset 58: Wasm opcode 0x0c (kExprBr)
at wasm_B (0:58): at wasm_B (0:58):
- scope (module):
-- skipped
- scope (local):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 45: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/9b4bf87e byte offset 45: Wasm opcode 0x20 (kExprLocalGet)
at wasm_B (0:45): at wasm_B (0:45):
- scope (module):
-- skipped
- scope (local):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 47: Wasm opcode 0x04 (kExprIf) Script wasm://wasm/9b4bf87e byte offset 47: Wasm opcode 0x04 (kExprIf)
at wasm_B (0:47): at wasm_B (0:47):
- scope (module):
-- skipped
- scope (local):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{"0":1} {"0":1}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 49: Wasm opcode 0x20 (kExprLocalGet) Script wasm://wasm/9b4bf87e byte offset 49: Wasm opcode 0x20 (kExprLocalGet)
at wasm_B (0:49): at wasm_B (0:49):
- scope (module):
-- skipped
- scope (local):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 51: Wasm opcode 0x41 (kExprI32Const) Script wasm://wasm/9b4bf87e byte offset 51: Wasm opcode 0x41 (kExprI32Const)
at wasm_B (0:51): at wasm_B (0:51):
- scope (module):
-- skipped
- scope (local):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{"0":1} {"0":1}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 53: Wasm opcode 0x6b (kExprI32Sub) Script wasm://wasm/9b4bf87e byte offset 53: Wasm opcode 0x6b (kExprI32Sub)
at wasm_B (0:53): at wasm_B (0:53):
- scope (module):
-- skipped
- scope (local):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{"0":1,"1":1} {"0":1,"1":1}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 54: Wasm opcode 0x21 (kExprLocalSet) Script wasm://wasm/9b4bf87e byte offset 54: Wasm opcode 0x21 (kExprLocalSet)
at wasm_B (0:54): at wasm_B (0:54):
- scope (module):
-- skipped
- scope (local):
{"var0":1}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{"0":0} {"0":0}
- scope (local):
{"var0":1}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 56: Wasm opcode 0x10 (kExprCallFunction) Script wasm://wasm/9b4bf87e byte offset 56: Wasm opcode 0x10 (kExprCallFunction)
at wasm_B (0:56): at wasm_B (0:56):
- scope (module):
-- skipped
- scope (local):
{"var0":0}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":0}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 38: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/9b4bf87e byte offset 38: Wasm opcode 0x01 (kExprNop)
at wasm_A (0:38): at wasm_A (0:38):
- scope (module):
-- skipped
- scope (local):
{}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
at wasm_B (0:56): - scope (local):
{}
- scope (module): - scope (module):
-- skipped -- skipped
- scope (local): at wasm_B (0:56):
{"var0":0}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":0}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 39: Wasm opcode 0x01 (kExprNop) Script wasm://wasm/9b4bf87e byte offset 39: Wasm opcode 0x01 (kExprNop)
at wasm_A (0:39): at wasm_A (0:39):
- scope (module):
-- skipped
- scope (local):
{}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
at wasm_B (0:56): - scope (local):
{}
- scope (module): - scope (module):
-- skipped -- skipped
- scope (local): at wasm_B (0:56):
{"var0":0}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":0}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 40: Wasm opcode 0x0b (kExprEnd) Script wasm://wasm/9b4bf87e byte offset 40: Wasm opcode 0x0b (kExprEnd)
at wasm_A (0:40): at wasm_A (0:40):
- scope (module):
-- skipped
- scope (local):
{}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
at wasm_B (0:56): - scope (local):
{}
- scope (module): - scope (module):
-- skipped -- skipped
- scope (local): at wasm_B (0:56):
{"var0":0}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":0}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
Debugger.stepInto called Debugger.stepInto called
Script wasm://wasm/9b4bf87e byte offset 58: Wasm opcode 0x0c (kExprBr) Script wasm://wasm/9b4bf87e byte offset 58: Wasm opcode 0x0c (kExprBr)
at wasm_B (0:58): at wasm_B (0:58):
- scope (module):
-- skipped
- scope (local):
{"var0":0}
- scope (wasm-expression-stack): - scope (wasm-expression-stack):
{} {}
- scope (local):
{"var0":0}
- scope (module):
-- skipped
at (anonymous) (0:17): at (anonymous) (0:17):
- scope (global): - scope (global):
-- skipped -- skipped
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment