PR-URL: https://github.com/nodejs/node/pull/44741 Fixes: https://github.com/nodejs/node/issues/44650 Fixes: https://github.com/nodejs/node/issues/37472 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
30 lines
926 B
JavaScript
30 lines
926 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.
|
|
|
|
// Force TurboFan code for serialization.
|
|
// Flags: --allow-natives-syntax --throws --no-liftoff
|
|
// Flags: --no-wasm-lazy-compilation
|
|
|
|
d8.file.execute('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([
|
|
kExprLocalGet,
|
|
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);
|