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),
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));