2 /* @(#)e_fmod.c 5.1 93/09/24 */
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunPro, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
11 * ====================================================
16 * Return x mod y in exact arithmetic
17 * Method: shift and subtract
22 #ifndef _DOUBLE_IS_32BITS
25 static const double one
= 1.0, Zero
[] = {0.0, -0.0,};
27 static double one
= 1.0, Zero
[] = {0.0, -0.0,};
31 double __ieee754_fmod(double x
, double y
)
33 double __ieee754_fmod(x
,y
)
37 int32_t n
,hx
,hy
,hz
,ix
,iy
,sx
,i
;
40 EXTRACT_WORDS(hx
,lx
,x
);
41 EXTRACT_WORDS(hy
,ly
,y
);
42 sx
= hx
&0x80000000; /* sign of x */
44 hy
&= 0x7fffffff; /* |y| */
46 /* purge off exception values */
47 if((hy
|ly
)==0||(hx
>=0x7ff00000)|| /* y=0,or x not finite */
48 ((hy
|((ly
|-ly
)>>31))>0x7ff00000)) /* or y is NaN */
51 if((hx
<hy
)||(lx
<ly
)) return x
; /* |x|<|y| return x */
53 return Zero
[(uint32_t)sx
>>31]; /* |x|=|y| return x*0*/
56 /* determine ix = ilogb(x) */
57 if(hx
<0x00100000) { /* subnormal x */
59 for (ix
= -1043, i
=lx
; i
>0; i
<<=1) ix
-=1;
61 for (ix
= -1022,i
=(hx
<<11); i
>0; i
<<=1) ix
-=1;
63 } else ix
= (hx
>>20)-1023;
65 /* determine iy = ilogb(y) */
66 if(hy
<0x00100000) { /* subnormal y */
68 for (iy
= -1043, i
=ly
; i
>0; i
<<=1) iy
-=1;
70 for (iy
= -1022,i
=(hy
<<11); i
>0; i
<<=1) iy
-=1;
72 } else iy
= (hy
>>20)-1023;
74 /* set up {hx,lx}, {hy,ly} and align y to x */
76 hx
= 0x00100000|(0x000fffff&hx
);
77 else { /* subnormal x, shift x to normal */
80 hx
= (hx
<<n
)|(lx
>>(32-n
));
88 hy
= 0x00100000|(0x000fffff&hy
);
89 else { /* subnormal y, shift y to normal */
92 hy
= (hy
<<n
)|(ly
>>(32-n
));
103 hz
=hx
-hy
;lz
=lx
-ly
; if(lx
<ly
) hz
-= 1;
104 if(hz
<0){hx
= hx
+hx
+(lx
>>31); lx
= lx
+lx
;}
106 if((hz
|lz
)==0) /* return sign(x)*0 */
107 return Zero
[(uint32_t)sx
>>31];
108 hx
= hz
+hz
+(lz
>>31); lx
= lz
+lz
;
111 hz
=hx
-hy
;lz
=lx
-ly
; if(lx
<ly
) hz
-= 1;
112 if(hz
>=0) {hx
=hz
;lx
=lz
;}
114 /* convert back to floating value and restore the sign */
115 if((hx
|lx
)==0) /* return sign(x)*0 */
116 return Zero
[(uint32_t)sx
>>31];
117 while(hx
<0x00100000) { /* normalize x */
118 hx
= hx
+hx
+(lx
>>31); lx
= lx
+lx
;
121 if(iy
>= -1022) { /* normalize output */
122 hx
= ((hx
-0x00100000)|((iy
+1023)<<20));
123 INSERT_WORDS(x
,hx
|sx
,lx
);
124 } else { /* subnormal output */
127 lx
= (lx
>>n
)|((uint32_t)hx
<<(32-n
));
130 lx
= (hx
<<(32-n
))|(lx
>>n
); hx
= sx
;
132 lx
= hx
>>(n
-32); hx
= sx
;
134 INSERT_WORDS(x
,hx
|sx
,lx
);
135 x
*= one
; /* create necessary signal */
137 return x
; /* exact output */
140 #endif /* defined(_DOUBLE_IS_32BITS) */