Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Op

133       return 0;  // unknown unary op.
282 /// SimplifyWithOpReplaced - See if V simplifies when its operand Op is
284 static Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
287 if (V == Op)
294 // If this is a binary operator, try to simplify it with the replaced op.
296 if (B->getOperand(0) == Op)
298 if (B->getOperand(1) == Op)
304 if (C->getOperand(0) == Op)
306 if (C->getOperand(1) == Op)
312 // If all operands are constant after substituting Op for RepOp then we can
318 if (I->getOperand(i) == Op)
780 // Turn (select C, (op X, Y), (op X, Z)) -> (op X, (select C, Y, Z))