diff options
author | Alon Zakai <azakai@google.com> | 2021-11-15 08:18:00 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 08:18:00 -0800 |
commit | 9fa7f6f2a609c7defbafe7be23d56330d54e79c9 (patch) | |
tree | 44cf052ff7e545be06218b6695d70b27c474e0d4 /test/lit/passes/vacuum-gc.wast | |
parent | 5597d1c03e25684b999035e77578db97e91c16eb (diff) | |
download | binaryen-9fa7f6f2a609c7defbafe7be23d56330d54e79c9.tar.gz binaryen-9fa7f6f2a609c7defbafe7be23d56330d54e79c9.tar.bz2 binaryen-9fa7f6f2a609c7defbafe7be23d56330d54e79c9.zip |
Fix vacuum on rtts with depth (#4327)
Found by the fuzzer. Calling makeZero on an rtt with depth will
error because we try to create a zero Literal from it, and we can't
do that - we don't know a list of super types to give it. We could
work around it, but we don't want to: if the rtt has depth then we
can't make a nice zero for it, we'd need some rtt.subs anyhow,
so simply mark it as a type we can't make a zero for.
Diffstat (limited to 'test/lit/passes/vacuum-gc.wast')
-rw-r--r-- | test/lit/passes/vacuum-gc.wast | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/lit/passes/vacuum-gc.wast b/test/lit/passes/vacuum-gc.wast index 8ca40bee8..f37085406 100644 --- a/test/lit/passes/vacuum-gc.wast +++ b/test/lit/passes/vacuum-gc.wast @@ -2,6 +2,8 @@ ;; RUN: wasm-opt %s --vacuum -all -S -o - | filecheck %s (module + (type ${} (struct)) + ;; CHECK: (func $drop-ref-as (param $x anyref) ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (ref.as_non_null @@ -48,4 +50,29 @@ ) ) ) + + ;; CHECK: (func $vacuum-rtt-with-depth + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ) + (func $vacuum-rtt-with-depth + (drop + (if (result (rtt 1 ${})) + (i32.const 1) + ;; This block's result is not used. As a consequence vacuum will try to + ;; generate a replacement zero for the block's fallthrough value. An rtt + ;; with depth is a problem for that, since we can't just create an + ;; rtt.canon - we'd need to add some rtt.subs, and it's not clear that we'd + ;; be improving code size while doing so, hence we do not allow making a + ;; zero of that type. Vacuum should not error on trying to do so. And + ;; the end result of this function should simply be empty, as everything + ;; here can be vacuumed away. + (block (result (rtt 1 ${})) + (rtt.sub ${} + (rtt.canon ${}) + ) + ) + (unreachable) + ) + ) + ) ) |