-
Notifications
You must be signed in to change notification settings - Fork 72
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
Post-MVP feature requests #452
Comments
You meant October 12? :) Many of those are already listed in the Post-MVP doc in some form, I'll add the others.
I don't remember this one. What does it mean exactly? |
With @chambart we're going to present our freezable/sealable proposal at the next CG meeting. It allows to have mutable and/or nullable globals/values only during initialization phase and they become immutable and/or non-nullable after this.
It may be one of the things we are proposing. |
Another post-MVP feature to consider would be a way to compare Then I could do speculative inlining of |
I agree that this would be useful to have. Implementation perspective: if we expect that repeated creations of funcrefs for the same function index have distinct identity (in other words, that |
One of the known problems with function identity is that it invalidates optimisations like specialisation or any code transformation duplicating/merging function definitions that are referenced. |
Previous discussion on function comparisons: #239 , some use cases and data there from a year ago. Overall I think this can help in the toolchain, as @fitzgen said, but I also agree with @rossberg that the downsides need to be carefully weighed here. Another thing to consider is that if VMs inline at runtime then this probably becomes less important, and for that reason I don't consider this high priority personally. |
FWIW, not all engines / Wasm environments have (or will ever have) JIT capabilities. |
For what it is worth, it seems the JS bindings specify that two funcref instances for the same func in the same instance are Still, for Hoot, I would like to be able to distinguish between different funcrefs; besides specialization, it would be useful for debugging and introspection. All I really need though is to be able to get an i32 associated with the funcref's code. Perhaps there would be a way to keep funcrefs as non-comparable by default, but allow a module to declare some set of functions as having visible addresses, possibly via designating an element section, where addresses are assigned sequentially starting from 0. Then you could have In Hoot probably we have to build something terrible, like putting all funcrefs in a host-side hash table or something. A Wasm facility would be quite welcome. Edit: Turns out, I need to distinguish between instances; given an open-world system with instances A and B, sequential allocation from 0 within a module doesn't do it. Still working on a solution; I can wrap everything in a struct but that is quite some overhead for a basic ability which is present under the hood (equality and hashing). |
Well, the reason for not exposing this is that it in fact may not be present under the hood, e.g., due to optimisations etc. But yeah, this feature is already listed in the Post-MVP doc. My preferred mechanism would be something a bit more generic, where we allow type definitions to specify whether references to them support equality or not. For functions, this would allow knowing at definition site whether a function may need to be handled carefully to preserve equality. For structs, defining them as non-eq would essentially give us value types. (I thought this was somewhere in the Post-MVP doc, but apparently I never included it there.) |
These are the feature requests that came up at the subgroup meeting on October 3, 2023:
(array i8)
#395The text was updated successfully, but these errors were encountered: