[llvm] [X86] combineTargetShuffle - fold VPERMV3(HI,MASK,LO) -> VPERMV(COMMUTE(MASK),CONCAT(LO,HI)) (PR #127199)
Phoebe Wang via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 14 06:05:37 PST 2025
================
@@ -42530,9 +42531,25 @@ static SDValue combineTargetShuffle(SDValue N, const SDLoc &DL,
SmallVector<int, 32> Mask;
if (getTargetShuffleMask(N, /*AllowSentinelZero=*/false, SrcOps, Mask)) {
assert(Mask.size() == NumElts && "Unexpected shuffle mask size");
+ // See if we can concatenate the commuted operands.
+ if (VT.is128BitVector() ||
+ (VT.is256BitVector() && Subtarget.useAVX512Regs())) {
----------------
phoebewang wrote:
Hoist it with `bool CanConcatenate = ...`
https://github.com/llvm/llvm-project/pull/127199
More information about the llvm-commits
mailing list