2018-03-07 08:54:53 +01: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.
|
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
// Force TurboFan code for serialization.
|
2022-04-12 11:10:15 +02:00
|
|
|
// Flags: --allow-natives-syntax --throws --no-liftoff
|
2022-09-21 13:28:42 +02:00
|
|
|
// Flags: --no-wasm-lazy-compilation
|
2018-03-07 08:54:53 +01:00
|
|
|
|
2021-08-29 14:20:49 +02:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2018-03-07 08:54:53 +01:00
|
|
|
let kTableSize = 3;
|
|
|
|
|
|
|
|
var builder = new WasmModuleBuilder();
|
|
|
|
var sig_index1 = builder.addType(kSig_i_v);
|
|
|
|
builder.addFunction('main', kSig_i_ii).addBody([
|
2019-11-08 15:39:11 +01:00
|
|
|
kExprLocalGet,
|
2018-03-07 08:54:53 +01:00
|
|
|
0,
|
|
|
|
kExprCallIndirect,
|
|
|
|
sig_index1,
|
|
|
|
kTableZero
|
|
|
|
]).exportAs('main');
|
2019-03-12 09:01:49 +01:00
|
|
|
builder.setTableBounds(kTableSize, kTableSize);
|
2018-03-07 08:54:53 +01: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);
|