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

Updated validation rules for struct.new #17

Merged
merged 1 commit into from
Mar 18, 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
21 changes: 19 additions & 2 deletions proposals/custom-descriptors/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,27 @@ As a general rule, non-nullable exact references to abstract heap types are unin

When allocating types with custom descriptors,
`struct.new` and `struct.new_default` take exact references to the descriptors
as their first operands.
as their last operands.
This makes the unsound program above invalid.

> TODO: Provide new validation rules for `struct.new` and `struct.new_default`.
```
struct.new x
C |- struct.new x : t* (ref null exact y) -> (ref exact x)
-- C.types[x] ~ descriptor y (struct (field t)*)
```

```
struct.new_default x
C |- struct.new_default x : (ref null exact y) -> (ref exact x)
-- C.types[x] ~ descriptor y (struct (field t)*)
-- defaultable(t)*
```

> Note: The descriptors could alternatively be the first operands.
> They are chosen to be the last operands here because in a hypothetical future
> where we have variants of these instructions that do not take type immediates,
> the descriptors would have to be on top of the stack to determine the type of
> the allocation. This is consistent with GC accessor instructions.

## New Instructions

Expand Down