reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
12530     return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1, Flags);
12538   if (Options.UnsafeFPMath || Flags.hasAllowReciprocal()) {
12555                            DAG.getConstantFP(Recip, DL, VT), Flags);
12561       if (SDValue RV = buildRsqrtEstimate(N1.getOperand(0), Flags))
12562         return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags);
12566                                           Flags)) {
12569         return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags);
12574                                           Flags)) {
12577         return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags);
12594         if (SDValue RV = buildRsqrtEstimate(SqrtOp.getOperand(0), Flags)) {
12595           RV = DAG.getNode(ISD::FDIV, SDLoc(N1), VT, RV, OtherOp, Flags);
12597           return DAG.getNode(ISD::FMUL, DL, VT, N0, RV, Flags);
12603     if (SDValue RV = BuildDivEstimate(N0, N1, Flags))
12612         TLI.getNegatedExpression(N1, DAG, LegalOperations, ForCodeSize), Flags);