s_rint.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* @(#)s_rint.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. /*
  13. * rint(x)
  14. * Return x rounded to integral value according to the prevailing
  15. * rounding mode.
  16. * Method:
  17. * Using floating addition.
  18. * Exception:
  19. * Inexact flag raised if x not equal to rint(x).
  20. */
  21. #include <math.h>
  22. #include "math_private.h"
  23. /*
  24. * TWO23 is long double instead of double to avoid a bug in gcc. Without
  25. * this, gcc thinks that TWO23[sx]+x and w-TWO23[sx] already have double
  26. * precision and doesn't clip them to double precision when they are
  27. * assigned and returned.
  28. */
  29. static const long double
  30. TWO52[2]={
  31. 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
  32. -4.50359962737049600000e+15, /* 0xC3300000, 0x00000000 */
  33. };
  34. double
  35. rint(double x)
  36. {
  37. int32_t i0,j0,sx;
  38. uint32_t i,i1;
  39. double w,t;
  40. EXTRACT_WORDS(i0,i1,x);
  41. sx = (i0>>31)&1;
  42. j0 = ((i0>>20)&0x7ff)-0x3ff;
  43. if(j0<20) {
  44. if(j0<0) {
  45. if(((i0&0x7fffffff)|i1)==0) return x;
  46. i1 |= (i0&0x0fffff);
  47. i0 &= 0xfffe0000;
  48. i0 |= ((i1|-i1)>>12)&0x80000;
  49. SET_HIGH_WORD(x,i0);
  50. w = TWO52[sx]+x;
  51. t = w-TWO52[sx];
  52. GET_HIGH_WORD(i0,t);
  53. SET_HIGH_WORD(t,(i0&0x7fffffff)|(sx<<31));
  54. return t;
  55. } else {
  56. i = (0x000fffff)>>j0;
  57. if(((i0&i)|i1)==0) return x; /* x is integral */
  58. i>>=1;
  59. if(((i0&i)|i1)!=0) {
  60. if(j0==19) i1 = 0x40000000; else
  61. i0 = (i0&(~i))|((0x20000)>>j0);
  62. }
  63. }
  64. } else if (j0>51) {
  65. if(j0==0x400) return x+x; /* inf or NaN */
  66. else return x; /* x is integral */
  67. } else {
  68. i = ((uint32_t)(0xffffffff))>>(j0-20);
  69. if((i1&i)==0) return x; /* x is integral */
  70. i>>=1;
  71. if((i1&i)!=0) i1 = (i1&(~i))|((0x40000000)>>(j0-20));
  72. }
  73. INSERT_WORDS(x,i0,i1);
  74. w = TWO52[sx]+x;
  75. return w-TWO52[sx];
  76. }