-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Exception and control tags #10251
Exception and control tags #10251
Conversation
Subscribe to Label Actioncc @fitzgen
This issue or pull request has been labeled: "fuzzing", "wasmtime:api", "wasmtime:c-api", "wasmtime:config", "wasmtime:ref-types"
Thus the following users have been cc'd because of the following labels:
To subscribe or unsubscribe from this label, edit the |
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 again for being willing to split up the PR, it's very helpful!
// FIXME(dhil): Once the config provides a handle | ||
// for turning on/off exception handling proposal support, | ||
// this ought to only enable stack switching. | ||
self.wasm_feature( |
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.
I added a "miscellaneous TODO items" section on #10248 and added this there too (trying to ensure FIXME's like this are written down in issues)
My pleasure! Thanks! |
This patch is a subset of PR #10177. It adds support for tags in Wasmtime. Tags are used by the exception handling and stack switching proposals for typing and matching transfers of control.
This patch does not implement component model or C API support for tags. Issue #10252 tracks these two things.
CC @frank-emrich