1 /* e_fmodf.c -- float version of e_fmod.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
13 * ====================================================
16 #if defined(LIBM_SCCS) && !defined(lint)
17 static char rcsid
[] = "$NetBSD: e_fmodf.c,v 1.4 1995/05/10 20:45:10 jtc Exp $";
21 * __ieee754_fmodf(x,y)
22 * Return x mod y in exact arithmetic
23 * Method: shift and subtract
27 #include "math_private.h"
30 static const float one
= 1.0, Zero
[] = {0.0, -0.0,};
32 static float one
= 1.0, Zero
[] = {0.0, -0.0,};
36 float __ieee754_fmodf(float x
, float y
)
38 float __ieee754_fmodf(x
,y
)
42 int32_t n
,hx
,hy
,hz
,ix
,iy
,sx
,i
;
46 sx
= hx
&0x80000000; /* sign of x */
48 hy
&= 0x7fffffff; /* |y| */
50 /* purge off exception values */
51 if(hy
==0||(hx
>=0x7f800000)|| /* y=0,or x not finite */
52 (hy
>0x7f800000)) /* or y is NaN */
54 if(hx
<hy
) return x
; /* |x|<|y| return x */
56 return Zero
[(u_int32_t
)sx
>>31]; /* |x|=|y| return x*0*/
58 /* determine ix = ilogb(x) */
59 if(hx
<0x00800000) { /* subnormal x */
60 for (ix
= -126,i
=(hx
<<8); i
>0; i
<<=1) ix
-=1;
61 } else ix
= (hx
>>23)-127;
63 /* determine iy = ilogb(y) */
64 if(hy
<0x00800000) { /* subnormal y */
65 for (iy
= -126,i
=(hy
<<8); i
>=0; i
<<=1) iy
-=1;
66 } else iy
= (hy
>>23)-127;
68 /* set up {hx,lx}, {hy,ly} and align y to x */
70 hx
= 0x00800000|(0x007fffff&hx
);
71 else { /* subnormal x, shift x to normal */
76 hy
= 0x00800000|(0x007fffff&hy
);
77 else { /* subnormal y, shift y to normal */
88 if(hz
==0) /* return sign(x)*0 */
89 return Zero
[(u_int32_t
)sx
>>31];
96 /* convert back to floating value and restore the sign */
97 if(hx
==0) /* return sign(x)*0 */
98 return Zero
[(u_int32_t
)sx
>>31];
99 while(hx
<0x00800000) { /* normalize x */
103 if(iy
>= -126) { /* normalize output */
104 hx
= ((hx
-0x00800000)|((iy
+127)<<23));
105 SET_FLOAT_WORD(x
,hx
|sx
);
106 } else { /* subnormal output */
109 SET_FLOAT_WORD(x
,hx
|sx
);
110 x
*= one
; /* create necessary signal */
112 return x
; /* exact output */