fft_altivec.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * FFT/IFFT transforms
  3. * AltiVec-enabled
  4. * Copyright (c) 2003 Romain Dolbeau <romain@dolbeau.org>
  5. * Based on code Copyright (c) 2002 Fabrice Bellard
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include "libavcodec/dsputil.h"
  24. #include "gcc_fixes.h"
  25. #include "dsputil_ppc.h"
  26. #include "util_altivec.h"
  27. /**
  28. * Do a complex FFT with the parameters defined in ff_fft_init(). The
  29. * input data must be permuted before with s->revtab table. No
  30. * 1.0/sqrt(n) normalization is done.
  31. * AltiVec-enabled
  32. * This code assumes that the 'z' pointer is 16 bytes-aligned
  33. * It also assumes all FFTComplex are 8 bytes-aligned pair of float
  34. * The code is exactly the same as the SSE version, except
  35. * that successive MUL + ADD/SUB have been merged into
  36. * fused multiply-add ('vec_madd' in altivec)
  37. */
  38. void ff_fft_calc_altivec(FFTContext *s, FFTComplex *z)
  39. {
  40. POWERPC_PERF_DECLARE(altivec_fft_num, s->nbits >= 6);
  41. register const vector float vczero = (const vector float)vec_splat_u32(0.);
  42. int ln = s->nbits;
  43. int j, np, np2;
  44. int nblocks, nloops;
  45. register FFTComplex *p, *q;
  46. FFTComplex *cptr, *cptr1;
  47. int k;
  48. POWERPC_PERF_START_COUNT(altivec_fft_num, s->nbits >= 6);
  49. np = 1 << ln;
  50. {
  51. vector float *r, a, b, a1, c1, c2;
  52. r = (vector float *)&z[0];
  53. c1 = vcii(p,p,n,n);
  54. if (s->inverse) {
  55. c2 = vcii(p,p,n,p);
  56. } else {
  57. c2 = vcii(p,p,p,n);
  58. }
  59. j = (np >> 2);
  60. do {
  61. a = vec_ld(0, r);
  62. a1 = vec_ld(sizeof(vector float), r);
  63. b = vec_perm(a,a,vcprmle(1,0,3,2));
  64. a = vec_madd(a,c1,b);
  65. /* do the pass 0 butterfly */
  66. b = vec_perm(a1,a1,vcprmle(1,0,3,2));
  67. b = vec_madd(a1,c1,b);
  68. /* do the pass 0 butterfly */
  69. /* multiply third by -i */
  70. b = vec_perm(b,b,vcprmle(2,3,1,0));
  71. /* do the pass 1 butterfly */
  72. vec_st(vec_madd(b,c2,a), 0, r);
  73. vec_st(vec_nmsub(b,c2,a), sizeof(vector float), r);
  74. r += 2;
  75. } while (--j != 0);
  76. }
  77. /* pass 2 .. ln-1 */
  78. nblocks = np >> 3;
  79. nloops = 1 << 2;
  80. np2 = np >> 1;
  81. cptr1 = s->exptab1;
  82. do {
  83. p = z;
  84. q = z + nloops;
  85. j = nblocks;
  86. do {
  87. cptr = cptr1;
  88. k = nloops >> 1;
  89. do {
  90. vector float a,b,c,t1;
  91. a = vec_ld(0, (float*)p);
  92. b = vec_ld(0, (float*)q);
  93. /* complex mul */
  94. c = vec_ld(0, (float*)cptr);
  95. /* cre*re cim*re */
  96. t1 = vec_madd(c, vec_perm(b,b,vcprmle(2,2,0,0)),vczero);
  97. c = vec_ld(sizeof(vector float), (float*)cptr);
  98. /* -cim*im cre*im */
  99. b = vec_madd(c, vec_perm(b,b,vcprmle(3,3,1,1)),t1);
  100. /* butterfly */
  101. vec_st(vec_add(a,b), 0, (float*)p);
  102. vec_st(vec_sub(a,b), 0, (float*)q);
  103. p += 2;
  104. q += 2;
  105. cptr += 4;
  106. } while (--k);
  107. p += nloops;
  108. q += nloops;
  109. } while (--j);
  110. cptr1 += nloops * 2;
  111. nblocks = nblocks >> 1;
  112. nloops = nloops << 1;
  113. } while (nblocks != 0);
  114. POWERPC_PERF_STOP_COUNT(altivec_fft_num, s->nbits >= 6);
  115. }