v8/test/mjsunit/wasm/stringrefs-js.js
Andy Wingo 1a3edfb7e5 [stringref] Add support for stringref globals, with JS interface
Bug: v8:12868
Change-Id: I955155db468b2ecd86fa6c5a73c616b0e4c66446
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3644949
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Andy Wingo <wingo@igalia.com>
Cr-Commit-Position: refs/heads/main@{#80584}
2022-05-17 11:35:47 +00:00

219 lines
7.5 KiB
JavaScript

// Copyright 2022 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: --experimental-wasm-stringref
d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");
function assertInvalid(fn, message) {
let builder = new WasmModuleBuilder();
fn(builder);
assertThrows(() => builder.toModule(), WebAssembly.CompileError,
`WebAssembly.Module(): ${message}`);
}
(function TestPassthrough() {
let kSig_w_w = makeSig([kWasmStringRef], [kWasmStringRef]);
let builder = new WasmModuleBuilder();
builder.addFunction("passthrough", kSig_w_w)
.exportFunc()
.addBody([
kExprLocalGet, 0,
]);
let instance = builder.instantiate()
assertEquals('foo', instance.exports.passthrough('foo'));
assertEquals(null, instance.exports.passthrough(null));
assertThrows(()=>instance.exports.passthrough(3),
TypeError, "type incompatibility when transforming from/to JS");
assertThrows(()=>instance.exports.passthrough({}),
TypeError, "type incompatibility when transforming from/to JS");
assertThrows(()=>instance.exports.passthrough({valueOf: ()=>'foo'}),
TypeError, "type incompatibility when transforming from/to JS");
assertThrows(()=>instance.exports.passthrough(undefined),
TypeError, "type incompatibility when transforming from/to JS");
assertThrows(()=>instance.exports.passthrough(),
TypeError, "type incompatibility when transforming from/to JS");
})();
(function TestSwap() {
let kSig_ww_ww = makeSig([kWasmStringRef, kWasmStringRef],
[kWasmStringRef, kWasmStringRef]);
let builder = new WasmModuleBuilder();
builder.addFunction("swap", kSig_ww_ww)
.exportFunc()
.addBody([
kExprLocalGet, 1,
kExprLocalGet, 0,
]);
let instance = builder.instantiate()
assertArrayEquals(['bar', 'foo'], instance.exports.swap('foo', 'bar'));
assertArrayEquals(['bar', null], instance.exports.swap(null, 'bar'));
assertArrayEquals([null, 'foo'], instance.exports.swap('foo', null));
})();
(function TestViewsUnsupported() {
let kSig_x_v = makeSig([], [kWasmStringViewWtf8]);
let kSig_y_v = makeSig([], [kWasmStringViewWtf16]);
let kSig_z_v = makeSig([], [kWasmStringViewIter]);
let builder = new WasmModuleBuilder();
builder.addFunction("stringview_wtf8", kSig_x_v)
.exportFunc()
.addLocals(kWasmStringViewWtf8, 1)
.addBody([
kExprLocalGet, 0,
]);
builder.addFunction("stringview_wtf16", kSig_y_v)
.exportFunc()
.addLocals(kWasmStringViewWtf16, 1)
.addBody([
kExprLocalGet, 0,
]);
builder.addFunction("stringview_iter", kSig_z_v)
.exportFunc()
.addLocals(kWasmStringViewIter, 1)
.addBody([
kExprLocalGet, 0,
]);
let instance = builder.instantiate()
assertThrows(()=>instance.exports.stringview_wtf8(),
TypeError, "type incompatibility when transforming from/to JS");
assertThrows(()=>instance.exports.stringview_wtf16(),
TypeError, "type incompatibility when transforming from/to JS");
assertThrows(()=>instance.exports.stringview_iter(),
TypeError, "type incompatibility when transforming from/to JS");
})();
(function TestDefinedGlobals() {
let kSig_w_v = makeSig([], [kWasmStringRef]);
let kSig_v_w = makeSig([kWasmStringRef], []);
let kSig_x_v = makeSig([], [kWasmStringViewWtf8]);
let kSig_y_v = makeSig([], [kWasmStringViewWtf16]);
let kSig_z_v = makeSig([], [kWasmStringViewIter]);
let builder = new WasmModuleBuilder();
builder.addGlobal(kWasmStringRef, true).exportAs('w');
builder.addGlobal(kWasmStringViewWtf8, true).exportAs('x');
builder.addGlobal(kWasmStringViewWtf16, true).exportAs('y');
builder.addGlobal(kWasmStringViewIter, true).exportAs('z');
builder.addFunction("get_stringref", kSig_w_v)
.exportFunc()
.addBody([
kExprGlobalGet, 0,
]);
builder.addFunction("set_stringref", kSig_v_w)
.exportFunc()
.addBody([
kExprLocalGet, 0,
kExprGlobalSet, 0
]);
builder.addFunction("get_stringview_wtf8", kSig_x_v)
.exportFunc()
.addBody([
kExprGlobalGet, 1,
]);
builder.addFunction("get_stringview_wtf16", kSig_y_v)
.exportFunc()
.addBody([
kExprGlobalGet, 2,
]);
builder.addFunction("get_stringview_iter", kSig_z_v)
.exportFunc()
.addBody([
kExprGlobalGet, 3,
]);
let instance = builder.instantiate()
assertEquals(null, instance.exports.get_stringref());
instance.exports.set_stringref('foo');
assertEquals('foo', instance.exports.get_stringref());
assertEquals('foo', instance.exports.w.value);
instance.exports.w.value = 'bar';
assertEquals('bar', instance.exports.w.value);
assertEquals('bar', instance.exports.get_stringref());
assertThrows(()=>instance.exports.get_stringview_wtf8(),
TypeError, "type incompatibility when transforming from/to JS");
assertThrows(()=>instance.exports.get_stringview_wtf16(),
TypeError, "type incompatibility when transforming from/to JS");
assertThrows(()=>instance.exports.get_stringview_iter(),
TypeError, "type incompatibility when transforming from/to JS");
let unsupportedGlobalMessage = (mode, type) => {
return `${mode} WebAssembly.Global.value: ${type} has no JS representation`;
}
for (let [global, type] of [[instance.exports.x, 'stringview_wtf8'],
[instance.exports.y, 'stringview_wtf16'],
[instance.exports.z, 'stringview_iter']]) {
assertThrows(()=>global.value, TypeError,
unsupportedGlobalMessage('get', type));
assertThrows(()=>{global.value = null}, TypeError,
unsupportedGlobalMessage('set', type));
}
})();
(function TestImportedGlobals() {
for (let type of ['stringview_wtf8', 'stringview_wtf16',
'stringview_iter']) {
let msg = "WebAssembly.Global(): Descriptor property 'value' must be" +
" a WebAssembly type";
assertThrows(()=>new WebAssembly.Global({ mutable: true, value: type }),
TypeError, msg);
assertThrows(()=>new WebAssembly.Global({ mutable: true, value: type },
null),
TypeError, msg);
}
assertThrows(()=>new WebAssembly.Global({ value: 'stringref' }),
TypeError,
"WebAssembly.Global(): " +
"Missing initial value when creating stringref global");
let kSig_w_v = makeSig([], [kWasmStringRef]);
let kSig_v_w = makeSig([kWasmStringRef], []);
let builder = new WasmModuleBuilder();
builder.addImportedGlobal('env', 'w', kWasmStringRef, true)
builder.addFunction("get_stringref", kSig_w_v)
.exportFunc()
.addBody([
kExprGlobalGet, 0,
]);
builder.addFunction("set_stringref", kSig_v_w)
.exportFunc()
.addBody([
kExprLocalGet, 0,
kExprGlobalSet, 0
]);
let w = new WebAssembly.Global({ mutable: true, value: 'stringref' },
null);
let instance = builder.instantiate({env: {w: w}})
assertEquals(null, instance.exports.get_stringref());
instance.exports.set_stringref('foo');
assertEquals('foo', instance.exports.get_stringref());
assertEquals('foo', w.value);
w.value = 'bar';
assertEquals('bar', w.value);
assertEquals('bar', instance.exports.get_stringref());
})();
// TODO(wingo): Test calls from wasm to JS.
// TODO(wingo): Test stringrefs in tables.