a51056f5c4
This is a more canonical type name, and is in line with {kVoidCode}. Change-Id: Iaae9524b6fb6ecaafd63ce81cf30e3d01ca3e525 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2775565 Commit-Queue: Manos Koukoutos <manoskouk@chromium.org> Reviewed-by: Clemens Backes <clemensb@chromium.org> Reviewed-by: Simon Zünd <szuend@chromium.org> Cr-Commit-Position: refs/heads/master@{#73557}
27 lines
930 B
JavaScript
27 lines
930 B
JavaScript
// Copyright 2019 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 --no-force-slow-path
|
|
|
|
load("test/mjsunit/wasm/wasm-module-builder.js");
|
|
|
|
// This constant was chosen as it is the smallest number of cases that still
|
|
// triggers the input count overflow. The new limit put into place is smaller.
|
|
const NUM_CASES = 0xfffd;
|
|
|
|
(function TestBrTableTooLarge() {
|
|
let builder = new WasmModuleBuilder();
|
|
let cases = new Array(NUM_CASES).fill(0);
|
|
builder.addFunction('main', kSig_v_i)
|
|
.addBody([].concat([
|
|
kExprBlock, kWasmVoid,
|
|
kExprLocalGet, 0,
|
|
kExprBrTable], wasmSignedLeb(NUM_CASES),
|
|
cases, [0,
|
|
kExprEnd
|
|
])).exportFunc();
|
|
assertThrows(() => new WebAssembly.Module(builder.toBuffer()),
|
|
WebAssembly.CompileError, /invalid table count/);
|
|
})();
|