nodejs/deps/v8/test/mjsunit/regress/wasm/i32-lowering-inlining.js

34 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

// Copyright 2022 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: --no-liftoff --wasm-inlining
// This tests that inlining tolerates multi-return call uses that are not
// projections after Int64Lowering.
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
let builder = new WasmModuleBuilder();
let callee1 = builder.addFunction("callee1", kSig_l_l)
.addBody([kExprLocalGet, 0, kExprI64Const, 1, kExprI64Add]);
let callee2 = builder.addFunction("callee2", kSig_l_l)
.addBody([kExprLocalGet, 0, kExprI64Const, 1, kExprI64Sub]);
builder.addFunction("caller", kSig_l_l)
.addBody([kExprLocalGet, 0,
kExprI64Const, 0,
kExprI64GtS,
kExprIf, kWasmI64,
kExprLocalGet, 0, kExprCallFunction, 0,
kExprElse,
kExprLocalGet, 0, kExprCallFunction, 1,
kExprEnd])
.exportFunc();
let instance = builder.instantiate();
assertEquals(5n, instance.exports.caller(4n));
assertEquals(-9n, instance.exports.caller(-8n));