test262-automation e9a5a7f918 [javascriptcore-test262-automation] changes from git@github.com:WebKit/webkit.git at sha 949e26452cfa153a7f4afe593da97e2fe9e1b706 on Tue Jul 03 2018 14:35:15 GMT-0400 (Eastern Daylight Time) (#1620)
* [javascriptcore-test262-automation] changes from git@github.com:WebKit/webkit.git at sha 949e26452cfa153a7f4afe593da97e2fe9e1b706 on Tue Jul 03 2018 14:35:15 GMT-0400 (Eastern Daylight Time)
2018-07-03 15:59:58 -04:00

166 lines
4.8 KiB
JavaScript

import Builder from '../Builder.js'
import * as assert from '../assert.js'
{
const builder = (new Builder())
.Type().End()
.Import()
.Memory("imp", "mem", {initial: 1})
.End()
.Function().End()
.Export().Function("foo").End()
.Code()
.Function("foo", {params: ["i32"], ret: "i32"})
.GetLocal(0)
.I32Load(2, 4)
.Return()
.End()
.End();
const bin = builder.WebAssembly().get();
const module = new WebAssembly.Module(bin);
const memory = new WebAssembly.Memory({initial: 1});
const instance = new WebAssembly.Instance(module, {imp: {mem: memory}});
const number = 0x0abbccdd;
(new Uint32Array(memory.buffer))[1] = number;
assert.eq(instance.exports.foo(0), number);
}
{
const builder = (new Builder())
.Type().End()
.Import()
.Memory("imp", "mem", {initial: 1})
.End()
.Function().End()
.Export().Function("foo").End()
.Code()
.Function("foo", {params: ["i32"], ret: "i32"})
.GetLocal(0)
.I64Load32U(2, 4)
.I64Popcnt()
.I32WrapI64()
.Return()
.End()
.End();
const bin = builder.WebAssembly().get();
const module = new WebAssembly.Module(bin);
const memory = new WebAssembly.Memory({initial: 1});
const instance = new WebAssembly.Instance(module, {imp: {mem: memory}});
const number = 2**32 - 1;
(new Uint32Array(memory.buffer))[1] = number;
assert.eq(instance.exports.foo(0), 32);
}
{
const builder = (new Builder())
.Type().End()
.Import()
.Memory("imp", "mem", {initial: 1})
.End()
.Function().End()
.Export().Function("foo").End()
.Code()
.Function("foo", {params: ["i32"], ret: "i32"})
.GetLocal(0)
.I64Load32S(2, 4)
.I64Popcnt()
.I32WrapI64()
.Return()
.End()
.End();
const bin = builder.WebAssembly().get();
const module = new WebAssembly.Module(bin);
const memory = new WebAssembly.Memory({initial: 1});
const instance = new WebAssembly.Instance(module, {imp: {mem: memory}});
const number = 2**32 - 1;
(new Uint32Array(memory.buffer))[1] = number;
assert.eq(instance.exports.foo(0), 64);
}
{
const builder = (new Builder())
.Type().End()
.Import()
.Memory("imp", "mem", {initial: 1})
.End()
.Function().End()
.Export().Function("foo").End()
.Code()
.Function("foo", {params: ["i32"], ret: "i32"})
.GetLocal(0)
.I64Load(2, 4)
.I64Popcnt()
.I32WrapI64()
.Return()
.End()
.End();
const bin = builder.WebAssembly().get();
const module = new WebAssembly.Module(bin);
const memory = new WebAssembly.Memory({initial: 1});
const instance = new WebAssembly.Instance(module, {imp: {mem: memory}});
const number = 2**32 - 1;
(new Uint32Array(memory.buffer))[1] = number;
(new Uint32Array(memory.buffer))[2] = 0xff00ff00;
assert.eq(instance.exports.foo(0), 32 + 16);
}
{
const builder = (new Builder())
.Type().End()
.Import()
.Memory("imp", "mem", {initial: 1})
.End()
.Function().End()
.Export().Function("foo").End()
.Code()
.Function("foo", {params: ["i32"], ret: "f32"})
.GetLocal(0)
.F32Load(2, 4)
.Return()
.End()
.End();
const bin = builder.WebAssembly().get();
const module = new WebAssembly.Module(bin);
const memory = new WebAssembly.Memory({initial: 1});
const instance = new WebAssembly.Instance(module, {imp: {mem: memory}});
const number = Math.PI;
(new Float32Array(memory.buffer))[1] = number;
assert.eq(instance.exports.foo(0), Math.fround(number));
}
{
const builder = (new Builder())
.Type().End()
.Import()
.Memory("imp", "mem", {initial: 1})
.End()
.Function().End()
.Export().Function("foo").End()
.Code()
.Function("foo", {params: ["i32"], ret: "f64"})
.GetLocal(0)
.F64Load(2, 8)
.Return()
.End()
.End();
const bin = builder.WebAssembly().get();
const module = new WebAssembly.Module(bin);
const memory = new WebAssembly.Memory({initial: 1});
const instance = new WebAssembly.Instance(module, {imp: {mem: memory}});
const number = Math.PI;
(new Float64Array(memory.buffer))[1] = number;
assert.eq(instance.exports.foo(0), number);
}