diff options
author | Alon Zakai <azakai@google.com> | 2023-09-18 15:51:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 15:51:14 -0700 |
commit | 6d2364b55e4c81b0b2f7d15778619c40d1ded4d3 (patch) | |
tree | 9dbb7c84337e5e9ded5076b80bd90871e03660cc /src/passes/TupleOptimization.cpp | |
parent | 08528e7947c141d09a69c30cb558c9ec3698e771 (diff) | |
download | binaryen-6d2364b55e4c81b0b2f7d15778619c40d1ded4d3.tar.gz binaryen-6d2364b55e4c81b0b2f7d15778619c40d1ded4d3.tar.bz2 binaryen-6d2364b55e4c81b0b2f7d15778619c40d1ded4d3.zip |
TupleOptimization: Handle copies of different types in unreachable code (#5956)
Diffstat (limited to 'src/passes/TupleOptimization.cpp')
-rw-r--r-- | src/passes/TupleOptimization.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/passes/TupleOptimization.cpp b/src/passes/TupleOptimization.cpp index f4fd0910b..e4fb1cf00 100644 --- a/src/passes/TupleOptimization.cpp +++ b/src/passes/TupleOptimization.cpp @@ -125,10 +125,18 @@ struct TupleOptimization : public WalkerPass<PostWalker<TupleOptimization>> { // a get), or a tuple.make. if (auto* tee = value->dynCast<LocalSet>()) { assert(tee->isTee()); - validUses[tee->index]++; - validUses[curr->index]++; - copiedIndexes[tee->index].insert(curr->index); - copiedIndexes[curr->index].insert(tee->index); + // We don't want to count anything as valid if the inner tee is + // unreachable. In that case the outer tee is also unreachable, of + // course, and in fact they might not even have the same tuple type or + // the inner one might not even be a tuple (since we are in unreachable + // code, that is possible). We could try to optimize unreachable tees in + // some cases, but it's simpler to let DCE simplify the code first. + if (tee->type != Type::unreachable) { + validUses[tee->index]++; + validUses[curr->index]++; + copiedIndexes[tee->index].insert(curr->index); + copiedIndexes[curr->index].insert(tee->index); + } } else if (auto* get = value->dynCast<LocalGet>()) { validUses[get->index]++; validUses[curr->index]++; |