Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:NewWidth

1920   unsigned NewWidth = CI2->getValue().countTrailingZeros();
1921 if (NewWidth != 7 && NewWidth != 15 && NewWidth != 31) return nullptr;
1924 ++NewWidth;
1926 // Check to see that CI1 is an all-ones value with NewWidth bits.
1927 if (CI1->getBitWidth() == NewWidth ||
1928 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1934 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1;
1953 if (!TI || TI->getType()->getPrimitiveSizeInBits() > NewWidth)
1962 Type *NewType = IntegerType::get(OrigAdd->getContext(), NewWidth);