s_sincosf.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /* s_sincosf.c -- float version of s_sincos.c
  2. *
  3. * Copyright (C) 2013 Elliot Saba
  4. * Developed at the University of Washington
  5. *
  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 "cdefs-compat.h"
  12. #include <float.h>
  13. #include <openlibm_math.h>
  14. //#define INLINE_KERNEL_COSDF
  15. //#define INLINE_KERNEL_SINDF
  16. //#define INLINE_REM_PIO2F
  17. #include "math_private.h"
  18. //#include "e_rem_pio2f.c"
  19. //#include "k_cosf.c"
  20. //#include "k_sinf.c"
  21. /* Constants used in shortcircuits in sincosf */
  22. static const double
  23. sc1pio2 = 1*M_PI_2, /* 0x3FF921FB, 0x54442D18 */
  24. sc2pio2 = 2*M_PI_2, /* 0x400921FB, 0x54442D18 */
  25. sc3pio2 = 3*M_PI_2, /* 0x4012D97C, 0x7F3321D2 */
  26. sc4pio2 = 4*M_PI_2, /* 0x401921FB, 0x54442D18 */
  27. /* Constants used in polynomial approximation of sin/cos */
  28. one = 1.0,
  29. S1 = -0x15555554cbac77.0p-55, /* -0.166666666416265235595 */
  30. S2 = 0x111110896efbb2.0p-59, /* 0.0083333293858894631756 */
  31. S3 = -0x1a00f9e2cae774.0p-65, /* -0.000198393348360966317347 */
  32. S4 = 0x16cd878c3b46a7.0p-71, /* 0.0000027183114939898219064 */
  33. C0 = -0x1ffffffd0c5e81.0p-54, /* -0.499999997251031003120 */
  34. C1 = 0x155553e1053a42.0p-57, /* 0.0416666233237390631894 */
  35. C2 = -0x16c087e80f1e27.0p-62, /* -0.00138867637746099294692 */
  36. C3 = 0x199342e0ee5069.0p-68; /* 0.0000243904487962774090654 */
  37. static void
  38. __kernel_sincosdf( double x, float * s, float * c )
  39. {
  40. double r, w, z, v;
  41. z = x*x;
  42. w = z*z;
  43. /* cos-specific computation; equivalent to calling
  44. __kernel_cos(x,y) and storing in k_c*/
  45. r = C2+z*C3;
  46. double k_c = ((one+z*C0) + w*C1) + (w*z)*r;
  47. /* sin-specific computation; equivalent to calling
  48. __kernel_sin(x,y,1) and storing in k_s*/
  49. r = S3+z*S4;
  50. v = z*x;
  51. double k_s = (x + v*(S1+z*S2)) + v*w*r;
  52. *c = k_c;
  53. *s = k_s;
  54. }
  55. OLM_DLLEXPORT void
  56. sincosf(float x, float * s, float * c) {
  57. // Worst approximation of sin and cos NA
  58. *s = x;
  59. *c = x;
  60. double y;
  61. float k_c, k_s;
  62. int32_t n, hx, ix;
  63. GET_FLOAT_WORD(hx,x);
  64. ix = hx & 0x7fffffff;
  65. if(ix <= 0x3f490fda) { /* |x| ~<= pi/4 */
  66. if(ix<0x39800000) { /* |x| < 2**-12 */
  67. /* Check if x is exactly zero */
  68. if(((int)x)==0) {
  69. *s = x;
  70. *c = 1.0f;
  71. return;
  72. }
  73. }
  74. __kernel_sincosdf(x, s, c);
  75. return;
  76. }
  77. /* |x| ~<= 5*pi/4 */
  78. if (ix<=0x407b53d1) {
  79. /* |x| ~<= 3pi/4 */
  80. if(ix<=0x4016cbe3) {
  81. if(hx>0) {
  82. __kernel_sincosdf( sc1pio2 - x, c, s );
  83. }
  84. else {
  85. __kernel_sincosdf( sc1pio2 + x, c, &k_s );
  86. *s = -k_s;
  87. }
  88. } else {
  89. if(hx>0) {
  90. __kernel_sincosdf( sc2pio2 - x, s, &k_c );
  91. *c = -k_c;
  92. } else {
  93. __kernel_sincosdf( -sc2pio2 - x, s, &k_c );
  94. *c = -k_c;
  95. }
  96. }
  97. return;
  98. }
  99. /* |x| ~<= 9*pi/4 */
  100. if(ix<=0x40e231d5) {
  101. /* |x| ~> 7*pi/4 */
  102. if(ix<=0x40afeddf) {
  103. if(hx>0) {
  104. __kernel_sincosdf( x - sc3pio2, c, &k_s );
  105. *s = -k_s;
  106. } else {
  107. __kernel_sincosdf( x + sc3pio2, &k_c, s );
  108. *c = -k_c;
  109. }
  110. }
  111. else {
  112. if( hx > 0 ) {
  113. __kernel_sincosdf( x - sc4pio2, s, c );
  114. } else {
  115. __kernel_sincosdf( x + sc4pio2, s, c );
  116. }
  117. }
  118. return;
  119. }
  120. /* cos(Inf or NaN) is NaN */
  121. else if(ix>=0x7f800000) {
  122. *c = *s = x-x;
  123. } else {
  124. /* general argument reduction needed */
  125. n = __ieee754_rem_pio2f(x,&y);
  126. switch(n&3) {
  127. case 0:
  128. __kernel_sincosdf( y, s, c );
  129. break;
  130. case 1:
  131. __kernel_sincosdf( -y, c, s );
  132. break;
  133. case 2:
  134. __kernel_sincosdf( -y, s, &k_c);
  135. *c = -k_c;
  136. break;
  137. default:
  138. __kernel_sincosdf( -y, &k_c, &k_s );
  139. *c = -k_c;
  140. *s = -k_s;
  141. break;
  142. }
  143. }
  144. }