diff options
author | Alon Zakai <azakai@google.com> | 2023-04-06 09:01:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-06 09:01:44 -0700 |
commit | 6afbc200b57acd1b9111de7729d47fea1d04c5f6 (patch) | |
tree | f917f5a93ec90cdab4408ce869e6b33942815a05 /src/passes/OptimizeInstructions.cpp | |
parent | 1b25a3cb040b3e082d0471192084008634cf834d (diff) | |
download | binaryen-6afbc200b57acd1b9111de7729d47fea1d04c5f6.tar.gz binaryen-6afbc200b57acd1b9111de7729d47fea1d04c5f6.tar.bz2 binaryen-6afbc200b57acd1b9111de7729d47fea1d04c5f6.zip |
[Wasm GC] OptimizeInstructions: ref.as_non_null of null will trap (#5635)
Trivial peephole optimization. Some work was needed in the tests as some of
them relied on that pattern for convenience, so I modified them to try to keep
them testing the same thing as much as possible (for one, struct.set.null.fallthrough,
I don't think we can actually keep testing the same, as the situation should not
be possible any more).
Diffstat (limited to 'src/passes/OptimizeInstructions.cpp')
-rw-r--r-- | src/passes/OptimizeInstructions.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/passes/OptimizeInstructions.cpp b/src/passes/OptimizeInstructions.cpp index 3a5f56be9..e71519012 100644 --- a/src/passes/OptimizeInstructions.cpp +++ b/src/passes/OptimizeInstructions.cpp @@ -2227,6 +2227,9 @@ struct OptimizeInstructions } assert(curr->op == RefAsNonNull); + if (trapOnNull(curr, curr->value)) { + return; + } skipNonNullCast(curr->value, curr); if (!curr->value->type.isNullable()) { replaceCurrent(curr->value); |