1 /* @(#)e_fmod.c 5.1 93/09/24 */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
13 #include <sys/cdefs.h>
14 #if defined(LIBM_SCCS) && !defined(lint)
15 __RCSID("$NetBSD: e_fmod.c,v 1.12 2013/11/19 14:02:59 joerg Exp $");
20 * Return x mod y in exact arithmetic
21 * Method: shift and subtract
25 #include "math_private.h"
27 static const double one
= 1.0, Zero
[] = {0.0, -0.0,};
29 #ifndef __HAVE_LONG_DOUBLE
30 __strong_alias(__ieee754_fmodl
, __ieee754_fmod
)
34 __ieee754_fmod(double x
, double y
)
36 int32_t n
,hx
,hy
,hz
,ix
,iy
,sx
,i
;
39 EXTRACT_WORDS(hx
,lx
,x
);
40 EXTRACT_WORDS(hy
,ly
,y
);
41 sx
= hx
&0x80000000; /* sign of x */
43 hy
&= 0x7fffffff; /* |y| */
45 /* purge off exception values */
46 if((hy
|ly
)==0||(hx
>=0x7ff00000)|| /* y=0,or x not finite */
47 ((hy
|((ly
|-ly
)>>31))>0x7ff00000)) /* or y is NaN */
50 if((hx
<hy
)||(lx
<ly
)) return x
; /* |x|<|y| return x */
52 return Zero
[(u_int32_t
)sx
>>31]; /* |x|=|y| return x*0*/
55 /* determine ix = ilogb(x) */
56 if(hx
<0x00100000) { /* subnormal x */
58 for (ix
= -1043, i
=lx
; i
>0; i
<<=1) ix
-=1;
60 for (ix
= -1022,i
=(hx
<<11); i
>0; i
<<=1) ix
-=1;
62 } else ix
= (hx
>>20)-1023;
64 /* determine iy = ilogb(y) */
65 if(hy
<0x00100000) { /* subnormal y */
67 for (iy
= -1043, i
=ly
; i
>0; i
<<=1) iy
-=1;
69 for (iy
= -1022,i
=(hy
<<11); i
>0; i
<<=1) iy
-=1;
71 } else iy
= (hy
>>20)-1023;
73 /* set up {hx,lx}, {hy,ly} and align y to x */
75 hx
= 0x00100000|(0x000fffff&hx
);
76 else { /* subnormal x, shift x to normal */
79 hx
= (hx
<<n
)|(lx
>>(32-n
));
87 hy
= 0x00100000|(0x000fffff&hy
);
88 else { /* subnormal y, shift y to normal */
91 hy
= (hy
<<n
)|(ly
>>(32-n
));
102 hz
=hx
-hy
;lz
=lx
-ly
; if(lx
<ly
) hz
-= 1;
103 if(hz
<0){hx
= hx
+hx
+(lx
>>31); lx
= lx
+lx
;}
105 if((hz
|lz
)==0) /* return sign(x)*0 */
106 return Zero
[(u_int32_t
)sx
>>31];
107 hx
= hz
+hz
+(lz
>>31); lx
= lz
+lz
;
110 hz
=hx
-hy
;lz
=lx
-ly
; if(lx
<ly
) hz
-= 1;
111 if(hz
>=0) {hx
=hz
;lx
=lz
;}
113 /* convert back to floating value and restore the sign */
114 if((hx
|lx
)==0) /* return sign(x)*0 */
115 return Zero
[(u_int32_t
)sx
>>31];
116 while(hx
<0x00100000) { /* normalize x */
117 hx
= hx
+hx
+(lx
>>31); lx
= lx
+lx
;
120 if(iy
>= -1022) { /* normalize output */
121 hx
= ((hx
-0x00100000)|((iy
+1023)<<20));
122 INSERT_WORDS(x
,hx
|sx
,lx
);
123 } else { /* subnormal output */
126 lx
= (lx
>>n
)|((u_int32_t
)hx
<<(32-n
));
129 lx
= (hx
<<(32-n
))|(lx
>>n
); hx
= sx
;
131 lx
= hx
>>(n
-32); hx
= sx
;
133 INSERT_WORDS(x
,hx
|sx
,lx
);
134 x
*= one
; /* create necessary signal */
136 return x
; /* exact output */