Add trapMode option to asc; Disable flatten/ssa passes for now

This commit is contained in:
dcodeIO
2017-12-09 02:38:17 +01:00
parent 6d8de50565
commit 732068e981
16 changed files with 1339 additions and 1550 deletions

View File

@ -5,20 +5,14 @@
(export "loopWhileInWhile" (func $while/loopWhileInWhile))
(export "memory" (memory $0))
(func $while/loopWhile (; 0 ;) (type $iv) (param $0 i32)
(local $1 i32)
(set_local $1
(get_local $0)
)
(loop $continue|0
(if
(get_local $1)
(get_local $0)
(block
(set_local $0
(tee_local $1
(i32.sub
(get_local $0)
(i32.const 1)
)
(i32.sub
(get_local $0)
(i32.const 1)
)
)
(br $continue|0)
@ -27,32 +21,24 @@
)
)
(func $while/loopWhileInWhile (; 1 ;) (type $iv) (param $0 i32)
(local $1 i32)
(set_local $1
(get_local $0)
)
(loop $continue|0
(if
(get_local $1)
(get_local $0)
(block
(set_local $0
(tee_local $1
(i32.sub
(get_local $0)
(i32.const 1)
)
(i32.sub
(get_local $0)
(i32.const 1)
)
)
(loop $continue|1
(if
(get_local $1)
(get_local $0)
(block
(set_local $0
(tee_local $1
(i32.sub
(get_local $1)
(i32.const 1)
)
(i32.sub
(get_local $0)
(i32.const 1)
)
)
(br $continue|1)