summaryrefslogtreecommitdiff
path: root/src/ir/literal-utils.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-11-15 08:18:00 -0800
committerGitHub <noreply@github.com>2021-11-15 08:18:00 -0800
commit9fa7f6f2a609c7defbafe7be23d56330d54e79c9 (patch)
tree44cf052ff7e545be06218b6695d70b27c474e0d4 /src/ir/literal-utils.h
parent5597d1c03e25684b999035e77578db97e91c16eb (diff)
downloadbinaryen-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 'src/ir/literal-utils.h')
-rw-r--r--src/ir/literal-utils.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ir/literal-utils.h b/src/ir/literal-utils.h
index ce7da69cd..21ade6d84 100644
--- a/src/ir/literal-utils.h
+++ b/src/ir/literal-utils.h
@@ -35,6 +35,14 @@ inline bool canMakeZero(Type type) {
if (type.isNonNullable()) {
return false;
}
+ if (type.isRtt() && type.getRtt().hasDepth()) {
+ // An rtt with depth cannot be constructed as a simple zero: we'd need to
+ // create not just a zero (an rtt.canon) but also some rtt.subs that add to
+ // the depth, so disallow that. Also, there is no practical way to create a
+ // zero Literal for such a type, as we'd need to supply the list of super
+ // types somehow, and creating a zero Literal is how makeZero works.
+ return false;
+ }
if (type.isTuple()) {
for (auto t : type) {
if (!canMakeZero(t)) {
@@ -46,6 +54,7 @@ inline bool canMakeZero(Type type) {
}
inline Expression* makeZero(Type type, Module& wasm) {
+ assert(canMakeZero(type));
// TODO: Remove this function once V8 supports v128.const
// (https://bugs.chromium.org/p/v8/issues/detail?id=8460)
Builder builder(wasm);