Lines Matching refs:InVWidth
1544 unsigned InVWidth = cast<FixedVectorType>(VTy)->getNumElements(); in SimplifyDemandedVectorElts() local
1545 APInt InputDemandedElts(InVWidth, 0); in SimplifyDemandedVectorElts()
1546 UndefElts2 = APInt(InVWidth, 0); in SimplifyDemandedVectorElts()
1549 if (VWidth == InVWidth) { in SimplifyDemandedVectorElts()
1554 } else if ((VWidth % InVWidth) == 0) { in SimplifyDemandedVectorElts()
1558 Ratio = VWidth / InVWidth; in SimplifyDemandedVectorElts()
1562 } else if ((InVWidth % VWidth) == 0) { in SimplifyDemandedVectorElts()
1566 Ratio = InVWidth / VWidth; in SimplifyDemandedVectorElts()
1567 for (unsigned InIdx = 0; InIdx != InVWidth; ++InIdx) in SimplifyDemandedVectorElts()
1577 if (VWidth == InVWidth) { in SimplifyDemandedVectorElts()
1579 } else if ((VWidth % InVWidth) == 0) { in SimplifyDemandedVectorElts()
1586 } else if ((InVWidth % VWidth) == 0) { in SimplifyDemandedVectorElts()