x64: Refactor lowerings for insertlane
#8167
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.
Going through old PRs I stumbled across #2716 which is quite old at this point. Upon adding the tests to
main
I see that most of it is actually implemented except for load-lane-from-memory where the lane size is 8 or 16 bits. That requires explicitly opting-in withsinkable_load_exact
so this PR now subsumes the tests of #2716 in addition to implementing this missing hole in lowerings.This refactoring shuffles around where definitions are located to more easily have access to
Value
to perform the relevant match. The genericvec_insert_lane
helper is now gone as well in lieu of direct matches oninsertlane
lowerings.Closes #2716