Searched refs:MinNumElts (Results 1 – 5 of 5) sorted by relevance
672 unsigned MinNumElts) { in get() argument673 assert(MinNumElts > 0 && "#Elements of a VectorType must be greater than 0"); in get()678 auto EC = ElementCount::getScalable(MinNumElts); in get()685 Entry = new (pImpl->Alloc) ScalableVectorType(ElementType, MinNumElts); in get()
573 ScalableVectorType(Type *ElTy, unsigned MinNumElts) in ScalableVectorType() argument574 : VectorType(ElTy, MinNumElts, ScalableVectorTyID) {} in ScalableVectorType()577 static ScalableVectorType *get(Type *ElementType, unsigned MinNumElts);
664 unsigned MinNumElts = 0; in instCombineSVECntElts() local676 MinNumElts = Pattern; in instCombineSVECntElts()679 MinNumElts = 16; in instCombineSVECntElts()683 return NumElts >= MinNumElts in instCombineSVECntElts()685 II, ConstantInt::get(II.getType(), MinNumElts))) in instCombineSVECntElts()
4565 unsigned MinNumElts = VecVTy->getElementCount().getKnownMinValue(); in SimplifyExtractElementInst() local4566 if (isa<FixedVectorType>(VecVTy) && IdxC->getValue().uge(MinNumElts)) in SimplifyExtractElementInst()4569 if (IdxC->getValue().ult(MinNumElts)) in SimplifyExtractElementInst()
5560 unsigned MinNumElts = std::min(WidenNumElts, InNumElts); in ModifyToType() local5562 for (Idx = 0; Idx < MinNumElts; ++Idx) in ModifyToType()