2 * FFT/MDCT transform with SSE optimizations
3 * Copyright (c) 2002 Fabrice Bellard.
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/x86_cpu.h"
23 #include "libavcodec/dsputil.h"
25 static const int p1p1p1m1
[4] __attribute__((aligned(16))) =
28 static const int p1p1m1p1
[4] __attribute__((aligned(16))) =
31 static const int p1p1m1m1
[4] __attribute__((aligned(16))) =
32 { 0, 0, 1 << 31, 1 << 31 };
34 static const int p1m1p1m1
[4] __attribute__((aligned(16))) =
35 { 0, 1 << 31, 0, 1 << 31 };
37 static const int m1m1m1m1
[4] __attribute__((aligned(16))) =
38 { 1 << 31, 1 << 31, 1 << 31, 1 << 31 };
41 static void print_v4sf(const char *str
, __m128 a
)
43 float *p
= (float *)&a
;
44 printf("%s: %f %f %f %f\n",
45 str
, p
[0], p
[1], p
[2], p
[3]);
49 /* XXX: handle reverse case */
50 void ff_fft_calc_sse(FFTContext
*s
, FFTComplex
*z
)
59 "movaps %0, %%xmm4 \n\t"
60 "movaps %1, %%xmm5 \n\t"
62 "m"(*(s
->inverse
? p1p1m1p1
: p1p1p1m1
))
69 /* do the pass 0 butterfly */
70 "movaps (%0,%1), %%xmm0 \n\t"
71 "movaps %%xmm0, %%xmm1 \n\t"
72 "shufps $0x4E, %%xmm0, %%xmm0 \n\t"
73 "xorps %%xmm4, %%xmm1 \n\t"
74 "addps %%xmm1, %%xmm0 \n\t"
75 "movaps 16(%0,%1), %%xmm2 \n\t"
76 "movaps %%xmm2, %%xmm3 \n\t"
77 "shufps $0x4E, %%xmm2, %%xmm2 \n\t"
78 "xorps %%xmm4, %%xmm3 \n\t"
79 "addps %%xmm3, %%xmm2 \n\t"
80 /* multiply third by -i */
81 /* by toggling the sign bit */
82 "shufps $0xB4, %%xmm2, %%xmm2 \n\t"
83 "xorps %%xmm5, %%xmm2 \n\t"
84 /* do the pass 1 butterfly */
85 "movaps %%xmm0, %%xmm1 \n\t"
86 "addps %%xmm2, %%xmm0 \n\t"
87 "subps %%xmm2, %%xmm1 \n\t"
88 "movaps %%xmm0, (%0,%1) \n\t"
89 "movaps %%xmm1, 16(%0,%1) \n\t"
96 nblocks
= 1 << (ln
-3);
107 "movaps (%2,%0), %%xmm1 \n\t"
108 "movaps (%1,%0), %%xmm0 \n\t"
109 "movaps 16(%2,%0), %%xmm5 \n\t"
110 "movaps 16(%1,%0), %%xmm4 \n\t"
111 "movaps %%xmm1, %%xmm2 \n\t"
112 "movaps %%xmm5, %%xmm6 \n\t"
113 "shufps $0xA0, %%xmm1, %%xmm1 \n\t"
114 "shufps $0xF5, %%xmm2, %%xmm2 \n\t"
115 "shufps $0xA0, %%xmm5, %%xmm5 \n\t"
116 "shufps $0xF5, %%xmm6, %%xmm6 \n\t"
117 "mulps (%3,%0,2), %%xmm1 \n\t" // cre*re cim*re
118 "mulps 16(%3,%0,2), %%xmm2 \n\t" // -cim*im cre*im
119 "mulps 32(%3,%0,2), %%xmm5 \n\t" // cre*re cim*re
120 "mulps 48(%3,%0,2), %%xmm6 \n\t" // -cim*im cre*im
121 "addps %%xmm2, %%xmm1 \n\t"
122 "addps %%xmm6, %%xmm5 \n\t"
123 "movaps %%xmm0, %%xmm3 \n\t"
124 "movaps %%xmm4, %%xmm7 \n\t"
125 "addps %%xmm1, %%xmm0 \n\t"
126 "subps %%xmm1, %%xmm3 \n\t"
127 "addps %%xmm5, %%xmm4 \n\t"
128 "subps %%xmm5, %%xmm7 \n\t"
129 "movaps %%xmm0, (%1,%0) \n\t"
130 "movaps %%xmm3, (%2,%0) \n\t"
131 "movaps %%xmm4, 16(%1,%0) \n\t"
132 "movaps %%xmm7, 16(%2,%0) \n\t"
135 :"r"(p
), "r"(p
+ nloops
), "r"(cptr
)
142 } while (nblocks
!= 0);
145 void ff_imdct_calc_sse(MDCTContext
*s
, FFTSample
*output
,
146 const FFTSample
*input
, FFTSample
*tmp
)
150 const uint16_t *revtab
= s
->fft
.revtab
;
151 const FFTSample
*tcos
= s
->tcos
;
152 const FFTSample
*tsin
= s
->tsin
;
153 const FFTSample
*in1
, *in2
;
154 FFTComplex
*z
= (FFTComplex
*)tmp
;
162 asm volatile ("movaps %0, %%xmm8\n\t"::"m"(*p1m1p1m1
));
163 #define P1M1P1M1 "%%xmm8"
165 #define P1M1P1M1 "%4"
170 in2
= input
+ n2
- 4;
172 /* Complex multiplication */
173 for (k
= 0; k
< n4
; k
+= 4) {
175 "movaps %0, %%xmm0 \n\t" // xmm0 = r0 X r1 X : in2
176 "movaps %1, %%xmm3 \n\t" // xmm3 = X i1 X i0: in1
177 "movaps -16+1*%0, %%xmm4 \n\t" // xmm4 = r0 X r1 X : in2
178 "movaps 16+1*%1, %%xmm7 \n\t" // xmm7 = X i1 X i0: in1
179 "movlps %2, %%xmm1 \n\t" // xmm1 = X X R1 R0: tcos
180 "movlps %3, %%xmm2 \n\t" // xmm2 = X X I1 I0: tsin
181 "movlps 8+1*%2, %%xmm5 \n\t" // xmm5 = X X R1 R0: tcos
182 "movlps 8+1*%3, %%xmm6 \n\t" // xmm6 = X X I1 I0: tsin
183 "shufps $95, %%xmm0, %%xmm0 \n\t" // xmm0 = r1 r1 r0 r0
184 "shufps $160,%%xmm3, %%xmm3 \n\t" // xmm3 = i1 i1 i0 i0
185 "shufps $95, %%xmm4, %%xmm4 \n\t" // xmm4 = r1 r1 r0 r0
186 "shufps $160,%%xmm7, %%xmm7 \n\t" // xmm7 = i1 i1 i0 i0
187 "unpcklps %%xmm2, %%xmm1 \n\t" // xmm1 = I1 R1 I0 R0
188 "unpcklps %%xmm6, %%xmm5 \n\t" // xmm5 = I1 R1 I0 R0
189 "movaps %%xmm1, %%xmm2 \n\t" // xmm2 = I1 R1 I0 R0
190 "movaps %%xmm5, %%xmm6 \n\t" // xmm6 = I1 R1 I0 R0
191 "xorps "P1M1P1M1
", %%xmm2 \n\t" // xmm2 = -I1 R1 -I0 R0
192 "xorps "P1M1P1M1
", %%xmm6 \n\t" // xmm6 = -I1 R1 -I0 R0
193 "mulps %%xmm1, %%xmm0 \n\t" // xmm0 = rI rR rI rR
194 "mulps %%xmm5, %%xmm4 \n\t" // xmm4 = rI rR rI rR
195 "shufps $177,%%xmm2, %%xmm2 \n\t" // xmm2 = R1 -I1 R0 -I0
196 "shufps $177,%%xmm6, %%xmm6 \n\t" // xmm6 = R1 -I1 R0 -I0
197 "mulps %%xmm2, %%xmm3 \n\t" // xmm3 = Ri -Ii Ri -Ii
198 "mulps %%xmm6, %%xmm7 \n\t" // xmm7 = Ri -Ii Ri -Ii
199 "addps %%xmm3, %%xmm0 \n\t" // xmm0 = result
200 "addps %%xmm7, %%xmm4 \n\t" // xmm4 = result
201 ::"m"(in2
[-2*k
]), "m"(in1
[2*k
]),
202 "m"(tcos
[k
]), "m"(tsin
[k
])
207 /* Should be in the same block, hack for gcc2.95 & gcc3 */
209 "movlps %%xmm0, %0 \n\t"
210 "movhps %%xmm0, %1 \n\t"
211 "movlps %%xmm4, %2 \n\t"
212 "movhps %%xmm4, %3 \n\t"
213 :"=m"(z
[revtab
[k
]]), "=m"(z
[revtab
[k
+ 1]]),
214 "=m"(z
[revtab
[k
+ 2]]), "=m"(z
[revtab
[k
+ 3]])
218 ff_fft_calc_sse(&s
->fft
, z
);
222 #define P1M1P1M1 "%3"
225 /* post rotation + reordering */
226 for (k
= 0; k
< n4
; k
+= 4) {
228 "movaps %0, %%xmm0 \n\t" // xmm0 = i1 r1 i0 r0: z
229 "movaps 16+1*%0, %%xmm4 \n\t" // xmm4 = i1 r1 i0 r0: z
230 "movlps %1, %%xmm1 \n\t" // xmm1 = X X R1 R0: tcos
231 "movlps 8+1*%1, %%xmm5 \n\t" // xmm5 = X X R1 R0: tcos
232 "movaps %%xmm0, %%xmm3 \n\t" // xmm3 = i1 r1 i0 r0
233 "movaps %%xmm4, %%xmm7 \n\t" // xmm7 = i1 r1 i0 r0
234 "movlps %2, %%xmm2 \n\t" // xmm2 = X X I1 I0: tsin
235 "movlps 8+1*%2, %%xmm6 \n\t" // xmm6 = X X I1 I0: tsin
236 "shufps $160,%%xmm0, %%xmm0 \n\t" // xmm0 = r1 r1 r0 r0
237 "shufps $245,%%xmm3, %%xmm3 \n\t" // xmm3 = i1 i1 i0 i0
238 "shufps $160,%%xmm4, %%xmm4 \n\t" // xmm4 = r1 r1 r0 r0
239 "shufps $245,%%xmm7, %%xmm7 \n\t" // xmm7 = i1 i1 i0 i0
240 "unpcklps %%xmm2, %%xmm1 \n\t" // xmm1 = I1 R1 I0 R0
241 "unpcklps %%xmm6, %%xmm5 \n\t" // xmm5 = I1 R1 I0 R0
242 "movaps %%xmm1, %%xmm2 \n\t" // xmm2 = I1 R1 I0 R0
243 "movaps %%xmm5, %%xmm6 \n\t" // xmm6 = I1 R1 I0 R0
244 "xorps "P1M1P1M1
", %%xmm2 \n\t" // xmm2 = -I1 R1 -I0 R0
245 "mulps %%xmm1, %%xmm0 \n\t" // xmm0 = rI rR rI rR
246 "xorps "P1M1P1M1
", %%xmm6 \n\t" // xmm6 = -I1 R1 -I0 R0
247 "mulps %%xmm5, %%xmm4 \n\t" // xmm4 = rI rR rI rR
248 "shufps $177,%%xmm2, %%xmm2 \n\t" // xmm2 = R1 -I1 R0 -I0
249 "shufps $177,%%xmm6, %%xmm6 \n\t" // xmm6 = R1 -I1 R0 -I0
250 "mulps %%xmm2, %%xmm3 \n\t" // xmm3 = Ri -Ii Ri -Ii
251 "mulps %%xmm6, %%xmm7 \n\t" // xmm7 = Ri -Ii Ri -Ii
252 "addps %%xmm3, %%xmm0 \n\t" // xmm0 = result
253 "addps %%xmm7, %%xmm4 \n\t" // xmm4 = result
254 "movaps %%xmm0, %0 \n\t"
255 "movaps %%xmm4, 16+1*%0\n\t"
257 :"m"(tcos
[k
]), "m"(tsin
[k
])
276 asm volatile("movaps %0, %%xmm7 \n\t"::"m"(*m1m1m1m1
));
279 "movaps -16(%4,%0), %%xmm1 \n\t" // xmm1 = 4 5 6 7 = z[-2-k]
281 "movaps (%4,%0), %%xmm0 \n\t" // xmm0 = 0 1 2 3 = z[k]
282 "xorps %%xmm7, %%xmm0 \n\t" // xmm0 = -0 -1 -2 -3
283 "movaps %%xmm0, %%xmm2 \n\t" // xmm2 = -0 -1 -2 -3
284 "shufps $141,%%xmm1, %%xmm0 \n\t" // xmm0 = -1 -3 4 6
285 "shufps $216,%%xmm1, %%xmm2 \n\t" // xmm2 = -0 -2 5 7
286 "shufps $156,%%xmm0, %%xmm0 \n\t" // xmm0 = -1 6 -3 4 !
287 "shufps $156,%%xmm2, %%xmm2 \n\t" // xmm2 = -0 7 -2 5 !
288 "movaps %%xmm0, (%1,%0) \n\t" // output[2*k]
289 "movaps %%xmm2, (%2,%0) \n\t" // output[n2+2*k]
291 "shufps $27, %%xmm0, %%xmm0 \n\t" // xmm0 = 4 -3 6 -1
292 "xorps %%xmm7, %%xmm0 \n\t" // xmm0 = -4 3 -6 1 !
293 "shufps $27, %%xmm2, %%xmm2 \n\t" // xmm2 = 5 -2 7 -0 !
294 "movaps %%xmm0, -16(%2,%0) \n\t" // output[n2-4-2*k]
295 "movaps %%xmm2, -16(%3,%0) \n\t" // output[n-4-2*k]
299 :"r"(output
), "r"(output
+n2
), "r"(output
+n
), "r"(z
+n8
)