You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
4.2KB

  1. /*
  2. * FFT/MDCT transform with 3DNow! optimizations
  3. * Copyright (c) 2006 Zuxy MENG Jie, Loren Merritt
  4. * Based on fft_sse.c copyright (c) 2002 Fabrice Bellard.
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "../dsputil.h"
  23. static const int p1m1[2] __attribute__((aligned(8))) =
  24. { 0, 1 << 31 };
  25. static const int m1p1[2] __attribute__((aligned(8))) =
  26. { 1 << 31, 0 };
  27. void ff_fft_calc_3dn(FFTContext *s, FFTComplex *z)
  28. {
  29. int ln = s->nbits;
  30. long i, j;
  31. long nblocks, nloops;
  32. FFTComplex *p, *cptr;
  33. asm volatile(
  34. /* FEMMS is not a must here but recommended by AMD */
  35. "femms \n\t"
  36. "movq %0, %%mm7 \n\t"
  37. ::"m"(*(s->inverse ? m1p1 : p1m1))
  38. );
  39. i = 8 << ln;
  40. asm volatile(
  41. "1: \n\t"
  42. "sub $32, %0 \n\t"
  43. "movq (%0,%1), %%mm0 \n\t"
  44. "movq 16(%0,%1), %%mm1 \n\t"
  45. "movq 8(%0,%1), %%mm2 \n\t"
  46. "movq 24(%0,%1), %%mm3 \n\t"
  47. "movq %%mm0, %%mm4 \n\t"
  48. "movq %%mm1, %%mm5 \n\t"
  49. "pfadd %%mm2, %%mm0 \n\t"
  50. "pfadd %%mm3, %%mm1 \n\t"
  51. "pfsub %%mm2, %%mm4 \n\t"
  52. "pfsub %%mm3, %%mm5 \n\t"
  53. "movq %%mm0, %%mm2 \n\t"
  54. "punpckldq %%mm5, %%mm6 \n\t"
  55. "punpckhdq %%mm6, %%mm5 \n\t"
  56. "movq %%mm4, %%mm3 \n\t"
  57. "pxor %%mm7, %%mm5 \n\t"
  58. "pfadd %%mm1, %%mm0 \n\t"
  59. "pfadd %%mm5, %%mm4 \n\t"
  60. "pfsub %%mm1, %%mm2 \n\t"
  61. "pfsub %%mm5, %%mm3 \n\t"
  62. "movq %%mm0, (%0,%1) \n\t"
  63. "movq %%mm4, 8(%0,%1) \n\t"
  64. "movq %%mm2, 16(%0,%1) \n\t"
  65. "movq %%mm3, 24(%0,%1) \n\t"
  66. "jg 1b \n\t"
  67. :"+r"(i)
  68. :"r"(z)
  69. );
  70. /* pass 2 .. ln-1 */
  71. nblocks = 1 << (ln-3);
  72. nloops = 1 << 2;
  73. cptr = s->exptab1;
  74. do {
  75. p = z;
  76. j = nblocks;
  77. do {
  78. i = nloops*8;
  79. asm volatile(
  80. "1: \n\t"
  81. "sub $16, %0 \n\t"
  82. "movq (%1,%0), %%mm0 \n\t"
  83. "movq 8(%1,%0), %%mm1 \n\t"
  84. "movq (%2,%0), %%mm2 \n\t"
  85. "movq 8(%2,%0), %%mm3 \n\t"
  86. "movq %%mm2, %%mm4 \n\t"
  87. "movq %%mm3, %%mm5 \n\t"
  88. "punpckldq %%mm2, %%mm2 \n\t"
  89. "punpckldq %%mm3, %%mm3 \n\t"
  90. "punpckhdq %%mm4, %%mm4 \n\t"
  91. "punpckhdq %%mm5, %%mm5 \n\t"
  92. "pfmul (%3,%0,2), %%mm2 \n\t" // cre*re cim*re
  93. "pfmul 8(%3,%0,2), %%mm3 \n\t"
  94. "pfmul 16(%3,%0,2), %%mm4 \n\t" // -cim*im cre*im
  95. "pfmul 24(%3,%0,2), %%mm5 \n\t"
  96. "pfadd %%mm2, %%mm4 \n\t" // cre*re-cim*im cim*re+cre*im
  97. "pfadd %%mm3, %%mm5 \n\t"
  98. "movq %%mm0, %%mm2 \n\t"
  99. "movq %%mm1, %%mm3 \n\t"
  100. "pfadd %%mm4, %%mm0 \n\t"
  101. "pfadd %%mm5, %%mm1 \n\t"
  102. "pfsub %%mm4, %%mm2 \n\t"
  103. "pfsub %%mm5, %%mm3 \n\t"
  104. "movq %%mm0, (%1,%0) \n\t"
  105. "movq %%mm1, 8(%1,%0) \n\t"
  106. "movq %%mm2, (%2,%0) \n\t"
  107. "movq %%mm3, 8(%2,%0) \n\t"
  108. "jg 1b \n\t"
  109. :"+r"(i)
  110. :"r"(p), "r"(p + nloops), "r"(cptr)
  111. );
  112. p += nloops*2;
  113. } while (--j);
  114. cptr += nloops*2;
  115. nblocks >>= 1;
  116. nloops <<= 1;
  117. } while (nblocks != 0);
  118. asm volatile("femms");
  119. }