2 * FFT/MDCT transform with Extended 3DNow! optimizations
3 * Copyright (c) 2006-2008 Zuxy MENG Jie, Loren Merritt
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 DECLARE_ALIGNED_8(static const int, m1m1
[2]) = { 1<<31, 1<<31 };
27 #ifdef EMULATE_3DNOWEXT
31 "punpckldq "#s","#d"\n"
32 #define ff_fft_calc_3dn2 ff_fft_calc_3dn
33 #define ff_fft_dispatch_3dn2 ff_fft_dispatch_3dn
34 #define ff_fft_dispatch_interleave_3dn2 ff_fft_dispatch_interleave_3dn
35 #define ff_imdct_calc_3dn2 ff_imdct_calc_3dn
36 #define ff_imdct_half_3dn2 ff_imdct_half_3dn
38 #define PSWAPD(s,d) "pswapd "#s","#d"\n"
41 void ff_fft_dispatch_3dn2(FFTComplex
*z
, int nbits
);
42 void ff_fft_dispatch_interleave_3dn2(FFTComplex
*z
, int nbits
);
44 void ff_fft_calc_3dn2(FFTContext
*s
, FFTComplex
*z
)
48 ff_fft_dispatch_interleave_3dn2(z
, s
->nbits
);
49 __asm__
volatile("femms");
52 FFSWAP(FFTSample
, z
[i
].im
, z
[i
+1].re
);
55 void ff_imdct_half_3dn2(MDCTContext
*s
, FFTSample
*output
, const FFTSample
*input
)
58 long n
= 1 << s
->nbits
;
62 const uint16_t *revtab
= s
->fft
.revtab
;
63 const FFTSample
*tcos
= s
->tcos
;
64 const FFTSample
*tsin
= s
->tsin
;
65 const FFTSample
*in1
, *in2
;
66 FFTComplex
*z
= (FFTComplex
*)output
;
71 #ifdef EMULATE_3DNOWEXT
72 __asm__
volatile("movd %0, %%mm7" ::"r"(1<<31));
74 for(k
= 0; k
< n4
; k
++) {
75 // FIXME a single block is faster, but gcc 2.95 and 3.4.x on 32bit can't compile it
79 "punpckldq %1, %%mm0 \n"
80 "punpckldq %3, %%mm1 \n"
81 "movq %%mm0, %%mm2 \n"
82 PSWAPD( %%mm1
, %%mm3
)
83 "pfmul %%mm1, %%mm0 \n"
84 "pfmul %%mm3, %%mm2 \n"
85 #ifdef EMULATE_3DNOWEXT
86 "movq %%mm0, %%mm1 \n"
87 "punpckhdq %%mm2, %%mm0 \n"
88 "punpckldq %%mm2, %%mm1 \n"
89 "pxor %%mm7, %%mm0 \n"
90 "pfadd %%mm1, %%mm0 \n"
92 "pfpnacc %%mm2, %%mm0 \n"
94 ::"m"(in2
[-2*k
]), "m"(in1
[2*k
]),
95 "m"(tcos
[k
]), "m"(tsin
[k
])
103 ff_fft_dispatch_3dn2(z
, s
->fft
.nbits
);
105 #define CMUL(j,mm0,mm1)\
106 "movq (%2,"#j",2), %%mm6 \n"\
107 "movq 8(%2,"#j",2), "#mm0"\n"\
108 "movq %%mm6, "#mm1"\n"\
109 "movq "#mm0",%%mm7 \n"\
110 "pfmul (%3,"#j"), %%mm6 \n"\
111 "pfmul (%4,"#j"), "#mm0"\n"\
112 "pfmul (%4,"#j"), "#mm1"\n"\
113 "pfmul (%3,"#j"), %%mm7 \n"\
114 "pfsub %%mm6, "#mm0"\n"\
115 "pfadd %%mm7, "#mm1"\n"
122 CMUL(%0, %%mm0
, %%mm1
)
123 CMUL(%1, %%mm2
, %%mm3
)
124 "movd %%mm0, (%2,%0,2) \n"
125 "movd %%mm1,12(%2,%1,2) \n"
126 "movd %%mm2, (%2,%1,2) \n"
127 "movd %%mm3,12(%2,%0,2) \n"
128 "psrlq $32, %%mm0 \n"
129 "psrlq $32, %%mm1 \n"
130 "psrlq $32, %%mm2 \n"
131 "psrlq $32, %%mm3 \n"
132 "movd %%mm0, 8(%2,%0,2) \n"
133 "movd %%mm1, 4(%2,%1,2) \n"
134 "movd %%mm2, 8(%2,%1,2) \n"
135 "movd %%mm3, 4(%2,%0,2) \n"
140 :"r"(z
+n8
), "r"(tcos
+n8
), "r"(tsin
+n8
)
143 __asm__
volatile("femms");
146 void ff_imdct_calc_3dn2(MDCTContext
*s
, FFTSample
*output
, const FFTSample
*input
)
149 long n
= 1 << s
->nbits
;
152 ff_imdct_half_3dn2(s
, output
+n4
, input
);
159 PSWAPD((%2,%1), %%mm0
)
160 PSWAPD((%3,%0), %%mm1
)
161 "pxor %%mm7, %%mm0 \n"
162 "movq %%mm1, (%3,%1) \n"
163 "movq %%mm0, (%2,%0) \n"
168 :"r"(output
+n4
), "r"(output
+n4
*3),
171 __asm__
volatile("femms");