Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:SubOp

960         Instruction *AddOp = nullptr, *SubOp = nullptr;
973 AddOp = FI; SubOp = TI;
978 AddOp = TI; SubOp = FI;
983 if (SubOp->getOperand(0) == AddOp->getOperand(0)) {
985 } else if (SubOp->getOperand(0) == AddOp->getOperand(1)) {
994 NegVal = Builder->CreateFNeg(SubOp->getOperand(1));
997 Flags &= SubOp->getFastMathFlags();
1001 NegVal = Builder->CreateNeg(SubOp->getOperand(1));
1014 BinaryOperator::CreateFAdd(SubOp->getOperand(0), NewSel);
1017 Flags &= SubOp->getFastMathFlags();
1021 return BinaryOperator::CreateAdd(SubOp->getOperand(0), NewSel);