Lines Matching defs: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),
929 unsigned ShiftAmt = KnownZeroMask.countTrailingZeros();
931 if (ShiftAmt)
933 ConstantInt::get(In->getType(), ShiftAmt));
943 unsigned ShiftAmt = KnownZeroMask.countLeadingZeros();
945 if (ShiftAmt)
947 ConstantInt::get(In->getType(), ShiftAmt));