2021-09-07 10:14:39 +00:00
|
|
|
// Copyright 2021 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.
|
|
|
|
|
2021-09-13 09:23:09 +00:00
|
|
|
// Flags: --wasm-inlining --no-liftoff --experimental-wasm-return-call
|
2021-09-07 10:14:39 +00:00
|
|
|
|
|
|
|
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
|
|
|
|
// TODO(12166): Consider running tests with --trace-wasm and inspecting their
|
2021-09-13 09:23:09 +00:00
|
|
|
// output, or implementing testing infrastructure with --allow-natives-syntax.
|
2021-09-07 10:14:39 +00:00
|
|
|
|
|
|
|
(function SimpleInliningTest() {
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
|
|
|
|
// f(x) = x - 1
|
|
|
|
let callee = builder.addFunction("callee", kSig_i_i)
|
|
|
|
.addBody([kExprLocalGet, 0, kExprI32Const, 1, kExprI32Sub]);
|
|
|
|
// g(x) = f(5) + x
|
|
|
|
builder.addFunction("main", kSig_i_i)
|
|
|
|
.addBody([kExprI32Const, 5, kExprCallFunction, callee.index,
|
|
|
|
kExprLocalGet, 0, kExprI32Add])
|
|
|
|
.exportAs("main");
|
|
|
|
|
|
|
|
let instance = builder.instantiate();
|
2021-09-13 09:23:09 +00:00
|
|
|
assertEquals(14, instance.exports.main(10));
|
2021-09-07 10:14:39 +00:00
|
|
|
})();
|
2021-09-07 15:11:52 +00:00
|
|
|
|
|
|
|
(function MultiReturnTest() {
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
|
|
|
|
// f(x) = (x - 1, x + 1)
|
|
|
|
let callee = builder.addFunction("callee", kSig_ii_i)
|
|
|
|
.addBody([kExprLocalGet, 0, kExprI32Const, 1, kExprI32Sub,
|
|
|
|
kExprLocalGet, 0, kExprI32Const, 1, kExprI32Add]);
|
|
|
|
// g(x) = { let (a, b) = f(x); a * b}
|
|
|
|
builder.addFunction("main", kSig_i_i)
|
|
|
|
.addBody([kExprLocalGet, 0, kExprCallFunction, callee.index, kExprI32Mul])
|
|
|
|
.exportAs("main");
|
|
|
|
|
|
|
|
let instance = builder.instantiate();
|
2021-09-13 09:23:09 +00:00
|
|
|
assertEquals(9 * 11, instance.exports.main(10));
|
2021-09-07 15:11:52 +00:00
|
|
|
})();
|
|
|
|
|
|
|
|
(function NoReturnTest() {
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
|
|
|
|
let global = builder.addGlobal(kWasmI32, true);
|
|
|
|
|
|
|
|
let callee = builder.addFunction("callee", kSig_v_i)
|
|
|
|
.addBody([kExprLocalGet, 0, kExprGlobalSet, global.index]);
|
|
|
|
|
|
|
|
builder.addFunction("main", kSig_i_i)
|
|
|
|
.addBody([kExprLocalGet, 0, kExprCallFunction, callee.index,
|
|
|
|
kExprGlobalGet, global.index])
|
|
|
|
.exportAs("main");
|
|
|
|
|
|
|
|
let instance = builder.instantiate();
|
2021-09-13 09:23:09 +00:00
|
|
|
assertEquals(10, instance.exports.main(10));
|
2021-09-07 15:11:52 +00:00
|
|
|
})();
|
|
|
|
|
|
|
|
(function InfiniteLoopTest() {
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
|
|
|
|
let callee = builder.addFunction("callee", kSig_i_i)
|
|
|
|
.addBody([kExprLoop, kWasmVoid,
|
|
|
|
kExprLocalGet, 0, kExprI32Const, 1, kExprI32Add,
|
|
|
|
kExprLocalSet, 0, kExprBr, 0,
|
|
|
|
kExprEnd,
|
|
|
|
kExprLocalGet, 0]);
|
|
|
|
|
|
|
|
builder.addFunction("main", kSig_i_i)
|
|
|
|
.addBody([kExprI32Const, 5, kExprCallFunction, callee.index,
|
|
|
|
kExprLocalGet, 0, kExprI32Add])
|
|
|
|
.exportAs("main");
|
|
|
|
|
|
|
|
builder.instantiate();
|
|
|
|
})();
|
2021-09-13 09:23:09 +00:00
|
|
|
|
|
|
|
(function TailCallInCalleeTest() {
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
|
|
|
|
// f(x) = g(x - 1)
|
|
|
|
let callee = builder.addFunction("callee", kSig_i_i)
|
|
|
|
.addBody([kExprLocalGet, 0, kExprI32Const, 1, kExprI32Sub,
|
|
|
|
kExprReturnCall, 1]);
|
|
|
|
// g(x) = x * 2
|
|
|
|
builder.addFunction("inner_callee", kSig_i_i)
|
|
|
|
.addBody([kExprLocalGet, 0, kExprI32Const, 2, kExprI32Mul]);
|
|
|
|
// h(x) = f(x) + 5
|
|
|
|
builder.addFunction("main", kSig_i_i)
|
|
|
|
.addBody([kExprLocalGet, 0, kExprCallFunction, callee.index,
|
|
|
|
kExprI32Const, 5, kExprI32Add])
|
|
|
|
.exportAs("main");
|
|
|
|
|
|
|
|
let instance = builder.instantiate();
|
|
|
|
assertEquals(23, instance.exports.main(10));
|
|
|
|
})();
|