Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -782,6 +782,9 @@ static ExitCode ProcessGlobalArgsInternal(std::vector<std::string>* args,

v8_args.emplace_back("--js-source-phase-imports");

// WebAssembly JS Promise Integration
v8_args.emplace_back("--experimental-wasm-jspi");

#ifdef __POSIX__
// Block SIGPROF signals when sleeping in epoll_wait/kevent/etc. Avoids the
// performance penalty of frequent EINTR wakeups when the profiler is running.
Expand Down
Binary file added test/fixtures/wasm/jspi.wasm
Binary file not shown.
44 changes: 44 additions & 0 deletions test/parallel/test-wasm.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import '../common/index.mjs';
import { strictEqual } from 'node:assert';
import { readSync } from '../common/fixtures.mjs';

// Test Wasm JSPI
{
const asyncImport = async (x) => {
await new Promise((resolve) => setTimeout(resolve, 10));
return x + 42;
};

/**
* wasm/jspi.wasm contains:
*
* (module
* (type (;0;) (func (param i32) (result i32)))
* (import "js" "async" (func $async (;0;) (type 0)))
* (export "test" (func $test))
* (func $test (;1;) (type 0) (param $x i32) (result i32)
* local.get $x
* call $async
* )
* )
*
* Which is the JS equivalent to:
*
* import { async_ } from 'js';
* export function test (val) {
* return async_(val);
* }
*
* JSPI then allows turning this sync style Wasm call into async code
* that suspends on the promise.
*/

const { instance } = await WebAssembly.instantiate(readSync('wasm/jspi.wasm'), {
js: {
async: new WebAssembly.Suspending(asyncImport),
},
});

const promisingExport = WebAssembly.promising(instance.exports.test);
strictEqual(await promisingExport(10), 52);
}
Loading