Values

Value Typing

For the purpose of checking argument values against the parameter types of exported functions, values are classified by value types. The following auxiliary typing rules specify this typing relation relative to a store S in which possibly referenced addresses live.

Numeric Values t.const c

St.const c:t

Vector Values t.const c

St.const c:t

Null References ref.null t

tokt{none,nofunc,noextern}ttSref.null t:(ref null t)

Note

A null reference is typed with the least type in its respective hierarchy. That ensures that it is compatible with any nullable type in that hierarchy.

Scalar References ref.i31 i

Sref.i31 i:ref i31

Structure References ref.struct a

deftype=S.structs[a].typeexpand(deftype)=struct structtypeSref.struct a:ref deftype

Array References ref.array a

deftype=S.arrays[a].typeexpand(deftype)=array arraytypeSref.array a:ref deftype

Function References ref.func a

deftype=S.funcs[a].typeexpand(deftype)=func functypeSref.func a:ref deftype

Host References ref.host a

Sref.host a:ref any

Note

A host reference is considered internalized by this rule.

External References ref.extern ref

Sref:ref null? ttanySref.extern ref:ref null? extern

Subsumption

  • The value must be valid with some value type t.

  • The value type t matches another valid type t.

  • Then the value is valid with type t.

Sval:ttokttSval:t

External Typing

For the purpose of checking external values against imports, such values are classified by external types. The following auxiliary typing rules specify this typing relation relative to a store S in which the referenced instances live.

func a

  • The store entry S.funcs[a] must exist.

  • Then func a is valid with external type func S.funcs[a].type.

Sfunc a:func S.funcs[a].type

table a

  • The store entry S.tables[a] must exist.

  • Then table a is valid with external type table S.tables[a].type.

Stable a:table S.tables[a].type

mem a

  • The store entry S.mems[a] must exist.

  • Then mem a is valid with external type mem S.mems[a].type.

Smem a:mem S.mems[a].type

global a

  • The store entry S.globals[a] must exist.

  • Then global a is valid with external type global S.globals[a].type.

Sglobal a:global S.globals[a].type

Subsumption

  • The external value must be valid with some external type et.

  • The external type et matches another valid type et.

  • Then the external value is valid with type et.

Sexternval:etetoketetSexternval:et