2016-06-29 10:21:43 +00:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2016-11-22 13:58:50 +00:00
|
|
|
// Flags: --expose-wasm
|
2016-06-29 10:21:43 +00:00
|
|
|
|
|
|
|
load("test/mjsunit/wasm/wasm-constants.js");
|
|
|
|
load("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
|
|
|
|
Debug = debug.Debug
|
|
|
|
|
|
|
|
var exception = null;
|
|
|
|
var break_count = 0;
|
|
|
|
|
2016-11-15 17:05:13 +00:00
|
|
|
const expected_frames = [
|
|
|
|
// func-name; wasm?; pos; line; col
|
|
|
|
['call_debugger', false], // --
|
2017-01-15 21:18:53 +00:00
|
|
|
['wasm_2', true, 56, 2, 2], // --
|
|
|
|
['wasm_1', true, 52, 3, 2], // --
|
2016-11-15 17:05:13 +00:00
|
|
|
['testFrameInspection', false], // --
|
|
|
|
['', false]
|
|
|
|
];
|
2016-06-29 10:21:43 +00:00
|
|
|
|
|
|
|
function listener(event, exec_state, event_data, data) {
|
|
|
|
if (event != Debug.DebugEvent.Break) return;
|
|
|
|
++break_count;
|
|
|
|
try {
|
|
|
|
var break_id = exec_state.break_id;
|
|
|
|
var frame_count = exec_state.frameCount();
|
2016-11-15 17:05:13 +00:00
|
|
|
assertEquals(expected_frames.length, frame_count, 'frame count');
|
2016-06-29 10:21:43 +00:00
|
|
|
|
|
|
|
for (var i = 0; i < frame_count; ++i) {
|
|
|
|
var frame = exec_state.frame(i);
|
2016-11-15 17:05:13 +00:00
|
|
|
assertEquals(expected_frames[i][0], frame.func().name(), 'name at ' + i);
|
|
|
|
if (expected_frames[i][1]) { // wasm frame?
|
2016-11-22 13:58:50 +00:00
|
|
|
assertEquals(expected_frames[i][3], frame.sourceLine(), 'line at ' + i);
|
|
|
|
assertEquals(expected_frames[i][4], frame.sourceColumn(),
|
|
|
|
'column at ' + i);
|
2016-06-29 10:21:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception = e;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var builder = new WasmModuleBuilder();
|
|
|
|
|
|
|
|
// wasm_1 calls wasm_2 on offset 2.
|
|
|
|
// wasm_2 calls call_debugger on offset 1.
|
|
|
|
|
2016-12-20 15:32:56 +00:00
|
|
|
builder.addImport("mod", 'func', kSig_v_v);
|
2016-06-29 10:21:43 +00:00
|
|
|
|
2016-11-15 17:05:13 +00:00
|
|
|
builder.addFunction('wasm_1', kSig_v_v)
|
|
|
|
.addBody([kExprNop, kExprCallFunction, 2])
|
|
|
|
.exportAs('main');
|
2016-06-29 10:21:43 +00:00
|
|
|
|
2016-11-15 17:05:13 +00:00
|
|
|
builder.addFunction('wasm_2', kSig_v_v).addBody([kExprCallFunction, 0]);
|
2016-06-29 10:21:43 +00:00
|
|
|
|
|
|
|
function call_debugger() {
|
|
|
|
debugger;
|
|
|
|
}
|
|
|
|
|
2016-12-20 15:32:56 +00:00
|
|
|
var module = builder.instantiate({mod: {func: call_debugger}});
|
2016-06-29 10:21:43 +00:00
|
|
|
|
|
|
|
(function testFrameInspection() {
|
|
|
|
Debug.setListener(listener);
|
|
|
|
module.exports.main();
|
|
|
|
Debug.setListener(null);
|
|
|
|
|
|
|
|
assertEquals(1, break_count);
|
|
|
|
if (exception) throw exception;
|
|
|
|
})();
|