Lines Matching defs:Op1
87 Value *insertOperandRuntimeCheck(Value *Op1, Value *Op2);
201 Value *Op1 = I->getOperand(1);
202 ConstantInt *C = dyn_cast<ConstantInt>(Op1);
203 if (!C && isa<BitCastInst>(Op1))
204 C = dyn_cast<ConstantInt>(cast<BitCastInst>(Op1)->getOperand(0));
328 Value *FastDivInsertionTask::insertOperandRuntimeCheck(Value *Op1, Value *Op2) {
329 assert((Op1 || Op2) && "Nothing to check");
334 if (Op1 && Op2)
335 OrV = Builder.CreateOr(Op1, Op2);
337 OrV = Op1 ? Op1 : Op2;