Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:ShiftAmt

565         uint32_t ShiftAmt = KnownZeroMask.logBase2();
567 if (ShiftAmt) {
568 // Perform a logical shr by shiftamt.
570 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
936 unsigned ShiftAmt = KnownZeroMask.countTrailingZeros();
938 if (ShiftAmt)
940 ConstantInt::get(In->getType(), ShiftAmt));
950 unsigned ShiftAmt = KnownZeroMask.countLeadingZeros();
952 if (ShiftAmt)
954 ConstantInt::get(In->getType(), ShiftAmt));