Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:ShiftAmt

560         uint32_t ShiftAmt = KnownZeroMask.logBase2();
562 if (ShiftAmt) {
563 // Perform a logical shr by shiftamt.
565 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
927 unsigned ShiftAmt = KnownZeroMask.countTrailingZeros();
929 if (ShiftAmt)
931 ConstantInt::get(In->getType(), ShiftAmt));
941 unsigned ShiftAmt = KnownZeroMask.countLeadingZeros();
943 if (ShiftAmt)
945 ConstantInt::get(In->getType(), ShiftAmt));