Convert x86/sse41.rs
intrinsics to const generics
#1026
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 updates the x86 SSE 4.1 intrinsics to use const generics.
Of note, some of these made an effort to test the masking/clamping of the constify immediates macros, testing with both in-range and out-of-range values in:
_mm_extract_ps
: _mm_extract_ps(a, 5) on a 2-bit immediate_mm_extract_epi8
: _mm_extract_epi8(a, 19) on a 4-bit immediate_mm_extract_epi32
: _mm_extract_epi32(a, 5) on a 2-bit immediate_mm_insert_epi8
: _mm_insert_epi8(a, 32, 17) on a 4-bit immediate_mm_insert_epi32
: _mm_insert_epi32(a, 32, 5) on a 2-bit immediateAs discussed with Amanieu on zulip, I've made such out-of-range immediates errors with static assertions, and changed the tests in these cases. Opinions are welcome.
I've noticed our previous PRs were squashed when merged, so I didn't make a commit per intrinsic this time. Of course, I can do so if it would be helpful for the review ?