mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 23:12:19 +00:00
4843 lines
75 KiB
Plaintext
4843 lines
75 KiB
Plaintext
(module
|
|
(type $iiiiv (func (param i32 i32 i32 i32)))
|
|
(type $ii (func (param i32) (result i32)))
|
|
(type $iii (func (param i32 i32) (result i32)))
|
|
(type $fff (func (param f32 f32) (result f32)))
|
|
(type $FFF (func (param f64 f64) (result f64)))
|
|
(type $v (func))
|
|
(type $iiii (func (param i32 i32 i32) (result i32)))
|
|
(type $ifv (func (param i32 f32)))
|
|
(type $if (func (param i32) (result f32)))
|
|
(import "env" "abort" (func $abort (param i32 i32 i32 i32)))
|
|
(global $showcase/aConstantGlobal i32 (i32.const 42))
|
|
(global $showcase/anExportedConstantGlobal f32 (f32.const 42))
|
|
(global $showcase/aMutableGlobal (mut i32) (i32.const 42))
|
|
(global $unary/i (mut i32) (i32.const 0))
|
|
(global $unary/I (mut i64) (i64.const 0))
|
|
(global $unary/f (mut f32) (f32.const 0))
|
|
(global $unary/F (mut f64) (f64.const 0))
|
|
(global $binary/b (mut i32) (i32.const 0))
|
|
(global $binary/i (mut i32) (i32.const 0))
|
|
(global $binary/I (mut i64) (i64.const 0))
|
|
(global $binary/f (mut f32) (f32.const 0))
|
|
(global $binary/F (mut f64) (f64.const 0))
|
|
(global $logical/i (mut i32) (i32.const 0))
|
|
(global $logical/I (mut i64) (i64.const 0))
|
|
(global $logical/f (mut f32) (f32.const 0))
|
|
(global $logical/F (mut f64) (f64.const 0))
|
|
(global $builtins/b (mut i32) (i32.const 0))
|
|
(global $builtins/i (mut i32) (i32.const 0))
|
|
(global $builtins/I (mut i64) (i64.const 0))
|
|
(global $builtins/f (mut f32) (f32.const 0))
|
|
(global $builtins/F (mut f64) (f64.const 0))
|
|
(global $builtins/u (mut i32) (i32.const 0))
|
|
(global $builtins/U (mut i64) (i64.const 0))
|
|
(global $builtins/s (mut i32) (i32.const 0))
|
|
(global $showcase/ANamespace.aNamespacedGlobal (mut i32) (i32.const 42))
|
|
(global $showcase/AnEnum.ONE i32 (i32.const 1))
|
|
(global $showcase/AnEnum.TWO i32 (i32.const 2))
|
|
(global $showcase/AnEnum.FOUR i32 (i32.const 4))
|
|
(global $showcase/AnEnum.FIVE i32 (i32.const 5))
|
|
(global $showcase/AnEnum.FORTYTWO (mut i32) (i32.const 0))
|
|
(global $showcase/AnEnum.FORTYTHREE (mut i32) (i32.const 0))
|
|
(global $memcpy/dest (mut i32) (i32.const 0))
|
|
(global $showcase/aClassInstance (mut i32) (i32.const 8))
|
|
(global $showcase/AClass.aStaticField (mut i32) (i32.const 0))
|
|
(memory $0 1)
|
|
(data (i32.const 4) "\n\00\00\00l\00o\00g\00i\00c\00a\00l\00.\00t\00s")
|
|
(data (i32.const 28) "\0b\00\00\00b\00u\00i\00l\00t\00i\00n\00s\00.\00t\00s")
|
|
(data (i32.const 56) "\0b\00\00\00s\00h\00o\00w\00c\00a\00s\00e\00.\00t\00s")
|
|
(data (i32.const 84) "\t\00\00\00m\00e\00m\00c\00p\00y\00.\00t\00s")
|
|
(data (i32.const 108) "\07\00\00\00f\00m\00o\00d\00.\00t\00s")
|
|
(export "anExportedConstantGlobal" (global $showcase/anExportedConstantGlobal))
|
|
(export "aConstantGlobal" (global $showcase/aConstantGlobal))
|
|
(export "anAliasedConstantGlobal" (global $showcase/anExportedConstantGlobal))
|
|
(export "showcase/AnEnum.ONE" (global $showcase/AnEnum.ONE))
|
|
(export "showcase/AnEnum.TWO" (global $showcase/AnEnum.TWO))
|
|
(export "showcase/AnEnum.FOUR" (global $showcase/AnEnum.FOUR))
|
|
(export "showcase/AnEnum.FIVE" (global $showcase/AnEnum.FIVE))
|
|
(export "anExportedFunction" (func $showcase/anExportedFunction))
|
|
(export "memory" (memory $0))
|
|
(start $start)
|
|
(func $showcase/ANamespace.aNamespacedFunction (; 1 ;) (type $ii) (param $0 i32) (result i32)
|
|
(get_local $0)
|
|
)
|
|
(func $showcase/addGeneric<i32> (; 2 ;) (type $iii) (param $0 i32) (param $1 i32) (result i32)
|
|
(i32.add
|
|
(get_local $0)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(func $showcase/addGeneric<f32> (; 3 ;) (type $fff) (param $0 f32) (param $1 f32) (result f32)
|
|
(f32.add
|
|
(get_local $0)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(func $showcase/addGeneric<f64> (; 4 ;) (type $FFF) (param $0 f64) (param $1 f64) (result f64)
|
|
(f64.add
|
|
(get_local $0)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(func $showcase/anExportedFunction (; 5 ;) (type $v)
|
|
(nop)
|
|
)
|
|
(func $memcpy/memcpy (; 6 ;) (type $iiii) (param $0 i32) (param $1 i32) (param $2 i32) (result i32)
|
|
(local $3 i32)
|
|
(local $4 i32)
|
|
(local $5 i32)
|
|
(set_local $5
|
|
(get_local $0)
|
|
)
|
|
(loop $continue|0
|
|
(if
|
|
(if (result i32)
|
|
(get_local $2)
|
|
(i32.rem_u
|
|
(get_local $1)
|
|
(i32.const 4)
|
|
)
|
|
(get_local $2)
|
|
)
|
|
(block
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(br $continue|0)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(i32.rem_u
|
|
(get_local $0)
|
|
(i32.const 4)
|
|
)
|
|
)
|
|
(block
|
|
(loop $continue|1
|
|
(if
|
|
(i32.ge_u
|
|
(get_local $2)
|
|
(i32.const 16)
|
|
)
|
|
(block
|
|
(i32.store
|
|
(get_local $0)
|
|
(i32.load
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 4)
|
|
)
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 4)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 8)
|
|
)
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 12)
|
|
)
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 12)
|
|
)
|
|
)
|
|
)
|
|
(set_local $1
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(br $continue|1)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 8)
|
|
)
|
|
(block
|
|
(i32.store
|
|
(get_local $0)
|
|
(i32.load
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 4)
|
|
)
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 4)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_local $1
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 4)
|
|
)
|
|
(block
|
|
(i32.store
|
|
(get_local $0)
|
|
(i32.load
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 4)
|
|
)
|
|
)
|
|
(set_local $1
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 4)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 2)
|
|
)
|
|
(block
|
|
(i32.store16
|
|
(get_local $0)
|
|
(i32.load16_u
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 2)
|
|
)
|
|
)
|
|
(set_local $1
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 2)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 1)
|
|
)
|
|
(block
|
|
(set_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(return
|
|
(get_local $5)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ge_u
|
|
(get_local $2)
|
|
(i32.const 32)
|
|
)
|
|
(block $break|2
|
|
(block $case2|2
|
|
(block $case1|2
|
|
(block $case0|2
|
|
(block $tablify|0
|
|
(br_table $case0|2 $case1|2 $case2|2 $tablify|0
|
|
(i32.sub
|
|
(i32.rem_u
|
|
(get_local $0)
|
|
(i32.const 4)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
)
|
|
(br $break|2)
|
|
)
|
|
(set_local $4
|
|
(i32.load
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 3)
|
|
)
|
|
)
|
|
(loop $continue|3
|
|
(if
|
|
(i32.ge_u
|
|
(get_local $2)
|
|
(i32.const 17)
|
|
)
|
|
(block
|
|
(i32.store
|
|
(get_local $0)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $4)
|
|
(i32.const 24)
|
|
)
|
|
(i32.shl
|
|
(tee_local $3
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 4)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $3)
|
|
(i32.const 24)
|
|
)
|
|
(i32.shl
|
|
(tee_local $4
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 5)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 8)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $4)
|
|
(i32.const 24)
|
|
)
|
|
(i32.shl
|
|
(tee_local $3
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 9)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 12)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $3)
|
|
(i32.const 24)
|
|
)
|
|
(i32.shl
|
|
(tee_local $4
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 13)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
)
|
|
(set_local $1
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(br $continue|3)
|
|
)
|
|
)
|
|
)
|
|
(br $break|2)
|
|
)
|
|
(set_local $4
|
|
(i32.load
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 2)
|
|
)
|
|
)
|
|
(loop $continue|4
|
|
(if
|
|
(i32.ge_u
|
|
(get_local $2)
|
|
(i32.const 18)
|
|
)
|
|
(block
|
|
(i32.store
|
|
(get_local $0)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $4)
|
|
(i32.const 16)
|
|
)
|
|
(i32.shl
|
|
(tee_local $3
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 2)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 4)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $3)
|
|
(i32.const 16)
|
|
)
|
|
(i32.shl
|
|
(tee_local $4
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 6)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 8)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $4)
|
|
(i32.const 16)
|
|
)
|
|
(i32.shl
|
|
(tee_local $3
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 10)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 12)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $3)
|
|
(i32.const 16)
|
|
)
|
|
(i32.shl
|
|
(tee_local $4
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 14)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
)
|
|
(set_local $1
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(br $continue|4)
|
|
)
|
|
)
|
|
)
|
|
(br $break|2)
|
|
)
|
|
(set_local $4
|
|
(i32.load
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(loop $continue|5
|
|
(if
|
|
(i32.ge_u
|
|
(get_local $2)
|
|
(i32.const 19)
|
|
)
|
|
(block
|
|
(i32.store
|
|
(get_local $0)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $4)
|
|
(i32.const 8)
|
|
)
|
|
(i32.shl
|
|
(tee_local $3
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 3)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 24)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 4)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $3)
|
|
(i32.const 8)
|
|
)
|
|
(i32.shl
|
|
(tee_local $4
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 7)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 24)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 8)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $4)
|
|
(i32.const 8)
|
|
)
|
|
(i32.shl
|
|
(tee_local $3
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 11)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 24)
|
|
)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 12)
|
|
)
|
|
(i32.or
|
|
(i32.shr_u
|
|
(get_local $3)
|
|
(i32.const 8)
|
|
)
|
|
(i32.shl
|
|
(tee_local $4
|
|
(i32.load
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 15)
|
|
)
|
|
)
|
|
)
|
|
(i32.const 24)
|
|
)
|
|
)
|
|
)
|
|
(set_local $1
|
|
(i32.add
|
|
(get_local $1)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(get_local $0)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 16)
|
|
)
|
|
)
|
|
(br $continue|5)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 16)
|
|
)
|
|
(block
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 8)
|
|
)
|
|
(block
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 4)
|
|
)
|
|
(block
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 2)
|
|
)
|
|
(block
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $0
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $1
|
|
(i32.add
|
|
(tee_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 1)
|
|
)
|
|
(block
|
|
(set_local $3
|
|
(get_local $0)
|
|
)
|
|
(i32.store8
|
|
(get_local $3)
|
|
(block (result i32)
|
|
(set_local $3
|
|
(get_local $1)
|
|
)
|
|
(i32.load8_u
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(get_local $5)
|
|
)
|
|
(func $fmod/fmod (; 7 ;) (type $FFF) (param $0 f64) (param $1 f64) (result f64)
|
|
(local $2 i64)
|
|
(local $3 i32)
|
|
(local $4 i64)
|
|
(local $5 i64)
|
|
(local $6 i32)
|
|
(local $7 i32)
|
|
(local $8 f64)
|
|
(block $folding-inner0
|
|
(set_local $3
|
|
(i32.wrap/i64
|
|
(i64.and
|
|
(i64.shr_u
|
|
(tee_local $2
|
|
(i64.reinterpret/f64
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(i64.const 52)
|
|
)
|
|
(i64.const 2047)
|
|
)
|
|
)
|
|
)
|
|
(set_local $6
|
|
(i32.wrap/i64
|
|
(i64.and
|
|
(i64.shr_u
|
|
(tee_local $5
|
|
(i64.reinterpret/f64
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(i64.const 52)
|
|
)
|
|
(i64.const 2047)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(if (result i32)
|
|
(tee_local $7
|
|
(i32.and
|
|
(if (result i32)
|
|
(tee_local $7
|
|
(i64.eq
|
|
(i64.shl
|
|
(get_local $5)
|
|
(i64.const 1)
|
|
)
|
|
(i64.const 0)
|
|
)
|
|
)
|
|
(get_local $7)
|
|
(f64.ne
|
|
(tee_local $8
|
|
(get_local $1)
|
|
)
|
|
(get_local $8)
|
|
)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(get_local $7)
|
|
(i32.eq
|
|
(get_local $3)
|
|
(i32.const 2047)
|
|
)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
(return
|
|
(f64.div
|
|
(f64.mul
|
|
(get_local $0)
|
|
(get_local $1)
|
|
)
|
|
(f64.mul
|
|
(get_local $0)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i64.le_u
|
|
(i64.shl
|
|
(get_local $2)
|
|
(i64.const 1)
|
|
)
|
|
(i64.shl
|
|
(get_local $5)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(block
|
|
(br_if $folding-inner0
|
|
(i64.eq
|
|
(i64.shl
|
|
(get_local $2)
|
|
(i64.const 1)
|
|
)
|
|
(i64.shl
|
|
(get_local $5)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
)
|
|
(return
|
|
(get_local $0)
|
|
)
|
|
)
|
|
)
|
|
(set_local $7
|
|
(i32.wrap/i64
|
|
(i64.shr_u
|
|
(get_local $2)
|
|
(i64.const 63)
|
|
)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(if (result i64)
|
|
(get_local $3)
|
|
(i64.or
|
|
(i64.and
|
|
(get_local $2)
|
|
(i64.const 4503599627370495)
|
|
)
|
|
(i64.const 4503599627370496)
|
|
)
|
|
(block (result i64)
|
|
(set_local $4
|
|
(i64.shl
|
|
(get_local $2)
|
|
(i64.const 12)
|
|
)
|
|
)
|
|
(loop $continue|0
|
|
(if
|
|
(i64.eqz
|
|
(i64.shr_u
|
|
(get_local $4)
|
|
(i64.const 63)
|
|
)
|
|
)
|
|
(block
|
|
(set_local $3
|
|
(i32.sub
|
|
(get_local $3)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_local $4
|
|
(i64.shl
|
|
(get_local $4)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(br $continue|0)
|
|
)
|
|
)
|
|
)
|
|
(i64.shl
|
|
(get_local $2)
|
|
(i64.extend_u/i32
|
|
(i32.sub
|
|
(i32.const 1)
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(set_local $5
|
|
(if (result i64)
|
|
(get_local $6)
|
|
(i64.or
|
|
(i64.and
|
|
(get_local $5)
|
|
(i64.const 4503599627370495)
|
|
)
|
|
(i64.const 4503599627370496)
|
|
)
|
|
(block (result i64)
|
|
(set_local $4
|
|
(i64.shl
|
|
(get_local $5)
|
|
(i64.const 12)
|
|
)
|
|
)
|
|
(loop $continue|1
|
|
(if
|
|
(i64.eqz
|
|
(i64.shr_u
|
|
(get_local $4)
|
|
(i64.const 63)
|
|
)
|
|
)
|
|
(block
|
|
(set_local $6
|
|
(i32.sub
|
|
(get_local $6)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_local $4
|
|
(i64.shl
|
|
(get_local $4)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(br $continue|1)
|
|
)
|
|
)
|
|
)
|
|
(i64.shl
|
|
(get_local $5)
|
|
(i64.extend_u/i32
|
|
(i32.sub
|
|
(i32.const 1)
|
|
(get_local $6)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(loop $continue|2
|
|
(if
|
|
(i32.gt_s
|
|
(get_local $3)
|
|
(get_local $6)
|
|
)
|
|
(block
|
|
(if
|
|
(i64.eqz
|
|
(i64.shr_u
|
|
(tee_local $4
|
|
(i64.sub
|
|
(get_local $2)
|
|
(get_local $5)
|
|
)
|
|
)
|
|
(i64.const 63)
|
|
)
|
|
)
|
|
(block
|
|
(br_if $folding-inner0
|
|
(i64.eqz
|
|
(get_local $4)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(get_local $4)
|
|
)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i64.shl
|
|
(get_local $2)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_local $3
|
|
(i32.sub
|
|
(get_local $3)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(br $continue|2)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i64.eqz
|
|
(i64.shr_u
|
|
(tee_local $4
|
|
(i64.sub
|
|
(get_local $2)
|
|
(get_local $5)
|
|
)
|
|
)
|
|
(i64.const 63)
|
|
)
|
|
)
|
|
(block
|
|
(br_if $folding-inner0
|
|
(i64.eqz
|
|
(get_local $4)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(get_local $4)
|
|
)
|
|
)
|
|
)
|
|
(loop $continue|3
|
|
(if
|
|
(i64.eqz
|
|
(i64.shr_u
|
|
(get_local $2)
|
|
(i64.const 52)
|
|
)
|
|
)
|
|
(block
|
|
(set_local $3
|
|
(i32.sub
|
|
(get_local $3)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i64.shl
|
|
(get_local $2)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(br $continue|3)
|
|
)
|
|
)
|
|
)
|
|
(return
|
|
(f64.reinterpret/i64
|
|
(i64.or
|
|
(tee_local $2
|
|
(select
|
|
(i64.or
|
|
(i64.sub
|
|
(get_local $2)
|
|
(i64.const 4503599627370496)
|
|
)
|
|
(i64.shl
|
|
(i64.extend_u/i32
|
|
(get_local $3)
|
|
)
|
|
(i64.const 52)
|
|
)
|
|
)
|
|
(i64.shr_u
|
|
(get_local $2)
|
|
(i64.extend_u/i32
|
|
(i32.sub
|
|
(i32.const 1)
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(i32.gt_s
|
|
(get_local $3)
|
|
(i32.const 0)
|
|
)
|
|
)
|
|
)
|
|
(i64.shl
|
|
(i64.extend_u/i32
|
|
(get_local $7)
|
|
)
|
|
(i64.const 63)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(f64.mul
|
|
(f64.const 0)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(func $fmod/fmodf (; 8 ;) (type $fff) (param $0 f32) (param $1 f32) (result f32)
|
|
(local $2 i32)
|
|
(local $3 i32)
|
|
(local $4 i32)
|
|
(local $5 i32)
|
|
(local $6 i32)
|
|
(local $7 f32)
|
|
(local $8 i32)
|
|
(block $folding-inner0
|
|
(set_local $4
|
|
(i32.and
|
|
(i32.shr_u
|
|
(tee_local $2
|
|
(i32.reinterpret/f32
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(i32.const 23)
|
|
)
|
|
(i32.const 255)
|
|
)
|
|
)
|
|
(set_local $6
|
|
(i32.and
|
|
(i32.shr_u
|
|
(tee_local $5
|
|
(i32.reinterpret/f32
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(i32.const 23)
|
|
)
|
|
(i32.const 255)
|
|
)
|
|
)
|
|
(if
|
|
(i32.and
|
|
(if (result i32)
|
|
(tee_local $3
|
|
(i32.and
|
|
(if (result i32)
|
|
(tee_local $3
|
|
(i32.eqz
|
|
(i32.shl
|
|
(get_local $5)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
)
|
|
(get_local $3)
|
|
(f32.ne
|
|
(tee_local $7
|
|
(get_local $1)
|
|
)
|
|
(get_local $7)
|
|
)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(get_local $3)
|
|
(i32.eq
|
|
(get_local $4)
|
|
(i32.const 255)
|
|
)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
(return
|
|
(f32.div
|
|
(f32.mul
|
|
(get_local $0)
|
|
(get_local $1)
|
|
)
|
|
(f32.mul
|
|
(get_local $0)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.le_u
|
|
(i32.shl
|
|
(get_local $2)
|
|
(i32.const 1)
|
|
)
|
|
(i32.shl
|
|
(get_local $5)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(block
|
|
(br_if $folding-inner0
|
|
(i32.eq
|
|
(i32.shl
|
|
(get_local $2)
|
|
(i32.const 1)
|
|
)
|
|
(i32.shl
|
|
(get_local $5)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
)
|
|
(return
|
|
(get_local $0)
|
|
)
|
|
)
|
|
)
|
|
(set_local $8
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const -2147483648)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(if (result i32)
|
|
(get_local $4)
|
|
(i32.or
|
|
(i32.and
|
|
(get_local $2)
|
|
(i32.const 8388607)
|
|
)
|
|
(i32.const 8388608)
|
|
)
|
|
(block (result i32)
|
|
(set_local $3
|
|
(i32.shl
|
|
(get_local $2)
|
|
(i32.const 9)
|
|
)
|
|
)
|
|
(loop $continue|0
|
|
(if
|
|
(i32.eqz
|
|
(i32.shr_u
|
|
(get_local $3)
|
|
(i32.const 31)
|
|
)
|
|
)
|
|
(block
|
|
(set_local $4
|
|
(i32.sub
|
|
(get_local $4)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_local $3
|
|
(i32.shl
|
|
(get_local $3)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(br $continue|0)
|
|
)
|
|
)
|
|
)
|
|
(i32.shl
|
|
(get_local $2)
|
|
(i32.sub
|
|
(i32.const 1)
|
|
(get_local $4)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(set_local $5
|
|
(if (result i32)
|
|
(get_local $6)
|
|
(i32.or
|
|
(i32.and
|
|
(get_local $5)
|
|
(i32.const 8388607)
|
|
)
|
|
(i32.const 8388608)
|
|
)
|
|
(block (result i32)
|
|
(set_local $3
|
|
(i32.shl
|
|
(get_local $5)
|
|
(i32.const 9)
|
|
)
|
|
)
|
|
(loop $continue|1
|
|
(if
|
|
(i32.eqz
|
|
(i32.shr_u
|
|
(get_local $3)
|
|
(i32.const 31)
|
|
)
|
|
)
|
|
(block
|
|
(set_local $6
|
|
(i32.sub
|
|
(get_local $6)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_local $3
|
|
(i32.shl
|
|
(get_local $3)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(br $continue|1)
|
|
)
|
|
)
|
|
)
|
|
(i32.shl
|
|
(get_local $5)
|
|
(i32.sub
|
|
(i32.const 1)
|
|
(get_local $6)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(loop $continue|2
|
|
(if
|
|
(i32.gt_s
|
|
(get_local $4)
|
|
(get_local $6)
|
|
)
|
|
(block
|
|
(if
|
|
(i32.eqz
|
|
(i32.shr_u
|
|
(tee_local $3
|
|
(i32.sub
|
|
(get_local $2)
|
|
(get_local $5)
|
|
)
|
|
)
|
|
(i32.const 31)
|
|
)
|
|
)
|
|
(block
|
|
(br_if $folding-inner0
|
|
(i32.eqz
|
|
(get_local $3)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.shl
|
|
(get_local $2)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_local $4
|
|
(i32.sub
|
|
(get_local $4)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(br $continue|2)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(i32.shr_u
|
|
(tee_local $3
|
|
(i32.sub
|
|
(get_local $2)
|
|
(get_local $5)
|
|
)
|
|
)
|
|
(i32.const 31)
|
|
)
|
|
)
|
|
(block
|
|
(br_if $folding-inner0
|
|
(i32.eqz
|
|
(get_local $3)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(get_local $3)
|
|
)
|
|
)
|
|
)
|
|
(loop $continue|3
|
|
(if
|
|
(i32.eqz
|
|
(i32.shr_u
|
|
(get_local $2)
|
|
(i32.const 23)
|
|
)
|
|
)
|
|
(block
|
|
(set_local $4
|
|
(i32.sub
|
|
(get_local $4)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_local $2
|
|
(i32.shl
|
|
(get_local $2)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(br $continue|3)
|
|
)
|
|
)
|
|
)
|
|
(return
|
|
(f32.reinterpret/i32
|
|
(i32.or
|
|
(tee_local $2
|
|
(select
|
|
(i32.or
|
|
(i32.sub
|
|
(get_local $2)
|
|
(i32.const 8388608)
|
|
)
|
|
(i32.shl
|
|
(get_local $4)
|
|
(i32.const 23)
|
|
)
|
|
)
|
|
(i32.shr_u
|
|
(get_local $2)
|
|
(i32.sub
|
|
(i32.const 1)
|
|
(get_local $4)
|
|
)
|
|
)
|
|
(i32.gt_s
|
|
(get_local $4)
|
|
(i32.const 0)
|
|
)
|
|
)
|
|
)
|
|
(get_local $8)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(f32.mul
|
|
(f32.const 0)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(func $showcase/ADerivedClass#set:aWildAccessorAppears (; 9 ;) (type $ifv) (param $0 i32) (param $1 f32)
|
|
(f32.store offset=4
|
|
(get_local $0)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(func $showcase/ADerivedClass#get:aWildAccessorAppears (; 10 ;) (type $if) (param $0 i32) (result f32)
|
|
(f32.load offset=4
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(func $start (; 11 ;) (type $v)
|
|
(local $0 f64)
|
|
(local $1 f32)
|
|
(local $2 i32)
|
|
(local $3 i64)
|
|
(local $4 i32)
|
|
(local $5 i64)
|
|
(set_global $unary/i
|
|
(i32.add
|
|
(get_global $unary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.sub
|
|
(get_global $unary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.add
|
|
(get_global $unary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.sub
|
|
(get_global $unary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.const 1)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.const -1)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.const 0)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.const -2)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.sub
|
|
(i32.const 0)
|
|
(get_global $unary/i)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.eqz
|
|
(get_global $unary/i)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.xor
|
|
(get_global $unary/i)
|
|
(i32.const -1)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(block (result i32)
|
|
(set_global $unary/i
|
|
(i32.add
|
|
(get_global $unary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(get_global $unary/i)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(block (result i32)
|
|
(set_global $unary/i
|
|
(i32.sub
|
|
(get_global $unary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(get_global $unary/i)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(block (result i32)
|
|
(set_global $unary/i
|
|
(i32.add
|
|
(tee_local $2
|
|
(get_global $unary/i)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(get_local $2)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(block (result i32)
|
|
(set_global $unary/i
|
|
(i32.sub
|
|
(tee_local $2
|
|
(get_global $unary/i)
|
|
)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(get_local $2)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.add
|
|
(get_global $unary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.sub
|
|
(get_global $unary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.add
|
|
(get_global $unary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.sub
|
|
(get_global $unary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.const 1)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.const -1)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.const 0)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.const -2)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.sub
|
|
(i64.const 0)
|
|
(get_global $unary/I)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.extend_s/i32
|
|
(i64.eqz
|
|
(get_global $unary/I)
|
|
)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.xor
|
|
(get_global $unary/I)
|
|
(i64.const -1)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(block (result i64)
|
|
(set_global $unary/I
|
|
(i64.add
|
|
(get_global $unary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(get_global $unary/I)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(block (result i64)
|
|
(set_global $unary/I
|
|
(i64.sub
|
|
(get_global $unary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(get_global $unary/I)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(block (result i64)
|
|
(set_global $unary/I
|
|
(i64.add
|
|
(tee_local $3
|
|
(get_global $unary/I)
|
|
)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(get_local $3)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(block (result i64)
|
|
(set_global $unary/I
|
|
(i64.sub
|
|
(tee_local $3
|
|
(get_global $unary/I)
|
|
)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(get_local $3)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(f32.add
|
|
(get_global $unary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(f32.sub
|
|
(get_global $unary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(f32.add
|
|
(get_global $unary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(f32.sub
|
|
(get_global $unary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(f32.const 1.25)
|
|
)
|
|
(set_global $unary/f
|
|
(f32.const -1.25)
|
|
)
|
|
(set_global $unary/i
|
|
(i32.const 0)
|
|
)
|
|
(set_global $unary/f
|
|
(f32.neg
|
|
(get_global $unary/f)
|
|
)
|
|
)
|
|
(set_global $unary/i
|
|
(f32.eq
|
|
(get_global $unary/f)
|
|
(f32.const 0)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(block (result f32)
|
|
(set_global $unary/f
|
|
(f32.add
|
|
(get_global $unary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(get_global $unary/f)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(block (result f32)
|
|
(set_global $unary/f
|
|
(f32.sub
|
|
(get_global $unary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(get_global $unary/f)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(block (result f32)
|
|
(set_global $unary/f
|
|
(f32.add
|
|
(tee_local $1
|
|
(get_global $unary/f)
|
|
)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(set_global $unary/f
|
|
(block (result f32)
|
|
(set_global $unary/f
|
|
(f32.sub
|
|
(tee_local $1
|
|
(get_global $unary/f)
|
|
)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(f64.add
|
|
(get_global $unary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(f64.sub
|
|
(get_global $unary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(f64.add
|
|
(get_global $unary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(f64.sub
|
|
(get_global $unary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(f64.const 1.25)
|
|
)
|
|
(set_global $unary/F
|
|
(f64.const -1.25)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.const 0)
|
|
)
|
|
(set_global $unary/F
|
|
(f64.neg
|
|
(get_global $unary/F)
|
|
)
|
|
)
|
|
(set_global $unary/I
|
|
(i64.extend_s/i32
|
|
(f64.eq
|
|
(get_global $unary/F)
|
|
(f64.const 0)
|
|
)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(block (result f64)
|
|
(set_global $unary/F
|
|
(f64.add
|
|
(get_global $unary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(get_global $unary/F)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(block (result f64)
|
|
(set_global $unary/F
|
|
(f64.sub
|
|
(get_global $unary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(get_global $unary/F)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(block (result f64)
|
|
(set_global $unary/F
|
|
(f64.add
|
|
(tee_local $0
|
|
(get_global $unary/F)
|
|
)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(set_global $unary/F
|
|
(block (result f64)
|
|
(set_global $unary/F
|
|
(f64.sub
|
|
(tee_local $0
|
|
(get_global $unary/F)
|
|
)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(drop
|
|
(i32.div_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(drop
|
|
(i32.rem_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i32.lt_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i32.gt_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i32.le_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i32.ge_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i32.eq
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i32.eq
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.add
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.sub
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.mul
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.div_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.rem_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.shl
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.shr_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.shr_u
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.and
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.or
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.xor
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.add
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.sub
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.mul
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.rem_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.shl
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.shr_s
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.shr_u
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.and
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.or
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/i
|
|
(i32.xor
|
|
(get_global $binary/i)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(drop
|
|
(i64.div_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(drop
|
|
(i64.rem_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i64.lt_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i64.gt_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i64.le_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i64.ge_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i64.eq
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(i64.eq
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.add
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.sub
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.mul
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.div_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.rem_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.shl
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.shr_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.shr_u
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.and
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.or
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.xor
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.add
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.sub
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.mul
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.rem_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.shl
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.shr_s
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.shr_u
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.and
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.or
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/I
|
|
(i64.xor
|
|
(get_global $binary/I)
|
|
(i64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f32.lt
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f32.gt
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f32.le
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f32.ge
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f32.eq
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f32.eq
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/f
|
|
(f32.add
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/f
|
|
(f32.sub
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/f
|
|
(f32.mul
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/f
|
|
(f32.div
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/f
|
|
(f32.add
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/f
|
|
(f32.sub
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/f
|
|
(f32.mul
|
|
(get_global $binary/f)
|
|
(f32.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f64.lt
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f64.gt
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f64.le
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f64.ge
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f64.eq
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/b
|
|
(f64.eq
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/F
|
|
(f64.add
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/F
|
|
(f64.sub
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/F
|
|
(f64.mul
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/F
|
|
(f64.div
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/F
|
|
(f64.add
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/F
|
|
(f64.sub
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(set_global $binary/F
|
|
(f64.mul
|
|
(get_global $binary/F)
|
|
(f64.const 1)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(tee_local $2
|
|
(i32.const 2)
|
|
)
|
|
)
|
|
(unreachable)
|
|
)
|
|
(if
|
|
(f64.eq
|
|
(tee_local $0
|
|
(f64.const 2)
|
|
)
|
|
(f64.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
(set_global $logical/i
|
|
(i32.const 2)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $logical/i)
|
|
(i32.const 2)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 4)
|
|
(i32.const 12)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $logical/i
|
|
(i32.const 1)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $logical/i)
|
|
(i32.const 1)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 4)
|
|
(i32.const 15)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $logical/I
|
|
(i64.const 2)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(get_global $logical/I)
|
|
(i64.const 2)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 4)
|
|
(i32.const 20)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $logical/I
|
|
(i64.const 1)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(get_global $logical/I)
|
|
(i64.const 1)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 4)
|
|
(i32.const 23)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $logical/f
|
|
(f32.const 2)
|
|
)
|
|
(if
|
|
(f32.ne
|
|
(get_global $logical/f)
|
|
(f32.const 2)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 4)
|
|
(i32.const 28)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $logical/f
|
|
(f32.const 1)
|
|
)
|
|
(if
|
|
(f32.ne
|
|
(get_global $logical/f)
|
|
(f32.const 1)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 4)
|
|
(i32.const 31)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $logical/F
|
|
(f64.const 2)
|
|
)
|
|
(if
|
|
(f64.ne
|
|
(get_global $logical/F)
|
|
(f64.const 2)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 4)
|
|
(i32.const 36)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $logical/F
|
|
(f64.const 1)
|
|
)
|
|
(if
|
|
(f64.ne
|
|
(get_global $logical/F)
|
|
(f64.const 1)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 4)
|
|
(i32.const 39)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(drop
|
|
(select
|
|
(tee_local $2
|
|
(i32.const 1)
|
|
)
|
|
(tee_local $4
|
|
(i32.const 2)
|
|
)
|
|
(i32.gt_s
|
|
(get_local $2)
|
|
(get_local $4)
|
|
)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.const 31)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.const 0)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.const 1)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.const 2)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.const -2147483648)
|
|
)
|
|
(set_global $builtins/i
|
|
(select
|
|
(tee_local $2
|
|
(i32.const -42)
|
|
)
|
|
(i32.sub
|
|
(i32.const 0)
|
|
(get_local $2)
|
|
)
|
|
(i32.gt_s
|
|
(get_local $2)
|
|
(i32.const 0)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $builtins/i)
|
|
(i32.const 42)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 21)
|
|
(i32.const 19)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(select
|
|
(tee_local $2
|
|
(i32.const 1)
|
|
)
|
|
(i32.const 2)
|
|
(i32.gt_s
|
|
(get_local $2)
|
|
(get_local $4)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $builtins/i)
|
|
(i32.const 2)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 22)
|
|
(i32.const 20)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(select
|
|
(i32.const 1)
|
|
(i32.const 2)
|
|
(i32.lt_s
|
|
(get_local $2)
|
|
(get_local $4)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $builtins/i)
|
|
(i32.const 1)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 23)
|
|
(i32.const 20)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.const 63)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.const 0)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.const 1)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.const 2)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.const -9223372036854775808)
|
|
)
|
|
(set_global $builtins/I
|
|
(select
|
|
(tee_local $3
|
|
(i64.const -42)
|
|
)
|
|
(i64.sub
|
|
(i64.const 0)
|
|
(get_local $3)
|
|
)
|
|
(i64.gt_s
|
|
(get_local $3)
|
|
(i64.const 0)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(get_global $builtins/I)
|
|
(i64.const 42)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 39)
|
|
(i32.const 19)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(select
|
|
(tee_local $3
|
|
(i64.const 1)
|
|
)
|
|
(tee_local $5
|
|
(i64.const 2)
|
|
)
|
|
(i64.gt_s
|
|
(get_local $3)
|
|
(get_local $5)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(get_global $builtins/I)
|
|
(i64.const 2)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 40)
|
|
(i32.const 20)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(select
|
|
(i64.const 1)
|
|
(i64.const 2)
|
|
(i64.lt_s
|
|
(get_local $3)
|
|
(get_local $5)
|
|
)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $builtins/i)
|
|
(i32.const 1)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 41)
|
|
(i32.const 20)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const nan:0x400000)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const inf)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 1.25)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 2)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 1.25)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 1)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 2.5)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 1.25)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 1.25)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 1.1180340051651)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 1)
|
|
)
|
|
(set_global $builtins/b
|
|
(f32.ne
|
|
(tee_local $1
|
|
(f32.const 1.25)
|
|
)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(set_global $builtins/b
|
|
(select
|
|
(f32.ne
|
|
(f32.abs
|
|
(f32.const 1.25)
|
|
)
|
|
(f32.const inf)
|
|
)
|
|
(i32.const 0)
|
|
(f32.eq
|
|
(get_local $1)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const nan:0x8000000000000)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const inf)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 1.25)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 2)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 1.25)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 1)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 2.5)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 1.25)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 1)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 1.118033988749895)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 1)
|
|
)
|
|
(set_global $builtins/b
|
|
(f64.ne
|
|
(tee_local $0
|
|
(f64.const 1.25)
|
|
)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(set_global $builtins/b
|
|
(select
|
|
(f64.ne
|
|
(f64.abs
|
|
(f64.const 1.25)
|
|
)
|
|
(f64.const inf)
|
|
)
|
|
(i32.const 0)
|
|
(f64.eq
|
|
(get_local $0)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.const 8)
|
|
(get_global $builtins/i)
|
|
)
|
|
(i32.store
|
|
(i32.const 8)
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(i64.store
|
|
(i32.const 8)
|
|
(get_global $builtins/I)
|
|
)
|
|
(i64.store
|
|
(i32.const 8)
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(f32.store
|
|
(i32.const 8)
|
|
(get_global $builtins/f)
|
|
)
|
|
(f32.store
|
|
(i32.const 8)
|
|
(f32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(f64.store
|
|
(i32.const 8)
|
|
(get_global $builtins/F)
|
|
)
|
|
(f64.store
|
|
(i32.const 8)
|
|
(f64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(i32.store
|
|
(i32.const 8)
|
|
(get_global $builtins/i)
|
|
)
|
|
(i32.store
|
|
(i32.const 8)
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(i64.store
|
|
(i32.const 8)
|
|
(get_global $builtins/I)
|
|
)
|
|
(i64.store
|
|
(i32.const 8)
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(f32.store
|
|
(i32.const 8)
|
|
(get_global $builtins/f)
|
|
)
|
|
(f32.store
|
|
(i32.const 8)
|
|
(f32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(f64.store
|
|
(i32.const 8)
|
|
(get_global $builtins/F)
|
|
)
|
|
(f64.store
|
|
(i32.const 8)
|
|
(f64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.load8_s
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.load16_s
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.load8_u
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.load16_u
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/u
|
|
(i32.load8_u
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/u
|
|
(i32.load16_u
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/u
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/u
|
|
(i32.load8_s
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/u
|
|
(i32.load16_s
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/u
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.load8_s
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.load16_s
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.load32_s
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/U
|
|
(i64.load8_u
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/U
|
|
(i64.load16_u
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/U
|
|
(i64.load32_u
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(set_global $builtins/U
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
)
|
|
(i32.store8
|
|
(i32.const 8)
|
|
(i32.const 1)
|
|
)
|
|
(i32.store16
|
|
(i32.const 8)
|
|
(i32.const 1)
|
|
)
|
|
(i32.store
|
|
(i32.const 8)
|
|
(i32.const 1)
|
|
)
|
|
(i64.store8
|
|
(i32.const 8)
|
|
(i64.const 1)
|
|
)
|
|
(i64.store16
|
|
(i32.const 8)
|
|
(i64.const 1)
|
|
)
|
|
(i64.store32
|
|
(i32.const 8)
|
|
(i64.const 1)
|
|
)
|
|
(i64.store
|
|
(i32.const 8)
|
|
(i64.const 1)
|
|
)
|
|
(i64.store
|
|
(i32.const 8)
|
|
(i64.const 1)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.const 1067450368)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 3.5032461608120427e-44)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.const 4608308318706860032)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 1.24e-322)
|
|
)
|
|
(drop
|
|
(current_memory)
|
|
)
|
|
(drop
|
|
(grow_memory
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $builtins/s
|
|
(current_memory)
|
|
)
|
|
(set_global $builtins/s
|
|
(grow_memory
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(set_global $builtins/i
|
|
(i32.const 10)
|
|
)
|
|
(set_global $builtins/I
|
|
(i64.const 200)
|
|
)
|
|
(set_global $builtins/f
|
|
(f32.const 1.25)
|
|
)
|
|
(set_global $builtins/F
|
|
(f64.const 25)
|
|
)
|
|
(if
|
|
(f32.eq
|
|
(tee_local $1
|
|
(f32.const nan:0x400000)
|
|
)
|
|
(get_local $1)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 222)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(f64.eq
|
|
(tee_local $0
|
|
(f64.const nan:0x8000000000000)
|
|
)
|
|
(get_local $0)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 223)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(select
|
|
(f32.ne
|
|
(f32.abs
|
|
(tee_local $1
|
|
(f32.const nan:0x400000)
|
|
)
|
|
)
|
|
(f32.const inf)
|
|
)
|
|
(i32.const 0)
|
|
(f32.eq
|
|
(get_local $1)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 224)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(select
|
|
(f32.ne
|
|
(f32.abs
|
|
(tee_local $1
|
|
(f32.const inf)
|
|
)
|
|
)
|
|
(f32.const inf)
|
|
)
|
|
(i32.const 0)
|
|
(f32.eq
|
|
(get_local $1)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 225)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(select
|
|
(f64.ne
|
|
(f64.abs
|
|
(tee_local $0
|
|
(f64.const nan:0x8000000000000)
|
|
)
|
|
)
|
|
(f64.const inf)
|
|
)
|
|
(i32.const 0)
|
|
(f64.eq
|
|
(get_local $0)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 226)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(select
|
|
(f64.ne
|
|
(f64.abs
|
|
(tee_local $0
|
|
(f64.const inf)
|
|
)
|
|
)
|
|
(f64.const inf)
|
|
)
|
|
(i32.const 0)
|
|
(f64.eq
|
|
(get_local $0)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 227)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(select
|
|
(f32.ne
|
|
(f32.abs
|
|
(tee_local $1
|
|
(f32.const 0)
|
|
)
|
|
)
|
|
(f32.const inf)
|
|
)
|
|
(i32.const 0)
|
|
(f32.eq
|
|
(get_local $1)
|
|
(get_local $1)
|
|
)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 228)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(select
|
|
(f64.ne
|
|
(f64.abs
|
|
(tee_local $0
|
|
(f64.const 0)
|
|
)
|
|
)
|
|
(f64.const inf)
|
|
)
|
|
(i32.const 0)
|
|
(f64.eq
|
|
(get_local $0)
|
|
(get_local $0)
|
|
)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 28)
|
|
(i32.const 229)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(call $showcase/ANamespace.aNamespacedFunction
|
|
(get_global $showcase/ANamespace.aNamespacedGlobal)
|
|
)
|
|
(i32.const 42)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 56)
|
|
(i32.const 42)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $showcase/AnEnum.FORTYTWO
|
|
(get_global $showcase/aMutableGlobal)
|
|
)
|
|
(set_global $showcase/AnEnum.FORTYTHREE
|
|
(i32.add
|
|
(get_global $showcase/AnEnum.FORTYTWO)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $showcase/AnEnum.FORTYTWO)
|
|
(i32.const 42)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 56)
|
|
(i32.const 58)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $showcase/AnEnum.FORTYTHREE)
|
|
(i32.const 43)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 56)
|
|
(i32.const 59)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(drop
|
|
(call $showcase/addGeneric<i32>
|
|
(i32.const 1)
|
|
(i32.const 2)
|
|
)
|
|
)
|
|
(drop
|
|
(call $showcase/addGeneric<f32>
|
|
(f32.const 1)
|
|
(f32.const 2)
|
|
)
|
|
)
|
|
(drop
|
|
(call $showcase/addGeneric<f64>
|
|
(f64.const 1)
|
|
(f64.const 2)
|
|
)
|
|
)
|
|
(i64.store
|
|
(i32.const 8)
|
|
(i64.const 1229782938247303441)
|
|
)
|
|
(i64.store
|
|
(i32.const 16)
|
|
(i64.const 2459565876494606882)
|
|
)
|
|
(i64.store
|
|
(i32.const 24)
|
|
(i64.const 3689348814741910323)
|
|
)
|
|
(i64.store
|
|
(i32.const 32)
|
|
(i64.const 4919131752989213764)
|
|
)
|
|
(set_global $memcpy/dest
|
|
(call $memcpy/memcpy
|
|
(i32.const 9)
|
|
(i32.const 24)
|
|
(i32.const 4)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $memcpy/dest)
|
|
(i32.const 9)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 151)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
(i64.const 1229783084848853777)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 152)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $memcpy/dest
|
|
(call $memcpy/memcpy
|
|
(i32.const 8)
|
|
(i32.const 8)
|
|
(i32.const 32)
|
|
)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $memcpy/dest)
|
|
(i32.const 8)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 155)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
(i64.const 1229783084848853777)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 156)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 16)
|
|
)
|
|
(i64.const 2459565876494606882)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 157)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 24)
|
|
)
|
|
(i64.const 3689348814741910323)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 158)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 32)
|
|
)
|
|
(i64.const 4919131752989213764)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 159)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $memcpy/dest
|
|
(call $memcpy/memcpy
|
|
(i32.const 13)
|
|
(i32.const 36)
|
|
(i32.const 3)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
(i64.const 4919131679688438545)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 162)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $memcpy/dest
|
|
(call $memcpy/memcpy
|
|
(i32.const 16)
|
|
(i32.const 24)
|
|
(i32.const 15)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 8)
|
|
)
|
|
(i64.const 4919131679688438545)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 165)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 16)
|
|
)
|
|
(i64.const 3689348814741910323)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 166)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 24)
|
|
)
|
|
(i64.const 3694152654344438852)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 167)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i64.ne
|
|
(i64.load
|
|
(i32.const 32)
|
|
)
|
|
(i64.const 4919131752989213764)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 84)
|
|
(i32.const 168)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(f64.eq
|
|
(tee_local $0
|
|
(call $fmod/fmod
|
|
(f64.const 1)
|
|
(f64.const nan:0x8000000000000)
|
|
)
|
|
)
|
|
(get_local $0)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 108)
|
|
(i32.const 65)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(f64.ne
|
|
(call $fmod/fmod
|
|
(f64.const 1.5)
|
|
(f64.const 1)
|
|
)
|
|
(f64.const 0.5)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 108)
|
|
(i32.const 66)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(f64.lt
|
|
(f64.sub
|
|
(call $fmod/fmod
|
|
(f64.const 9.2)
|
|
(f64.const 2)
|
|
)
|
|
(f64.const 1.2)
|
|
)
|
|
(f64.const 2.220446049250313e-16)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 108)
|
|
(i32.const 67)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(f64.lt
|
|
(f64.sub
|
|
(call $fmod/fmod
|
|
(f64.const 9.2)
|
|
(f64.const 3.7)
|
|
)
|
|
(f64.const 1.8)
|
|
)
|
|
(f64.const 2.220446049250313e-16)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 108)
|
|
(i32.const 68)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(f32.eq
|
|
(tee_local $1
|
|
(call $fmod/fmodf
|
|
(f32.const 1)
|
|
(f32.const nan:0x400000)
|
|
)
|
|
)
|
|
(get_local $1)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 108)
|
|
(i32.const 134)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(f32.ne
|
|
(call $fmod/fmodf
|
|
(f32.const 1.5)
|
|
(f32.const 1)
|
|
)
|
|
(f32.const 0.5)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 108)
|
|
(i32.const 135)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(f32.lt
|
|
(f32.sub
|
|
(call $fmod/fmodf
|
|
(f32.const 9.199999809265137)
|
|
(f32.const 2)
|
|
)
|
|
(f32.const 1.2000000476837158)
|
|
)
|
|
(f32.const 1.1920928955078125e-07)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 108)
|
|
(i32.const 136)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(i32.eqz
|
|
(f32.lt
|
|
(f32.sub
|
|
(call $fmod/fmodf
|
|
(f32.const 9.199999809265137)
|
|
(f32.const 3.700000047683716)
|
|
)
|
|
(f32.const 1.7999999523162842)
|
|
)
|
|
(f32.const 1.1920928955078125e-07)
|
|
)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 108)
|
|
(i32.const 137)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(i32.store
|
|
(get_global $showcase/aClassInstance)
|
|
(i32.const 42)
|
|
)
|
|
(f32.store offset=4
|
|
(get_global $showcase/aClassInstance)
|
|
(f32.const 9e3)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(i32.load
|
|
(i32.const 8)
|
|
)
|
|
(i32.const 42)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 56)
|
|
(i32.const 104)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(if
|
|
(f32.ne
|
|
(f32.load
|
|
(i32.const 12)
|
|
)
|
|
(f32.const 9e3)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 56)
|
|
(i32.const 105)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(call $showcase/ADerivedClass#set:aWildAccessorAppears
|
|
(get_global $showcase/aClassInstance)
|
|
(f32.const 123)
|
|
)
|
|
(if
|
|
(f32.ne
|
|
(call $showcase/ADerivedClass#get:aWildAccessorAppears
|
|
(get_global $showcase/aClassInstance)
|
|
)
|
|
(f32.const 123)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 56)
|
|
(i32.const 108)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
(set_global $showcase/AClass.aStaticField
|
|
(get_global $showcase/aClassInstance)
|
|
)
|
|
(if
|
|
(i32.ne
|
|
(get_global $showcase/AClass.aStaticField)
|
|
(get_global $showcase/aClassInstance)
|
|
)
|
|
(block
|
|
(call $abort
|
|
(i32.const 0)
|
|
(i32.const 56)
|
|
(i32.const 111)
|
|
(i32.const 0)
|
|
)
|
|
(unreachable)
|
|
)
|
|
)
|
|
)
|
|
)
|