s_nextafter.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* @(#)s_nextafter.c 5.1 93/09/24 */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  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
  9. * is preserved.
  10. * ====================================================
  11. */
  12. #include "cdefs-compat.h"
  13. //__FBSDID("$FreeBSD: src/lib/msun/src/s_nextafter.c,v 1.12 2008/02/22 02:30:35 das Exp $");
  14. /* IEEE functions
  15. * nextafter(x,y)
  16. * return the next machine floating-point number of x in the
  17. * direction toward y.
  18. * Special cases:
  19. */
  20. #include <float.h>
  21. #include <openlibm_math.h>
  22. #include "math_private.h"
  23. OLM_DLLEXPORT double
  24. nextafter(double x, double y)
  25. {
  26. volatile double t;
  27. int32_t hx,hy,ix,iy;
  28. u_int32_t lx,ly;
  29. EXTRACT_WORDS(hx,lx,x);
  30. EXTRACT_WORDS(hy,ly,y);
  31. ix = hx&0x7fffffff; /* |x| */
  32. iy = hy&0x7fffffff; /* |y| */
  33. if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
  34. ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0)) /* y is nan */
  35. return x+y;
  36. if(x==y) return y; /* x=y, return y */
  37. if((ix|lx)==0) { /* x == 0 */
  38. INSERT_WORDS(x,hy&0x80000000,1); /* return +-minsubnormal */
  39. t = x*x;
  40. if(t==x) return t; else return x; /* raise underflow flag */
  41. }
  42. if(hx>=0) { /* x > 0 */
  43. if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
  44. if(lx==0) hx -= 1;
  45. lx -= 1;
  46. } else { /* x < y, x += ulp */
  47. lx += 1;
  48. if(lx==0) hx += 1;
  49. }
  50. } else { /* x < 0 */
  51. if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */
  52. if(lx==0) hx -= 1;
  53. lx -= 1;
  54. } else { /* x > y, x += ulp */
  55. lx += 1;
  56. if(lx==0) hx += 1;
  57. }
  58. }
  59. hy = hx&0x7ff00000;
  60. if(hy>=0x7ff00000) return x+x; /* overflow */
  61. if(hy<0x00100000) { /* underflow */
  62. t = x*x;
  63. if(t!=x) { /* raise underflow flag */
  64. INSERT_WORDS(y,hx,lx);
  65. return y;
  66. }
  67. }
  68. INSERT_WORDS(x,hx,lx);
  69. return x;
  70. }
  71. #if (LDBL_MANT_DIG == 53)
  72. __weak_reference(nextafter, nexttoward);
  73. __weak_reference(nextafter, nexttowardl);
  74. __weak_reference(nextafter, nextafterl);
  75. #endif