[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:33:48 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)) {
----------------
phoebewang wrote:
What happened under this condition? Why can't we unconditionally switch LO HI like above?
https://github.com/llvm/llvm-project/pull/127199
More information about the llvm-commits
mailing list