2016-05-12 09:06:47 +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.
|
|
|
|
|
|
|
|
// Flags: --expose-wasm
|
|
|
|
|
|
|
|
load("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
|
|
|
|
// Collect the Callsite objects instead of just a string:
|
|
|
|
Error.prepareStackTrace = function(error, frames) {
|
|
|
|
return frames;
|
|
|
|
};
|
|
|
|
|
2017-08-25 09:54:26 +00:00
|
|
|
function testTrapLocations(instance, expected_stack_length) {
|
|
|
|
function testWasmTrap(value, reason, position) {
|
2017-09-14 17:34:15 +00:00
|
|
|
let function_name = arguments.callee.name;
|
2017-08-25 09:54:26 +00:00
|
|
|
try {
|
|
|
|
instance.exports.main(value);
|
|
|
|
fail('expected wasm exception');
|
|
|
|
} catch (e) {
|
|
|
|
assertEquals(kTrapMsgs[reason], e.message, 'trap reason');
|
2017-09-14 17:34:15 +00:00
|
|
|
// Check that the trapping function is the one which was called from this
|
|
|
|
// function.
|
|
|
|
assertTrue(
|
|
|
|
e.stack[1].toString().startsWith(function_name), 'stack depth');
|
2017-08-25 09:54:26 +00:00
|
|
|
assertEquals(0, e.stack[0].getLineNumber(), 'wasmFunctionIndex');
|
|
|
|
assertEquals(position, e.stack[0].getPosition(), 'position');
|
|
|
|
}
|
|
|
|
}
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2017-08-25 09:54:26 +00:00
|
|
|
// The actual tests:
|
|
|
|
testWasmTrap(0, kTrapDivByZero, 14);
|
|
|
|
testWasmTrap(1, kTrapMemOutOfBounds, 15);
|
|
|
|
testWasmTrap(2, kTrapUnreachable, 28);
|
|
|
|
testWasmTrap(3, kTrapFuncInvalid, 32);
|
|
|
|
}
|
2017-01-18 12:07:57 +00:00
|
|
|
|
2017-08-25 09:54:26 +00:00
|
|
|
var builder = new WasmModuleBuilder();
|
|
|
|
builder.addMemory(0, 1, false);
|
2016-06-21 19:47:51 +00:00
|
|
|
var sig_index = builder.addType(kSig_i_v)
|
2016-05-12 09:06:47 +00:00
|
|
|
|
|
|
|
// Build a function to resemble this code:
|
|
|
|
// if (idx < 2) {
|
|
|
|
// return load(-2 / idx);
|
|
|
|
// } else if (idx == 2) {
|
|
|
|
// unreachable;
|
|
|
|
// } else {
|
|
|
|
// return call_indirect(idx);
|
|
|
|
// }
|
|
|
|
// There are four different traps which are triggered by different input values:
|
|
|
|
// (0) division by zero; (1) mem oob; (2) unreachable; (3) invalid call target
|
|
|
|
// Each of them also has a different location where it traps.
|
|
|
|
builder.addFunction("main", kSig_i_i)
|
|
|
|
.addBody([
|
|
|
|
// offset 1
|
2016-12-21 13:43:00 +00:00
|
|
|
kExprBlock, kWasmI32,
|
2016-05-12 09:06:47 +00:00
|
|
|
kExprGetLocal, 0,
|
|
|
|
kExprI32Const, 2,
|
|
|
|
kExprI32LtU,
|
2016-12-21 13:43:00 +00:00
|
|
|
kExprIf, kWasmStmt,
|
2016-09-27 20:46:10 +00:00
|
|
|
// offset 9
|
2016-05-12 09:06:47 +00:00
|
|
|
kExprI32Const, 0x7e /* -2 */,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
kExprI32DivU,
|
2016-09-27 20:46:10 +00:00
|
|
|
// offset 15
|
2016-05-12 09:06:47 +00:00
|
|
|
kExprI32LoadMem, 0, 0,
|
2016-09-27 20:46:10 +00:00
|
|
|
kExprBr, 1,
|
2016-05-12 09:06:47 +00:00
|
|
|
kExprEnd,
|
2016-09-27 20:46:10 +00:00
|
|
|
// offset 21
|
2016-05-12 09:06:47 +00:00
|
|
|
kExprGetLocal, 0,
|
|
|
|
kExprI32Const, 2,
|
|
|
|
kExprI32Eq,
|
2016-12-21 13:43:00 +00:00
|
|
|
kExprIf, kWasmStmt,
|
2016-05-12 09:06:47 +00:00
|
|
|
kExprUnreachable,
|
|
|
|
kExprEnd,
|
2016-09-27 20:46:10 +00:00
|
|
|
// offset 30
|
|
|
|
kExprGetLocal, 0,
|
2016-10-26 16:56:05 +00:00
|
|
|
kExprCallIndirect, sig_index, kTableZero,
|
2016-05-12 09:06:47 +00:00
|
|
|
kExprEnd,
|
|
|
|
])
|
|
|
|
.exportAs("main");
|
2016-11-09 08:37:05 +00:00
|
|
|
builder.appendToTable([0]);
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2017-08-25 09:54:26 +00:00
|
|
|
let buffer = builder.toBuffer();
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2017-08-25 09:54:26 +00:00
|
|
|
// Test async compilation and instantiation.
|
2017-10-25 14:12:49 +00:00
|
|
|
assertPromiseResult(WebAssembly.instantiate(buffer), pair => {
|
2017-11-30 15:27:59 +00:00
|
|
|
testTrapLocations(pair.instance, 5);
|
2017-10-25 14:12:49 +00:00
|
|
|
});
|
2016-05-12 09:06:47 +00:00
|
|
|
|
2017-08-25 09:54:26 +00:00
|
|
|
// Test sync compilation and instantiation.
|
|
|
|
testTrapLocations(builder.instantiate(), 4);
|