JIT: Fix zero-flag reuse for BSF/BSR - #133801
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Azure Pipelines: Successfully started running 5 pipeline(s). 11 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 |
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
The regression test needs explicit configuration to reliably exercise the BSF/BSR paths.
Get a fresh assessment by requesting another Copilot review.
Pull request overview
Fixes incorrect JIT zero-flag reuse for BSF/BSR result comparisons.
Changes:
- Excludes
BSF/BSRfrom result-based zero-flag reuse. - Updates related JIT flag-analysis helpers.
- Adds regression coverage for 32-bit and 64-bit operations.
File summaries
| File | Reviewed changes |
|---|---|
src/tests/JIT/Regression_ro_2/Runtime_133783.cs |
Adds regression coverage, but does not deterministically exercise BSF/BSR. |
src/coreclr/jit/gentree.cpp |
Uses result-aware zero-flag detection. |
src/coreclr/jit/emitxarch.h |
Updates the helper declaration. |
src/coreclr/jit/emitxarch.cpp |
Excludes BSF/BSR from zero-flag reuse. |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 1
- Review effort level: Lite
Member
Author
|
PTAL @tannergooding |
tannergooding
approved these changes
Sep 21, 2026
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.

Fixes #133783
Don't reuse BSF/BSR zero flags for result comparisons.