s_nextafterf.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* s_nextafterf.c -- float version of s_nextafter.c.
  2. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
  3. */
  4. /*
  5. * ====================================================
  6. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  7. *
  8. * Developed at SunPro, a Sun Microsystems, Inc. business.
  9. * Permission to use, copy, modify, and distribute this
  10. * software is freely granted, provided that this notice
  11. * is preserved.
  12. * ====================================================
  13. */
  14. #include "cdefs-compat.h"
  15. //__FBSDID("$FreeBSD: src/lib/msun/src/s_nextafterf.c,v 1.11 2008/02/22 02:30:35 das Exp $");
  16. #include <openlibm_math.h>
  17. #include "math_private.h"
  18. OLM_DLLEXPORT float
  19. nextafterf(float x, float y)
  20. {
  21. volatile float t;
  22. int32_t hx,hy,ix,iy;
  23. GET_FLOAT_WORD(hx,x);
  24. GET_FLOAT_WORD(hy,y);
  25. ix = hx&0x7fffffff; /* |x| */
  26. iy = hy&0x7fffffff; /* |y| */
  27. if((ix>0x7f800000) || /* x is nan */
  28. (iy>0x7f800000)) /* y is nan */
  29. return x+y;
  30. if(x==y) return y; /* x=y, return y */
  31. if(ix==0) { /* x == 0 */
  32. SET_FLOAT_WORD(x,(hy&0x80000000)|1);/* return +-minsubnormal */
  33. t = x*x;
  34. if(t==x) return t; else return x; /* raise underflow flag */
  35. }
  36. if(hx>=0) { /* x > 0 */
  37. if(hx>hy) { /* x > y, x -= ulp */
  38. hx -= 1;
  39. } else { /* x < y, x += ulp */
  40. hx += 1;
  41. }
  42. } else { /* x < 0 */
  43. if(hy>=0||hx>hy){ /* x < y, x -= ulp */
  44. hx -= 1;
  45. } else { /* x > y, x += ulp */
  46. hx += 1;
  47. }
  48. }
  49. hy = hx&0x7f800000;
  50. if(hy>=0x7f800000) return x+x; /* overflow */
  51. if(hy<0x00800000) { /* underflow */
  52. t = x*x;
  53. if(t!=x) { /* raise underflow flag */
  54. SET_FLOAT_WORD(y,hx);
  55. return y;
  56. }
  57. }
  58. SET_FLOAT_WORD(x,hx);
  59. return x;
  60. }