PR-URL: https://github.com/nodejs/node/pull/58070 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
27 lines
1.0 KiB
JavaScript
27 lines
1.0 KiB
JavaScript
// Copyright 2025 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: --wasm-wrapper-tiering-budget=1 --experimental-wasm-type-reflection
|
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
|
|
|
const func0 =
|
|
new WebAssembly.Function({parameters: [], results: []}, function f1() {});
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
let js_index = builder.addImport("m", "js", kSig_v_v);
|
|
builder.addExport("main", 0);
|
|
|
|
// This causes a wrapper for sig_v_v to get compiled.
|
|
let instance = builder.instantiate({ m: { js: function f2() {} } });
|
|
instance.exports.main();
|
|
|
|
const table = new WebAssembly.Table({ element: "anyfunc", initial: 2 });
|
|
// Since we have a compiled wrapper, this doesn't bother creating copied
|
|
// WasmImportDatas where the table could be set as call origin.
|
|
table.grow(8, func0);
|
|
// This shouldn't DCHECK that the old table's entries have the old table
|
|
// stored as their call origin.
|
|
table.grow(1);
|