sincosf_poly.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* Used by sinf, cosf and sincosf functions. X86-64 version.
  2. Copyright (C) 2018-2019 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. typedef double v2df_t __attribute__ ((vector_size (2 * sizeof (double))));
  16. #ifdef __SSE2_MATH__
  17. typedef float v4sf_t __attribute__ ((vector_size (4 * sizeof (float))));
  18. static inline void
  19. v2df_to_sf (v2df_t v2df, float *f0p, float *f1p)
  20. {
  21. v4sf_t v4sf = __builtin_ia32_cvtpd2ps (v2df);
  22. *f0p = v4sf[0];
  23. *f1p = v4sf[1];
  24. }
  25. #else
  26. static inline void
  27. v2df_to_sf (v2df_t v2df, float *f0p, float *f1p)
  28. {
  29. *f0p = (float) v2df[0];
  30. *f1p = (float) v2df[1];
  31. }
  32. #endif
  33. /* The constants and polynomials for sine and cosine. */
  34. typedef struct
  35. {
  36. double sign[4]; /* Sign of sine in quadrants 0..3. */
  37. double hpi_inv; /* 2 / PI ( * 2^24 if !TOINT_INTRINSICS). */
  38. double hpi; /* PI / 2. */
  39. /* Cosine polynomial: c0, c1, c2, c3, c4.
  40. Sine polynomial: s1, s2, s3. */
  41. double c0, c1;
  42. v2df_t s1c2, s2c3, s3c4;
  43. } sincos_t;
  44. /* Compute the sine and cosine of inputs X and X2 (X squared), using the
  45. polynomial P and store the results in SINP and COSP. N is the quadrant,
  46. if odd the cosine and sine polynomials are swapped. */
  47. static inline void
  48. sincosf_poly (double x, double x2, const sincos_t *p, int n, float *sinp,
  49. float *cosp)
  50. {
  51. v2df_t vx2x2 = { x2, x2 };
  52. v2df_t vxx2 = { x, x2 };
  53. v2df_t vx3x4, vs1c2;
  54. vx3x4 = vx2x2 * vxx2;
  55. vs1c2 = p->s2c3 + vx2x2 * p->s3c4;
  56. /* Swap sin/cos result based on quadrant. */
  57. if (n & 1)
  58. {
  59. float *tmp = cosp;
  60. cosp = sinp;
  61. sinp = tmp;
  62. }
  63. double c1 = p->c0 + x2 * p->c1;
  64. v2df_t vxc1 = { x, c1 };
  65. v2df_t vx5x6 = vx3x4 * vx2x2;
  66. v2df_t vsincos = vxc1 + vx3x4 * p->s1c2;
  67. vsincos = vsincos + vx5x6 * vs1c2;
  68. v2df_to_sf (vsincos, sinp, cosp);
  69. }
  70. /* Return the sine of inputs X and X2 (X squared) using the polynomial P.
  71. N is the quadrant, and if odd the cosine polynomial is used. */
  72. static inline float
  73. sinf_poly (double x, double x2, const sincos_t *p, int n)
  74. {
  75. double x3, x4, x6, x7, s, c, c1, c2, s1;
  76. if ((n & 1) == 0)
  77. {
  78. x3 = x * x2;
  79. s1 = p->s2c3[0] + x2 * p->s3c4[0];
  80. x7 = x3 * x2;
  81. s = x + x3 * p->s1c2[0];
  82. return s + x7 * s1;
  83. }
  84. else
  85. {
  86. x4 = x2 * x2;
  87. c2 = p->s2c3[1] + x2 * p->s3c4[1];
  88. c1 = p->c0 + x2 * p->c1;
  89. x6 = x4 * x2;
  90. c = c1 + x4 * p->s1c2[1];
  91. return c + x6 * c2;
  92. }
  93. }