blob: 090614d421ff155c718b560d108c844baa11f6a8 [file] [log] [blame] [edit]
//@ skip if $architecture != "arm64" && $architecture != "x86_64" && $architecture != "arm"
import Builder from '../Builder.js'
import * as assert from '../assert.js'
const pageSize = 64 * 1024;
const numPages = 10;
{
const builder = (new Builder())
.Type().End()
.Import()
.Memory("a", "b", {initial: numPages, maximum: numPages * 2, shared: true})
.End()
.Function().End()
.Export().Function("foo").End()
.Code()
.Function("foo", {params: ["i32", "i32"]})
.GetLocal(1)
.GetLocal(0)
.I32Store(2, 0)
.End()
.End();
const bin = builder.WebAssembly().get();
const module = new WebAssembly.Module(bin);
const foo = new WebAssembly.Instance(module, {a: {b: new WebAssembly.Memory({initial: numPages, maximum: numPages * 2, shared: true})}}).exports.foo;
for (let i = 0; i < wasmTestLoopCount; i++)
assert.throws(() => foo(i, numPages * pageSize + 1), WebAssembly.RuntimeError, "Out of bounds memory access");
}