diff options
author | Alon Zakai <azakai@google.com> | 2023-02-03 08:02:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-03 08:02:10 -0800 |
commit | f8261babf4c3b69c9339ddbd4d2b0318062833a8 (patch) | |
tree | cabe0526b882c7bc1de09b1fc1897536cb016a3f /src/passes/OptimizeInstructions.cpp | |
parent | 6a2ec34a24f0dba63b851e800cc88653c1c74c9b (diff) | |
download | binaryen-f8261babf4c3b69c9339ddbd4d2b0318062833a8.tar.gz binaryen-f8261babf4c3b69c9339ddbd4d2b0318062833a8.tar.bz2 binaryen-f8261babf4c3b69c9339ddbd4d2b0318062833a8.zip |
Optimize ref.as_non_null removal effect computation (#5479)
Followup to #5474
Diffstat (limited to 'src/passes/OptimizeInstructions.cpp')
-rw-r--r-- | src/passes/OptimizeInstructions.cpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/passes/OptimizeInstructions.cpp b/src/passes/OptimizeInstructions.cpp index c38506d62..5d91ce29f 100644 --- a/src/passes/OptimizeInstructions.cpp +++ b/src/passes/OptimizeInstructions.cpp @@ -1500,21 +1500,27 @@ struct OptimizeInstructions // We need to see if a child with side effects exists after |input|. // If there is such a child, it is a problem as mentioned above (it // is fine for such a child to appear *before* |input|, as then we - // wouldn't be reordering effects). + // wouldn't be reordering effects). Thus, all we need to do is + // accumulate the effects in children after |input|, as we want to + // move the trap across those. bool seenInput = false; + EffectAnalyzer crossedEffects(options, *getModule()); for (auto* child : ChildIterator(parent)) { if (child == input) { seenInput = true; } else if (seenInput) { - // TODO We could ignore trap effects here (since traps are ok to - // reorder) and also local effects (since a change to a var - // would not be noticeable, unlike say a global). - if (EffectAnalyzer(options, *getModule(), child) - .hasSideEffects()) { - return; - } + crossedEffects.walk(child); } } + + // Check if the effects we cross interfere with the effects of the + // trap we want to move. (We use a shallow effect analyzer since we + // will only move the ref.as_non_null itself.) + ShallowEffectAnalyzer movingEffects(options, *getModule(), input); + if (crossedEffects.invalidates(movingEffects)) { + return; + } + // If we got here, we've checked the siblings and found no problem. checkedSiblings = true; } |