[SCCP] Use mergeInValue instead of markConstant when folding CastInst #173190
+34
−2
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.
Fixes #173180
The crash occurs when a vector constant refines its value during iterative analysis.
In
SCCPInstVisitor::visitCastInst, the logic for folding constants through aCastInstusesmarkConstant. This function is strictly designed for initial assignments and contains an assertion that prevents a lattice element from being updated with a different constant pointer.During the analysis of loops or complex data flows, a vector constant may "refine." For example:
First Pass: SCCP identifies a value as
<4 x i64> {poison, poison, poison, 0}.Second Pass: The value refines to
<4 x i64> zeroinitializer.Because these are distinct
Constant*objects,markConstanttriggers a"Marking constant with different value"assertion failure.The call to
markConstantis replaced withmergeInValue. Unlike the former,mergeInValueis lattice-aware, it allows for valid refinement (moving from a less-defined to a more-defined state) and gracefully handles transitions to Overdefined if a true conflict occurs. This brings BitCast handling in line with how Trunc and Ext instructions are already safely handled in the same pass.