Searched refs:NumElemsPerConcat (Results 1 – 1 of 1) sorted by relevance
25034 unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements(); in partitionShuffleOfConcats() local25035 unsigned NumConcats = NumElts / NumElemsPerConcat; in partitionShuffleOfConcats()25042 if (NumElemsPerConcat * 2 == NumElts && N1.isUndef() && in partitionShuffleOfConcats()25043 llvm::all_of(Mask.slice(NumElemsPerConcat, NumElemsPerConcat), in partitionShuffleOfConcats()25047 Mask.slice(0, NumElemsPerConcat)); in partitionShuffleOfConcats()25055 unsigned Begin = I * NumElemsPerConcat; in partitionShuffleOfConcats()25056 ArrayRef<int> SubMask = Mask.slice(Begin, NumElemsPerConcat); in partitionShuffleOfConcats()25065 for (int i = 0; i != (int)NumElemsPerConcat; ++i) { in partitionShuffleOfConcats()25068 if ((SubMask[i] % (int)NumElemsPerConcat) != i) in partitionShuffleOfConcats()25070 int EltOpIdx = SubMask[i] / NumElemsPerConcat; in partitionShuffleOfConcats()