summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-01-29 16:31:33 -0800
committerGitHub <noreply@github.com>2024-01-29 16:31:33 -0800
commit88d6b7c08f3fbf1b510ae630f83ff8d44321b151 (patch)
tree1227b162507a7c1e7de2b8255ccdd0bef34e1347 /test
parentc0046ad0e44d39f7ef33fa6a401a0d9d5a34a578 (diff)
downloadbinaryen-88d6b7c08f3fbf1b510ae630f83ff8d44321b151.tar.gz
binaryen-88d6b7c08f3fbf1b510ae630f83ff8d44321b151.tar.bz2
binaryen-88d6b7c08f3fbf1b510ae630f83ff8d44321b151.zip
Update pop text syntax (#6251)
Rather than `(pop valtype*)`, use `(pop valtype)`, where `valtype` is now allowed to be a tuple. This will make it possible to parse un-folded multivalue pops in the new text parser. The alternative would have been to put an arity in the syntax like we have for other tuple instructions, but that's much uglier.
Diffstat (limited to 'test')
-rw-r--r--test/example/c-api-kitchen-sink.txt2
-rw-r--r--test/lit/basic/exception-handling-old.wast8
-rw-r--r--test/lit/passes/catch-pop-fixup-eh-old.wast4
-rw-r--r--test/lit/passes/gufa-refs.wast8
-rw-r--r--test/lit/passes/poppify.wast4
-rw-r--r--test/lit/passes/translate-eh-old-to-new.wast14
-rw-r--r--test/lit/wat-kitchen-sink.wast2
-rw-r--r--test/spec/exception-handling-old.wast2
8 files changed, 22 insertions, 22 deletions
diff --git a/test/example/c-api-kitchen-sink.txt b/test/example/c-api-kitchen-sink.txt
index 4f4b4ec80..850028a07 100644
--- a/test/example/c-api-kitchen-sink.txt
+++ b/test/example/c-api-kitchen-sink.txt
@@ -2237,7 +2237,7 @@ BinaryenFeatureAll: 131071
(pop externref)
)
(tuple.drop 4
- (pop i32 i64 f32 f64)
+ (pop (tuple i32 i64 f32 f64))
)
(drop
(memory.size)
diff --git a/test/lit/basic/exception-handling-old.wast b/test/lit/basic/exception-handling-old.wast
index 086ff1484..5474a4d90 100644
--- a/test/lit/basic/exception-handling-old.wast
+++ b/test/lit/basic/exception-handling-old.wast
@@ -115,7 +115,7 @@
;; CHECK-TEXT-NEXT: )
;; CHECK-TEXT-NEXT: (catch $e-i32-i64
;; CHECK-TEXT-NEXT: (local.set $x
- ;; CHECK-TEXT-NEXT: (pop i32 i64)
+ ;; CHECK-TEXT-NEXT: (pop (tuple i32 i64))
;; CHECK-TEXT-NEXT: )
;; CHECK-TEXT-NEXT: (drop
;; CHECK-TEXT-NEXT: (tuple.extract 2 0
@@ -139,7 +139,7 @@
;; CHECK-BIN-NEXT: )
;; CHECK-BIN-NEXT: (catch $e-i32-i64
;; CHECK-BIN-NEXT: (local.set $2
- ;; CHECK-BIN-NEXT: (pop i32 i64)
+ ;; CHECK-BIN-NEXT: (pop (tuple i32 i64))
;; CHECK-BIN-NEXT: )
;; CHECK-BIN-NEXT: (local.set $x
;; CHECK-BIN-NEXT: (block (result i32)
@@ -168,7 +168,7 @@
(throw $e-i32-i64 (i32.const 0) (i64.const 0))
)
(catch $e-i32-i64
- (local.set $x (pop i32 i64))
+ (local.set $x (pop (tuple i32 i64)))
(drop
(tuple.extract 2 0
(local.get $x)
@@ -1387,7 +1387,7 @@
;; CHECK-BIN-NODEBUG-NEXT: )
;; CHECK-BIN-NODEBUG-NEXT: (catch $tag$2
;; CHECK-BIN-NODEBUG-NEXT: (local.set $2
-;; CHECK-BIN-NODEBUG-NEXT: (pop i32 i64)
+;; CHECK-BIN-NODEBUG-NEXT: (pop (tuple i32 i64))
;; CHECK-BIN-NODEBUG-NEXT: )
;; CHECK-BIN-NODEBUG-NEXT: (local.set $0
;; CHECK-BIN-NODEBUG-NEXT: (block (result i32)
diff --git a/test/lit/passes/catch-pop-fixup-eh-old.wast b/test/lit/passes/catch-pop-fixup-eh-old.wast
index b834a4e33..50aa7f7ba 100644
--- a/test/lit/passes/catch-pop-fixup-eh-old.wast
+++ b/test/lit/passes/catch-pop-fixup-eh-old.wast
@@ -334,7 +334,7 @@
;; CHECK-NEXT: )
;; CHECK-NEXT: (catch $e-i32-f32
;; CHECK-NEXT: (local.set $1
- ;; CHECK-NEXT: (pop i32 f32)
+ ;; CHECK-NEXT: (pop (tuple i32 f32))
;; CHECK-NEXT: )
;; CHECK-NEXT: (throw $e-i32
;; CHECK-NEXT: (block (result i32)
@@ -354,7 +354,7 @@
(throw $e-i32
;; This tests a pop taking a tuple type.
(block (result i32)
- (local.set $x (pop i32 f32))
+ (local.set $x (pop (tuple i32 f32)))
(i32.const 0)
)
)
diff --git a/test/lit/passes/gufa-refs.wast b/test/lit/passes/gufa-refs.wast
index 6d72a4209..168fcd0df 100644
--- a/test/lit/passes/gufa-refs.wast
+++ b/test/lit/passes/gufa-refs.wast
@@ -2150,7 +2150,7 @@
;; CHECK-NEXT: )
;; CHECK-NEXT: (catch $tag
;; CHECK-NEXT: (local.set $0
- ;; CHECK-NEXT: (pop anyref anyref)
+ ;; CHECK-NEXT: (pop (tuple anyref anyref))
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (block (result nullref)
@@ -2169,7 +2169,7 @@
;; CHECK-NEXT: (catch $tag
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (tuple.extract 2 1
- ;; CHECK-NEXT: (pop anyref anyref)
+ ;; CHECK-NEXT: (pop (tuple anyref anyref))
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
@@ -2187,7 +2187,7 @@
(catch $tag
(drop
(tuple.extract 2 0
- (pop (ref null any) (ref null any))
+ (pop (tuple (ref null any) (ref null any)))
)
)
)
@@ -2198,7 +2198,7 @@
(catch $tag
(drop
(tuple.extract 2 1
- (pop (ref null any) (ref null any))
+ (pop (tuple (ref null any) (ref null any)))
)
)
)
diff --git a/test/lit/passes/poppify.wast b/test/lit/passes/poppify.wast
index 5f2064aa5..b348c5081 100644
--- a/test/lit/passes/poppify.wast
+++ b/test/lit/passes/poppify.wast
@@ -482,7 +482,7 @@
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: (i64.const 1)
;; CHECK-NEXT: (br $l
- ;; CHECK-NEXT: (pop i32 i64)
+ ;; CHECK-NEXT: (pop (tuple i32 i64))
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
@@ -501,7 +501,7 @@
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: (i64.const 1)
;; CHECK-NEXT: (return
- ;; CHECK-NEXT: (pop i32 i64)
+ ;; CHECK-NEXT: (pop (tuple i32 i64))
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $return-tuple (result i32 i64)
diff --git a/test/lit/passes/translate-eh-old-to-new.wast b/test/lit/passes/translate-eh-old-to-new.wast
index 6863d25ae..014661b27 100644
--- a/test/lit/passes/translate-eh-old-to-new.wast
+++ b/test/lit/passes/translate-eh-old-to-new.wast
@@ -232,7 +232,7 @@
)
(catch $e-i32-i64
(tuple.drop 2
- (pop i32 i64)
+ (pop (tuple i32 i64))
)
)
(catch_all
@@ -294,7 +294,7 @@
)
(catch $e-i32-i64
(tuple.drop 2
- (pop i32 i64)
+ (pop (tuple i32 i64))
)
(rethrow $l0)
)
@@ -515,7 +515,7 @@
)
(catch $e-i32-i64
(tuple.drop 2
- (pop i32 i64)
+ (pop (tuple i32 i64))
)
(i32.const 1)
)
@@ -584,7 +584,7 @@
)
(catch $e-i32-i64
(tuple.drop 2
- (pop i32 i64)
+ (pop (tuple i32 i64))
)
(rethrow $l0)
)
@@ -856,7 +856,7 @@
)
)
(catch $e-i32-i64
- (pop i32 i64)
+ (pop (tuple i32 i64))
)
(catch_all
(tuple.make 2
@@ -932,7 +932,7 @@
)
(catch $e-i32-i64
(tuple.drop 2
- (pop i32 i64)
+ (pop (tuple i32 i64))
)
(rethrow $l0)
)
@@ -1050,7 +1050,7 @@
)
(catch $e-i32-i64
(tuple.drop 2
- (pop i32 i64)
+ (pop (tuple i32 i64))
)
(rethrow $l0)
)
diff --git a/test/lit/wat-kitchen-sink.wast b/test/lit/wat-kitchen-sink.wast
index eff635237..638d80004 100644
--- a/test/lit/wat-kitchen-sink.wast
+++ b/test/lit/wat-kitchen-sink.wast
@@ -1824,7 +1824,7 @@
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (catch $tag-pair
- ;; CHECK-NEXT: (pop i32 i64)
+ ;; CHECK-NEXT: (pop (tuple i32 i64))
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
diff --git a/test/spec/exception-handling-old.wast b/test/spec/exception-handling-old.wast
index b56c4f295..5024fa734 100644
--- a/test/spec/exception-handling-old.wast
+++ b/test/spec/exception-handling-old.wast
@@ -82,7 +82,7 @@
)
(catch $e-i32-f32
(local.set $x
- (pop i32 f32)
+ (pop (tuple i32 f32))
)
(tuple.extract 2 0
(local.get $x)