diff options
author | Frank Emrich <git@emrich.io> | 2024-08-09 21:30:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-09 13:30:56 -0700 |
commit | 3386e642c76028438fc783bf97089115ea9a900f (patch) | |
tree | 3ea6d4fcc69aaca0c7527ccbd9c07176c6c24eda /test | |
parent | b3e22d29451fbf52521d59ea34e8a5d735c4149c (diff) | |
download | binaryen-3386e642c76028438fc783bf97089115ea9a900f.tar.gz binaryen-3386e642c76028438fc783bf97089115ea9a900f.tar.bz2 binaryen-3386e642c76028438fc783bf97089115ea9a900f.zip |
Typed continuations: update syntax of handler clauses (#6824)
The syntax for handler clauses in `resume` instructions has recently
changed, using `on` instead of `tag` now.
Instead of
```
(resume $ct (tag $tag0 $block0) ... (tag $tagn $blockn))
```
we now have
```
(resume $ct (on $tag0 $block0) ... (on $tagn $blockn))
```
This PR adapts parsing, printing, and some tests accordingly.
(Note that this PR deliberately makes none of the other changes that
will arise from implementing the new, combined stack switching proposal,
yet.)
Diffstat (limited to 'test')
-rw-r--r-- | test/lit/basic/typed_continuations_resume.wast | 12 | ||||
-rw-r--r-- | test/lit/wat-kitchen-sink.wast | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/test/lit/basic/typed_continuations_resume.wast b/test/lit/basic/typed_continuations_resume.wast index d2430e2a0..5cd2277d3 100644 --- a/test/lit/basic/typed_continuations_resume.wast +++ b/test/lit/basic/typed_continuations_resume.wast @@ -39,7 +39,7 @@ ;; CHECK-BINARY-NEXT: (drop ;; CHECK-BINARY-NEXT: (block $label$1 (result (ref $ct)) ;; CHECK-BINARY-NEXT: (return - ;; CHECK-BINARY-NEXT: (resume $ct (tag $t $label$1) + ;; CHECK-BINARY-NEXT: (resume $ct (on $t $label$1) ;; CHECK-BINARY-NEXT: (i32.const 123) ;; CHECK-BINARY-NEXT: (local.get $x) ;; CHECK-BINARY-NEXT: ) @@ -52,7 +52,7 @@ ;; CHECK-TEXT-NEXT: (tuple.extract 2 0 ;; CHECK-TEXT-NEXT: (block $handler (type $2) (result i32 (ref $ct)) ;; CHECK-TEXT-NEXT: (return - ;; CHECK-TEXT-NEXT: (resume $ct (tag $t $handler) + ;; CHECK-TEXT-NEXT: (resume $ct (on $t $handler) ;; CHECK-TEXT-NEXT: (i32.const 123) ;; CHECK-TEXT-NEXT: (local.get $x) ;; CHECK-TEXT-NEXT: ) @@ -66,7 +66,7 @@ ;; CHECK-BIN-NEXT: (local.set $1 ;; CHECK-BIN-NEXT: (block $label$1 (type $2) (result i32 (ref $ct)) ;; CHECK-BIN-NEXT: (return - ;; CHECK-BIN-NEXT: (resume $ct (tag $t $label$1) + ;; CHECK-BIN-NEXT: (resume $ct (on $t $label$1) ;; CHECK-BIN-NEXT: (i32.const 123) ;; CHECK-BIN-NEXT: (local.get $x) ;; CHECK-BIN-NEXT: ) @@ -92,7 +92,7 @@ (block $handler (result i32 (ref $ct)) (return (resume $ct - (tag $t $handler) + (on $t $handler) (i32.const 123) (local.get $x) ) @@ -115,7 +115,7 @@ ;; CHECK-NODEBUG-NEXT: (drop ;; CHECK-NODEBUG-NEXT: (block $label$1 (result (ref $1)) ;; CHECK-NODEBUG-NEXT: (return -;; CHECK-NODEBUG-NEXT: (resume $1 (tag $tag$0 $label$1) +;; CHECK-NODEBUG-NEXT: (resume $1 (on $tag$0 $label$1) ;; CHECK-NODEBUG-NEXT: (i32.const 123) ;; CHECK-NODEBUG-NEXT: (local.get $0) ;; CHECK-NODEBUG-NEXT: ) @@ -140,7 +140,7 @@ ;; CHECK-BIN-NODEBUG-NEXT: (local.set $1 ;; CHECK-BIN-NODEBUG-NEXT: (block $label$1 (type $2) (result i32 (ref $1)) ;; CHECK-BIN-NODEBUG-NEXT: (return -;; CHECK-BIN-NODEBUG-NEXT: (resume $1 (tag $tag$0 $label$1) +;; CHECK-BIN-NODEBUG-NEXT: (resume $1 (on $tag$0 $label$1) ;; CHECK-BIN-NODEBUG-NEXT: (i32.const 123) ;; CHECK-BIN-NODEBUG-NEXT: (local.get $0) ;; CHECK-BIN-NODEBUG-NEXT: ) diff --git a/test/lit/wat-kitchen-sink.wast b/test/lit/wat-kitchen-sink.wast index ac8a00cc2..de16f6923 100644 --- a/test/lit/wat-kitchen-sink.wast +++ b/test/lit/wat-kitchen-sink.wast @@ -4868,7 +4868,7 @@ ;; CHECK-NEXT: (tuple.drop 3 ;; CHECK-NEXT: (block $block0 (type $36) (result i32 i64 (ref null $simple-cont)) ;; CHECK-NEXT: (local.set $f - ;; CHECK-NEXT: (resume $simple-cont (tag $empty $block) (tag $tag-pair-to-pair $block0) + ;; CHECK-NEXT: (resume $simple-cont (on $empty $block) (on $tag-pair-to-pair $block0) ;; CHECK-NEXT: (i32.const 0) ;; CHECK-NEXT: (i64.const 1) ;; CHECK-NEXT: (local.get $ct) @@ -4890,7 +4890,7 @@ i32.const 0 i64.const 1 local.get $ct - resume $simple-cont (tag $empty 1) (tag $tag-pair-to-pair 0) + resume $simple-cont (on $empty 1) (on $tag-pair-to-pair 0) local.set $f unreachable end |