Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:ShAmtVal

1024   uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
1025 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
1038 (!Shr->isExact() || ShAmtVal == TypeBits - 1))
1045 ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal));
1070 APInt Comp = CmpRHSV << ShAmtVal;
1073 Comp = Comp.lshr(ShAmtVal);
1075 Comp = Comp.ashr(ShAmtVal);
1091 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal));
1694 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
1696 TypeBits - ShAmtVal));