What is the status of gc in wasm now? #407
Unanswered
william4code
asked this question in
Q&A
Replies: 1 comment 4 replies
-
The GC proposal is currently at phase 3 of the proposal process and is expected to move to phase 4 around September. At that point, it is effectively standard, modulo administrative matters. The proposal is currently implemented in V8, which plans to ship it by the end of the year, and there is ongoing work in Firefox and Wasmtime as well. You can follow the roadmap for implementation status. I am not aware of any work in the LLVM toolchain, so I don't know what hurdles that would imply. You'd probably have to use your own codegen for the time being. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I am new to wasm.
I am concerning about the status of gc in wasm.
I have a language with gc mechanism which is implemented in runtime.
I can transform the language to LLVM IR.
If I want to transform LLVM IR to wasm and leverage the gc mechanism of wasm, what extra work I need to do?
Does the current implementation of gc in wasm work now?
Beta Was this translation helpful? Give feedback.
All reactions