s_nextafterl.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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_nextafterl.c,v 1.2 2008/02/22 02:30:36 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 "fpmath.h"
  23. #include "math_private.h"
  24. #if LDBL_MAX_EXP != 0x4000
  25. #error "Unsupported long double format"
  26. #endif
  27. OLM_DLLEXPORT long double
  28. nextafterl(long double x, long double y)
  29. {
  30. volatile long double t;
  31. union IEEEl2bits ux, uy;
  32. ux.e = x;
  33. uy.e = y;
  34. if ((ux.bits.exp == 0x7fff &&
  35. ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl) != 0) ||
  36. (uy.bits.exp == 0x7fff &&
  37. ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
  38. return x+y; /* x or y is nan */
  39. if(x==y) return y; /* x=y, return y */
  40. if(x==0.0) {
  41. ux.bits.manh = 0; /* return +-minsubnormal */
  42. ux.bits.manl = 1;
  43. ux.bits.sign = uy.bits.sign;
  44. t = ux.e*ux.e;
  45. if(t==ux.e) return t; else return ux.e; /* raise underflow flag */
  46. }
  47. if((x>0.0) ^ (x<y)) { /* x -= ulp */
  48. if(ux.bits.manl==0) {
  49. if ((ux.bits.manh&~LDBL_NBIT)==0)
  50. ux.bits.exp -= 1;
  51. ux.bits.manh = (ux.bits.manh - 1) | (ux.bits.manh & LDBL_NBIT);
  52. }
  53. ux.bits.manl -= 1;
  54. } else { /* x += ulp */
  55. ux.bits.manl += 1;
  56. if(ux.bits.manl==0) {
  57. ux.bits.manh = (ux.bits.manh + 1) | (ux.bits.manh & LDBL_NBIT);
  58. if ((ux.bits.manh&~LDBL_NBIT)==0)
  59. ux.bits.exp += 1;
  60. }
  61. }
  62. if(ux.bits.exp==0x7fff) return x+x; /* overflow */
  63. if(ux.bits.exp==0) { /* underflow */
  64. mask_nbit_l(ux);
  65. t = ux.e * ux.e;
  66. if(t!=ux.e) /* raise underflow flag */
  67. return ux.e;
  68. }
  69. return ux.e;
  70. }
  71. __strong_reference(nextafterl, nexttowardl);