Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:ShiftAmt

572         uint32_t ShiftAmt = KnownZeroMask.logBase2();
574 if (ShiftAmt) {
575 // Perform a logical shr by shiftamt.
577 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
712 uint64_t ShiftAmt = Amt->getZExtValue();
713 BitsToClear = ShiftAmt < BitsToClear ? BitsToClear - ShiftAmt : 0;
941 unsigned ShiftAmt = KnownZeroMask.countTrailingZeros();
943 if (ShiftAmt)
945 ConstantInt::get(In->getType(), ShiftAmt));
955 unsigned ShiftAmt = KnownZeroMask.countLeadingZeros();
957 if (ShiftAmt)
959 ConstantInt::get(In->getType(), ShiftAmt));