summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/wasm-stack-check.js
blob: cd2384acecb0ba9ecbad28e4568b091b63b6c6ec (plain)
1
2
3
4
5
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
37
38
39
40
41
42
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
// Copyright 2020 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.
//
// Flags: --allow-natives-syntax

utils.load('test/inspector/wasm-inspector-test.js');

let {session, contextGroup, Protocol} =
    InspectorTest.start('Tests pausing a running script and stepping');

var builder = new WasmModuleBuilder();

let pause = builder.addImport('imports', 'pause', kSig_v_v);
let f = builder.addFunction('f', kSig_i_i)
  .addBody([
      kExprLocalGet, 0,
      kExprI32Const, 1,
      kExprI32Add]);
let main = builder.addFunction('main', kSig_i_v)
    .addBody([
        kExprCallFunction, pause,
        kExprI32Const, 12, kExprCallFunction, f.index])
  .exportFunc();

var module_bytes = builder.toArray();

function instantiate(bytes, imports) {
  var buffer = new ArrayBuffer(bytes.length);
  var view = new Uint8Array(buffer);
  for (var i = 0; i < bytes.length; ++i) {
    view[i] = bytes[i] | 0;
  }
  const module = new WebAssembly.Module(buffer);
  return new WebAssembly.Instance(module, imports);
}

InspectorTest.runAsyncTestSuite([
  async function testPauseAndStep() {
    await Protocol.Debugger.enable();
    InspectorTest.log('Instantiate');
    const instantiate_code = `var instance = (${instantiate})(${JSON.stringify(module_bytes)}, {'imports': {'pause': () => { %ScheduleBreak() } }});`;
    WasmInspectorTest.evalWithUrl(instantiate_code, 'instantiate');
    InspectorTest.log('Wait for script');
    const [, {params: wasmScript}] = await Protocol.Debugger.onceScriptParsed(2);
    InspectorTest.log('Got wasm script: ' + wasmScript.url);

    InspectorTest.log('Run');
    Protocol.Runtime.evaluate({expression: 'instance.exports.main()'});
    InspectorTest.log('Expecting to pause at ' + (f.body_offset - 1));
    await waitForPauseAndStep('stepInto');
    await waitForPauseAndStep('stepInto');
    await waitForPauseAndStep('stepInto');
    await waitForPauseAndStep('stepInto');
    await waitForPauseAndStep('resume');
  }
]);

async function waitForPauseAndStep(stepAction) {
  const msg = await Protocol.Debugger.oncePaused();
  await inspect(msg.params.callFrames[0]);
  Protocol.Debugger[stepAction]();
}

async function inspect(frame) {
  let loc = frame.location;
  let line = [`Paused at offset ${loc.columnNumber}`];
  // Inspect only the top wasm frame.
  for (var scope of frame.scopeChain) {
    if (scope.type == 'module') continue;
    var { objectId } = scope.object;
    if (scope.type == 'wasm-expression-stack') {
      objectId = (await Protocol.Runtime.callFunctionOn({
        functionDeclaration: 'function() { return this.stack }',
        objectId
      })).result.result.objectId;
    }
    var properties =
        await Protocol.Runtime.getProperties({objectId});
    let str = (await Promise.all(properties.result.result.map(
                   elem => WasmInspectorTest.getWasmValue(elem.value))))
                  .join(', ');
    line.push(`${scope.type}: [${str}]`);
  }
  InspectorTest.log(line.join('; '));
}