Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:VWidth

909   unsigned VWidth = V->getType()->getVectorNumElements();
910 APInt EltMask(APInt::getAllOnesValue(VWidth));
937 for (unsigned i = 0; i != VWidth; ++i) {
983 APInt UndefElts2(VWidth, 0);
1004 if (IdxNo >= VWidth || !DemandedElts[IdxNo]) {
1026 for (unsigned i = 0; i < VWidth; i++) {
1051 for (unsigned i = 0; i < VWidth; i++) {
1074 for (unsigned i = 0; i < VWidth; ++i) {
1089 for (unsigned i = 0; i < VWidth; i++) {
1124 if (VWidth == InVWidth) {
1129 } else if ((VWidth % InVWidth) == 0) {
1133 Ratio = VWidth / InVWidth;
1134 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx)
1137 } else if ((InVWidth % VWidth) == 0) {
1141 Ratio = InVWidth / VWidth;
1158 if (VWidth == InVWidth) {
1160 } else if ((VWidth % InVWidth) == 0) {
1164 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx)
1167 } else if ((InVWidth % VWidth) == 0) {
1171 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx) {
1326 UndefElts |= APInt::getHighBitsSet(VWidth, VWidth / 2);