Skip to content
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

Elaborate on habitability of exact references #14

Merged
merged 1 commit into from
Mar 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions proposals/custom-descriptors/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,16 @@ as having "hidden" subtypes of `any` and `extern`,
respectively.
This preserves our ability to assign them more specific types in the future.

In fact, non-nullable exact references to most abstract heap types are uninhabited.
The only exceptions are:

- `(ref exact i31)` and `(ref exact (shared i31))`, which are inhabited by i31 references.
- `(ref exact exn)`, which is inhabited by exception references.
- `(ref exact (shared waitqueue))`,
which is inhabited by waitqueue references from the shared-everything threads proposal

Note that this will prevent us from ever introducing more specific subtypes of `i31`, `exn`, and `waitqueue`.

When allocating types with custom descriptors,
`struct.new` and `struct.new_default` take exact references to the descriptors
as their first operands.
Expand Down