Matching¶
On most types, a notion of subtyping is defined that is applicable in validation rules, during module instantiation when checking the types of imports, or during execution, when performing casts.
Number Types¶
A number type
Both
and are the same.
Vector Types¶
A vector type
Both
and are the same.
Heap Types¶
A heap type
Either both
and are the same.Or there exists a valid heap type
, such that matches and matches .Or
is and is .Or
is one of , , or and is .Or
is a defined type which expands to a structure type and is .Or
is a defined type which expands to an array type and is .Or
is a defined type which expands to a function type and is .Or
is a defined type and is a defined type , and matches .Or
is a type index , and the defined type matches .Or
is a type index , and matches the defined type .Or
is and matches .Or
is and matches .Or
is and matches .Or
is .
Reference Types¶
A reference type
Value Types¶
A value type
Either both
and are number types and matches .Or both
and are reference types and matches .Or
is .
Result Types¶
Subtyping is lifted to result types in a pointwise manner.
That is, a result type
Every value type
in matches the corresponding value type in .
Instruction Types¶
Subtyping is further lifted to instruction types.
An instruction type
There is a common sequence of value types
such that equals and equals .The result type
matches .The result type
matches .For every local index
that is in but not in , the local type is for some value type .
Note
Instruction types are contravariant in their input and covariant in their output. Subtyping also incorporates a sort of “frame” condition, which allows adding arbitrary invariant stack elements on both sides in the super type.
Finally, the supertype may ignore variables from the init set
Function Types¶
A function type
The result type
matches .The result type
matches .
Composite Types¶
A composite type
Either the composite type
is and is and:The function type
matches .
Or the composite type
is and is and:The arity
is greater than or equal to .For every field type
in and corresponding inThe field type
matches .
Or the composite type
is and is and:The field type
matches .
Field Types¶
A field type
Either both
and are .Or both
and are and matches as well.
A storage type
Either
is a value type and is a value type and matches .Or
is a packed type and is a packed type and matches .
A packed type
The packed type
is the same as .
Defined Types¶
A defined type
Either
and are equal when closed under context .Or:
Note
Note that there is no explicit definition of type _equivalence_, since it coincides with syntactic equality, as used in the premise of the former rule above.
Limits¶
Limits
is larger than or equal to .Either:
is empty.
Or:
Both
and are non-empty. is smaller than or equal to .
Table Types¶
A table type
Limits
match .The reference type
matches , and vice versa.
Memory Types¶
A memory type
Limits
match .
Global Types¶
A global type
Tag Types¶
A tag type
External Types¶
Functions¶
An external type
The defined type
matches .
Tables¶
An external type
Table type
matches .
Memories¶
An external type
Memory type
matches .
Globals¶
An external type
Global type
matches .