forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64] Remove special-case inserted shuffle cost.
This special case tried to measure if the shuffle vector will be multiple inserts into an existing vector, with one of the lanes already in-place. If so it reduces the cost by 1 to to represent it will can insert n-1 vector lanes. This isn't always true though as the original vector may need to be moved to a new value to start inserting new values into it, if other values from the original are still needed. This didn't effect performance much when I tried it, but should hopefully start to address a regression we see from differences in SLP vectorization lane orders.
- Loading branch information
1 parent
0613454
commit f67fa3b
Showing
3 changed files
with
84 additions
and
89 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Oops, something went wrong.