Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:ShiftAmt

642         uint32_t ShiftAmt = KnownZeroMask.logBase2();
644 if (ShiftAmt) {
645 // Perform a logical shr by shiftamt.
647 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
784 uint64_t ShiftAmt = Amt->getZExtValue();
785 BitsToClear = ShiftAmt < BitsToClear ? BitsToClear - ShiftAmt : 0;
1018 unsigned ShiftAmt = KnownZeroMask.countTrailingZeros();
1020 if (ShiftAmt)
1022 ConstantInt::get(In->getType(), ShiftAmt));
1032 unsigned ShiftAmt = KnownZeroMask.countLeadingZeros();
1034 if (ShiftAmt)
1036 ConstantInt::get(In->getType(), ShiftAmt));