Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Recip

362     SDValue buildSqrtEstimateImpl(SDValue Op, SDNodeFlags *Flags, bool Recip);
8714 // E.g., (a / D; b / D;) -> (recip = 1.0 / D; a * recip; b * recip)
8800 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
8801 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
8810 TLI.isFPImmLegal(Recip, VT)))
8812 DAG.getConstantFP(Recip, DL, VT), Flags);