Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JS Managed Indirect calls #96

Open
BobVarioa opened this issue Jul 1, 2024 · 0 comments
Open

JS Managed Indirect calls #96

BobVarioa opened this issue Jul 1, 2024 · 0 comments
Labels
S-epic size: epic

Comments

@BobVarioa
Copy link
Contributor

BobVarioa commented Jul 1, 2024

Based on a somewhat similar approach by the Emscriptem developers, this would basically be an import that does something like the following:

function call_indirect(idx: number, args: any[]) {
    // check new.target, this arg, rest params, etc.
    return funcs[idx](...args)
}

Then, WASM would pack it's imports into an array and call the import.

This also would likely make #95 much easier.

The major caveat here, however, is that all WASM functions would have to be exported

@CanadaHonk CanadaHonk added the S-epic size: epic label Jul 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-epic size: epic
Projects
None yet
Development

No branches or pull requests

2 participants