Fix the code-size estimation for AVX/AVX2 ExtractVector128#17180
Fix the code-size estimation for AVX/AVX2 ExtractVector128#17180CarolEidt merged 1 commit intodotnet:masterfrom
Conversation
src/jit/hwintrinsicxarch.cpp
Outdated
| case InstructionSet_SSE41: | ||
| case InstructionSet_SSE42: | ||
| case InstructionSet_AVX: | ||
| case InstructionSet_AVX2: |
There was a problem hiding this comment.
Move AVX/AVX2/SSE4.1 to fully-implemented ISA for GCStress/JITStress.
There was a problem hiding this comment.
This is also being handled by #17184, the same comment I made there applies here
|
test Windows_NT x86 Checked gcstress0xc_jitstress1 test Windows_NT x64 Checked jitstressregs4 |
|
test Windows_NT x64 Checked gcstress0xc_jitstress1 |
|
x86 gcstress failures will be fixed by #17314, and other failures are not related to this change. Let’s merge this PR. |
|
@CarolEidt ping? |
The code size of
vextracti/f128could be different based on the base register of the dst address.The bug was detected by JITStress tests.
@CarolEidt @tannergooding