2021-02-24 14:47:06 +01:00
|
|
|
// Copyright 2020 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.
|
|
|
|
|
2022-01-29 08:33:07 +01:00
|
|
|
// Flags: --expose-gc --stress-compaction --stress-scavenge=16
|
2021-02-24 14:47:06 +01:00
|
|
|
|
2021-08-29 14:20:49 +02:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2021-02-24 14:47:06 +01:00
|
|
|
|
|
|
|
(function TestReturnOddNumberOfReturns() {
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
let void_sig = builder.addType(kSig_v_v);
|
|
|
|
let mv_sig = builder.addType(
|
|
|
|
makeSig([], [kWasmI32, kWasmI32, kWasmI32, kWasmI32, kWasmI32]));
|
|
|
|
|
|
|
|
let gc_index = builder.addImport('q', 'gc', void_sig);
|
|
|
|
builder.addFunction('main', mv_sig)
|
|
|
|
.addBodyWithEnd([
|
|
|
|
kExprCallFunction, gc_index,
|
|
|
|
kExprI32Const, 1,
|
|
|
|
kExprI32Const, 2,
|
|
|
|
kExprI32Const, 3,
|
|
|
|
kExprI32Const, 4,
|
|
|
|
kExprI32Const, 5,
|
|
|
|
kExprEnd
|
|
|
|
])
|
|
|
|
.exportFunc();
|
|
|
|
|
|
|
|
let instance = builder.instantiate({q: {gc: gc}});
|
|
|
|
|
|
|
|
instance.exports.main();
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function TestReturnEvenNumberOfReturns() {
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
let void_sig = builder.addType(kSig_v_v);
|
|
|
|
let mv_sig =
|
|
|
|
builder.addType(makeSig([], [kWasmI32, kWasmI32, kWasmI32, kWasmI32]));
|
|
|
|
|
|
|
|
let gc_index = builder.addImport('q', 'gc', void_sig);
|
|
|
|
builder.addFunction('main', mv_sig)
|
|
|
|
.addBodyWithEnd([
|
|
|
|
kExprCallFunction, gc_index,
|
|
|
|
kExprI32Const, 1,
|
|
|
|
kExprI32Const, 2,
|
|
|
|
kExprI32Const, 3,
|
|
|
|
kExprI32Const, 4,
|
|
|
|
kExprEnd
|
|
|
|
])
|
|
|
|
.exportFunc();
|
|
|
|
|
|
|
|
let instance = builder.instantiate({q: {gc: gc}});
|
|
|
|
|
|
|
|
instance.exports.main();
|
|
|
|
})();
|