bf3c8b8ff3
Use naming similar to the spec: "table" instead of "function table", "element segment" instead of "function table init". Change-Id: Ib1b6cdfa566f8bd00017ccedf9440084204f10ff Reviewed-on: https://chromium-review.googlesource.com/c/1273612 Commit-Queue: Ben Smith <binji@chromium.org> Reviewed-by: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/master@{#56545}
29 lines
868 B
JavaScript
29 lines
868 B
JavaScript
// Copyright 2018 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 --throws
|
|
|
|
load('test/mjsunit/wasm/wasm-constants.js');
|
|
load('test/mjsunit/wasm/wasm-module-builder.js');
|
|
let kTableSize = 3;
|
|
|
|
var builder = new WasmModuleBuilder();
|
|
var sig_index1 = builder.addType(kSig_i_v);
|
|
builder.addFunction('main', kSig_i_ii).addBody([
|
|
kExprGetLocal,
|
|
0,
|
|
kExprCallIndirect,
|
|
sig_index1,
|
|
kTableZero
|
|
]).exportAs('main');
|
|
builder.setTableBounds(kTableSize, kTableSize);
|
|
var m1_bytes = builder.toBuffer();
|
|
var m1 = new WebAssembly.Module(m1_bytes);
|
|
|
|
var serialized_m1 = %SerializeWasmModule(m1);
|
|
var m1_clone = %DeserializeWasmModule(serialized_m1, m1_bytes);
|
|
var i1 = new WebAssembly.Instance(m1_clone);
|
|
|
|
i1.exports.main(123123);
|