atanf.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* origin: FreeBSD /usr/src/lib/msun/src/s_atanf.c */
  2. /*
  3. * Conversion to float by Ian Lance Taylor, Cygnus Support, [email protected].
  4. */
  5. /*
  6. * ====================================================
  7. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  8. *
  9. * Developed at SunPro, a Sun Microsystems, Inc. business.
  10. * Permission to use, copy, modify, and distribute this
  11. * software is freely granted, provided that this notice
  12. * is preserved.
  13. * ====================================================
  14. */
  15. #include "libm.h"
  16. static const float atanhi[] = {
  17. 4.6364760399e-01, /* atan(0.5)hi 0x3eed6338 */
  18. 7.8539812565e-01, /* atan(1.0)hi 0x3f490fda */
  19. 9.8279368877e-01, /* atan(1.5)hi 0x3f7b985e */
  20. 1.5707962513e+00, /* atan(inf)hi 0x3fc90fda */
  21. };
  22. static const float atanlo[] = {
  23. 5.0121582440e-09, /* atan(0.5)lo 0x31ac3769 */
  24. 3.7748947079e-08, /* atan(1.0)lo 0x33222168 */
  25. 3.4473217170e-08, /* atan(1.5)lo 0x33140fb4 */
  26. 7.5497894159e-08, /* atan(inf)lo 0x33a22168 */
  27. };
  28. static const float aT[] = {
  29. 3.3333328366e-01,
  30. -1.9999158382e-01,
  31. 1.4253635705e-01,
  32. -1.0648017377e-01,
  33. 6.1687607318e-02,
  34. };
  35. float atanf(float x)
  36. {
  37. float w,s1,s2,z;
  38. uint32_t ix,sign;
  39. int id;
  40. GET_FLOAT_WORD(ix, x);
  41. sign = ix>>31;
  42. ix &= 0x7fffffff;
  43. if (ix >= 0x4c800000) { /* if |x| >= 2**26 */
  44. if (isnan(x))
  45. return x;
  46. z = atanhi[3] + 0x1p-120f;
  47. return sign ? -z : z;
  48. }
  49. if (ix < 0x3ee00000) { /* |x| < 0.4375 */
  50. if (ix < 0x39800000) { /* |x| < 2**-12 */
  51. /* raise inexact if x!=0 */
  52. FORCE_EVAL(x + 0x1p120f);
  53. return x;
  54. }
  55. id = -1;
  56. } else {
  57. x = fabsf(x);
  58. if (ix < 0x3f980000) { /* |x| < 1.1875 */
  59. if (ix < 0x3f300000) { /* 7/16 <= |x| < 11/16 */
  60. id = 0;
  61. x = (2.0f*x - 1.0f)/(2.0f + x);
  62. } else { /* 11/16 <= |x| < 19/16 */
  63. id = 1;
  64. x = (x - 1.0f)/(x + 1.0f);
  65. }
  66. } else {
  67. if (ix < 0x401c0000) { /* |x| < 2.4375 */
  68. id = 2;
  69. x = (x - 1.5f)/(1.0f + 1.5f*x);
  70. } else { /* 2.4375 <= |x| < 2**26 */
  71. id = 3;
  72. x = -1.0f/x;
  73. }
  74. }
  75. }
  76. /* end of argument reduction */
  77. z = x*x;
  78. w = z*z;
  79. /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
  80. s1 = z*(aT[0]+w*(aT[2]+w*aT[4]));
  81. s2 = w*(aT[1]+w*aT[3]);
  82. if (id < 0)
  83. return x - x*(s1+s2);
  84. z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
  85. return sign ? -z : z;
  86. }