Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:ShAmtVal

937   uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
938 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
951 (!Shr->isExact() || ShAmtVal == TypeBits - 1))
958 ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal));
984 APInt Comp = CmpRHSV << ShAmtVal;
987 Comp = Comp.lshr(ShAmtVal);
989 Comp = Comp.ashr(ShAmtVal);
1006 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal));
1163 int ShAmtVal = TyBits - ShAmt->getLimitedValue(TyBits);
1166 if ((APInt::getHighBitsSet(BitWidth, BitWidth-ShAmtVal) &
1298 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
1301 TypeBits-ShAmtVal));