Searched refs:NumOpElts (Results 1 – 3 of 3) sorted by relevance
1817 int NumOpElts = Op<0>()->getType()->getVectorNumElements(); in commute() local1827 assert(MaskElt >= 0 && MaskElt < 2 * NumOpElts && "Out-of-range mask"); in commute()1828 MaskElt = (MaskElt < NumOpElts) ? MaskElt + NumOpElts : MaskElt - NumOpElts; in commute()1908 static bool isSingleSourceMaskImpl(ArrayRef<int> Mask, int NumOpElts) { in isSingleSourceMaskImpl() argument1915 assert(Mask[i] >= 0 && Mask[i] < (NumOpElts * 2) && in isSingleSourceMaskImpl()1917 UsesLHS |= (Mask[i] < NumOpElts); in isSingleSourceMaskImpl()1918 UsesRHS |= (Mask[i] >= NumOpElts); in isSingleSourceMaskImpl()1932 static bool isIdentityMaskImpl(ArrayRef<int> Mask, int NumOpElts) { in isIdentityMaskImpl() argument1933 if (!isSingleSourceMaskImpl(Mask, NumOpElts)) in isIdentityMaskImpl()1938 if (Mask[i] != i && Mask[i] != (NumOpElts + i)) in isIdentityMaskImpl()[all …]
18037 int NumOpElts = OpVT.getVectorNumElements(); in combineConcatVectorOfExtracts() local18047 Mask.append((unsigned)NumOpElts, -1); in combineConcatVectorOfExtracts()18064 Mask.append((unsigned)NumOpElts, -1); in combineConcatVectorOfExtracts()18089 for (int i = 0; i != NumOpElts; ++i) in combineConcatVectorOfExtracts()18093 for (int i = 0; i != NumOpElts; ++i) in combineConcatVectorOfExtracts()
9290 unsigned NumOpElts = Op0->getType()->getVectorNumElements(); in lowerInterleavedStore() local9293 Type *IntVecTy = VectorType::get(IntTy, NumOpElts); in lowerInterleavedStore()