[release/11.0] JIT: Fix promoted liveness in forward substitution - #134349
Merged
Merged
Conversation
Multi-use forward substitution could leave stale last-use flags on promoted struct parents, allowing a live struct copy to be removed. Make last-use invalidation promotion-aware and reuse the same logic for single- and multi-use substitution. Add a regression test. Fixes #133641 > [!NOTE] > This PR description was generated with GitHub Copilot. --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Azure Pipelines: Successfully started running 3 pipeline(s). 13 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
|
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
Member
|
@dotnet/jit-contrib ptal |
JulieLeeMSFT
approved these changes
Sep 21, 2026
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Backport of #133703 to release/11.0
/cc @AndyAyersMS
Customer Impact
Forward substitution can leave stale last-use flags on promoted struct parents and remove a live struct copy. The reported case returns
6instead of the correct value8. This reproduces on .NET 11 RC2; .NET 8, 9, and 10 are correct. See #133641.Regression
Introduced during the .NET 11 cycle by #129312.
Testing
Added a focused regression test that exercises multi-use forward substitution of a promoted struct and verifies that the defining copy remains live. The source PR was validated through JIT CI and SuperPMI analysis; only a small number of expected code-generation differences were observed.
Risk
Low. The fix makes last-use invalidation promotion-aware and reuses the same logic for single- and multi-use substitution. It preserves liveness conservatively rather than enabling a new optimization.