2 * FFT/MDCT transform with Extended 3DNow! optimizations
3 * Copyright (c) 2006 Zuxy MENG Jie, Loren Merritt
4 * Based on fft_sse.c copyright (c) 2002 Fabrice Bellard.
6 * This file is part of FFmpeg.
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.
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.
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
23 #include "libavutil/x86_cpu.h"
24 #include "libavcodec/dsputil.h"
26 static const int p1m1
[2] __attribute__((aligned(8))) =
29 static const int m1p1
[2] __attribute__((aligned(8))) =
32 void ff_fft_calc_3dn2(FFTContext
*s
, FFTComplex
*z
)
41 /* FEMMS is not a must here but recommended by AMD */
44 ::"m"(*(s
->inverse
? m1p1
: p1m1
))
51 "movq (%0,%1), %%mm0 \n\t"
52 "movq 16(%0,%1), %%mm1 \n\t"
53 "movq 8(%0,%1), %%mm2 \n\t"
54 "movq 24(%0,%1), %%mm3 \n\t"
55 "movq %%mm0, %%mm4 \n\t"
56 "movq %%mm1, %%mm5 \n\t"
57 "pfadd %%mm2, %%mm0 \n\t"
58 "pfadd %%mm3, %%mm1 \n\t"
59 "pfsub %%mm2, %%mm4 \n\t"
60 "pfsub %%mm3, %%mm5 \n\t"
61 "movq %%mm0, %%mm2 \n\t"
62 "pswapd %%mm5, %%mm5 \n\t"
63 "movq %%mm4, %%mm3 \n\t"
64 "pxor %%mm7, %%mm5 \n\t"
65 "pfadd %%mm1, %%mm0 \n\t"
66 "pfadd %%mm5, %%mm4 \n\t"
67 "pfsub %%mm1, %%mm2 \n\t"
68 "pfsub %%mm5, %%mm3 \n\t"
69 "movq %%mm0, (%0,%1) \n\t"
70 "movq %%mm4, 8(%0,%1) \n\t"
71 "movq %%mm2, 16(%0,%1) \n\t"
72 "movq %%mm3, 24(%0,%1) \n\t"
79 nblocks
= 1 << (ln
-3);
90 "movq (%1,%0), %%mm0 \n\t"
91 "movq 8(%1,%0), %%mm1 \n\t"
92 "movq (%2,%0), %%mm2 \n\t"
93 "movq 8(%2,%0), %%mm3 \n\t"
94 "movq (%3,%0,2), %%mm4 \n\t"
95 "movq 8(%3,%0,2), %%mm5 \n\t"
96 "pswapd %%mm4, %%mm6 \n\t" // no need for cptr[2] & cptr[3]
97 "pswapd %%mm5, %%mm7 \n\t"
98 "pfmul %%mm2, %%mm4 \n\t" // cre*re cim*im
99 "pfmul %%mm3, %%mm5 \n\t"
100 "pfmul %%mm2, %%mm6 \n\t" // cim*re cre*im
101 "pfmul %%mm3, %%mm7 \n\t"
102 "pfpnacc %%mm6, %%mm4 \n\t" // cre*re-cim*im cim*re+cre*im
103 "pfpnacc %%mm7, %%mm5 \n\t"
104 "movq %%mm0, %%mm2 \n\t"
105 "movq %%mm1, %%mm3 \n\t"
106 "pfadd %%mm4, %%mm0 \n\t"
107 "pfadd %%mm5, %%mm1 \n\t"
108 "pfsub %%mm4, %%mm2 \n\t"
109 "pfsub %%mm5, %%mm3 \n\t"
110 "movq %%mm0, (%1,%0) \n\t"
111 "movq %%mm1, 8(%1,%0) \n\t"
112 "movq %%mm2, (%2,%0) \n\t"
113 "movq %%mm3, 8(%2,%0) \n\t"
116 :"r"(p
), "r"(p
+ nloops
), "r"(cptr
)
123 } while (nblocks
!= 0);
124 asm volatile("femms");
127 void ff_imdct_calc_3dn2(MDCTContext
*s
, FFTSample
*output
,
128 const FFTSample
*input
, FFTSample
*tmp
)
132 const uint16_t *revtab
= s
->fft
.revtab
;
133 const FFTSample
*tcos
= s
->tcos
;
134 const FFTSample
*tsin
= s
->tsin
;
135 const FFTSample
*in1
, *in2
;
136 FFTComplex
*z
= (FFTComplex
*)tmp
;
145 in2
= input
+ n2
- 1;
146 for(k
= 0; k
< n4
; k
++) {
147 // FIXME a single block is faster, but gcc 2.95 and 3.4.x on 32bit can't compile it
149 "movd %0, %%mm0 \n\t"
150 "movd %2, %%mm1 \n\t"
151 "punpckldq %1, %%mm0 \n\t"
152 "punpckldq %3, %%mm1 \n\t"
153 "movq %%mm0, %%mm2 \n\t"
154 "pfmul %%mm1, %%mm0 \n\t"
155 "pswapd %%mm1, %%mm1 \n\t"
156 "pfmul %%mm1, %%mm2 \n\t"
157 "pfpnacc %%mm2, %%mm0 \n\t"
158 ::"m"(in2
[-2*k
]), "m"(in1
[2*k
]),
159 "m"(tcos
[k
]), "m"(tsin
[k
])
162 "movq %%mm0, %0 \n\t"
167 ff_fft_calc(&s
->fft
, z
);
169 /* post rotation + reordering */
170 for(k
= 0; k
< n4
; k
++) {
172 "movq %0, %%mm0 \n\t"
173 "movd %1, %%mm1 \n\t"
174 "punpckldq %2, %%mm1 \n\t"
175 "movq %%mm0, %%mm2 \n\t"
176 "pfmul %%mm1, %%mm0 \n\t"
177 "pswapd %%mm1, %%mm1 \n\t"
178 "pfmul %%mm1, %%mm2 \n\t"
179 "pfpnacc %%mm2, %%mm0 \n\t"
180 "movq %%mm0, %0 \n\t"
182 :"m"(tcos
[k
]), "m"(tsin
[k
])
187 asm volatile("movd %0, %%mm7" ::"r"(1<<31));
190 "movq (%4,%0), %%mm0 \n\t" // z[n8+k]
192 "pswapd -8(%4,%0), %%mm1 \n\t" // z[n8-1-k]
193 "movq %%mm0, %%mm2 \n\t"
194 "pxor %%mm7, %%mm2 \n\t"
195 "punpckldq %%mm1, %%mm2 \n\t"
196 "pswapd %%mm2, %%mm3 \n\t"
197 "punpckhdq %%mm1, %%mm0 \n\t"
198 "pswapd %%mm0, %%mm4 \n\t"
199 "pxor %%mm7, %%mm0 \n\t"
200 "pxor %%mm7, %%mm4 \n\t"
201 "movq %%mm3, -8(%3,%0) \n\t" // output[n-2-2*k] = { z[n8-1-k].im, -z[n8+k].re }
202 "movq %%mm4, -8(%2,%0) \n\t" // output[n2-2-2*k]= { -z[n8-1-k].re, z[n8+k].im }
204 "movq %%mm0, (%1,%0) \n\t" // output[2*k] = { -z[n8+k].im, z[n8-1-k].re }
205 "movq %%mm2, (%2,%0) \n\t" // output[n2+2*k] = { -z[n8+k].re, z[n8-1-k].im }
209 :"r"(output
), "r"(output
+n2
), "r"(output
+n
), "r"(z
+n8
)
212 asm volatile("femms");