Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:NewWidth

1675   unsigned NewWidth = CI2->getValue().countTrailingZeros();
1676 if (NewWidth != 7 && NewWidth != 15 && NewWidth != 31) return 0;
1679 ++NewWidth;
1681 // Check to see that CI1 is an all-ones value with NewWidth bits.
1682 if (CI1->getBitWidth() == NewWidth ||
1683 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1689 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1;
1710 TI->getType()->getPrimitiveSizeInBits() > NewWidth) return 0;
1718 Type *NewType = IntegerType::get(OrigAdd->getContext(), NewWidth);