Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:ShiftAmt

569         uint32_t ShiftAmt = KnownZeroMask.logBase2();
571 if (ShiftAmt) {
572 // Perform a logical shr by shiftamt.
574 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
709 uint64_t ShiftAmt = Amt->getZExtValue();
710 BitsToClear = ShiftAmt < BitsToClear ? BitsToClear - ShiftAmt : 0;
946 unsigned ShiftAmt = KnownZeroMask.countTrailingZeros();
948 if (ShiftAmt)
950 ConstantInt::get(In->getType(), ShiftAmt));
960 unsigned ShiftAmt = KnownZeroMask.countLeadingZeros();
962 if (ShiftAmt)
964 ConstantInt::get(In->getType(), ShiftAmt));