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
|
|
|
|
|
|
|
|
load('test/mjsunit/wasm/wasm-module-builder.js');
|
|
|
|
|
|
|
|
(function testInstantiateStreamingWithLazyHint() {
|
|
|
|
print(arguments.callee.name);
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImport('mod', 'pow', kSig_i_ii);
|
|
|
|
builder.addFunction('upow', kSig_i_i)
|
|
|
|
.addBody([kExprGetLocal, 0,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
kExprCallFunction, 0])
|
|
|
|
builder.addFunction('upow2', kSig_i_i)
|
|
|
|
.addBody([kExprGetLocal, 0,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
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)
|
|
|
|
.addBody([kExprGetLocal, 0,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
kExprCallFunction, 0])
|
|
|
|
builder.addFunction('upow2', kSig_i_i)
|
|
|
|
.addBody([kExprGetLocal, 0,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
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,
|
|
|
|
error => assertEquals("WebAssembly.compile(): Invalid compilation " +
|
|
|
|
"hint 0x2d (forbidden downgrade) @+78",
|
|
|
|
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)
|
|
|
|
.addBody([kExprGetLocal, 0,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
kExprCallFunction, 0])
|
|
|
|
builder.addFunction('upow2', kSig_i_i)
|
|
|
|
.addBody([kExprGetLocal, 0,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
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,
|
|
|
|
error => assertEquals("WebAssembly.compile(): call[1] expected " +
|
|
|
|
"type f32, found get_local of type i32 @+94", 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)
|
|
|
|
.addBody([kExprGetLocal, 0,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
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)
|
|
|
|
.addBody([kExprGetLocal, 0,
|
|
|
|
kExprGetLocal, 0,
|
|
|
|
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))));
|
|
|
|
})();
|