-
Notifications
You must be signed in to change notification settings - Fork 22.5k
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
Add new tail-call WASM features #31040
Conversation
@eqrion could you please have a look? |
Preview URLs External URLs (2)URL:
(comment last updated: 2023-12-19 09:57:13) |
The specification also adds |
@yurydelendik the question is the browser support, we don’t document spec-only features, only the ones that are implemented in browsers. Do you know anything about it? |
Firefox implements function references and GC proposal in version 120, and tail calls proposal in 121. (Chrome implemented them in other order) |
See also https://webassembly.org/roadmap/ |
Yes! That’s the reason we’re updating the docs. But is it just |
The V8 implemented it with Wasm GC proposal since they released tail calls long ago -- the |
Right, so the |
That's fine. This detail is not really important since it was discussed internally in the Wasm WG meetings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Description
return_call
andreturn_call_indirect
.Motivation
To support enabled tail calls in Firefox 121.
Related issues and pull requests
return_call