summaryrefslogtreecommitdiff
path: root/test/passes/simplify-locals_all-features.txt
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2021-01-15 18:48:00 +0900
committerGitHub <noreply@github.com>2021-01-15 18:48:00 +0900
commitbeccdf70258cd99ea25f10af13103e14dc243ffa (patch)
tree1081d7d350fbab7f901b917f2f082c8d351c3157 /test/passes/simplify-locals_all-features.txt
parentf18c18e01d03d6d293fe3d701408855bbcea58bd (diff)
downloadbinaryen-beccdf70258cd99ea25f10af13103e14dc243ffa.tar.gz
binaryen-beccdf70258cd99ea25f10af13103e14dc243ffa.tar.bz2
binaryen-beccdf70258cd99ea25f10af13103e14dc243ffa.zip
Basic EH instrucion support for the new spec (#3487)
This updates `try`-`catch`-`catch_all` and `rethrow` instructions to match the new spec. `delegate` is not included. Now `Try` contains not a single `catchBody` expression but a vector of catch bodies and events. This updates most existing routines, optimizations, and tests modulo the interpreter and the CFG traversal. Because the interpreter has not been updated yet, the EH spec test is temporarily disabled in check.py. Also, because the CFG traversal for EH is not yet updated, several EH tests in `rse_all-features.wast`, which uses CFG traversal, are temporarily commented out. Also added a few more tests in existing EH test functions in test/passes. In the previous spec, `catch` was catching all exceptions so it was assumed that anything `try` body throws is caught by its `catch`, but now we can assume the same only if there is a `catch_all`. Newly added tests test cases when there is a `catch_all` and cases there are only `catch`es separately.
Diffstat (limited to 'test/passes/simplify-locals_all-features.txt')
-rw-r--r--test/passes/simplify-locals_all-features.txt50
1 files changed, 17 insertions, 33 deletions
diff --git a/test/passes/simplify-locals_all-features.txt b/test/passes/simplify-locals_all-features.txt
index 8587e115c..2604ad88d 100644
--- a/test/passes/simplify-locals_all-features.txt
+++ b/test/passes/simplify-locals_all-features.txt
@@ -1896,12 +1896,14 @@
)
(module
(type $none_=>_none (func))
+ (type $i32_=>_none (func (param i32)))
(type $exnref_=>_none (func (param exnref)))
- (type $i32_exnref_=>_none (func (param i32 exnref)))
+ (type $i32_i32_=>_none (func (param i32 i32)))
(type $none_=>_i32 (func (result i32)))
(type $none_=>_exnref (func (result exnref)))
(event $event$0 (attr 0) (param))
(event $event$1 (attr 0) (param exnref))
+ (event $e-i32 (attr 0) (param i32))
(func $unoptimizable-br_on_exn-block (result exnref)
(local $0 exnref)
(block $label$0
@@ -1923,36 +1925,18 @@
)
)
)
- (func $rethrow-trap
- (local $0 i32)
- (drop
- (block $label$1 (result i32)
- (try
- (do
- (rethrow
- (ref.null exn)
- )
- )
- (catch
- (nop)
- )
- )
- (i32.const 0)
- )
- )
- )
- (func $foo (param $0 i32) (param $1 exnref)
+ (func $foo (param $0 i32) (param $1 i32)
(nop)
)
(func $pop-cannot-be-sinked
- (local $0 exnref)
+ (local $0 i32)
(try
(do
(nop)
)
- (catch
+ (catch $e-i32
(local.set $0
- (pop exnref)
+ (pop i32)
)
(call $foo
(i32.const 3)
@@ -1962,21 +1946,21 @@
)
)
(func $pop-within-catch-can-be-sinked
- (local $0 exnref)
+ (local $0 i32)
(try
(do
(nop)
)
- (catch
+ (catch_all
(nop)
(call $foo
(i32.const 3)
- (try (result exnref)
+ (try (result i32)
(do
- (ref.null exn)
+ (i32.const 0)
)
- (catch
- (pop exnref)
+ (catch $e-i32
+ (pop i32)
)
)
)
@@ -1997,9 +1981,9 @@
(local.get $0)
)
)
- (catch
+ (catch $e-i32
(drop
- (pop exnref)
+ (pop i32)
)
)
)
@@ -2013,9 +1997,9 @@
(i32.const 3)
)
)
- (catch
+ (catch $e-i32
(drop
- (pop exnref)
+ (pop i32)
)
)
)