blob: f40ead82d51cf2682c3b4363e27b3c460af4f5d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// 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.
// Flags: --allow-natives-syntax --turbo-inline-js-wasm-calls
load('test/mjsunit/wasm/wasm-module-builder.js');
function getMain() {
var builder = new WasmModuleBuilder();
builder.addFunction("main", kSig_v_v)
.addBody([kExprUnreachable])
.exportAs("main");
return builder.instantiate().exports.main;
}
let foo = getMain();
function loop() {
for (let i = 0; i < 2; i++) {
try {
foo();
} catch (e) {
if (i) {
throw e;
}
}
}
}
%PrepareFunctionForOptimization(loop);
assertThrows(loop, WebAssembly.RuntimeError, "unreachable");
%OptimizeFunctionOnNextCall(loop);
assertThrows(loop, WebAssembly.RuntimeError, "unreachable");
|