Update miscellaneous files from upstream sources.
[glibc.git] / sysdeps / ieee754 / ldbl-128 / s_nexttoward.c
blob04d094e44bb281ce01a13a39f43fc54ea64e9153
1 /* s_nexttoward.c
2 * Conversion from s_nextafter.c by Ulrich Drepper, Cygnus Support,
3 * drepper@cygnus.com and Jakub Jelinek, jj@ultra.linux.cz.
4 */
6 /*
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
13 * is preserved.
14 * ====================================================
17 #if defined(LIBM_SCCS) && !defined(lint)
18 static char rcsid[] = "$NetBSD: $";
19 #endif
21 /* IEEE functions
22 * nexttoward(x,y)
23 * return the next machine floating-point number of x in the
24 * direction toward y.
25 * Special cases:
28 #include <errno.h>
29 #include <math.h>
30 #include <math_private.h>
31 #include <float.h>
33 double __nexttoward(double x, long double y)
35 int32_t hx,ix;
36 int64_t hy,iy;
37 uint32_t lx;
38 uint64_t ly;
40 EXTRACT_WORDS(hx,lx,x);
41 GET_LDOUBLE_WORDS64(hy,ly,y);
42 ix = hx&0x7fffffff; /* |x| */
43 iy = hy&0x7fffffffffffffffLL; /* |y| */
45 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
46 ((iy>=0x7fff000000000000LL)&&((iy-0x7fff000000000000LL)|ly)!=0))
47 /* y is nan */
48 return x+y;
49 if((long double) x==y) return y; /* x=y, return y */
50 if((ix|lx)==0) { /* x == 0 */
51 double u;
52 INSERT_WORDS(x,(uint32_t)((hy>>32)&0x80000000),1);/* return +-minsub */
53 u = math_opt_barrier (x);
54 u = u * u;
55 math_force_eval (u); /* raise underflow flag */
56 return x;
58 if(hx>=0) { /* x > 0 */
59 if (x > y) { /* x -= ulp */
60 if(lx==0) hx -= 1;
61 lx -= 1;
62 } else { /* x < y, x += ulp */
63 lx += 1;
64 if(lx==0) hx += 1;
66 } else { /* x < 0 */
67 if (x < y) { /* x -= ulp */
68 if(lx==0) hx -= 1;
69 lx -= 1;
70 } else { /* x > y, x += ulp */
71 lx += 1;
72 if(lx==0) hx += 1;
75 hy = hx&0x7ff00000;
76 if(hy>=0x7ff00000) {
77 double u = x+x; /* overflow */
78 math_force_eval (u);
79 __set_errno (ERANGE);
81 if(hy<0x00100000) {
82 double u = x*x; /* underflow */
83 math_force_eval (u); /* raise underflow flag */
84 __set_errno (ERANGE);
86 INSERT_WORDS(x,hx,lx);
87 return x;
89 weak_alias (__nexttoward, nexttoward)