Lines Matching refs:Op
140 return 0; // unknown unary op.
288 /// SimplifyWithOpReplaced - See if V simplifies when its operand Op is
290 static Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
294 if (V == Op)
301 // If this is a binary operator, try to simplify it with the replaced op.
303 if (B->getOperand(0) == Op)
305 if (B->getOperand(1) == Op)
311 if (C->getOperand(0) == Op)
314 if (C->getOperand(1) == Op)
321 // If all operands are constant after substituting Op for RepOp then we can
327 if (I->getOperand(i) == Op)
871 // Turn (select C, (op X, Y), (op X, Z)) -> (op X, (select C, Y, Z))