C++: Fix global variable dataflow FP #20040
Merged
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.
This PR fixes a very odd corner case of global dataflow through global variables.
Consider this snippet (which I've also added as a test):
int recursion = (sink(recursion), source());
The IR we generate for this snippet is roughly equivalent to:
where
__recursion
represents the actual global variable. Since this is anIRFunction
just like any otherFunction
, it gets an initial SSA definition of the global variables that it reads, and it gets a final SSA use of the global variables that it defines. So for the point-of-view of dataflow the function ends up looking like:where
__initialize_global
represents the initial SSA definition (aInitialGlobalValue
node), and__final_use(recursion)
represents the final SSA use (aFinalGlobalValue
node).And now global variable dataflow does its things and this happens:
recursion
at// (1)
flows to the final SSA use at// (2)
// (2)
to the global dataflow node (aGlobalLikeVariableNode
) forrecursion
recursion
to the initial SSA definition forrecursion
at// (3)
// (3)
to the use at// (4)
.But clearly we should not have flow in this case! So this PR fixes the FP by removing the
InitialGlobalValue
node for some global variablev
at the entry for theIRFunction
that initializesv
.I don't think this will ever happen on any real codebase. But since it was so easy to fix we might as well get this fix in 😄