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 numtype1 matches a number type numtype2 if and only if:

  • Both numtype1 and numtype2 are the same.

 Cnumtypenumtype

Vector Types

A vector type vectype1 matches a vector type vectype2 if and only if:

  • Both vectype1 and vectype2 are the same.

 Cvectypevectype

Heap Types

A heap type heaptype1 matches a heap type heaptype2 if and only if:

 CheaptypeheaptypeCheaptypeokCheaptype1heaptypeCheaptypeheaptype2Cheaptype1heaptype2
 CeqanyCi31eqCstructeqCarrayeq
 expand(deftype)=struct stCdeftypestructexpand(deftype)=array atCdeftypearrayexpand(deftype)=func ftCdeftypefunc
 CC.types[typeidx1]heaptype2Ctypeidx1heaptype2Cheaptype1C.types[typeidx2]Cheaptype1typeidx2
 ChtanyCnonehtChtfuncCnofunchtChtexternCnoexternht
 Cbotheaptype

Reference Types

A reference type ref null1? heaptype1 matches a reference type ref null2? heaptype2 if and only if:

  • The heap type heaptype1 matches heaptype2.

  • null1 is absent or null2 is present.

 Cheaptype1heaptype2Cref heaptype1ref heaptype2Cheaptype1heaptype2Cref null? heaptype1ref null heaptype2

Value Types

A value type valtype1 matches a value type valtype2 if and only if:

 Cbotvaltype

Result Types

Subtyping is lifted to result types in a pointwise manner. That is, a result type [t1] matches a result type [t2] if and only if:

 (Ct1t2)C[t1][t2]

Instruction Types

Subtyping is further lifted to instruction types. An instruction type [t11]x1[t12] matches a type [t21ast]x2[t22] if and only if:

 C[t21][t11]{x}={x2}{x1}C[t12][t22](C.locals[x]=set tx)C[t11]x1[t12][t t21]x2[t t22]

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 x1. It may also add variables to the init set, provided these are already set in the context, i.e., are vacuously initialized.

Function Types

A function type [t11][t12] matches a type [t21ast][t22] if and only if:

 C[t21][t11]C[t12][t22]C[t11][t12][t21][t22]

Composite Types

A composite type comptype1 matches a type comptype2 if and only if:

  • Either the composite type comptype1 is func functype1 and comptype2 is func functype2 and:

  • Or the composite type comptype1 is struct fieldtype1n1 and comptype2 is struct fieldtype2 and:

    • The arity n1 is greater than or equal to n2.

    • For every field type fieldtype2i in fieldtype2n2 and corresponding fieldtype1i in fieldtype1n1

  • Or the composite type comptype1 is array fieldtype1 and comptype2 is array fieldtype2 and:

 Cfunctype1functype2Cfunc functype1func functype2
 (Cfieldtype1fieldtype2)Cstruct fieldtype1 fieldtype1struct fieldtype2
 Cfieldtype1fieldtype2Carray fieldtype1array fieldtype2

Field Types

A field type mut1 storagetype1 matches a type mut2 storagetype2 if and only if:

  • Storage type storagetype1 matches storagetype2.

  • Either both mut1 and mut2 are const.

  • Or both mut1 and mut2 are var and storagetype2 matches storagetype1 as well.

 Cstoragetype1storagetype2Cconst storagetype1const storagetype2Cstoragetype1storagetype2Cstoragetype2storagetype1Cvar storagetype1var storagetype2

A storage type storagetype1 matches a type storagetype2 if and only if:

A packed type packedtype1 matches a type packedtype2 if and only if:

  • The packed type packedtype1 is the same as packedtype2.

 Cpackedtypepackedtype

Defined Types

A defined type deftype1 matches a type deftype2 if and only if:

  • Either deftype1 and deftype2 are equal when closed under context C.

  • Or:

    • Let the sub type sub final? heaptype comptype be the result of unrolling deftype1.

    • Then there must exist a heap type heaptypei in heaptype that matches deftype2.

 closC(deftype1)=closC(deftype2)Cdeftype1deftype2
 unroll(deftype1)=sub final? heaptype comptypeCheaptype[i]deftype2Cdeftype1deftype2

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 {min n1,max m1?} match limits {min n2,max m2?} if and only if:

  • n1 is larger than or equal to n2.

  • Either:

    • m2? is empty.

  • Or:

    • Both m1? and m2? are non-empty.

    • m1 is smaller than or equal to m2.

 n1n2C{min n1,max m1?}{min n2,max ϵ}n1n2m1m2C{min n1,max m1}{min n2,max m2}

Table Types

A table type (limits1 reftype1) matches (limits2 reftype2) if and only if:

 Climits1limits2Creftype1reftype2Creftype2reftype1Climits1 reftype1limits2 reftype2

Memory Types

A memory type limits1 matches limits2 if and only if:

  • Limits limits1 match limits2.

 Climits1limits2Climits1limits2

Global Types

A global type (mut1 t1) matches (mut2 t2) if and only if:

  • Either both mut1 and mut2 are var and t1 matches t2 and vice versa.

  • Or both mut1 and mut2 are const and t1 matches t2.

 Ct1t2Ct2t1Cvar t1var t2Ct1t2Cconst t1const t2

Tag Types

A tag type tagtype1 matches tagtype2 if and only if they are the same.

Ctagtypetagtype

External Types

Functions

An external type func deftype1 matches func deftype2 if and only if:

 Cdeftype1deftype2Cfunc deftype1func deftype2

Tables

An external type table tabletype1 matches table tabletype2 if and only if:

  • Table type tabletype1 matches tabletype2.

 Ctabletype1tabletype2Ctable tabletype1table tabletype2

Memories

An external type mem memtype1 matches mem memtype2 if and only if:

  • Memory type memtype1 matches memtype2.

 Cmemtype1memtype2Cmem memtype1mem memtype2

Globals

An external type global globaltype1 matches global globaltype2 if and only if:

  • Global type globaltype1 matches globaltype2.

 Cglobaltype1globaltype2Cglobal globaltype1global globaltype2

Tags

An external type tag tagtype1 matches tag tagtype2 if and only if:

  • Tag type tagtype1 matches tagtype2.

Ctagtype1tagtype2Ctag tagtype1tag tagtype2