Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:VWidth

815   unsigned VWidth = cast<VectorType>(V->getType())->getNumElements();
816 APInt EltMask(APInt::getAllOnesValue(VWidth));
843 for (unsigned i = 0; i != VWidth; ++i) {
889 APInt UndefElts2(VWidth, 0);
910 if (IdxNo >= VWidth || !DemandedElts[IdxNo]) {
932 for (unsigned i = 0; i < VWidth; i++) {
957 for (unsigned i = 0; i < VWidth; i++) {
980 for (unsigned i = 0; i < VWidth; ++i) {
1000 if (VWidth == InVWidth) {
1005 } else if (VWidth > InVWidth) {
1012 Ratio = VWidth/InVWidth;
1013 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx) {
1024 Ratio = InVWidth/VWidth;
1039 if (VWidth > InVWidth) {
1044 for (unsigned OutIdx = 0; OutIdx != VWidth; ++OutIdx)
1047 } else if (VWidth < InVWidth) {
1052 UndefElts = ~0ULL >> (64-VWidth); // Start out all undef.