Lines Matching defs:ShAmtC
2044 Constant *ShAmtC;
2045 if (match(II->getArgOperand(2), m_ImmConstant(ShAmtC))) {
2049 ConstantFoldBinaryOpOperands(Instruction::URem, ShAmtC, WidthC, DL);
2052 if (ModuloC != ShAmtC)
2056 ShAmtC, DL),
2065 if (!isKnownNonZero(ShAmtC, SQ.getWithInstruction(II)))
2068 Constant *LeftShiftC = ConstantExpr::getSub(WidthC, ShAmtC);
2079 return BinaryOperator::CreateShl(Op0, ShAmtC);
2085 ConstantExpr::getSub(WidthC, ShAmtC));
2088 if (Op0 == Op1 && BitWidth == 16 && match(ShAmtC, m_SpecificInt(8))) {