Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Reciprocal

1186 ///    2) reciprocal is allowed.
1196 APFloat Reciprocal(FpVal.getSemantics());
1197 bool Cvt = FpVal.getExactInverse(&Reciprocal);
1200 Reciprocal = APFloat(FpVal.getSemantics(), 1.0f);
1201 (void)Reciprocal.divide(FpVal, APFloat::rmNearestTiesToEven);
1202 Cvt = !Reciprocal.isDenormal();
1209 R = ConstantFP::get(Dividend->getType()->getContext(), Reciprocal);
1249 // (X/C1)/C2 => X /(C2*C1) [=> X * 1/(C2*C1) if reciprocal is allowed]