s_cbrt.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * ====================================================
  3. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  4. *
  5. * Developed at SunPro, a Sun Microsystems, Inc. business.
  6. * Permission to use, copy, modify, and distribute this
  7. * software is freely granted, provided that this notice
  8. * is preserved.
  9. * ====================================================
  10. */
  11. #include "math.h"
  12. #include "math_private.h"
  13. /* cbrt(x)
  14. * Return cube root of x
  15. */
  16. static const u_int32_t
  17. B1 = 715094163, /* B1 = (682-0.03306235651)*2**20 */
  18. B2 = 696219795; /* B2 = (664-0.03306235651)*2**20 */
  19. static const double
  20. C = 5.42857142857142815906e-01, /* 19/35 = 0x3FE15F15, 0xF15F15F1 */
  21. D = -7.05306122448979611050e-01, /* -864/1225 = 0xBFE691DE, 0x2532C834 */
  22. E = 1.41428571428571436819e+00, /* 99/70 = 0x3FF6A0EA, 0x0EA0EA0F */
  23. F = 1.60714285714285720630e+00, /* 45/28 = 0x3FF9B6DB, 0x6DB6DB6E */
  24. G = 3.57142857142857150787e-01; /* 5/14 = 0x3FD6DB6D, 0xB6DB6DB7 */
  25. double cbrt(double x)
  26. {
  27. int32_t hx;
  28. double r,s,t=0.0,w;
  29. u_int32_t sign;
  30. u_int32_t high,low;
  31. GET_HIGH_WORD(hx,x);
  32. sign=hx&0x80000000; /* sign= sign(x) */
  33. hx ^=sign;
  34. if(hx>=0x7ff00000) return(x+x); /* cbrt(NaN,INF) is itself */
  35. GET_LOW_WORD(low,x);
  36. if((hx|low)==0)
  37. return(x); /* cbrt(0) is itself */
  38. SET_HIGH_WORD(x,hx); /* x <- |x| */
  39. /* rough cbrt to 5 bits */
  40. if(hx<0x00100000) /* subnormal number */
  41. {SET_HIGH_WORD(t,0x43500000); /* set t= 2**54 */
  42. t*=x; GET_HIGH_WORD(high,t); SET_HIGH_WORD(t,high/3+B2);
  43. }
  44. else
  45. SET_HIGH_WORD(t,hx/3+B1);
  46. /* new cbrt to 23 bits, may be implemented in single precision */
  47. r=t*t/x;
  48. s=C+r*t;
  49. t*=G+F/(s+E+D/s);
  50. /* chopped to 20 bits and make it larger than cbrt(x) */
  51. GET_HIGH_WORD(high,t);
  52. INSERT_WORDS(t,high+0x00000001,0);
  53. /* one step newton iteration to 53 bits with error less than 0.667 ulps */
  54. s=t*t; /* t*t is exact */
  55. r=x/s;
  56. w=t+t;
  57. r=(r-t)/(w+r); /* r-s is exact */
  58. t=t+t*r;
  59. /* retore the sign bit */
  60. GET_HIGH_WORD(high,t);
  61. SET_HIGH_WORD(t,high|sign);
  62. return(t);
  63. }
  64. libm_hidden_def(cbrt)