debug-step-into-wasm.js 2.42 KB
Newer Older
1 2 3 4
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

var builder = new WasmModuleBuilder();
builder.addFunction('sub', kSig_i_ii)
// input is 2 args of type int and output is int
.addBody([
  kExprLocalGet, 0, // local.get i0
  kExprLocalGet, 1, // local.get i1
  kExprI32Sub]) // i32.sub i0 i1
.exportFunc();
const instance = builder.instantiate();
const wasm_f = instance.exports.sub;

Debug = debug.Debug;

var exception = null;
var js_break_line = 0;
var break_count = 0;
var wasm_break_count = 0;

function listener(event, exec_state, event_data, data) {
  if (event != Debug.DebugEvent.Break) return;
  try {
    print(event_data.sourceLineText());
    print(event_data.functionName());
    if (event_data.sourceLineText() == 'Debug.setListener(null);') {
      return;
    }
    if (event_data.functionName() == 'f') {
      break_count++;
      assertTrue(
        event_data.sourceLineText().indexOf(`Line ${js_break_line}.`) > 0);
37
      js_break_line++;
38
    } else {
39
      assertTrue(event_data.functionName() == '$sub');
40 41
      wasm_break_count++;
    }
42
    exec_state.prepareStep(Debug.StepAction.StepInto);
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
  } catch (e) {
    exception = e;
    print(e);
  }
};

function f() {
  var result = wasm_f(3, 2); // Line 0.
  result++; // Line 1.
  return result; // Line 2.
}
assertEquals(2, f());

Debug.setListener(listener);
// Set a breakpoint on line 0.
Debug.setBreakPoint(f, 1);
// Set a breakpoint on line 2.
Debug.setBreakPoint(f, 3);
f();
Debug.setListener(null);

var break_count2 = 0;
// In the second execution, only break at javascript frame.
function listener2(event, exec_state, event_data, data) {
  if (event != Debug.DebugEvent.Break) return;
  try {
    print(event_data.sourceLineText());
    if (event_data.sourceLineText() == 'Debug.setListener(null);') {
      return;
    }
    print(event_data.functionName());
    assertTrue(event_data.sourceLineText().indexOf(`Line `) > 0);
    assertEquals(event_data.functionName(), 'f');
    break_count2++;
    exec_state.prepareStep(Debug.StepAction.StepOut);
  } catch (e) {
    exception = e;
    print(e);
  }
};

Debug.setListener(listener2);
f();
Debug.setListener(null);

88 89 90 91
assertEquals(3, break_count);
assertEquals(3, js_break_line);
assertEquals(4, wasm_break_count);
assertEquals(2, break_count2);
92
assertNull(exception);