Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:VWidth

809   unsigned VWidth = cast<VectorType>(V->getType())->getNumElements();
810 APInt EltMask(APInt::getAllOnesValue(VWidth));
830 for (unsigned i = 0; i != VWidth; ++i)
859 for (unsigned i = 0; i != VWidth; ++i) {
890 APInt UndefElts2(VWidth, 0);
911 if (IdxNo >= VWidth || !DemandedElts[IdxNo]) {
933 for (unsigned i = 0; i < VWidth; i++) {
958 for (unsigned i = 0; i < VWidth; i++) {
981 for (unsigned i = 0; i < VWidth; ++i) {
1001 if (VWidth == InVWidth) {
1006 } else if (VWidth > InVWidth) {
1013 Ratio = VWidth/InVWidth;
1014 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx) {
1025 Ratio = InVWidth/VWidth;
1040 if (VWidth > InVWidth) {
1045 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx)
1048 } else if (VWidth < InVWidth) {
1053 UndefElts = ~0ULL >> (64-VWidth); // Start out all undef.