/* Lovingly generated by gen-spec-js.py based on the wonderful content of * * https://github.com/WebAssembly/spec/blob/master/interpreter/script/js.ml */ 'use strict'; let spectest = { print: print || ((...xs) => console.log(...xs)), global: 666, table: new WebAssembly.Table({initial: 10, maximum: 20, element: 'anyfunc'}), memory: new WebAssembly.Memory({initial: 1, maximum: 2}),}; let registry = {spectest}; function register(name, instance) { registry[name] = instance.exports; } function module(bytes, valid = true) { let buffer = new ArrayBuffer(bytes.length); let view = new Uint8Array(buffer); for (let i = 0; i < bytes.length; ++i) { view[i] = bytes.charCodeAt(i); } let validated; try { validated = WebAssembly.validate(buffer); } catch (e) { throw new Error("Wasm validate throws"); } if (validated !== valid) { throw new Error("Wasm validate failure" + (valid ? "" : " expected")); } return new WebAssembly.Module(buffer); } function instance(bytes, imports = registry) { return new WebAssembly.Instance(module(bytes), imports); } function instance(bytes, imports = registry) { return new WebAssembly.Instance(module(bytes), imports); } function call(instance, name, args) { return instance.exports[name](...args); } function get(instance, name) { return instance.exports[name]; } function exports(name, instance) { return {[name]: instance.exports}; } function run(action) { action(); } function assert_malformed(bytes) { try { module(bytes, false) } catch (e) { if (e instanceof WebAssembly.CompileError) return; } throw new Error("Wasm decoding failure expected"); } function assert_invalid(bytes) { try { module(bytes, false) } catch (e) { if (e instanceof WebAssembly.CompileError) return; } throw new Error("Wasm validation failure expected"); } function assert_unlinkable(bytes) { let mod = module(bytes); try { new WebAssembly.Instance(mod, registry) } catch (e) { if (e instanceof WebAssembly.LinkError) return; } throw new Error("Wasm linking failure expected"); } function assert_uninstantiable(bytes) { let mod = module(bytes); try { new WebAssembly.Instance(mod, registry) } catch (e) { if (e instanceof WebAssembly.RuntimeError) return; } throw new Error("Wasm trap expected"); } function assert_trap(action) { try { action() } catch (e) { if (e instanceof WebAssembly.RuntimeError) return; } throw new Error("Wasm trap expected"); } let StackOverflow; try { (function f() { 1 + f() })() } catch (e) { StackOverflow = e.constructor } function assert_exhaustion(action) { try { action() } catch (e) { if (e instanceof StackOverflow) return; } throw new Error("Wasm resource exhaustion expected"); } function assert_return(action, expected) { let actual = action(); if (!Object.is(actual, expected)) { throw new Error("Wasm return value " + expected + " expected, got " + actual); }; } function assert_return_canonical_nan(action) { let actual = action(); // Note that JS can't reliably distinguish different NaN values, // so there's no good way to test that it's a canonical NaN. if (!Number.isNaN(actual)) { throw new Error("Wasm return value NaN expected, got " + actual); }; } function assert_return_arithmetic_nan(action) { // Note that JS can't reliably distinguish different NaN values, // so there's no good way to test for specific bitpatterns here. let actual = action(); if (!Number.isNaN(actual)) { throw new Error("Wasm return value NaN expected, got " + actual); }; } let f32 = Math.fround;