mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 15:12:12 +00:00
112 lines
1.6 KiB
Plaintext
112 lines
1.6 KiB
Plaintext
(module
|
|
(type $iv (func (param i32)))
|
|
(global $HEAP_START i32 (i32.const 4))
|
|
(memory $0 1)
|
|
(export "loopWhile" (func $while/loopWhile))
|
|
(export "loopWhileInWhile" (func $while/loopWhileInWhile))
|
|
(export "memory" (memory $0))
|
|
(func $while/loopWhile (; 0 ;) (type $iv) (param $0 i32)
|
|
(block $break|0
|
|
(loop $continue|0
|
|
(if
|
|
(get_local $0)
|
|
(block
|
|
(set_local $0
|
|
(i32.sub
|
|
(get_local $0)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(br $continue|0)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(func $while/loopWhileInWhile (; 1 ;) (type $iv) (param $0 i32)
|
|
(block $break|0
|
|
(loop $continue|0
|
|
(if
|
|
(get_local $0)
|
|
(block
|
|
(block
|
|
(set_local $0
|
|
(i32.sub
|
|
(get_local $0)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(block $break|1
|
|
(loop $continue|1
|
|
(if
|
|
(get_local $0)
|
|
(block
|
|
(set_local $0
|
|
(i32.sub
|
|
(get_local $0)
|
|
(i32.const 1)
|
|
)
|
|
)
|
|
(br $continue|1)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(br $continue|0)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
(;
|
|
[program.elements]
|
|
clz
|
|
ctz
|
|
popcnt
|
|
rotl
|
|
rotr
|
|
abs
|
|
ceil
|
|
copysign
|
|
floor
|
|
max
|
|
min
|
|
nearest
|
|
sqrt
|
|
trunc
|
|
current_memory
|
|
grow_memory
|
|
unreachable
|
|
load
|
|
store
|
|
reinterpret
|
|
select
|
|
sizeof
|
|
changetype
|
|
isNaN
|
|
isFinite
|
|
assert
|
|
parseInt
|
|
parseFloat
|
|
i8
|
|
i16
|
|
i32
|
|
i64
|
|
u8
|
|
u16
|
|
u32
|
|
u64
|
|
bool
|
|
f32
|
|
f64
|
|
isize
|
|
usize
|
|
while/loopWhile
|
|
while/loopWhileInWhile
|
|
[program.exports]
|
|
while/loopWhile
|
|
while/loopWhileInWhile
|
|
;)
|