Lines Matching defs:NewWidth
1104 unsigned NewWidth = CI2->getValue().countr_zero();
1105 if (NewWidth != 7 && NewWidth != 15 && NewWidth != 31)
1109 ++NewWidth;
1111 // Check to see that CI1 is an all-ones value with NewWidth bits.
1112 if (CI1->getBitWidth() == NewWidth ||
1113 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1119 if (IC.ComputeMaxSignificantBits(A, 0, &I) > NewWidth ||
1120 IC.ComputeMaxSignificantBits(B, 0, &I) > NewWidth)
1138 if (!TI || TI->getType()->getPrimitiveSizeInBits() > NewWidth)
1145 Type *NewType = IntegerType::get(OrigAdd->getContext(), NewWidth);