use of org.graalvm.wasm.api.WebAssembly in project graal by oracle.
the class WasmJsApiSuite method testCustomSections.
@Test
public void testCustomSections() throws IOException {
runTest(context -> {
final WebAssembly wasm = new WebAssembly(context);
final WasmModule module = wasm.moduleDecode(binaryWithCustomSections);
try {
checkCustomSections(new byte[][] {}, WebAssembly.customSections(module, ""));
checkCustomSections(new byte[][] {}, WebAssembly.customSections(module, "zero"));
checkCustomSections(new byte[][] { { 1, 3, 5 } }, WebAssembly.customSections(module, "odd"));
checkCustomSections(new byte[][] { { 2, 4 }, { 6 } }, WebAssembly.customSections(module, "even"));
} catch (InteropException ex) {
throw new RuntimeException(ex);
}
});
}
use of org.graalvm.wasm.api.WebAssembly in project graal by oracle.
the class WasmJsApiSuite method testInstantiateModuleTwice.
@Test
public void testInstantiateModuleTwice() throws IOException {
runTest(context -> {
WebAssembly wasm = new WebAssembly(context);
WasmModule module = wasm.moduleDecode(binaryWithExports);
Object importObject = new Dictionary();
wasm.moduleInstantiate(module, importObject);
wasm.moduleInstantiate(module, importObject);
});
}
use of org.graalvm.wasm.api.WebAssembly in project graal by oracle.
the class WasmJsApiSuite method testExportSameFunctionInDifferentModuleTable.
@Test
public void testExportSameFunctionInDifferentModuleTable() throws IOException, InterruptedException {
final byte[] m1 = compileWat("export", "(module (func $f (result i32) i32.const 42) (export \"f\" (func $f)))");
final byte[] m2 = compileWat("import", "(module (import \"m\" \"f\" (func $f (result i32))) (table 1 funcref) (elem (i32.const 0) $f) (export \"t\" (table 0)))");
runTest(context -> {
final WebAssembly wasm = new WebAssembly(context);
final WasmInstance m1Instance = moduleInstantiate(wasm, m1, null);
final InteropLibrary lib = InteropLibrary.getUncached();
try {
final Object m1Function = WebAssembly.instanceExport(m1Instance, "f");
final Dictionary d = new Dictionary();
d.addMember("m", Dictionary.create(new Object[] { "f", m1Function }));
final WasmInstance m2Instance = moduleInstantiate(wasm, m2, d);
final Object m2Table = WebAssembly.instanceExport(m2Instance, "t");
final Object m2Function = WebAssembly.tableRead((WasmTable) m2Table, 0);
Assert.assertTrue("Returned function instances must be reference equal", m1Function == m2Function);
final Object m1Value = lib.execute(m1Function);
final Object m2Value = lib.execute(m2Function);
Assert.assertEquals("Return value of functions is equal", m1Value, m2Value);
} catch (UnsupportedMessageException | UnsupportedTypeException | ArityException e) {
throw new RuntimeException(e);
}
});
}
use of org.graalvm.wasm.api.WebAssembly in project graal by oracle.
the class WasmJsApiSuite method testExportSameFunctionInDifferentModules.
@Test
public void testExportSameFunctionInDifferentModules() throws IOException, InterruptedException {
final byte[] m1 = compileWat("export", "(module (func $f (result i32) i32.const 42) (export \"f\" (func $f)))");
final byte[] m2 = compileWat("import", "(module (import \"m\" \"f\" (func $f (result i32))) (export \"f\" (func $f)))");
runTest(context -> {
final WebAssembly wasm = new WebAssembly(context);
final WasmInstance m1Instance = moduleInstantiate(wasm, m1, null);
final InteropLibrary lib = InteropLibrary.getUncached();
try {
final Object m1Function = WebAssembly.instanceExport(m1Instance, "f");
final Dictionary d = new Dictionary();
d.addMember("m", Dictionary.create(new Object[] { "f", m1Function }));
final WasmInstance m2Instance = moduleInstantiate(wasm, m2, d);
final Object m2Function = WebAssembly.instanceExport(m2Instance, "f");
Assert.assertTrue("Returned function instances must be reference equal", m1Function == m2Function);
final Object m1Value = lib.execute(m1Function);
final Object m2Value = lib.execute(m2Function);
Assert.assertEquals("Return value of functions is equal", m1Value, m2Value);
} catch (UnsupportedMessageException | UnsupportedTypeException | ArityException e) {
throw new RuntimeException(e);
}
});
}
use of org.graalvm.wasm.api.WebAssembly in project graal by oracle.
the class WasmJsApiSuite method testExportImportedFunctionInDifferentModuleTable.
@Test
public void testExportImportedFunctionInDifferentModuleTable() throws IOException, InterruptedException {
final byte[] m1 = compileWat("export", "(module (import \"a\" \"f\" (func $f (result i32))) (table $f 1 funcref) (elem (i32.const 0) $f) (export \"t\" (table 0)) (export \"f\" (func $f)))");
final byte[] m2 = compileWat("import", "(module (import \"b\" \"t\" (table $t 1 funcref)) (export \"t\" (table 0)))");
runTest(context -> {
final Dictionary importObject = new Dictionary();
importObject.addMember("a", Dictionary.create(new Object[] { "f", new Executable(args -> 2) }));
final WebAssembly wasm = new WebAssembly(context);
final WasmInstance m1Instance = moduleInstantiate(wasm, m1, importObject);
final InteropLibrary lib = InteropLibrary.getUncached();
try {
final Object m1Function = WebAssembly.instanceExport(m1Instance, "f");
final Object m1Table = WebAssembly.instanceExport(m1Instance, "t");
final Object m1TableFunction = WebAssembly.tableRead((WasmTable) m1Table, 0);
Assert.assertTrue("Returned function instances must be reference equal", m1Function == m1TableFunction);
Object m1Value = lib.execute(m1Function);
final Object m1TableValue = lib.execute(m1TableFunction);
Assert.assertEquals("Return value of functions is equal", m1Value, m1TableValue);
final Dictionary d = new Dictionary();
d.addMember("b", Dictionary.create(new Object[] { "f", m1Function, "t", m1Table }));
final WasmInstance m2Instance = moduleInstantiate(wasm, m2, d);
final Object m2Table = WebAssembly.instanceExport(m2Instance, "t");
final Object m2Function = WebAssembly.tableRead((WasmTable) m2Table, 0);
Assert.assertTrue("Returned function instances must be reference equal", m1Function == m2Function);
m1Value = lib.execute(m1Function);
final Object m2Value = lib.execute(m2Function);
Assert.assertEquals("Return value of functions is equal", m1Value, m2Value);
} catch (UnsupportedMessageException | UnsupportedTypeException | ArityException e) {
throw new RuntimeException(e);
}
});
}
Aggregations