summaryrefslogtreecommitdiff
path: root/test/passes/optimize-instructions_optimize-level=2_ignore-implicit-traps.wast
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-01-07 13:24:58 -0800
committerGitHub <noreply@github.com>2019-01-07 13:24:58 -0800
commit7d94900ded8e2e5ce8ef8ee2687528531d8f2a97 (patch)
treed8bba13d306b0c5ecba384384e602e6cccc83015 /test/passes/optimize-instructions_optimize-level=2_ignore-implicit-traps.wast
parent6f91af190effd7b8a5969314dd4fb3d2ec540524 (diff)
downloadbinaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.gz
binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.bz2
binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.zip
Massive renaming (#1855)
Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
Diffstat (limited to 'test/passes/optimize-instructions_optimize-level=2_ignore-implicit-traps.wast')
-rw-r--r--test/passes/optimize-instructions_optimize-level=2_ignore-implicit-traps.wast124
1 files changed, 62 insertions, 62 deletions
diff --git a/test/passes/optimize-instructions_optimize-level=2_ignore-implicit-traps.wast b/test/passes/optimize-instructions_optimize-level=2_ignore-implicit-traps.wast
index 6e19255ed..802ca1875 100644
--- a/test/passes/optimize-instructions_optimize-level=2_ignore-implicit-traps.wast
+++ b/test/passes/optimize-instructions_optimize-level=2_ignore-implicit-traps.wast
@@ -8,34 +8,34 @@
(local $5 i32)
(local $6 i32)
(local $7 i32)
- (set_local $0
+ (local.set $0
(i32.const 0)
)
(loop $while-in
- (set_local $3
+ (local.set $3
(i32.const 0)
)
(loop $while-in6
- (set_local $6
+ (local.set $6
(i32.add
- (get_local $0)
+ (local.get $0)
(i32.const 1)
)
)
- (set_local $0
+ (local.set $0
(if (result i32)
(i32.or ;; this or is very expensive. we should compute one side, then see if we even need the other
(i32.eqz
(i32.rem_s
(i32.add
(i32.mul
- (tee_local $7 ;; side effect, so we can't do this one
+ (local.tee $7 ;; side effect, so we can't do this one
(i32.add
- (get_local $0)
+ (local.get $0)
(i32.const 2)
)
)
- (get_local $0)
+ (local.get $0)
)
(i32.const 17)
)
@@ -46,8 +46,8 @@
(i32.rem_u
(i32.add
(i32.mul
- (get_local $0)
- (get_local $0)
+ (local.get $0)
+ (local.get $0)
)
(i32.const 11)
)
@@ -55,27 +55,27 @@
)
)
)
- (get_local $7)
- (get_local $6)
+ (local.get $7)
+ (local.get $6)
)
)
(br_if $while-in6
(i32.lt_s
- (tee_local $3
+ (local.tee $3
(i32.add
- (get_local $3)
+ (local.get $3)
(i32.const 1)
)
)
- (get_local $4)
+ (local.get $4)
)
)
)
(br_if $while-in
(i32.ne
- (tee_local $1
+ (local.tee $1
(i32.add
- (get_local $1)
+ (local.get $1)
(i32.const 1)
)
)
@@ -84,7 +84,7 @@
)
)
(return
- (get_local $5)
+ (local.get $5)
)
)
(func $side-effect (type $0) (param $0 i32) (param $1 i32) (result i32)
@@ -94,34 +94,34 @@
(local $5 i32)
(local $6 i32)
(local $7 i32)
- (set_local $0
+ (local.set $0
(i32.const 0)
)
(loop $while-in
- (set_local $3
+ (local.set $3
(i32.const 0)
)
(loop $while-in6
- (set_local $6
+ (local.set $6
(i32.add
- (get_local $0)
+ (local.get $0)
(i32.const 1)
)
)
- (set_local $0
+ (local.set $0
(if (result i32)
(i32.or ;; this or is very expensive, but has a side effect on both sides
(i32.eqz
(i32.rem_s
(i32.add
(i32.mul
- (tee_local $7
+ (local.tee $7
(i32.add
- (get_local $0)
+ (local.get $0)
(i32.const 0)
)
)
- (get_local $0)
+ (local.get $0)
)
(i32.const 17)
)
@@ -132,8 +132,8 @@
(i32.rem_u
(i32.add
(i32.mul
- (get_local $0)
- (get_local $0)
+ (local.get $0)
+ (local.get $0)
)
(unreachable)
)
@@ -141,27 +141,27 @@
)
)
)
- (get_local $7)
- (get_local $6)
+ (local.get $7)
+ (local.get $6)
)
)
(br_if $while-in6
(i32.lt_s
- (tee_local $3
+ (local.tee $3
(i32.add
- (get_local $3)
+ (local.get $3)
(i32.const 1)
)
)
- (get_local $4)
+ (local.get $4)
)
)
)
(br_if $while-in
(i32.ne
- (tee_local $1
+ (local.tee $1
(i32.add
- (get_local $1)
+ (local.get $1)
(i32.const 1)
)
)
@@ -170,7 +170,7 @@
)
)
(return
- (get_local $5)
+ (local.get $5)
)
)
(func $flip (type $0) (param $0 i32) (param $1 i32) (result i32)
@@ -180,21 +180,21 @@
(local $5 i32)
(local $6 i32)
(local $7 i32)
- (set_local $0
+ (local.set $0
(i32.const 0)
)
(loop $while-in
- (set_local $3
+ (local.set $3
(i32.const 0)
)
(loop $while-in6
- (set_local $6
+ (local.set $6
(i32.add
- (get_local $0)
+ (local.get $0)
(i32.const 1)
)
)
- (set_local $0
+ (local.set $0
(if (result i32)
(i32.or ;; this or is very expensive, and the first side has no side effect
(i32.eqz
@@ -203,11 +203,11 @@
(i32.mul
(i32.eqz
(i32.add
- (get_local $0)
+ (local.get $0)
(i32.const 0)
)
)
- (get_local $0)
+ (local.get $0)
)
(i32.const 17)
)
@@ -218,8 +218,8 @@
(i32.rem_u
(i32.add
(i32.mul
- (get_local $0)
- (get_local $0)
+ (local.get $0)
+ (local.get $0)
)
(i32.const 100)
)
@@ -227,27 +227,27 @@
)
)
)
- (get_local $7)
- (get_local $6)
+ (local.get $7)
+ (local.get $6)
)
)
(br_if $while-in6
(i32.lt_s
- (tee_local $3
+ (local.tee $3
(i32.add
- (get_local $3)
+ (local.get $3)
(i32.const 1)
)
)
- (get_local $4)
+ (local.get $4)
)
)
)
(br_if $while-in
(i32.ne
- (tee_local $1
+ (local.tee $1
(i32.add
- (get_local $1)
+ (local.get $1)
(i32.const 1)
)
)
@@ -256,7 +256,7 @@
)
)
(return
- (get_local $5)
+ (local.get $5)
)
)
(func $invalidate-conditionalizeExpensiveOnBitwise (param $0 i32) (param $1 i32) (result i32)
@@ -268,7 +268,7 @@
(i32.shr_s
(i32.shl
(i32.add
- (get_local $1) ;; conflict with tee
+ (local.get $1) ;; conflict with tee
(i32.const -1)
)
(i32.const 24)
@@ -280,16 +280,16 @@
(i32.const 3)
)
(i32.ne
- (tee_local $1
+ (local.tee $1
(i32.const 0)
)
(i32.const 0)
)
)
)
- (return (get_local $0))
+ (return (local.get $0))
)
- (return (get_local $1))
+ (return (local.get $1))
)
(func $invalidate-conditionalizeExpensiveOnBitwise-ok (param $0 i32) (param $1 i32) (result i32)
(if
@@ -300,7 +300,7 @@
(i32.shr_s
(i32.shl
(i32.add
- (get_local $0) ;; no conflict
+ (local.get $0) ;; no conflict
(i32.const -1)
)
(i32.const 24)
@@ -312,16 +312,16 @@
(i32.const 3)
)
(i32.ne
- (tee_local $1
+ (local.tee $1
(i32.const 0)
)
(i32.const 0)
)
)
)
- (return (get_local $0))
+ (return (local.get $0))
)
- (return (get_local $1))
+ (return (local.get $1))
)
(func $conditionalize-if-type-change (result f64)
@@ -336,7 +336,7 @@
(f32.gt
(br_if $label$3
(f32.const 1)
- (get_local $0)
+ (local.get $0)
)
(br $label$2
(f32.const 71)