2017-04-06 09:49:38 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
2017-07-06 14:10:53 +00:00
|
|
|
// Flags: --wasm-async-compilation --expose-wasm --allow-natives-syntax
|
2017-04-06 09:49:38 +00:00
|
|
|
|
|
|
|
load("test/mjsunit/wasm/wasm-constants.js");
|
|
|
|
load("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
|
2017-04-30 09:03:38 +00:00
|
|
|
function assertCompiles(buffer) {
|
2017-10-13 14:21:56 +00:00
|
|
|
return assertPromiseFulfills(WebAssembly.compile(buffer))
|
|
|
|
.then(module => assertTrue(module instanceof WebAssembly.Module));
|
2017-04-06 09:49:38 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 09:03:38 +00:00
|
|
|
function assertCompileError(buffer) {
|
2017-10-13 14:21:56 +00:00
|
|
|
return assertPromiseRejects(WebAssembly.compile(buffer))
|
|
|
|
.then(ex => assertTrue(ex instanceof WebAssembly.CompileError));
|
2017-04-06 09:49:38 +00:00
|
|
|
}
|
|
|
|
|
2017-10-13 14:21:56 +00:00
|
|
|
let ok_buffer = (() => {
|
|
|
|
var builder = new WasmModuleBuilder();
|
|
|
|
builder.addFunction('f', kSig_i_v)
|
|
|
|
.addBody([kExprI32Const, 42])
|
|
|
|
.exportAs('f');
|
|
|
|
return builder.toBuffer();
|
|
|
|
})();
|
2017-04-30 09:03:38 +00:00
|
|
|
|
2017-10-13 14:21:56 +00:00
|
|
|
// The OK buffer validates and can be made into a module.
|
|
|
|
assertTrue(WebAssembly.validate(ok_buffer));
|
|
|
|
let ok_module = new WebAssembly.Module(ok_buffer);
|
|
|
|
assertTrue(ok_module instanceof WebAssembly.Module);
|
2017-04-30 09:03:38 +00:00
|
|
|
|
2017-10-13 14:21:56 +00:00
|
|
|
// The bad buffer does not validate and cannot be made into a module.
|
|
|
|
let bad_buffer = new ArrayBuffer(0);
|
|
|
|
assertFalse(WebAssembly.validate(bad_buffer));
|
|
|
|
assertThrows(
|
|
|
|
() => new WebAssembly.Module(bad_buffer), WebAssembly.CompileError);
|
2017-04-30 09:03:38 +00:00
|
|
|
|
2017-10-13 14:21:56 +00:00
|
|
|
const kNumCompiles = 3;
|
2017-04-30 09:03:38 +00:00
|
|
|
|
2017-10-13 14:21:56 +00:00
|
|
|
// TODO(wasm): Remove assertPromiseFulfills once top-level await is a thing.
|
|
|
|
assertPromiseFulfills(async function basicCompile() {
|
2017-04-30 09:03:38 +00:00
|
|
|
// Three compilations of the OK module should succeed.
|
|
|
|
for (var i = 0; i < kNumCompiles; i++) {
|
|
|
|
await assertCompiles(ok_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Three compilations of the bad module should fail.
|
|
|
|
for (var i = 0; i < kNumCompiles; i++) {
|
|
|
|
await assertCompileError(bad_buffer);
|
|
|
|
}
|
2017-05-10 16:18:55 +00:00
|
|
|
}());
|
2017-04-30 09:03:38 +00:00
|
|
|
|
2017-10-13 14:21:56 +00:00
|
|
|
assertPromiseFulfills(async function badFunctionInTheMiddle() {
|
2017-04-30 09:03:38 +00:00
|
|
|
// We had an error where an exception was generated by a background task and
|
|
|
|
// later thrown in a foreground task. The handle to the exception died
|
2017-08-02 08:23:36 +00:00
|
|
|
// between, since the HandleScope was left.
|
2017-04-30 09:03:38 +00:00
|
|
|
// This test reproduced that error.
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
let sig = builder.addType(kSig_i_v);
|
|
|
|
for (var i = 0; i < 10; ++i) {
|
|
|
|
builder.addFunction('a' + i, sig).addBody([kExprI32Const, 42]);
|
|
|
|
}
|
|
|
|
builder.addFunction('bad', sig).addBody([]);
|
|
|
|
for (var i = 0; i < 10; ++i) {
|
|
|
|
builder.addFunction('b' + i, sig).addBody([kExprI32Const, 42]);
|
|
|
|
}
|
|
|
|
let buffer = builder.toBuffer();
|
|
|
|
await assertCompileError(buffer);
|
2017-05-10 16:18:55 +00:00
|
|
|
}());
|