summaryrefslogtreecommitdiff
path: root/test/passes/spill-pointers.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/spill-pointers.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/spill-pointers.wast')
-rw-r--r--test/passes/spill-pointers.wast84
1 files changed, 42 insertions, 42 deletions
diff --git a/test/passes/spill-pointers.wast b/test/passes/spill-pointers.wast
index ca7f12518..ce486ea73 100644
--- a/test/passes/spill-pointers.wast
+++ b/test/passes/spill-pointers.wast
@@ -1,53 +1,53 @@
(module
(memory 10)
(type $ii (func (param i32 i32)))
- (table 1 1 anyfunc)
+ (table 1 1 funcref)
(elem (i32.const 0))
(import "env" "STACKTOP" (global $STACKTOP$asm2wasm$import i32))
(import "env" "segfault" (func $segfault (param i32)))
- (global $stack_ptr (mut i32) (get_global $STACKTOP$asm2wasm$import))
+ (global $stack_ptr (mut i32) (global.get $STACKTOP$asm2wasm$import))
(func $nothing
)
(func $not-alive
(local $x i32)
- (set_local $x (i32.const 1))
+ (local.set $x (i32.const 1))
(call $nothing)
)
(func $spill
(local $x i32)
(call $nothing)
- (drop (get_local $x))
+ (drop (local.get $x))
)
(func $ignore-non-pointers
(local $x i32)
(local $y i64)
(local $z f32)
(local $w f64)
- (set_local $x (i32.const 1))
- (set_local $y (i64.const 1))
- (set_local $z (f32.const 1))
- (set_local $w (f64.const 1))
+ (local.set $x (i32.const 1))
+ (local.set $y (i64.const 1))
+ (local.set $z (f32.const 1))
+ (local.set $w (f64.const 1))
(call $nothing)
- (drop (get_local $x))
- (drop (get_local $y))
- (drop (get_local $z))
- (drop (get_local $w))
+ (drop (local.get $x))
+ (drop (local.get $y))
+ (drop (local.get $z))
+ (drop (local.get $w))
)
(func $spill4
(local $x i32)
(local $y i32)
(local $z i32)
(local $w i32)
- (set_local $x (i32.const 1))
- (set_local $y (i32.const 1))
- (set_local $z (i32.const 1))
- (set_local $w (i32.const 1))
+ (local.set $x (i32.const 1))
+ (local.set $y (i32.const 1))
+ (local.set $z (i32.const 1))
+ (local.set $w (i32.const 1))
(call $nothing)
- (drop (get_local $x))
- (drop (get_local $y))
- (drop (get_local $z))
- (drop (get_local $w))
+ (drop (local.get $x))
+ (drop (local.get $y))
+ (drop (local.get $z))
+ (drop (local.get $w))
)
(func $spill5
(local $x i32)
@@ -55,33 +55,33 @@
(local $z i32)
(local $w i32)
(local $a i32)
- (set_local $x (i32.const 1))
- (set_local $y (i32.const 1))
- (set_local $z (i32.const 1))
- (set_local $w (i32.const 1))
- (set_local $a (i32.const 1))
+ (local.set $x (i32.const 1))
+ (local.set $y (i32.const 1))
+ (local.set $z (i32.const 1))
+ (local.set $w (i32.const 1))
+ (local.set $a (i32.const 1))
(call $nothing)
- (drop (get_local $x))
- (drop (get_local $y))
- (drop (get_local $z))
- (drop (get_local $w))
- (drop (get_local $a))
+ (drop (local.get $x))
+ (drop (local.get $y))
+ (drop (local.get $z))
+ (drop (local.get $w))
+ (drop (local.get $a))
)
(func $some-alive
(local $x i32)
(local $y i32)
(call $nothing)
- (drop (get_local $x))
+ (drop (local.get $x))
)
(func $spill-args (param $p i32) (param $q i32)
(local $x i32)
(call $spill-args (i32.const 1) (i32.const 2))
- (drop (get_local $x))
+ (drop (local.get $x))
)
(func $spill-ret (result i32)
(local $x i32)
(call $nothing)
- (drop (get_local $x))
+ (drop (local.get $x))
(if (i32.const 1)
(return (i32.const 2))
(return (i32.const 3))
@@ -91,7 +91,7 @@
(func $spill-unreachable (result i32)
(local $x i32)
(call $nothing)
- (drop (get_local $x))
+ (drop (local.get $x))
(unreachable)
)
(func $spill-call-call0 (param $p i32) (result i32)
@@ -106,7 +106,7 @@
)
)
)
- (get_local $x)
+ (local.get $x)
)
(func $spill-call-ret (param $p i32) (result i32)
(local $x i32)
@@ -117,7 +117,7 @@
)
)
)
- (get_local $x)
+ (local.get $x)
)
(func $spill-ret-call (param $p i32) (result i32)
(local $x i32)
@@ -128,12 +128,12 @@
)
)
)
- (get_local $x)
+ (local.get $x)
)
(func $spill-ret-ret (result i32)
(local $x i32)
(call $nothing)
- (drop (get_local $x))
+ (drop (local.get $x))
(drop
(return
(return
@@ -141,12 +141,12 @@
)
)
)
- (get_local $x)
+ (local.get $x)
)
(func $spill-call-othertype (param $y f64)
(local $x i32)
(call $spill-call-othertype (f64.const 1))
- (drop (get_local $x))
+ (drop (local.get $x))
)
(func $spill-call_indirect
(local $x i32)
@@ -155,14 +155,14 @@
(i32.const 456)
(i32.const 789)
)
- (drop (get_local $x))
+ (drop (local.get $x))
)
(func $spill-call_import
(local $x i32)
(call $segfault
(i32.const 200)
)
- (drop (get_local $x))
+ (drop (local.get $x))
)
)