Mercurial > libavcodec.hg
annotate i386/fft_sse.c @ 7540:5298e05f931d libavcodec
Synchronise code with AAC decoder in SoC
author | superdump |
---|---|
date | Mon, 11 Aug 2008 11:22:48 +0000 |
parents | fc843d00867c |
children | a8a8205a9081 |
rev | line source |
---|---|
781 | 1 /* |
2 * FFT/MDCT transform with SSE optimizations | |
3 * Copyright (c) 2002 Fabrice Bellard. | |
4 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3746
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3746
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3746
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
781 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3746
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
781 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3746
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
781 | 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. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3746
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
781 | 20 */ |
6763 | 21 |
22 #include "libavutil/x86_cpu.h" | |
23 #include "libavcodec/dsputil.h" | |
781 | 24 |
3166
ab1273ffe275
use xorps instead of mulps to toggle the sign of a float, as suggested by Software Optimization Guide for AMD64 Processors.
gpoirier
parents:
3036
diff
changeset
|
25 static const int p1p1p1m1[4] __attribute__((aligned(16))) = |
ab1273ffe275
use xorps instead of mulps to toggle the sign of a float, as suggested by Software Optimization Guide for AMD64 Processors.
gpoirier
parents:
3036
diff
changeset
|
26 { 0, 0, 0, 1 << 31 }; |
781 | 27 |
3166
ab1273ffe275
use xorps instead of mulps to toggle the sign of a float, as suggested by Software Optimization Guide for AMD64 Processors.
gpoirier
parents:
3036
diff
changeset
|
28 static const int p1p1m1p1[4] __attribute__((aligned(16))) = |
ab1273ffe275
use xorps instead of mulps to toggle the sign of a float, as suggested by Software Optimization Guide for AMD64 Processors.
gpoirier
parents:
3036
diff
changeset
|
29 { 0, 0, 1 << 31, 0 }; |
968
64f1a11b5f86
added define for builtins use - inverse fix by Romain Dolbeau
bellard
parents:
781
diff
changeset
|
30 |
3166
ab1273ffe275
use xorps instead of mulps to toggle the sign of a float, as suggested by Software Optimization Guide for AMD64 Processors.
gpoirier
parents:
3036
diff
changeset
|
31 static const int p1p1m1m1[4] __attribute__((aligned(16))) = |
ab1273ffe275
use xorps instead of mulps to toggle the sign of a float, as suggested by Software Optimization Guide for AMD64 Processors.
gpoirier
parents:
3036
diff
changeset
|
32 { 0, 0, 1 << 31, 1 << 31 }; |
781 | 33 |
3746 | 34 static const int p1m1p1m1[4] __attribute__((aligned(16))) = |
35 { 0, 1 << 31, 0, 1 << 31 }; | |
36 | |
37 static const int m1m1m1m1[4] __attribute__((aligned(16))) = | |
38 { 1 << 31, 1 << 31, 1 << 31, 1 << 31 }; | |
39 | |
781 | 40 #if 0 |
41 static void print_v4sf(const char *str, __m128 a) | |
42 { | |
43 float *p = (float *)&a; | |
44 printf("%s: %f %f %f %f\n", | |
45 str, p[0], p[1], p[2], p[3]); | |
46 } | |
47 #endif | |
48 | |
49 /* XXX: handle reverse case */ | |
1879
dd63cb7e5080
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
968
diff
changeset
|
50 void ff_fft_calc_sse(FFTContext *s, FFTComplex *z) |
781 | 51 { |
52 int ln = s->nbits; | |
6755
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
5117
diff
changeset
|
53 x86_reg i; |
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
5117
diff
changeset
|
54 long j; |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
55 long nblocks, nloops; |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
56 FFTComplex *p, *cptr; |
781 | 57 |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
58 asm volatile( |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
59 "movaps %0, %%xmm4 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
60 "movaps %1, %%xmm5 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
61 ::"m"(*p1p1m1m1), |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
62 "m"(*(s->inverse ? p1p1m1p1 : p1p1p1m1)) |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
63 ); |
968
64f1a11b5f86
added define for builtins use - inverse fix by Romain Dolbeau
bellard
parents:
781
diff
changeset
|
64 |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
65 i = 8 << ln; |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
66 asm volatile( |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
67 "1: \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
68 "sub $32, %0 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
69 /* do the pass 0 butterfly */ |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
70 "movaps (%0,%1), %%xmm0 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
71 "movaps %%xmm0, %%xmm1 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
72 "shufps $0x4E, %%xmm0, %%xmm0 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
73 "xorps %%xmm4, %%xmm1 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
74 "addps %%xmm1, %%xmm0 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
75 "movaps 16(%0,%1), %%xmm2 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
76 "movaps %%xmm2, %%xmm3 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
77 "shufps $0x4E, %%xmm2, %%xmm2 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
78 "xorps %%xmm4, %%xmm3 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
79 "addps %%xmm3, %%xmm2 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
80 /* multiply third by -i */ |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
81 /* by toggling the sign bit */ |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
82 "shufps $0xB4, %%xmm2, %%xmm2 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
83 "xorps %%xmm5, %%xmm2 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
84 /* do the pass 1 butterfly */ |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
85 "movaps %%xmm0, %%xmm1 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
86 "addps %%xmm2, %%xmm0 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
87 "subps %%xmm2, %%xmm1 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
88 "movaps %%xmm0, (%0,%1) \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
89 "movaps %%xmm1, 16(%0,%1) \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
90 "jg 1b \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
91 :"+r"(i) |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
92 :"r"(z) |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
93 ); |
781 | 94 /* pass 2 .. ln-1 */ |
95 | |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
96 nblocks = 1 << (ln-3); |
781 | 97 nloops = 1 << 2; |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
98 cptr = s->exptab1; |
781 | 99 do { |
100 p = z; | |
101 j = nblocks; | |
102 do { | |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
103 i = nloops*8; |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
104 asm volatile( |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
105 "1: \n\t" |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
106 "sub $32, %0 \n\t" |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
107 "movaps (%2,%0), %%xmm1 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
108 "movaps (%1,%0), %%xmm0 \n\t" |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
109 "movaps 16(%2,%0), %%xmm5 \n\t" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
110 "movaps 16(%1,%0), %%xmm4 \n\t" |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
111 "movaps %%xmm1, %%xmm2 \n\t" |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
112 "movaps %%xmm5, %%xmm6 \n\t" |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
113 "shufps $0xA0, %%xmm1, %%xmm1 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
114 "shufps $0xF5, %%xmm2, %%xmm2 \n\t" |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
115 "shufps $0xA0, %%xmm5, %%xmm5 \n\t" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
116 "shufps $0xF5, %%xmm6, %%xmm6 \n\t" |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
117 "mulps (%3,%0,2), %%xmm1 \n\t" // cre*re cim*re |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
118 "mulps 16(%3,%0,2), %%xmm2 \n\t" // -cim*im cre*im |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
119 "mulps 32(%3,%0,2), %%xmm5 \n\t" // cre*re cim*re |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
120 "mulps 48(%3,%0,2), %%xmm6 \n\t" // -cim*im cre*im |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
121 "addps %%xmm2, %%xmm1 \n\t" |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
122 "addps %%xmm6, %%xmm5 \n\t" |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
123 "movaps %%xmm0, %%xmm3 \n\t" |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
124 "movaps %%xmm4, %%xmm7 \n\t" |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
125 "addps %%xmm1, %%xmm0 \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
126 "subps %%xmm1, %%xmm3 \n\t" |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
127 "addps %%xmm5, %%xmm4 \n\t" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
128 "subps %%xmm5, %%xmm7 \n\t" |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
129 "movaps %%xmm0, (%1,%0) \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
130 "movaps %%xmm3, (%2,%0) \n\t" |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
131 "movaps %%xmm4, 16(%1,%0) \n\t" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
132 "movaps %%xmm7, 16(%2,%0) \n\t" |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
133 "jg 1b \n\t" |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
134 :"+r"(i) |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
135 :"r"(p), "r"(p + nloops), "r"(cptr) |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
136 ); |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
137 p += nloops*2; |
781 | 138 } while (--j); |
3590
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
139 cptr += nloops*2; |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
140 nblocks >>= 1; |
a3d97c60ea07
ff_fft_calc_3dn/3dn2/sse: convert intrinsics to inline asm.
lorenm
parents:
3166
diff
changeset
|
141 nloops <<= 1; |
781 | 142 } while (nblocks != 0); |
143 } | |
968
64f1a11b5f86
added define for builtins use - inverse fix by Romain Dolbeau
bellard
parents:
781
diff
changeset
|
144 |
7263 | 145 static void imdct_sse(MDCTContext *s, const FFTSample *input, FFTSample *tmp) |
3746 | 146 { |
6755
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
5117
diff
changeset
|
147 x86_reg k; |
7263 | 148 long n4, n2, n; |
3746 | 149 const uint16_t *revtab = s->fft.revtab; |
150 const FFTSample *tcos = s->tcos; | |
151 const FFTSample *tsin = s->tsin; | |
152 const FFTSample *in1, *in2; | |
153 FFTComplex *z = (FFTComplex *)tmp; | |
154 | |
155 n = 1 << s->nbits; | |
156 n2 = n >> 1; | |
157 n4 = n >> 2; | |
158 | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
159 #ifdef ARCH_X86_64 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
160 asm volatile ("movaps %0, %%xmm8\n\t"::"m"(*p1m1p1m1)); |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
161 #define P1M1P1M1 "%%xmm8" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
162 #else |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
163 #define P1M1P1M1 "%4" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
164 #endif |
3746 | 165 |
166 /* pre rotation */ | |
167 in1 = input; | |
168 in2 = input + n2 - 4; | |
169 | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
170 /* Complex multiplication */ |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
171 for (k = 0; k < n4; k += 4) { |
3746 | 172 asm volatile ( |
173 "movaps %0, %%xmm0 \n\t" // xmm0 = r0 X r1 X : in2 | |
174 "movaps %1, %%xmm3 \n\t" // xmm3 = X i1 X i0: in1 | |
5117
524faa5eabd1
work around issues with the old version of Gnu Assembler shipped on
gpoirier
parents:
5010
diff
changeset
|
175 "movaps -16+1*%0, %%xmm4 \n\t" // xmm4 = r0 X r1 X : in2 |
524faa5eabd1
work around issues with the old version of Gnu Assembler shipped on
gpoirier
parents:
5010
diff
changeset
|
176 "movaps 16+1*%1, %%xmm7 \n\t" // xmm7 = X i1 X i0: in1 |
3746 | 177 "movlps %2, %%xmm1 \n\t" // xmm1 = X X R1 R0: tcos |
178 "movlps %3, %%xmm2 \n\t" // xmm2 = X X I1 I0: tsin | |
5117
524faa5eabd1
work around issues with the old version of Gnu Assembler shipped on
gpoirier
parents:
5010
diff
changeset
|
179 "movlps 8+1*%2, %%xmm5 \n\t" // xmm5 = X X R1 R0: tcos |
524faa5eabd1
work around issues with the old version of Gnu Assembler shipped on
gpoirier
parents:
5010
diff
changeset
|
180 "movlps 8+1*%3, %%xmm6 \n\t" // xmm6 = X X I1 I0: tsin |
3746 | 181 "shufps $95, %%xmm0, %%xmm0 \n\t" // xmm0 = r1 r1 r0 r0 |
182 "shufps $160,%%xmm3, %%xmm3 \n\t" // xmm3 = i1 i1 i0 i0 | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
183 "shufps $95, %%xmm4, %%xmm4 \n\t" // xmm4 = r1 r1 r0 r0 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
184 "shufps $160,%%xmm7, %%xmm7 \n\t" // xmm7 = i1 i1 i0 i0 |
3746 | 185 "unpcklps %%xmm2, %%xmm1 \n\t" // xmm1 = I1 R1 I0 R0 |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
186 "unpcklps %%xmm6, %%xmm5 \n\t" // xmm5 = I1 R1 I0 R0 |
3746 | 187 "movaps %%xmm1, %%xmm2 \n\t" // xmm2 = I1 R1 I0 R0 |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
188 "movaps %%xmm5, %%xmm6 \n\t" // xmm6 = I1 R1 I0 R0 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
189 "xorps "P1M1P1M1", %%xmm2 \n\t" // xmm2 = -I1 R1 -I0 R0 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
190 "xorps "P1M1P1M1", %%xmm6 \n\t" // xmm6 = -I1 R1 -I0 R0 |
3746 | 191 "mulps %%xmm1, %%xmm0 \n\t" // xmm0 = rI rR rI rR |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
192 "mulps %%xmm5, %%xmm4 \n\t" // xmm4 = rI rR rI rR |
3746 | 193 "shufps $177,%%xmm2, %%xmm2 \n\t" // xmm2 = R1 -I1 R0 -I0 |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
194 "shufps $177,%%xmm6, %%xmm6 \n\t" // xmm6 = R1 -I1 R0 -I0 |
3746 | 195 "mulps %%xmm2, %%xmm3 \n\t" // xmm3 = Ri -Ii Ri -Ii |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
196 "mulps %%xmm6, %%xmm7 \n\t" // xmm7 = Ri -Ii Ri -Ii |
3746 | 197 "addps %%xmm3, %%xmm0 \n\t" // xmm0 = result |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
198 "addps %%xmm7, %%xmm4 \n\t" // xmm4 = result |
3746 | 199 ::"m"(in2[-2*k]), "m"(in1[2*k]), |
200 "m"(tcos[k]), "m"(tsin[k]) | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
201 #ifndef ARCH_X86_64 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
202 ,"m"(*p1m1p1m1) |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
203 #endif |
3746 | 204 ); |
205 /* Should be in the same block, hack for gcc2.95 & gcc3 */ | |
206 asm ( | |
207 "movlps %%xmm0, %0 \n\t" | |
208 "movhps %%xmm0, %1 \n\t" | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
209 "movlps %%xmm4, %2 \n\t" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
210 "movhps %%xmm4, %3 \n\t" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
211 :"=m"(z[revtab[k]]), "=m"(z[revtab[k + 1]]), |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
212 "=m"(z[revtab[k + 2]]), "=m"(z[revtab[k + 3]]) |
3746 | 213 ); |
214 } | |
215 | |
216 ff_fft_calc_sse(&s->fft, z); | |
217 | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
218 #ifndef ARCH_X86_64 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
219 #undef P1M1P1M1 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
220 #define P1M1P1M1 "%3" |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
221 #endif |
3746 | 222 |
223 /* post rotation + reordering */ | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
224 for (k = 0; k < n4; k += 4) { |
3746 | 225 asm ( |
226 "movaps %0, %%xmm0 \n\t" // xmm0 = i1 r1 i0 r0: z | |
5117
524faa5eabd1
work around issues with the old version of Gnu Assembler shipped on
gpoirier
parents:
5010
diff
changeset
|
227 "movaps 16+1*%0, %%xmm4 \n\t" // xmm4 = i1 r1 i0 r0: z |
3746 | 228 "movlps %1, %%xmm1 \n\t" // xmm1 = X X R1 R0: tcos |
5117
524faa5eabd1
work around issues with the old version of Gnu Assembler shipped on
gpoirier
parents:
5010
diff
changeset
|
229 "movlps 8+1*%1, %%xmm5 \n\t" // xmm5 = X X R1 R0: tcos |
3746 | 230 "movaps %%xmm0, %%xmm3 \n\t" // xmm3 = i1 r1 i0 r0 |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
231 "movaps %%xmm4, %%xmm7 \n\t" // xmm7 = i1 r1 i0 r0 |
3746 | 232 "movlps %2, %%xmm2 \n\t" // xmm2 = X X I1 I0: tsin |
5117
524faa5eabd1
work around issues with the old version of Gnu Assembler shipped on
gpoirier
parents:
5010
diff
changeset
|
233 "movlps 8+1*%2, %%xmm6 \n\t" // xmm6 = X X I1 I0: tsin |
3746 | 234 "shufps $160,%%xmm0, %%xmm0 \n\t" // xmm0 = r1 r1 r0 r0 |
235 "shufps $245,%%xmm3, %%xmm3 \n\t" // xmm3 = i1 i1 i0 i0 | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
236 "shufps $160,%%xmm4, %%xmm4 \n\t" // xmm4 = r1 r1 r0 r0 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
237 "shufps $245,%%xmm7, %%xmm7 \n\t" // xmm7 = i1 i1 i0 i0 |
3746 | 238 "unpcklps %%xmm2, %%xmm1 \n\t" // xmm1 = I1 R1 I0 R0 |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
239 "unpcklps %%xmm6, %%xmm5 \n\t" // xmm5 = I1 R1 I0 R0 |
3746 | 240 "movaps %%xmm1, %%xmm2 \n\t" // xmm2 = I1 R1 I0 R0 |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
241 "movaps %%xmm5, %%xmm6 \n\t" // xmm6 = I1 R1 I0 R0 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
242 "xorps "P1M1P1M1", %%xmm2 \n\t" // xmm2 = -I1 R1 -I0 R0 |
3746 | 243 "mulps %%xmm1, %%xmm0 \n\t" // xmm0 = rI rR rI rR |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
244 "xorps "P1M1P1M1", %%xmm6 \n\t" // xmm6 = -I1 R1 -I0 R0 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
245 "mulps %%xmm5, %%xmm4 \n\t" // xmm4 = rI rR rI rR |
3746 | 246 "shufps $177,%%xmm2, %%xmm2 \n\t" // xmm2 = R1 -I1 R0 -I0 |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
247 "shufps $177,%%xmm6, %%xmm6 \n\t" // xmm6 = R1 -I1 R0 -I0 |
3746 | 248 "mulps %%xmm2, %%xmm3 \n\t" // xmm3 = Ri -Ii Ri -Ii |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
249 "mulps %%xmm6, %%xmm7 \n\t" // xmm7 = Ri -Ii Ri -Ii |
3746 | 250 "addps %%xmm3, %%xmm0 \n\t" // xmm0 = result |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
251 "addps %%xmm7, %%xmm4 \n\t" // xmm4 = result |
3746 | 252 "movaps %%xmm0, %0 \n\t" |
5117
524faa5eabd1
work around issues with the old version of Gnu Assembler shipped on
gpoirier
parents:
5010
diff
changeset
|
253 "movaps %%xmm4, 16+1*%0\n\t" |
3746 | 254 :"+m"(z[k]) |
255 :"m"(tcos[k]), "m"(tsin[k]) | |
5000
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
256 #ifndef ARCH_X86_64 |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
257 ,"m"(*p1m1p1m1) |
743a8b12b7de
Faster SSE FFT/MDCT, patch by Zuxy Meng %zuxy P meng A gmail P com%
gpoirier
parents:
3947
diff
changeset
|
258 #endif |
3746 | 259 ); |
260 } | |
7263 | 261 } |
262 | |
263 void ff_imdct_calc_sse(MDCTContext *s, FFTSample *output, | |
264 const FFTSample *input, FFTSample *tmp) | |
265 { | |
266 x86_reg k; | |
267 long n8, n2, n; | |
268 FFTComplex *z = (FFTComplex *)tmp; | |
269 | |
270 n = 1 << s->nbits; | |
271 n2 = n >> 1; | |
272 n8 = n >> 3; | |
273 | |
274 imdct_sse(s, input, tmp); | |
3746 | 275 |
276 /* | |
277 Mnemonics: | |
278 0 = z[k].re | |
279 1 = z[k].im | |
280 2 = z[k + 1].re | |
281 3 = z[k + 1].im | |
282 4 = z[-k - 2].re | |
283 5 = z[-k - 2].im | |
284 6 = z[-k - 1].re | |
285 7 = z[-k - 1].im | |
286 */ | |
287 k = 16-n; | |
288 asm volatile("movaps %0, %%xmm7 \n\t"::"m"(*m1m1m1m1)); | |
289 asm volatile( | |
290 "1: \n\t" | |
291 "movaps -16(%4,%0), %%xmm1 \n\t" // xmm1 = 4 5 6 7 = z[-2-k] | |
292 "neg %0 \n\t" | |
293 "movaps (%4,%0), %%xmm0 \n\t" // xmm0 = 0 1 2 3 = z[k] | |
294 "xorps %%xmm7, %%xmm0 \n\t" // xmm0 = -0 -1 -2 -3 | |
295 "movaps %%xmm0, %%xmm2 \n\t" // xmm2 = -0 -1 -2 -3 | |
296 "shufps $141,%%xmm1, %%xmm0 \n\t" // xmm0 = -1 -3 4 6 | |
297 "shufps $216,%%xmm1, %%xmm2 \n\t" // xmm2 = -0 -2 5 7 | |
298 "shufps $156,%%xmm0, %%xmm0 \n\t" // xmm0 = -1 6 -3 4 ! | |
299 "shufps $156,%%xmm2, %%xmm2 \n\t" // xmm2 = -0 7 -2 5 ! | |
300 "movaps %%xmm0, (%1,%0) \n\t" // output[2*k] | |
301 "movaps %%xmm2, (%2,%0) \n\t" // output[n2+2*k] | |
302 "neg %0 \n\t" | |
303 "shufps $27, %%xmm0, %%xmm0 \n\t" // xmm0 = 4 -3 6 -1 | |
304 "xorps %%xmm7, %%xmm0 \n\t" // xmm0 = -4 3 -6 1 ! | |
305 "shufps $27, %%xmm2, %%xmm2 \n\t" // xmm2 = 5 -2 7 -0 ! | |
306 "movaps %%xmm0, -16(%2,%0) \n\t" // output[n2-4-2*k] | |
307 "movaps %%xmm2, -16(%3,%0) \n\t" // output[n-4-2*k] | |
308 "add $16, %0 \n\t" | |
309 "jle 1b \n\t" | |
310 :"+r"(k) | |
311 :"r"(output), "r"(output+n2), "r"(output+n), "r"(z+n8) | |
312 :"memory" | |
313 ); | |
314 } | |
315 | |
7263 | 316 void ff_imdct_half_sse(MDCTContext *s, FFTSample *output, |
317 const FFTSample *input, FFTSample *tmp) | |
318 { | |
319 x86_reg j, k; | |
320 long n8, n4, n; | |
321 FFTComplex *z = (FFTComplex *)tmp; | |
322 | |
323 n = 1 << s->nbits; | |
324 n4 = n >> 2; | |
325 n8 = n >> 3; | |
326 | |
327 imdct_sse(s, input, tmp); | |
328 | |
329 j = -n; | |
330 k = n-16; | |
331 asm volatile("movaps %0, %%xmm7 \n\t"::"m"(*m1m1m1m1)); | |
332 asm volatile( | |
333 "1: \n\t" | |
334 "movaps (%3,%1), %%xmm0 \n\t" | |
335 "movaps (%3,%0), %%xmm1 \n\t" | |
336 "xorps %%xmm7, %%xmm0 \n\t" | |
337 "movaps %%xmm0, %%xmm2 \n\t" | |
338 "shufps $141,%%xmm1, %%xmm0 \n\t" | |
339 "shufps $216,%%xmm1, %%xmm2 \n\t" | |
340 "shufps $54, %%xmm0, %%xmm0 \n\t" | |
341 "shufps $156,%%xmm2, %%xmm2 \n\t" | |
342 "xorps %%xmm7, %%xmm0 \n\t" | |
343 "movaps %%xmm2, (%2,%1) \n\t" | |
344 "movaps %%xmm0, (%2,%0) \n\t" | |
345 "sub $16, %1 \n\t" | |
346 "add $16, %0 \n\t" | |
347 "jl 1b \n\t" | |
348 :"+r"(j), "+r"(k) | |
349 :"r"(output+n4), "r"(z+n8) | |
350 :"memory" | |
351 ); | |
352 } | |
353 |