Move all files into ports/ subdirectory in preparation for merge with glibc
[glibc.git] / ports / sysdeps / m68k / m680x0 / fpu / s_nextafterl.c
blob9a03b78631cccda17e5b3d3212b486bea49942de
1 /* s_nextafterl.c -- long double version of s_nextafter.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
4 * Fixed for m68k by Andreas Schwab <schwab@suse.de>.
5 */
7 /*
8 * ====================================================
9 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
11 * Developed at SunPro, a Sun Microsystems, Inc. business.
12 * Permission to use, copy, modify, and distribute this
13 * software is freely granted, provided that this notice
14 * is preserved.
15 * ====================================================
18 #if defined(LIBM_SCCS) && !defined(lint)
19 static char rcsid[] = "$NetBSD: $";
20 #endif
22 /* IEEE functions
23 * nextafterl(x,y)
24 * return the next machine floating-point number of x in the
25 * direction toward y.
26 * Special cases:
29 #include <math.h>
30 #include <math_private.h>
32 long double __nextafterl(long double x, long double y)
34 int32_t ix,iy,esx,esy;
35 u_int32_t hx,hy,lx,ly;
37 GET_LDOUBLE_WORDS(esx,hx,lx,x);
38 GET_LDOUBLE_WORDS(esy,hy,ly,y);
39 ix = esx&0x7fff; /* |x| */
40 iy = esy&0x7fff; /* |y| */
42 if(((ix==0x7fff)&&((hx&0x7fffffff)|lx)!=0) || /* x is nan */
43 ((iy==0x7fff)&&((hy&0x7fffffff)|ly)!=0)) /* y is nan */
44 return x+y;
45 if(x==y) return y; /* x=y, return y */
46 if((ix|hx|lx)==0) { /* x == 0 */
47 SET_LDOUBLE_WORDS(x,esy&0x8000,0,1);/* return +-minsubnormal */
48 y = x*x;
49 if(y==x) return y; else return x; /* raise underflow flag */
51 if(esx>=0) { /* x > 0 */
52 if(esx>esy||((esx==esy) && (hx>hy||((hx==hy)&&(lx>ly))))) {
53 /* x > y, x -= ulp */
54 if(lx==0) {
55 if (ix != 0 && hx == 0x80000000) hx = 0;
56 if (hx==0) esx -= 1;
57 hx -= 1;
59 lx -= 1;
60 } else { /* x < y, x += ulp */
61 lx += 1;
62 if(lx==0) {
63 hx += 1;
64 if (hx==0) {
65 hx = 0x80000000;
66 esx += 1;
70 } else { /* x < 0 */
71 if(esy>=0||esx>esy||((esx==esy) && (hx>hy||((hx==hy)&&(lx>ly))))){
72 /* x < y, x -= ulp */
73 if(lx==0) {
74 if (ix != 0 && hx == 0x80000000) hx = 0;
75 if (hx==0) esx -= 1;
76 hx -= 1;
78 lx -= 1;
79 } else { /* x > y, x += ulp */
80 lx += 1;
81 if(lx==0) {
82 hx += 1;
83 if (hx==0) {
84 hx = 0x80000000;
85 esx += 1;
90 esy = esx&0x7fff;
91 if(esy==0x7fff) return x+x; /* overflow */
92 if(esy==0 && (hx & 0x80000000) == 0) { /* underflow */
93 y = x*x;
94 if(y!=x) { /* raise underflow flag */
95 SET_LDOUBLE_WORDS(y,esx,hx,lx);
96 return y;
99 SET_LDOUBLE_WORDS(x,esx,hx,lx);
100 return x;
102 weak_alias (__nextafterl, nextafterl)
103 strong_alias (__nextafterl, __nexttowardl)
104 weak_alias (__nextafterl, nexttowardl)