Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:SubOp

1077         Instruction *AddOp = nullptr, *SubOp = nullptr;
1090 AddOp = FI; SubOp = TI;
1095 AddOp = TI; SubOp = FI;
1100 if (SubOp->getOperand(0) == AddOp->getOperand(0)) {
1102 } else if (SubOp->getOperand(0) == AddOp->getOperand(1)) {
1111 NegVal = Builder->CreateFNeg(SubOp->getOperand(1));
1114 Flags &= SubOp->getFastMathFlags();
1118 NegVal = Builder->CreateNeg(SubOp->getOperand(1));
1131 BinaryOperator::CreateFAdd(SubOp->getOperand(0), NewSel);
1134 Flags &= SubOp->getFastMathFlags();
1138 return BinaryOperator::CreateAdd(SubOp->getOperand(0), NewSel);