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.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[JIT] X64 - Extend emitter peephole optimization of eliminating unnecessary
mov
instructions #79381[JIT] X64 - Extend emitter peephole optimization of eliminating unnecessary
mov
instructions #79381Changes from all commits
f5feaeb
958a84f
755461e
95c7d09
12e3c4f
b42682c
2d806a5
2d5e07f
4d06e05
0c1599a
53ecd41
0f42667
2de6089
bd3b211
9792d0f
0ed30e9
3e452fd
126d6b5
80ac0d7
9497d5e
4ee489b
7d599df
11a1709
e33147a
99cba5a
0356348
2c10d21
189afe0
f0e626a
f1e7c07
ca8813a
c533d54
e0df38e
1f5501a
e34367f
b2c0414
5431a53
07ec7fb
7e0079f
0c71902
25cb4fb
7d6d03d
ee349d3
a2538ca
6fb2694
7e97320
896a32a
49c3c07
f229bc0
920fc7c
7380971
a4e92c7
fa4f6e5
0fd25ca
2ff99ed
d2307d5
f478d53
0afbc01
140fd11
423a72f
c6c5711
cab9705
987e50c
453e00b
710b039
cadbf4d
a68cd3f
26cb484
a88103a
5fe41e2
c1b612f
9f42790
84f076c
12ea52f
cb3b2e8
a007c3b
5e33fad
b35c10e
7576c94
6816216
3a4adfb
5a3acc5
d48e429
90479c5
f7224c2
36ffb3a
d1d7814
8162a38
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this is for a separate PR, but I think we need to prevent peephole optimizations when we're in the prolog or epilog. I.e.,
There is too much special handling in the prolog/epilog (e.g., unwinding) to allow peeps to kick in. There may be very specific cases where they are ok, but that requires some careful thinking.