Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:SubOp

997         Instruction *AddOp = nullptr, *SubOp = nullptr;
1010 AddOp = FI; SubOp = TI;
1015 AddOp = TI; SubOp = FI;
1020 if (SubOp->getOperand(0) == AddOp->getOperand(0)) {
1022 } else if (SubOp->getOperand(0) == AddOp->getOperand(1)) {
1031 NegVal = Builder->CreateFNeg(SubOp->getOperand(1));
1034 Flags &= SubOp->getFastMathFlags();
1038 NegVal = Builder->CreateNeg(SubOp->getOperand(1));
1051 BinaryOperator::CreateFAdd(SubOp->getOperand(0), NewSel);
1054 Flags &= SubOp->getFastMathFlags();
1058 return BinaryOperator::CreateAdd(SubOp->getOperand(0), NewSel);