use of org.graalvm.wasm.api.Dictionary 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);
}
});
}
use of org.graalvm.wasm.api.Dictionary in project graal by oracle.
the class WasmJsApiSuite method testInstantiateWithImportMemory.
@Test
public void testInstantiateWithImportMemory() throws IOException {
runTest(context -> {
final WebAssembly wasm = new WebAssembly(context);
final WasmMemory memory = WebAssembly.memAlloc(4, 8);
final Dictionary importObject = Dictionary.create(new Object[] { "host", Dictionary.create(new Object[] { "defaultMemory", memory }) });
final WasmInstance instance = moduleInstantiate(wasm, binaryWithMemoryImport, importObject);
try {
final Object initZero = WebAssembly.instanceExport(instance, "initZero");
Assert.assertEquals("Must be zero initially.", 0, memory.load_i32(null, 0));
InteropLibrary.getUncached(initZero).execute(initZero);
Assert.assertEquals("Must be 174 after initialization.", 174, memory.load_i32(null, 0));
} catch (InteropException e) {
throw new RuntimeException(e);
}
});
}
use of org.graalvm.wasm.api.Dictionary in project graal by oracle.
the class WasmJsApiSuite method testExportImportedFunctionInDifferentModules.
@Test
public void testExportImportedFunctionInDifferentModules() throws IOException, InterruptedException {
final byte[] m1 = compileWat("export", "(module (import \"a\" \"f\" (func $f (result i32))) (export \"f\" (func $f)))");
final byte[] m2 = compileWat("import", "(module (import \"b\" \"f\" (func $f (result i32))) (func (result i32) (call $f)) (export \"f\" (func $f)))");
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 Dictionary d = new Dictionary();
d.addMember("b", 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.Dictionary in project graal by oracle.
the class WasmJsApiSuite method testExportSameFunctionInDifferentModuleTables.
@Test
public void testExportSameFunctionInDifferentModuleTables() throws IOException, InterruptedException {
final byte[] m1 = compileWat("export", "(module (func $f (result i32) i32.const 42) (table 1 funcref) (elem (i32.const 0) $f) (export \"t\" (table 0)))");
final byte[] m2 = compileWat("import", "(module (import \"m\" \"t\" (table $t 1 funcref)) (export \"t\" (table $t)))");
runTest(context -> {
final WebAssembly wasm = new WebAssembly(context);
final WasmInstance m1Instance = moduleInstantiate(wasm, m1, null);
final InteropLibrary lib = InteropLibrary.getUncached();
try {
final Object m1Table = WebAssembly.instanceExport(m1Instance, "t");
final Object m1Function = WebAssembly.tableRead((WasmTable) m1Table, 0);
final Dictionary d = new Dictionary();
d.addMember("m", Dictionary.create(new Object[] { "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);
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.Dictionary in project graal by oracle.
the class WasmJsApiSuite method testInstantiateWithImportTable.
@Test
public void testInstantiateWithImportTable() throws IOException {
runTest(context -> {
final WebAssembly wasm = new WebAssembly(context);
final WasmTable table = WebAssembly.tableAlloc(4, 8);
Dictionary importObject = Dictionary.create(new Object[] { "host", Dictionary.create(new Object[] { "defaultTable", table }) });
WebAssembly.tableWrite(table, 0, new WasmFunctionInstance(context, null, new RootNode(context.language()) {
@Override
public Object execute(VirtualFrame frame) {
return 210;
}
}.getCallTarget()));
final WasmInstance instance = moduleInstantiate(wasm, binaryWithTableImport, importObject);
try {
final Object callFirst = WebAssembly.instanceExport(instance, "callFirst");
Object result = InteropLibrary.getUncached(callFirst).execute(callFirst);
Assert.assertEquals("Must return 210.", 210, InteropLibrary.getUncached(result).asInt(result));
} catch (InteropException e) {
throw new RuntimeException(e);
}
});
}
Aggregations