2018-02-05 16:08:01 +00:00
|
|
|
// 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.
|
|
|
|
|
2020-08-11 11:36:55 +00:00
|
|
|
// The test needs --wasm-tier-up because we can't serialize and deserialize
|
|
|
|
// Liftoff code.
|
|
|
|
// Flags: --allow-natives-syntax --throws --wasm-tier-up
|
2018-02-05 16:08:01 +00:00
|
|
|
|
|
|
|
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([
|
2019-10-08 12:38:48 +00:00
|
|
|
kExprLocalGet,
|
2018-02-05 16:08:01 +00:00
|
|
|
0,
|
|
|
|
kExprCallIndirect,
|
|
|
|
sig_index1,
|
|
|
|
kTableZero
|
|
|
|
]).exportAs('main');
|
2018-10-10 22:05:40 +00:00
|
|
|
builder.setTableBounds(kTableSize, kTableSize);
|
2018-02-05 16:08:01 +00:00
|
|
|
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);
|