Lines Matching refs:Op1C
307 Value *Op1C = Op1; in visitMul() local
312 Op1C = Op0; in visitMul()
315 Value *Neg = dyn_castNegVal(Op1C); in visitMul()
317 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) && in visitMul()
325 if (Op1BO == Op1C) in visitMul()
337 if (Op1BO == Op1C) in visitMul()
1142 const APInt *Op1C; in visitSDiv() local
1143 if (match(Op1, m_APInt(Op1C))) { in visitSDiv()
1145 if (Op1C->isAllOnesValue()) in visitSDiv()
1149 if (I.isExact() && Op1C->isNonNegative() && Op1C->isPowerOf2()) { in visitSDiv()
1150 Value *ShAmt = ConstantInt::get(Op1->getType(), Op1C->exactLogBase2()); in visitSDiv()
1159 Op0Src->getType()->getScalarSizeInBits() >= Op1C->getMinSignedBits()) { in visitSDiv()
1261 if (Constant *Op1C = dyn_cast<Constant>(Op1)) { in visitFDiv() local
1268 Constant *C2 = Op1C; in visitFDiv()
1296 if (Instruction *T = CvtFDivConstToReciprocal(Op0, Op1C, AllowReciprocal)) { in visitFDiv()