-
Notifications
You must be signed in to change notification settings - Fork 290
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
Implement the Wasm gc
proposal
#775
Comments
Any progress on GC? |
Hi @frankkienl , there are some blockers before we can start implementing the Wasm GC proposal. However, it is planned to be implemented sometime in the future eventually. Though, it is a rather large proposal, so will still take some time until we are there. May I ask what you need to use it for exactly with Wasmi? |
Frank is one of our early adopters of Firefly Zero. We're looking into supporting some scripting languages. Some, like Python and JS, have self-contained interpreters written in C that we can run. But quite a few, like JVM languages or C#, rely on WasmGC. |
Thanks for the info, that's good to know. I wasn't aware that there is such a big interest in Wasm GC for Wasm interpreters such as Wasmi. The Wasm |
What needs to be done before we can start implementing the Wasm
@orsinium For Firefly-Zero, I think the new Wasm |
This is about adding support for the
gc
(garbage collection) Wasm proposal.The
gc
Wasm proposal has been recently moved to Phase 4 and thus stabilization can be expected to happen soon.Having
gc
support inwasmi
will be an enabler for use cases and languages that rely on the garbage collection such as Python, Java, Ruby, Javascript etc.The text was updated successfully, but these errors were encountered: