-
Notifications
You must be signed in to change notification settings - Fork 745
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
Relaxing closed world validation and improving open world optimization #6965
Comments
Sounds good!
|
Yes, good point. Externrefs in the public interface should be treated as though they were also anyrefs and vice versa.
I think that use case will have to continue using abstract heap types like |
These were added to avoid common problems with closed world mode, but in practice they are causing more harm than good, forcing users to work around them. In the meantime (until #6965), remove this validation to unblock current toolchain makers. Fix GlobalTypeOptimization and AbstractTypeRefining on issues that this uncovers: without this validation, it is possible to run them on more wasm files than before, hence these were not previously detected. They are bundled in this PR because their tests cannot validate before this PR.
The
--closed-world
flag lets us assume that we can make arbitrary changes to types as long as those types are not part of the module's contract with the outside world. Since the type system is structural, there is not a single, precise definition of what it means for a type to be "part of the module's contract," but we have chosen it to mean that we will keep the types of exported or imported module elements the same, but all other types are fair game. In particular, we assume we are allowed to modify subtypes of public types that are not themselves public. Otherwise a singleanyref
in an exported function would prevent us from modifying any struct or array type and a singlefuncref
in an eported function would prevent us from modifying signatures of referenced functions.However, our current closed-world validation is much stricter than this. It additionally restricts what types are allowed to be public. It allows the types of exported and imported functions to be public, and therefore must also allow all types in the rec groups of those function types to be public, but it does not allow any other defined heap types to be public, even if they are part of the type of an imported or exported function.
I believe the original motivation for these additional restrictions was that we wanted to be able to optimize as many types as possible, so we didn't want to allow users to expose types in a way that would inhibit optimizations. But this is putting the cart before the horse. We should be able to optimize any module we are given according to the assumptions configured via command line options, and there is no user benefit if we simply reject modules that they want to optimize because we cannot optimize it as well as some different module they could have given us. Users (such as Kotlin) are running into these errors when they try to use smaller rec groups in their input.
Here is the state of the world I would like to move to:
(@private)
type annotation that allows types that would otherwise be considered public to be considered private instead. It is an error for a(@private)
type to be used in a module's public interface, so this is only useful for annotating subtypes of public types in open world mode.(@public)
type annotation that allows types that would otherwise be considered private to be considered public instead.(@private)
and(@public)
(even if the annotations are on different definitions of the same type).Here are the steps necessary to get to that state of the world:
--relaxed-closed-world
flag that behaves like--closed-world
but allows any type to be public.--relaxed-closed-world
instead of--closed-world
.--relaxed-closed-world
and allow any type to be public with--closed-world
.(@private)
and(@public)
annotations.@kripken, WDYT?
The text was updated successfully, but these errors were encountered: