2019-04-15 09:41:23 +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.
|
|
|
|
|
|
|
|
// Flags: --experimental-wasm-compilation-hints --wasm-test-streaming
|
|
|
|
|
2021-06-01 12:46:36 +00:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2019-04-15 09:41:23 +00:00
|
|
|
|
|
|
|
(function testInstantiateStreamingWithLazyHint() {
|
|
|
|
print(arguments.callee.name);
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImport('mod', 'pow', kSig_i_ii);
|
|
|
|
builder.addFunction('upow', kSig_i_i)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-04-15 09:41:23 +00:00
|
|
|
kExprCallFunction, 0])
|
|
|
|
builder.addFunction('upow2', kSig_i_i)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-04-15 09:41:23 +00:00
|
|
|
kExprCallFunction, 0])
|
2019-04-17 17:55:36 +00:00
|
|
|
.setCompilationHint(kCompilationHintStrategyLazy,
|
|
|
|
kCompilationHintTierDefault,
|
|
|
|
kCompilationHintTierDefault)
|
2019-04-15 09:41:23 +00:00
|
|
|
.exportFunc();
|
|
|
|
let bytes = builder.toBuffer();
|
2019-04-16 14:37:38 +00:00
|
|
|
assertPromiseResult(WebAssembly.instantiateStreaming(Promise.resolve(bytes),
|
|
|
|
{mod: {pow: Math.pow}})
|
|
|
|
.then(({module, instance}) => assertEquals(27, instance.exports.upow2(3))));
|
2019-04-15 09:41:23 +00:00
|
|
|
})();
|
|
|
|
|
2019-04-16 14:37:38 +00:00
|
|
|
(function testInstantiateStreamingWithBadLazyHint() {
|
2019-04-15 09:41:23 +00:00
|
|
|
print(arguments.callee.name);
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImport('mod', 'pow', kSig_i_ii);
|
|
|
|
builder.addFunction('upow', kSig_i_i)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-04-15 09:41:23 +00:00
|
|
|
kExprCallFunction, 0])
|
|
|
|
builder.addFunction('upow2', kSig_i_i)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-04-15 09:41:23 +00:00
|
|
|
kExprCallFunction, 0])
|
2019-04-17 17:55:36 +00:00
|
|
|
.setCompilationHint(kCompilationHintStrategyLazy,
|
|
|
|
kCompilationHintTierOptimized,
|
|
|
|
kCompilationHintTierBaseline)
|
2019-04-15 09:41:23 +00:00
|
|
|
.exportFunc();
|
|
|
|
let bytes = builder.toBuffer();
|
2019-04-16 14:37:38 +00:00
|
|
|
assertPromiseResult(WebAssembly.instantiateStreaming(Promise.resolve(bytes),
|
|
|
|
{mod: {pow: Math.pow}})
|
|
|
|
.then(assertUnreachable,
|
2019-04-30 14:04:56 +00:00
|
|
|
error => assertEquals("WebAssembly.instantiateStreaming(): Invalid " +
|
2020-04-29 15:04:46 +00:00
|
|
|
"compilation hint 0x19 (forbidden downgrade) " +
|
2019-04-30 14:04:56 +00:00
|
|
|
"@+78",
|
2019-04-16 14:37:38 +00:00
|
|
|
error.message)));
|
2019-04-15 09:41:23 +00:00
|
|
|
})();
|
|
|
|
|
2019-04-16 14:37:38 +00:00
|
|
|
(function testInstantiateStreamingWithBadLazyFunctionBody() {
|
2019-04-15 09:41:23 +00:00
|
|
|
print(arguments.callee.name);
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImport('mod', 'pow', kSig_f_ff);
|
|
|
|
builder.addFunction('upow', kSig_i_i)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-04-15 09:41:23 +00:00
|
|
|
kExprCallFunction, 0])
|
|
|
|
builder.addFunction('upow2', kSig_i_i)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-04-15 09:41:23 +00:00
|
|
|
kExprCallFunction, 0])
|
2019-04-17 17:55:36 +00:00
|
|
|
.setCompilationHint(kCompilationHintStrategyLazy,
|
|
|
|
kCompilationHintTierDefault,
|
|
|
|
kCompilationHintTierDefault)
|
2019-04-15 09:41:23 +00:00
|
|
|
.exportFunc();
|
|
|
|
let bytes = builder.toBuffer();
|
2019-04-16 14:37:38 +00:00
|
|
|
assertPromiseResult(WebAssembly.instantiateStreaming(Promise.resolve(bytes),
|
|
|
|
{mod: {pow: Math.pow}})
|
|
|
|
.then(assertUnreachable,
|
2021-03-09 12:22:44 +00:00
|
|
|
error => assertEquals("WebAssembly.instantiateStreaming(): call[0] " +
|
2019-05-20 23:36:09 +00:00
|
|
|
"expected type f32, found local.get of type " +
|
2021-03-09 12:22:44 +00:00
|
|
|
"i32 @+92",
|
2019-04-30 14:04:56 +00:00
|
|
|
error.message)));
|
2019-04-15 09:41:23 +00:00
|
|
|
})();
|
2019-04-15 13:03:55 +00:00
|
|
|
|
|
|
|
(function testInstantiateStreamingEmptyModule() {
|
|
|
|
print(arguments.callee.name);
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImport('mod', 'pow', kSig_i_ii);
|
|
|
|
let bytes = builder.toBuffer();
|
2019-04-16 14:37:38 +00:00
|
|
|
assertPromiseResult(WebAssembly.instantiateStreaming(Promise.resolve(bytes),
|
|
|
|
{mod: {pow: Math.pow}}));
|
2019-04-15 13:03:55 +00:00
|
|
|
})();
|
|
|
|
|
2019-04-16 14:37:38 +00:00
|
|
|
(function testInstantiateStreamingLazyModule() {
|
2019-04-15 13:03:55 +00:00
|
|
|
print(arguments.callee.name);
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImport('mod', 'pow', kSig_i_ii);
|
|
|
|
builder.addFunction('upow', kSig_i_i)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-04-15 13:03:55 +00:00
|
|
|
kExprCallFunction, 0])
|
2019-04-17 17:55:36 +00:00
|
|
|
.setCompilationHint(kCompilationHintStrategyLazy,
|
|
|
|
kCompilationHintTierDefault,
|
|
|
|
kCompilationHintTierDefault)
|
2019-04-15 13:03:55 +00:00
|
|
|
.exportFunc();
|
|
|
|
let bytes = builder.toBuffer();
|
2019-04-16 14:37:38 +00:00
|
|
|
assertPromiseResult(WebAssembly.instantiateStreaming(Promise.resolve(bytes),
|
|
|
|
{mod: {pow: Math.pow}})
|
|
|
|
.then(({module, instance}) => assertEquals(27, instance.exports.upow(3))));
|
2019-04-15 13:03:55 +00:00
|
|
|
})();
|
2019-04-25 15:54:16 +00:00
|
|
|
|
|
|
|
(function testInstantiateStreamingLazyBaselineModule() {
|
|
|
|
print(arguments.callee.name);
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImport('mod', 'pow', kSig_i_ii);
|
|
|
|
builder.addFunction('upow', kSig_i_i)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-04-25 15:54:16 +00:00
|
|
|
kExprCallFunction, 0])
|
|
|
|
.setCompilationHint(kCompilationHintStrategyLazyBaselineEagerTopTier,
|
|
|
|
kCompilationHintTierDefault,
|
|
|
|
kCompilationHintTierDefault)
|
|
|
|
.exportFunc();
|
|
|
|
let bytes = builder.toBuffer();
|
|
|
|
assertPromiseResult(WebAssembly.instantiateStreaming(Promise.resolve(bytes),
|
|
|
|
{mod: {pow: Math.pow}})
|
|
|
|
.then(({module, instance}) => assertEquals(27, instance.exports.upow(3))));
|
|
|
|
})();
|