e_atan2.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. #include "SDL_internal.h"
  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. /* __ieee754_atan2(y,x)
  13. * Method :
  14. * 1. Reduce y to positive by atan2(y,x)=-atan2(-y,x).
  15. * 2. Reduce x to positive by (if x and y are unexceptional):
  16. * ARG (x+iy) = arctan(y/x) ... if x > 0,
  17. * ARG (x+iy) = pi - arctan[y/(-x)] ... if x < 0,
  18. *
  19. * Special cases:
  20. *
  21. * ATAN2((anything), NaN ) is NaN;
  22. * ATAN2(NAN , (anything) ) is NaN;
  23. * ATAN2(+-0, +(anything but NaN)) is +-0 ;
  24. * ATAN2(+-0, -(anything but NaN)) is +-pi ;
  25. * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
  26. * ATAN2(+-(anything but INF and NaN), +INF) is +-0 ;
  27. * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
  28. * ATAN2(+-INF,+INF ) is +-pi/4 ;
  29. * ATAN2(+-INF,-INF ) is +-3pi/4;
  30. * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2;
  31. *
  32. * Constants:
  33. * The hexadecimal values are the intended ones for the following
  34. * constants. The decimal values may be used, provided that the
  35. * compiler will convert from decimal to binary accurately enough
  36. * to produce the hexadecimal values shown.
  37. */
  38. #include "math_libm.h"
  39. #include "math_private.h"
  40. static const double
  41. tiny = 1.0e-300,
  42. zero = 0.0,
  43. pi_o_4 = 7.8539816339744827900E-01, /* 0x3FE921FB, 0x54442D18 */
  44. pi_o_2 = 1.5707963267948965580E+00, /* 0x3FF921FB, 0x54442D18 */
  45. pi = 3.1415926535897931160E+00, /* 0x400921FB, 0x54442D18 */
  46. pi_lo = 1.2246467991473531772E-16; /* 0x3CA1A626, 0x33145C07 */
  47. double attribute_hidden __ieee754_atan2(double y, double x)
  48. {
  49. double z;
  50. int32_t k,m,hx,hy,ix,iy;
  51. u_int32_t lx,ly;
  52. EXTRACT_WORDS(hx,lx,x);
  53. ix = hx&0x7fffffff;
  54. EXTRACT_WORDS(hy,ly,y);
  55. iy = hy&0x7fffffff;
  56. if(((ix|((lx|-(int32_t)lx)>>31))>0x7ff00000)||
  57. ((iy|((ly|-(int32_t)ly)>>31))>0x7ff00000)) /* x or y is NaN */
  58. return x+y;
  59. if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */
  60. m = ((hy>>31)&1)|((hx>>30)&2); /* 2*sign(x)+sign(y) */
  61. /* when y = 0 */
  62. if((iy|ly)==0) {
  63. switch(m) {
  64. case 0:
  65. case 1: return y; /* atan(+-0,+anything)=+-0 */
  66. case 2: return pi+tiny;/* atan(+0,-anything) = pi */
  67. case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */
  68. }
  69. }
  70. /* when x = 0 */
  71. if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
  72. /* when x is INF */
  73. if(ix==0x7ff00000) {
  74. if(iy==0x7ff00000) {
  75. switch(m) {
  76. case 0: return pi_o_4+tiny;/* atan(+INF,+INF) */
  77. case 1: return -pi_o_4-tiny;/* atan(-INF,+INF) */
  78. case 2: return 3.0*pi_o_4+tiny;/*atan(+INF,-INF)*/
  79. case 3: return -3.0*pi_o_4-tiny;/*atan(-INF,-INF)*/
  80. }
  81. } else {
  82. switch(m) {
  83. case 0: return zero ; /* atan(+...,+INF) */
  84. case 1: return -zero ; /* atan(-...,+INF) */
  85. case 2: return pi+tiny ; /* atan(+...,-INF) */
  86. case 3: return -pi-tiny ; /* atan(-...,-INF) */
  87. }
  88. }
  89. }
  90. /* when y is INF */
  91. if(iy==0x7ff00000) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
  92. /* compute y/x */
  93. k = (iy-ix)>>20;
  94. if(k > 60) z=pi_o_2+0.5*pi_lo; /* |y/x| > 2**60 */
  95. else if(hx<0&&k<-60) z=0.0; /* |y|/x < -2**60 */
  96. else z=atan(fabs(y/x)); /* safe to do y/x */
  97. switch (m) {
  98. case 0: return z ; /* atan(+,+) */
  99. case 1: {
  100. u_int32_t zh;
  101. GET_HIGH_WORD(zh,z);
  102. SET_HIGH_WORD(z,zh ^ 0x80000000);
  103. }
  104. return z ; /* atan(-,+) */
  105. case 2: return pi-(z-pi_lo);/* atan(+,-) */
  106. default: /* case 3 */
  107. return (z-pi_lo)-pi;/* atan(-,-) */
  108. }
  109. }
  110. /*
  111. * wrapper atan2(y,x)
  112. */
  113. #ifndef _IEEE_LIBM
  114. double atan2(double y, double x)
  115. {
  116. double z = __ieee754_atan2(y, x);
  117. if (_LIB_VERSION == _IEEE_ || isnan(x) || isnan(y))
  118. return z;
  119. if (x == 0.0 && y == 0.0)
  120. return __kernel_standard(y,x,3); /* atan2(+-0,+-0) */
  121. return z;
  122. }
  123. #else
  124. strong_alias(__ieee754_atan2, atan2)
  125. #endif
  126. libm_hidden_def(atan2)