Types

Note

In some places, possible types include both type constructors or types denoted by type indices. Thus, the binary format for type constructors corresponds to the encodings of small negative sN values, such that they can unambiguously occur in the same place as (positive) type indices.

Number Types

Number types are encoded by a single byte.

numtype::=0x7Fi32|0x7Ei64|0x7Df32|0x7Cf64

Vector Types

Vector types are also encoded by a single byte.

vectype::=0x7Bv128

Heap Types

Heap types are encoded as either a single byte, or as a type index encoded as a positive signed integer.

absheaptype::=0x73nofunc|0x72noextern|0x71none|0x70func|0x6Fextern|0x6Eany|0x6Deq|0x6Ci31|0x6Bstruct|0x6Aarrayheaptype::=ht:absheaptypeht|x:s33x(ifx0)

Reference Types

Reference types are either encoded by a single byte followed by a heap type, or, as a short form, directly as an abstract heap type.

reftype::=0x64  ht:heaptyperef ht|0x63  ht:heaptyperef null ht|ht:absheaptyperef null ht

Value Types

Value types are encoded with their respective encoding as a number type, vector type, or reference type.

valtype::=t:numtypet|t:vectypet|t:reftypet

Note

The type bot cannot occur in a module.

Value types can occur in contexts where type indices are also allowed, such as in the case of block types. Thus, the binary format for types corresponds to the signed LEB128 encoding of small negative sN values, so that they can coexist with (positive) type indices in the future.

Result Types

Result types are encoded by the respective vectors of value types.

resulttype::=t:vec(valtype)[t]

Function Types

Function types are encoded by the respective vectors of parameter and result types.

functype::=rt1:resulttype  rt2:resulttypert1rt2

Aggregate Types

Aggregate types are encoded with their respective field types.

arraytype::=ft:fieldtypeftstructtype::=ft:vec(fieldtype)ftfieldtype::=st:storagetype  m:mutm ststoragetype::=t:valtypet|t:packedtypetpackedtype::=0x78i8|0x77i16

Composite Types

Composite types are encoded by a distinct byte followed by a type encoding of the respective form.

comptype::=0x5E  at:arraytypearray at|0x5F  st:structtypestruct st|0x60  ft:functypefunc ft

Recursive Types

Recursive types are encoded by the byte 0x4E followed by a vector of sub types. Additional shorthands are recognized for unary recursions and sub types without super types.

rectype::=0x4E  st:vec(subtype)rec st|st:subtyperec stsubtype::=0x50  x:vec(typeidx)  ct:comptypesub x ct|0x4F  x:vec(typeidx)  ct:comptypesub final x ct|ct:comptypesub final ϵ ct

Limits

Limits are encoded with a preceding flag indicating whether a maximum is present.

limits::=0x00  n:u32{min n,max ϵ}|0x01  n:u32  m:u32{min n,max m}

Memory Types

Memory types are encoded with their limits.

memtype::=lim:limitslim

Table Types

Table types are encoded with their limits and the encoding of their element reference type.

tabletype::=et:reftype  lim:limitslim et

Global Types

Global types are encoded by their value type and a flag for their mutability.

globaltype::=t:valtype  m:mutm tmut::=0x00const|0x01var