[llvm] [X86] Fold VPERMV(MASK,CONCAT(LO,HI)) -> VPERMV3(WIDEN(LO),MASK',WIDEN(HI)) (PR #129708)
Phoebe Wang via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 02:03:42 PST 2025
================
@@ -42607,6 +42607,43 @@ static SDValue combineTargetShuffle(SDValue N, const SDLoc &DL,
return SDValue();
}
+ case X86ISD::VPERMV: {
+ // Combine VPERMV to VPERMV3 if the source operand can be freely split.
+ SmallVector<int, 32> Mask;
+ SmallVector<SDValue, 2> SrcOps, SubOps;
+ SDValue Src = peekThroughBitcasts(N.getOperand(1));
+ if ((Subtarget.hasVLX() ||
+ (VT.is512BitVector() && Subtarget.hasAVX512())) &&
+ getTargetShuffleMask(N, /*AllowSentinelZero=*/false, SrcOps, Mask) &&
+ collectConcatOps(Src.getNode(), SubOps, DAG)) {
+ assert(Mask.size() == NumElts && "Unexpected shuffle mask size");
+ assert(SrcOps.size() == 1 && "Unexpected shuffle ops");
+ assert((SubOps.size() == 2 || SubOps.size() == 4) &&
+ "Unexpected split ops");
+ // Bail if we were permuting a widened vector.
+ if (SubOps[SubOps.size() - 1].isUndef())
----------------
phoebewang wrote:
I don't understand, how about we happen to shuffle subvec to `SubOps.size() - 1`?
https://github.com/llvm/llvm-project/pull/129708
More information about the llvm-commits
mailing list