node/deps/v8/test/mjsunit/wasm/exnref-rethrow.js
Michaël Zasso 09a8440b45
deps: update V8 to 12.2.281.27
PR-URL: https://github.com/nodejs/node/pull/51362
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
2024-03-31 15:36:07 +02:00

109 lines
3.4 KiB
JavaScript

// Copyright 2023 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: --allow-natives-syntax --experimental-wasm-exnref --turboshaft-wasm
// This file is for the most parts a direct port of
// test/mjsunit/wasm/exceptions-rethrow.js using the new exception handling
// proposal.
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
d8.file.execute("test/mjsunit/wasm/exceptions-utils.js");
// Test that rethrow expressions can target catch blocks.
(function TestRethrowInCatch() {
print(arguments.callee.name);
let builder = new WasmModuleBuilder();
let except = builder.addTag(kSig_v_v);
let if_sig = builder.addType(makeSig([kWasmExnRef], []));
builder.addFunction("rethrow0", kSig_v_v)
.addBody([
kExprBlock, kExnRefCode,
kExprTryTable, kWasmVoid, 1,
kCatchRef, except, 0,
kExprThrow, except,
kExprEnd,
kExprBr, 1,
kExprEnd,
kExprThrowRef,
]).exportFunc();
builder.addFunction("rethrow1", kSig_i_i)
.addBody([
kExprBlock, kExnRefCode,
kExprTryTable, kWasmI32, 1,
kCatchRef, except, 0,
kExprThrow, except,
kExprEnd,
kExprUnreachable,
kExprEnd,
kExprLocalGet, 0,
kExprI32Eqz,
kExprIf, if_sig,
kExprThrowRef,
kExprElse,
kExprDrop,
kExprEnd,
kExprI32Const, 23,
]).exportFunc();
let instance = builder.instantiate();
assertWasmThrows(instance, except, [], () => instance.exports.rethrow0());
assertWasmThrows(instance, except, [], () => instance.exports.rethrow1(0));
assertEquals(23, instance.exports.rethrow1(1));
})();
// Test that an exception being rethrown can be caught by another local catch
// block in the same function without ever unwinding the activation.
(function TestRethrowRecatch() {
print(arguments.callee.name);
let builder = new WasmModuleBuilder();
let except = builder.addTag(kSig_v_v);
let sig_v_e = builder.addType(makeSig([kWasmExnRef], []));
builder.addFunction("rethrow_recatch", kSig_i_i)
.addBody([
kExprBlock, kExnRefCode,
kExprTryTable, kWasmVoid, 1,
kCatchRef, except, 0,
kExprThrow, except,
kExprEnd,
kExprUnreachable,
kExprEnd,
kExprBlock, sig_v_e,
kExprTryTable, sig_v_e, 1,
kCatchNoRef, except, 0,
kExprLocalGet, 0,
kExprI32Eqz,
kExprIf, sig_v_e,
kExprThrowRef,
kExprElse,
kExprDrop,
kExprEnd,
kExprI32Const, 42,
kExprReturn,
kExprEnd,
kExprEnd,
kExprI32Const, 23,
]).exportFunc();
let instance = builder.instantiate();
assertEquals(23, instance.exports.rethrow_recatch(0));
assertEquals(42, instance.exports.rethrow_recatch(1));
})();
// Test that throw-ref traps if the exception is null.
(function TestRethrowNullTraps() {
print(arguments.callee.name);
let builder = new WasmModuleBuilder();
let except = builder.addTag(kSig_v_v);
let if_sig = builder.addType(makeSig([kWasmExnRef], []));
builder.addFunction("rethrow_null", kSig_v_v)
.addBody([
kExprRefNull, kExnRefCode,
kExprThrowRef,
]).exportFunc();
let instance = builder.instantiate();
assertTraps(kTrapRethrowNull, () => instance.exports.rethrow_null());
})();