Lines Matching defs:NewOp
132 Value *NewOp;
135 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)),
139 return BinaryOperator::CreateMul(NewOp, ConstantExpr::getShl(C1, C2));
141 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) {
145 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());
152 BinaryOperator *Shl = BinaryOperator::CreateShl(NewOp, NewCst);