diff options
author | Alon Zakai <azakai@google.com> | 2021-02-19 19:19:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-19 11:19:56 -0800 |
commit | e24c1f0c826db6dcd63fc015f961919657accce5 (patch) | |
tree | f504fd0d227464befcb044b166ecbab056305cda /test/br_to_try.wasm.fromBinary | |
parent | b6c094c8760b3c3e7ffbc54c46c6329b22d88cfe (diff) | |
download | binaryen-e24c1f0c826db6dcd63fc015f961919657accce5.tar.gz binaryen-e24c1f0c826db6dcd63fc015f961919657accce5.tar.bz2 binaryen-e24c1f0c826db6dcd63fc015f961919657accce5.zip |
[Wasm Exceptions] Fix binary parsing of a normal break to a try in a singleton (#3581)
The fix here is to remove the code with
// maybe we don't need a block here?
That would remove a try's block if we thought it wasn't needed. However,
it just checked for exception branches, but not normal branches, which are
also possible.
At that location, we don't have a good way to find out if the block has other
branches to it aside from scanning its contents. So this PR just gives up on
doing so, which means we add an unnecessary block if the optimizer is not
run. If this matters we could make the binary parser more complicated by
remembering whether a block had branches in the past, but I'm not sure if
it's worth it.
Diffstat (limited to 'test/br_to_try.wasm.fromBinary')
-rw-r--r-- | test/br_to_try.wasm.fromBinary | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/br_to_try.wasm.fromBinary b/test/br_to_try.wasm.fromBinary new file mode 100644 index 000000000..8aa1bdd5e --- /dev/null +++ b/test/br_to_try.wasm.fromBinary @@ -0,0 +1,20 @@ +(module + (type $none_=>_none (func)) + (type $i32_=>_none (func (param i32))) + (event $event$0 (attr 0) (param i32)) + (func $0 + (try $label$3 + (do + (block $label$1 + (br $label$1) + ) + ) + (catch $event$0 + (drop + (pop i32) + ) + ) + ) + ) +) + |