Lines Matching defs:FMF
1918 "FP factorization requires FMF");
2825 FastMathFlags FMF = I.getFastMathFlags();
2827 FDiv->setHasNoSignedZeros(FMF.noSignedZeros() && OpFMF.noSignedZeros());
2828 FDiv->setHasNoInfs(FMF.noInfs() && OpFMF.noInfs());
2858 FastMathFlags FMF = FMFSource.getFastMathFlags() | II->getFastMathFlags();
2861 {Builder.CreateFNegFMF(II->getArgOperand(0), FMF),
2863 New->setFastMathFlags(FMF);
2905 FastMathFlags FMF = I.getFastMathFlags() | OldSel->getFastMathFlags();
2906 S->setFastMathFlags(FMF);
2943 FastMathFlags FMF = I.getFastMathFlags();
2944 FMF &= cast<FPMathOperator>(OneUse)->getFastMathFlags();
2945 Value *NegY = Builder.CreateFNegFMF(Y, FMF);
2946 Value *NewCopySign = Builder.CreateCopySign(X, NegY, FMF);