Searched refs:ConcatMask (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86PartialReduction.cpp | 205 SmallVector<int, 32> ConcatMask(NumElts); in tryMAddReplacement() local 206 std::iota(ConcatMask.begin(), ConcatMask.end(), 0); in tryMAddReplacement() 285 SmallVector<int, 32> ConcatMask(16); in trySADReplacement() local 287 ConcatMask[i] = i; in trySADReplacement() 289 ConcatMask[i] = (i % NumElts) + NumElts; in trySADReplacement() 292 Op0 = Builder.CreateShuffleVector(Op0, Zero, ConcatMask); in trySADReplacement() 321 SmallVector<int, 64> ConcatMask(NumConcatElts); in trySADReplacement() local 322 std::iota(ConcatMask.begin(), ConcatMask.end(), 0); in trySADReplacement() 334 SmallVector<int, 32> ConcatMask(NumElts); in trySADReplacement() local 338 ConcatMask[i] = i; in trySADReplacement() [all …]
|
| H A D | X86ISelLowering.cpp | 54853 SmallVector<int, 64> ConcatMask; in combineConcatVectorOps() local 54863 ConcatMask.push_back(M); in combineConcatVectorOps() 54866 if (ConcatMask.size() == (NumOps * NumSrcElts)) { in combineConcatVectorOps() 54871 SDValue Mask = getConstVector(ConcatMask, IntMaskVT, DAG, DL, true); in combineConcatVectorOps() 54880 SmallVector<int, 64> ConcatMask; in combineConcatVectorOps() local 54892 ConcatMask.push_back(M); in combineConcatVectorOps() 54895 if (ConcatMask.size() == (NumOps * NumSrcElts)) { in combineConcatVectorOps() 54902 SDValue Mask = getConstVector(ConcatMask, IntMaskVT, DAG, DL, true); in combineConcatVectorOps()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VectorCombine.cpp | 1493 SmallVector<int> ConcatMask; in foldShuffleFromReductions() local 1494 Shuffle->getShuffleMask(ConcatMask); in foldShuffleFromReductions() 1495 sort(ConcatMask, [](int X, int Y) { return (unsigned)X < (unsigned)Y; }); in foldShuffleFromReductions() 1501 any_of(ConcatMask, [&](int M) { return M >= (int)NumInputElts; }); in foldShuffleFromReductions() 1510 VecTyForCost, ConcatMask); in foldShuffleFromReductions() 1519 Shuffle->getOperand(0), Shuffle->getOperand(1), ConcatMask); in foldShuffleFromReductions()
|