[mlir] int-range-optmizations
: Fix referencing of deleted ops
#91807
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The pass runs a
DataFlowSolver
and collects state information on the input IR. Then, the rewrite driver and folding is applied. During pattern application and folding it can happen that an Op from the input IR is deleted and a new Op is created at the same address. When the newly created Ops is looked up in theDataFlowSolver
state memory, the state of the original Op is returned.This patch adds a method to
DataFlowSolver
which removes all state related to aProgramPoint
. It also adds a listener to the Pass which clears the state information of deleted Ops from theDataFlowSolver
.This doesn't seem like the prettiest solution, maybe someone can advise on how to fix this in a nicer way? This pattern of using a
DataFlowSolver
throughout a pass with multiple pattern applications/foldings happens in other Passes, too. So it seems worth to find a proper solution for this. The bugs and crashes resulting from this are elusive and annoying to debug because they are dependent on how things are allocated.Fix #81228