node/deps/v8/test/mjsunit/wasm/export-global.js
Michaël Zasso 1d29d81c69 deps: update V8 to 12.3.219.16
PR-URL: https://github.com/nodejs/node/pull/52293
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
2024-04-19 08:39:47 +00:00

65 lines
2.3 KiB
JavaScript

// Copyright 2017 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.
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
(function duplicateGlobalExportName() {
print(arguments.callee.name);
var builder = new WasmModuleBuilder();
builder.addGlobal(kWasmI64, false).exportAs('g');
builder.addGlobal(kWasmI64, false).exportAs('g');
assertThrows(
() => builder.instantiate(), WebAssembly.CompileError,
/Duplicate export name 'g' for global 0 and global 1/);
})();
(function exportNameClashWithFunction() {
print(arguments.callee.name);
var builder = new WasmModuleBuilder();
builder.addGlobal(kWasmI64, false).exportAs('foo');
builder.addFunction('f', kSig_v_v).addBody([]).exportAs('foo');
assertThrows(
() => builder.instantiate(), WebAssembly.CompileError,
/Duplicate export name 'foo' for global 0 and function 0/);
})();
(function veryLongExportName() {
print(arguments.callee.name);
// Regression test for crbug.com/740023.
var export_name = 'abc';
while (export_name.length < 8192) {
export_name = export_name.concat(export_name);
}
var builder = new WasmModuleBuilder();
var global = builder.addGlobal(kWasmI64, false, false);
global.exportAs(export_name);
global.exportAs(export_name);
var error_msg =
'Duplicate export name \'(abc){10,20}ab?c?\.\.\.\' for global 0 and global 0';
assertThrows(
() => builder.instantiate(), WebAssembly.CompileError,
new RegExp(error_msg));
})();
(function exportAsElement() {
print(arguments.callee.name);
const builder = new WasmModuleBuilder();
const global = builder.addGlobal(kWasmI64, false);
const max_array_index = Math.pow(2, 32) - 1;
const func_idx = builder.addFunction('f', kSig_v_v).addBody([]);
const export_names =
[0, 3, max_array_index - 1, max_array_index + 1, 2 * max_array_index];
for (const name of export_names) {
global.exportAs(name);
}
const instance = builder.instantiate();
const exports = instance.exports;
for (const name of export_names) {
assertTrue(name in exports);
assertFalse((name - 1) in exports);
assertFalse((name + 1) in exports);
assertInstanceof(exports[name], WebAssembly.Global);
}
})();