summaryrefslogtreecommitdiff
path: root/test/passes/simplify-locals.wast
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2016-09-14 14:01:21 -0700
committerAlon Zakai <alonzakai@gmail.com>2016-09-14 14:01:21 -0700
commit7d748241d3c69d0d87cf8d78174f174c234e406e (patch)
tree7b8dc5103c8b367573722164cdedddd87f6342a3 /test/passes/simplify-locals.wast
parentd8f45bca8141f6d4dcd46c46ef354756728848c6 (diff)
downloadbinaryen-7d748241d3c69d0d87cf8d78174f174c234e406e.tar.gz
binaryen-7d748241d3c69d0d87cf8d78174f174c234e406e.tar.bz2
binaryen-7d748241d3c69d0d87cf8d78174f174c234e406e.zip
when optimizing a block return value, replacing the sunk set with the value is only possible if the break is unconditional; if it is condition, we must tee the value so that if the break condition is false and we do not jump, then we have the new value in the local on the line after it
Diffstat (limited to 'test/passes/simplify-locals.wast')
-rw-r--r--test/passes/simplify-locals.wast24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/passes/simplify-locals.wast b/test/passes/simplify-locals.wast
index 2b5b84a5f..b703613d8 100644
--- a/test/passes/simplify-locals.wast
+++ b/test/passes/simplify-locals.wast
@@ -11,6 +11,7 @@
(import $waka_int "env" "waka_int" (result i32))
(import $_i64Subtract "env" "i64sub" (param i32 i32 i32 i32) (result i32))
(import $___udivmoddi4 "env" "moddi" (param i32 i32 i32 i32 i32) (result i32))
+ (import $lp "env" "lp" (param i32 i32) (result i32))
(func $b0-yes (type $4) (param $i1 i32)
(local $x i32)
(local $y i32)
@@ -751,4 +752,27 @@
)
(drop (get_local $y))
)
+ (func $freetype-cd (param $a i32) (result i32)
+ (local $e i32)
+ (loop $while-in$1
+ (block $while-out$0
+ (set_local $e
+ (get_local $a)
+ )
+ (set_local $a ;; this set must happen, so that if the br_if does not break, we have the right $a later down - once we use a block return value, the $a set's outside the block
+ (i32.const 4)
+ )
+ (br_if $while-out$0
+ (get_local $e)
+ )
+ (set_local $a
+ (i32.add
+ (get_local $a)
+ (i32.const 0)
+ )
+ )
+ )
+ )
+ (get_local $a)
+ )
)