Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Recip

438     SDValue buildSqrtEstimateImpl(SDValue Op, SDNodeFlags Flags, bool Recip);
11222 // E.g., (a / D; b / D;) -> (recip = 1.0 / D; a * recip; b * recip)
11311 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
11312 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
11321 TLI.isFPImmLegal(Recip, VT)))
11323 DAG.getConstantFP(Recip, DL, VT), Flags);