2019-11-18 18:57:22 +00:00
|
|
|
// 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.
|
|
|
|
|
2020-03-27 16:54:28 +00:00
|
|
|
let {session, contextGroup, Protocol} =
|
|
|
|
InspectorTest.start('Tests stepping from javascript into wasm');
|
2019-11-18 18:57:22 +00:00
|
|
|
session.setupScriptMap();
|
|
|
|
|
|
|
|
utils.load('test/mjsunit/wasm/wasm-module-builder.js');
|
|
|
|
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
|
|
|
|
// wasm_A
|
2020-01-09 12:11:55 +00:00
|
|
|
let func = builder.addFunction('wasm_A', kSig_i_i)
|
2020-03-27 16:54:28 +00:00
|
|
|
.addBody([
|
|
|
|
kExprLocalGet, 0, // push param 0
|
|
|
|
kExprI32Const, 1, // push constant 1
|
|
|
|
kExprI32Sub // subtract
|
|
|
|
])
|
|
|
|
.exportAs('main');
|
2019-11-18 18:57:22 +00:00
|
|
|
|
|
|
|
let module_bytes = builder.toArray();
|
|
|
|
|
|
|
|
function instantiate(bytes) {
|
|
|
|
let buffer = new ArrayBuffer(bytes.length);
|
|
|
|
let view = new Uint8Array(buffer);
|
|
|
|
for (let i = 0; i < bytes.length; ++i) {
|
|
|
|
view[i] = bytes[i] | 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
let module = new WebAssembly.Module(buffer);
|
|
|
|
// Set global variable.
|
|
|
|
instance = new WebAssembly.Instance(module);
|
|
|
|
}
|
|
|
|
|
|
|
|
let evalWithUrl = (code, url) => Protocol.Runtime.evaluate(
|
|
|
|
{'expression': code + '\n//# sourceURL=v8://test/' + url});
|
|
|
|
|
|
|
|
Protocol.Debugger.onPaused(async message => {
|
2020-03-27 16:54:28 +00:00
|
|
|
InspectorTest.log('paused');
|
2019-11-18 18:57:22 +00:00
|
|
|
var frames = message.params.callFrames;
|
|
|
|
await session.logSourceLocation(frames[0].location);
|
|
|
|
let action = step_actions.shift() || 'resume';
|
|
|
|
InspectorTest.log('Debugger.' + action)
|
|
|
|
await Protocol.Debugger[action]();
|
|
|
|
})
|
|
|
|
|
|
|
|
let step_actions = [
|
|
|
|
'stepInto', // # debugger
|
|
|
|
'stepInto', // step into instance.exports.main(1)
|
|
|
|
'resume', // move to breakpoint
|
2020-03-27 16:54:28 +00:00
|
|
|
'resume', // then just resume.
|
2019-11-18 18:57:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
contextGroup.addScript(`
|
|
|
|
function test() {
|
|
|
|
debugger;
|
|
|
|
instance.exports.main(1);
|
|
|
|
}
|
|
|
|
//# sourceURL=test.js`);
|
|
|
|
|
|
|
|
(async function Test() {
|
|
|
|
await Protocol.Debugger.enable();
|
|
|
|
InspectorTest.log('Installing code and global variable.');
|
|
|
|
await evalWithUrl('var instance;\n' + instantiate.toString(), 'setup');
|
|
|
|
InspectorTest.log('Calling instantiate function.');
|
|
|
|
evalWithUrl(
|
|
|
|
'instantiate(' + JSON.stringify(module_bytes) + ')', 'callInstantiate');
|
|
|
|
const scriptId = await waitForWasmScript();
|
2020-03-27 16:54:28 +00:00
|
|
|
InspectorTest.log('Setting breakpoint on i32.const');
|
|
|
|
let msg = await Protocol.Debugger.setBreakpoint({
|
|
|
|
'location': {
|
|
|
|
'scriptId': scriptId,
|
|
|
|
'lineNumber': 0,
|
|
|
|
'columnNumber': 2 + func.body_offset
|
|
|
|
}
|
|
|
|
});
|
2019-11-18 18:57:22 +00:00
|
|
|
printFailure(msg);
|
|
|
|
InspectorTest.logMessage(msg.result.actualLocation);
|
2020-03-27 16:54:28 +00:00
|
|
|
await Protocol.Runtime.evaluate({expression: 'test()'});
|
2019-11-18 18:57:22 +00:00
|
|
|
InspectorTest.log('exports.main returned!');
|
|
|
|
InspectorTest.log('Finished!');
|
|
|
|
InspectorTest.completeTest();
|
|
|
|
})();
|
|
|
|
|
|
|
|
function printFailure(message) {
|
|
|
|
if (!message.result) {
|
|
|
|
InspectorTest.logMessage(message);
|
|
|
|
}
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function waitForWasmScript() {
|
|
|
|
InspectorTest.log('Waiting for wasm scripts to be parsed.');
|
|
|
|
while (true) {
|
|
|
|
let msg = await Protocol.Debugger.onceScriptParsed();
|
|
|
|
let url = msg.params.url;
|
2020-01-09 12:11:55 +00:00
|
|
|
if (!url.startsWith('wasm://')) {
|
2019-11-18 18:57:22 +00:00
|
|
|
InspectorTest.log('Ignoring script with url ' + url);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let scriptId = msg.params.scriptId;
|
|
|
|
InspectorTest.log('Got wasm script: ' + url);
|
|
|
|
return scriptId;
|
|
|
|
}
|
|
|
|
}
|