annotate i386/simple_idct_mmx.c @ 350:6ebbecc10063 libavcodec

- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now. - Bug fix H.263+ AIC tables. - Warning fixes.
author pulento
date Thu, 02 May 2002 04:39:45 +0000
parents e80ad397d30e
children 6cef8253faab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1 /*
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
2 Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
3
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
4 This program is free software; you can redistribute it and/or modify
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
6 the Free Software Foundation; either version 2 of the License, or
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
7 (at your option) any later version.
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
8
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
12 GNU General Public License for more details.
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
13
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
15 along with this program; if not, write to the Free Software
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
17 */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
18
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
19 #include <inttypes.h>
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
20 #include "../dsputil.h"
213
e80ad397d30e Cygwin's mangling by Felix Buenemann <atmosfear@users.sourceforge.net>
nickols_k
parents: 209
diff changeset
21 #include "../mangle.h"
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
22
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
23 #define C0 23170 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
24 #define C1 22725 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
25 #define C2 21407 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
26 #define C3 19266 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
27 #define C4 16384 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
28 #define C5 12873 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
29 #define C6 8867 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
30 #define C7 4520 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
31
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
32 #define ROW_SHIFT 11
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
33 #define COL_SHIFT 20 // 6
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
34
350
6ebbecc10063 - Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents: 213
diff changeset
35 static const uint64_t __attribute__((aligned(8))) wm1010= 0xFFFF0000FFFF0000ULL;
6ebbecc10063 - Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents: 213
diff changeset
36 static const uint64_t __attribute__((aligned(8))) d40000= 0x0000000000040000ULL;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
37 static int16_t __attribute__((aligned(8))) temp[64];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
38 static int16_t __attribute__((aligned(8))) coeffs[]= {
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
39 1<<(ROW_SHIFT-1), 0, 1<<(ROW_SHIFT-1), 0,
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
40 // 1<<(COL_SHIFT-1), 0, 1<<(COL_SHIFT-1), 0,
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
41 // 0, 1<<(COL_SHIFT-1-16), 0, 1<<(COL_SHIFT-1-16),
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
42 1<<(ROW_SHIFT-1), 1, 1<<(ROW_SHIFT-1), 0,
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
43 // the 1 = ((1<<(COL_SHIFT-1))/C4)<<ROW_SHIFT :)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
44 // 0, 0, 0, 0,
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
45 // 0, 0, 0, 0,
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
46
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
47 C4, C4, C4, C4,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
48 C4, -C4, C4, -C4,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
49
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
50 C2, C6, C2, C6,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
51 C6, -C2, C6, -C2,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
52
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
53 C1, C3, C1, C3,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
54 C5, C7, C5, C7,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
55
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
56 C3, -C7, C3, -C7,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
57 -C1, -C5, -C1, -C5,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
58
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
59 C5, -C1, C5, -C1,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
60 C7, C3, C7, C3,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
61
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
62 C7, -C5, C7, -C5,
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
63 C3, -C1, C3, -C1
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
64 };
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
65
350
6ebbecc10063 - Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents: 213
diff changeset
66 #if 0
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
67 static void unused_var_killer(){
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
68 int a= wm1010 + d40000;
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
69 temp[0]=a;
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
70 }
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
71
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
72 static void inline idctCol (int16_t * col, int16_t *input)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
73 {
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
74 #undef C0
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
75 #undef C1
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
76 #undef C2
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
77 #undef C3
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
78 #undef C4
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
79 #undef C5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
80 #undef C6
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
81 #undef C7
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
82 int a0, a1, a2, a3, b0, b1, b2, b3;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
83 const int C0 = 23170; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
84 const int C1 = 22725; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
85 const int C2 = 21407; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
86 const int C3 = 19266; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
87 const int C4 = 16384; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
88 const int C5 = 12873; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
89 const int C6 = 8867; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
90 const int C7 = 4520; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
91 /*
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
92 if( !(col[8*1] | col[8*2] |col[8*3] |col[8*4] |col[8*5] |col[8*6] | col[8*7])) {
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
93 col[8*0] = col[8*1] = col[8*2] = col[8*3] = col[8*4] =
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
94 col[8*5] = col[8*6] = col[8*7] = col[8*0]<<3;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
95 return;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
96 }*/
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
97
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
98 col[8*0] = input[8*0 + 0];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
99 col[8*1] = input[8*2 + 0];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
100 col[8*2] = input[8*0 + 1];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
101 col[8*3] = input[8*2 + 1];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
102 col[8*4] = input[8*4 + 0];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
103 col[8*5] = input[8*6 + 0];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
104 col[8*6] = input[8*4 + 1];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
105 col[8*7] = input[8*6 + 1];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
106
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
107 a0 = C4*col[8*0] + C2*col[8*2] + C4*col[8*4] + C6*col[8*6] + (1<<(COL_SHIFT-1));
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
108 a1 = C4*col[8*0] + C6*col[8*2] - C4*col[8*4] - C2*col[8*6] + (1<<(COL_SHIFT-1));
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
109 a2 = C4*col[8*0] - C6*col[8*2] - C4*col[8*4] + C2*col[8*6] + (1<<(COL_SHIFT-1));
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
110 a3 = C4*col[8*0] - C2*col[8*2] + C4*col[8*4] - C6*col[8*6] + (1<<(COL_SHIFT-1));
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
111
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
112 b0 = C1*col[8*1] + C3*col[8*3] + C5*col[8*5] + C7*col[8*7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
113 b1 = C3*col[8*1] - C7*col[8*3] - C1*col[8*5] - C5*col[8*7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
114 b2 = C5*col[8*1] - C1*col[8*3] + C7*col[8*5] + C3*col[8*7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
115 b3 = C7*col[8*1] - C5*col[8*3] + C3*col[8*5] - C1*col[8*7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
116
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
117 col[8*0] = (a0 + b0) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
118 col[8*1] = (a1 + b1) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
119 col[8*2] = (a2 + b2) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
120 col[8*3] = (a3 + b3) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
121 col[8*4] = (a3 - b3) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
122 col[8*5] = (a2 - b2) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
123 col[8*6] = (a1 - b1) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
124 col[8*7] = (a0 - b0) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
125 }
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
126
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
127 static void inline idctRow (int16_t * output, int16_t * input)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
128 {
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
129 int16_t row[8];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
130
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
131 int a0, a1, a2, a3, b0, b1, b2, b3;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
132 const int C0 = 23170; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
133 const int C1 = 22725; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
134 const int C2 = 21407; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
135 const int C3 = 19266; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
136 const int C4 = 16384; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
137 const int C5 = 12873; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
138 const int C6 = 8867; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
139 const int C7 = 4520; //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
140
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
141 row[0] = input[0];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
142 row[2] = input[1];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
143 row[4] = input[4];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
144 row[6] = input[5];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
145 row[1] = input[8];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
146 row[3] = input[9];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
147 row[5] = input[12];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
148 row[7] = input[13];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
149
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
150 if( !(row[1] | row[2] |row[3] |row[4] |row[5] |row[6] | row[7]) ) {
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
151 row[0] = row[1] = row[2] = row[3] = row[4] =
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
152 row[5] = row[6] = row[7] = row[0]<<3;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
153 output[0] = row[0];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
154 output[2] = row[1];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
155 output[4] = row[2];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
156 output[6] = row[3];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
157 output[8] = row[4];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
158 output[10] = row[5];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
159 output[12] = row[6];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
160 output[14] = row[7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
161 return;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
162 }
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
163
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
164 a0 = C4*row[0] + C2*row[2] + C4*row[4] + C6*row[6] + (1<<(ROW_SHIFT-1));
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
165 a1 = C4*row[0] + C6*row[2] - C4*row[4] - C2*row[6] + (1<<(ROW_SHIFT-1));
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
166 a2 = C4*row[0] - C6*row[2] - C4*row[4] + C2*row[6] + (1<<(ROW_SHIFT-1));
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
167 a3 = C4*row[0] - C2*row[2] + C4*row[4] - C6*row[6] + (1<<(ROW_SHIFT-1));
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
168
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
169 b0 = C1*row[1] + C3*row[3] + C5*row[5] + C7*row[7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
170 b1 = C3*row[1] - C7*row[3] - C1*row[5] - C5*row[7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
171 b2 = C5*row[1] - C1*row[3] + C7*row[5] + C3*row[7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
172 b3 = C7*row[1] - C5*row[3] + C3*row[5] - C1*row[7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
173
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
174 row[0] = (a0 + b0) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
175 row[1] = (a1 + b1) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
176 row[2] = (a2 + b2) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
177 row[3] = (a3 + b3) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
178 row[4] = (a3 - b3) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
179 row[5] = (a2 - b2) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
180 row[6] = (a1 - b1) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
181 row[7] = (a0 - b0) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
182
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
183 output[0] = row[0];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
184 output[2] = row[1];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
185 output[4] = row[2];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
186 output[6] = row[3];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
187 output[8] = row[4];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
188 output[10] = row[5];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
189 output[12] = row[6];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
190 output[14] = row[7];
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
191 }
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
192 #endif
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
193
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
194 static inline void idct(int16_t *block)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
195 {
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
196 asm volatile(
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
197 #if 0 //Alternative, simpler variant
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
198
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
199 #define ROW_IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
200 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
201 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
202 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
203 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
204 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
205 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
206 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
207 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
208 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
209 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
210 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
211 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
212 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
213 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
214 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
215 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
216 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
217 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
218 "movq 56(%2), %%mm5 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
219 "pmaddwd %%mm3, %%mm5 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
220 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
221 "paddd %%mm0, %%mm1 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
222 "paddd %%mm0, %%mm0 \n\t" \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
223 "psubd %%mm1, %%mm0 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
224 "pmaddwd 64(%2), %%mm2 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
225 "paddd %%mm5, %%mm7 \n\t" /* B0 b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
226 "movq 72(%2), %%mm5 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
227 "pmaddwd %%mm3, %%mm5 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
228 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
229 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
230 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
231 "paddd %%mm2, %%mm5 \n\t" /* B1 b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
232 "psrad $" #shift ", %%mm7 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
233 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
234 "movq %%mm1, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
235 "paddd %%mm5, %%mm1 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
236 "psubd %%mm5, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
237 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
238 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
239 "packssdw %%mm1, %%mm7 \n\t" /* A1+B1 a1+b1 A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
240 "packssdw %%mm4, %%mm2 \n\t" /* A0-B0 a0-b0 A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
241 "movq %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
242 "movq " #src1 ", %%mm1 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
243 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
244 "movq %%mm2, 24+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
245 "pmaddwd %%mm1, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
246 "movq 88(%2), %%mm7 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
247 "pmaddwd 96(%2), %%mm1 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
248 "pmaddwd %%mm3, %%mm7 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
249 "movq %%mm0, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
250 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
251 "paddd %%mm7, %%mm4 \n\t" /* B2 b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
252 "paddd %%mm4, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
253 "psubd %%mm4, %%mm0 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
254 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
255 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
256 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
257 "paddd %%mm1, %%mm3 \n\t" /* B3 b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
258 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
259 "psubd %%mm3, %%mm4 \n\t" /* a3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
260 "psrad $" #shift ", %%mm6 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
261 "packssdw %%mm6, %%mm2 \n\t" /* A3+B3 a3+b3 A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
262 "movq %%mm2, 8+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
263 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
264 "packssdw %%mm0, %%mm4 \n\t" /* A2-B2 a2-b2 A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
265 "movq %%mm4, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
266
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
267 #define COL_IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
268 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
269 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
270 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
271 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
272 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
273 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
274 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
275 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
276 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
277 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
278 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
279 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
280 #rounder ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
281 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
282 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
283 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
284 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
285 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
286 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
287 "movq %%mm0, %%mm5 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
288 "paddd %%mm1, %%mm0 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
289 "psubd %%mm1, %%mm5 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
290 "movq 56(%2), %%mm1 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
291 "pmaddwd %%mm3, %%mm1 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
292 "pmaddwd 64(%2), %%mm2 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
293 "paddd %%mm1, %%mm7 \n\t" /* B0 b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
294 "movq 72(%2), %%mm1 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
295 "pmaddwd %%mm3, %%mm1 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
296 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
297 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
298 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
299 "paddd %%mm2, %%mm1 \n\t" /* B1 b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
300 "psrad $" #shift ", %%mm7 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
301 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
302 "movq %%mm0, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
303 "paddd %%mm1, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
304 "psubd %%mm1, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
305 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
306 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
307 "packssdw %%mm7, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
308 "movd %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
309 "packssdw %%mm0, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
310 "movd %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
311 "packssdw %%mm2, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
312 "movd %%mm2, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
313 "packssdw %%mm4, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
314 "movd %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
315 "movq " #src1 ", %%mm0 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
316 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
317 "pmaddwd %%mm0, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
318 "movq 88(%2), %%mm7 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
319 "pmaddwd 96(%2), %%mm0 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
320 "pmaddwd %%mm3, %%mm7 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
321 "movq %%mm5, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
322 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
323 "paddd %%mm7, %%mm4 \n\t" /* B2 b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
324 "paddd %%mm4, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
325 "psubd %%mm4, %%mm5 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
326 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
327 "psrad $" #shift ", %%mm5 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
328 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
329 "paddd %%mm0, %%mm3 \n\t" /* B3 b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
330 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
331 "psubd %%mm3, %%mm4 \n\t" /* a3-B3 a3-b3 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
332 "psrad $" #shift ", %%mm6 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
333 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
334 "packssdw %%mm2, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
335 "packssdw %%mm6, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
336 "movd %%mm2, 32+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
337 "packssdw %%mm4, %%mm4 \n\t" /* A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
338 "packssdw %%mm5, %%mm5 \n\t" /* A2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
339 "movd %%mm6, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
340 "movd %%mm4, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
341 "movd %%mm5, 80+" #dst " \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
342
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
343
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
344 #define DC_COND_ROW_IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
345 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
346 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
347 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
348 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
213
e80ad397d30e Cygwin's mangling by Felix Buenemann <atmosfear@users.sourceforge.net>
nickols_k
parents: 209
diff changeset
349 "movq "MANGLE(wm1010)", %%mm4 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
350 "pand %%mm0, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
351 "por %%mm1, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
352 "por %%mm2, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
353 "por %%mm3, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
354 "packssdw %%mm4,%%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
355 "movd %%mm4, %%eax \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
356 "orl %%eax, %%eax \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
357 "jz 1f \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
358 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
359 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
360 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
361 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
362 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
363 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
364 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
365 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
366 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
367 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
368 #rounder ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
369 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
370 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
371 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
372 "movq 56(%2), %%mm5 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
373 "pmaddwd %%mm3, %%mm5 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
374 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
375 "paddd %%mm0, %%mm1 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
376 "paddd %%mm0, %%mm0 \n\t" \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
377 "psubd %%mm1, %%mm0 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
378 "pmaddwd 64(%2), %%mm2 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
379 "paddd %%mm5, %%mm7 \n\t" /* B0 b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
380 "movq 72(%2), %%mm5 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
381 "pmaddwd %%mm3, %%mm5 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
382 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
383 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
384 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
385 "paddd %%mm2, %%mm5 \n\t" /* B1 b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
386 "psrad $" #shift ", %%mm7 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
387 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
388 "movq %%mm1, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
389 "paddd %%mm5, %%mm1 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
390 "psubd %%mm5, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
391 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
392 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
393 "packssdw %%mm1, %%mm7 \n\t" /* A1+B1 a1+b1 A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
394 "packssdw %%mm4, %%mm2 \n\t" /* A0-B0 a0-b0 A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
395 "movq %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
396 "movq " #src1 ", %%mm1 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
397 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
398 "movq %%mm2, 24+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
399 "pmaddwd %%mm1, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
400 "movq 88(%2), %%mm7 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
401 "pmaddwd 96(%2), %%mm1 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
402 "pmaddwd %%mm3, %%mm7 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
403 "movq %%mm0, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
404 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
405 "paddd %%mm7, %%mm4 \n\t" /* B2 b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
406 "paddd %%mm4, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
407 "psubd %%mm4, %%mm0 \n\t" /* a2-B2 a2-b2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
408 "psrad $" #shift ", %%mm2 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
409 "psrad $" #shift ", %%mm0 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
410 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
411 "paddd %%mm1, %%mm3 \n\t" /* B3 b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
412 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
413 "psubd %%mm3, %%mm4 \n\t" /* a3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
414 "psrad $" #shift ", %%mm6 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
415 "packssdw %%mm6, %%mm2 \n\t" /* A3+B3 a3+b3 A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
416 "movq %%mm2, 8+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
417 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
418 "packssdw %%mm0, %%mm4 \n\t" /* A2-B2 a2-b2 A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
419 "movq %%mm4, 16+" #dst " \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
420 "jmp 2f \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
421 "1: \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
422 "pslld $16, %%mm0 \n\t"\
213
e80ad397d30e Cygwin's mangling by Felix Buenemann <atmosfear@users.sourceforge.net>
nickols_k
parents: 209
diff changeset
423 "#paddd "MANGLE(d40000)", %%mm0 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
424 "psrad $13, %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
425 "packssdw %%mm0, %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
426 "movq %%mm0, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
427 "movq %%mm0, 8+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
428 "movq %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
429 "movq %%mm0, 24+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
430 "2: \n\t"
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
431
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
432
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
433 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
434 ROW_IDCT( (%0), 8(%0), 16(%0), 24(%0), 0(%1),paddd 8(%2), 11)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
435 /*ROW_IDCT( 32(%0), 40(%0), 48(%0), 56(%0), 32(%1), paddd (%2), 11)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
436 ROW_IDCT( 64(%0), 72(%0), 80(%0), 88(%0), 64(%1), paddd (%2), 11)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
437 ROW_IDCT( 96(%0),104(%0),112(%0),120(%0), 96(%1), paddd (%2), 11)*/
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
438
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
439 DC_COND_ROW_IDCT( 32(%0), 40(%0), 48(%0), 56(%0), 32(%1),paddd (%2), 11)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
440 DC_COND_ROW_IDCT( 64(%0), 72(%0), 80(%0), 88(%0), 64(%1),paddd (%2), 11)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
441 DC_COND_ROW_IDCT( 96(%0),104(%0),112(%0),120(%0), 96(%1),paddd (%2), 11)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
442
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
443
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
444 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
445 COL_IDCT( (%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
446 COL_IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
447 COL_IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
448 COL_IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
449
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
450 #else
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
451
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
452 #define DC_COND_IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
453 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
454 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
455 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
456 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
213
e80ad397d30e Cygwin's mangling by Felix Buenemann <atmosfear@users.sourceforge.net>
nickols_k
parents: 209
diff changeset
457 "movq "MANGLE(wm1010)", %%mm4 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
458 "pand %%mm0, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
459 "por %%mm1, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
460 "por %%mm2, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
461 "por %%mm3, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
462 "packssdw %%mm4,%%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
463 "movd %%mm4, %%eax \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
464 "orl %%eax, %%eax \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
465 "jz 1f \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
466 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
467 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
468 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
469 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
470 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
471 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
472 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
473 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
474 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
475 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
476 #rounder ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
477 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
478 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
479 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
480 "movq 56(%2), %%mm5 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
481 "pmaddwd %%mm3, %%mm5 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
482 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
483 "paddd %%mm0, %%mm1 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
484 "paddd %%mm0, %%mm0 \n\t" \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
485 "psubd %%mm1, %%mm0 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
486 "pmaddwd 64(%2), %%mm2 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
487 "paddd %%mm5, %%mm7 \n\t" /* B0 b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
488 "movq 72(%2), %%mm5 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
489 "pmaddwd %%mm3, %%mm5 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
490 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
491 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
492 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
493 "paddd %%mm2, %%mm5 \n\t" /* B1 b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
494 "psrad $" #shift ", %%mm7 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
495 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
496 "movq %%mm1, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
497 "paddd %%mm5, %%mm1 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
498 "psubd %%mm5, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
499 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
500 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
501 "packssdw %%mm1, %%mm7 \n\t" /* A1+B1 a1+b1 A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
502 "packssdw %%mm4, %%mm2 \n\t" /* A0-B0 a0-b0 A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
503 "movq %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
504 "movq " #src1 ", %%mm1 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
505 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
506 "movq %%mm2, 24+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
507 "pmaddwd %%mm1, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
508 "movq 88(%2), %%mm7 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
509 "pmaddwd 96(%2), %%mm1 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
510 "pmaddwd %%mm3, %%mm7 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
511 "movq %%mm0, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
512 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
513 "paddd %%mm7, %%mm4 \n\t" /* B2 b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
514 "paddd %%mm4, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
515 "psubd %%mm4, %%mm0 \n\t" /* a2-B2 a2-b2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
516 "psrad $" #shift ", %%mm2 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
517 "psrad $" #shift ", %%mm0 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
518 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
519 "paddd %%mm1, %%mm3 \n\t" /* B3 b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
520 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
521 "psubd %%mm3, %%mm4 \n\t" /* a3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
522 "psrad $" #shift ", %%mm6 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
523 "packssdw %%mm6, %%mm2 \n\t" /* A3+B3 a3+b3 A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
524 "movq %%mm2, 8+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
525 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
526 "packssdw %%mm0, %%mm4 \n\t" /* A2-B2 a2-b2 A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
527 "movq %%mm4, 16+" #dst " \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
528 "jmp 2f \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
529 "1: \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
530 "pslld $16, %%mm0 \n\t"\
213
e80ad397d30e Cygwin's mangling by Felix Buenemann <atmosfear@users.sourceforge.net>
nickols_k
parents: 209
diff changeset
531 "paddd "MANGLE(d40000)", %%mm0 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
532 "psrad $13, %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
533 "packssdw %%mm0, %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
534 "movq %%mm0, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
535 "movq %%mm0, 8+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
536 "movq %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
537 "movq %%mm0, 24+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
538 "2: \n\t"
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
539
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
540 #define Z_COND_IDCT(src0, src4, src1, src5, dst, rounder, shift, bt) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
541 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
542 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
543 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
544 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
545 "movq %%mm0, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
546 "por %%mm1, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
547 "por %%mm2, %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
548 "por %%mm3, %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
549 "packssdw %%mm4,%%mm4 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
550 "movd %%mm4, %%eax \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
551 "orl %%eax, %%eax \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
552 "jz " #bt " \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
553 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
554 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
555 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
556 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
557 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
558 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
559 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
560 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
561 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
562 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
563 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
564 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
565 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
566 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
567 "movq 56(%2), %%mm5 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
568 "pmaddwd %%mm3, %%mm5 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
569 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
570 "paddd %%mm0, %%mm1 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
571 "paddd %%mm0, %%mm0 \n\t" \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
572 "psubd %%mm1, %%mm0 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
573 "pmaddwd 64(%2), %%mm2 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
574 "paddd %%mm5, %%mm7 \n\t" /* B0 b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
575 "movq 72(%2), %%mm5 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
576 "pmaddwd %%mm3, %%mm5 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
577 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
578 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
579 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
580 "paddd %%mm2, %%mm5 \n\t" /* B1 b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
581 "psrad $" #shift ", %%mm7 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
582 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
583 "movq %%mm1, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
584 "paddd %%mm5, %%mm1 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
585 "psubd %%mm5, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
586 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
587 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
588 "packssdw %%mm1, %%mm7 \n\t" /* A1+B1 a1+b1 A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
589 "packssdw %%mm4, %%mm2 \n\t" /* A0-B0 a0-b0 A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
590 "movq %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
591 "movq " #src1 ", %%mm1 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
592 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
593 "movq %%mm2, 24+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
594 "pmaddwd %%mm1, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
595 "movq 88(%2), %%mm7 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
596 "pmaddwd 96(%2), %%mm1 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
597 "pmaddwd %%mm3, %%mm7 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
598 "movq %%mm0, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
599 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
600 "paddd %%mm7, %%mm4 \n\t" /* B2 b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
601 "paddd %%mm4, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
602 "psubd %%mm4, %%mm0 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
603 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
604 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
605 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
606 "paddd %%mm1, %%mm3 \n\t" /* B3 b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
607 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
608 "psubd %%mm3, %%mm4 \n\t" /* a3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
609 "psrad $" #shift ", %%mm6 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
610 "packssdw %%mm6, %%mm2 \n\t" /* A3+B3 a3+b3 A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
611 "movq %%mm2, 8+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
612 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
613 "packssdw %%mm0, %%mm4 \n\t" /* A2-B2 a2-b2 A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
614 "movq %%mm4, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
615
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
616 #define ROW_IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
617 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
618 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
619 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
620 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
621 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
622 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
623 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
624 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
625 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
626 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
627 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
628 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
629 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
630 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
631 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
632 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
633 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
634 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
635 "movq 56(%2), %%mm5 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
636 "pmaddwd %%mm3, %%mm5 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
637 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
638 "paddd %%mm0, %%mm1 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
639 "paddd %%mm0, %%mm0 \n\t" \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
640 "psubd %%mm1, %%mm0 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
641 "pmaddwd 64(%2), %%mm2 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
642 "paddd %%mm5, %%mm7 \n\t" /* B0 b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
643 "movq 72(%2), %%mm5 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
644 "pmaddwd %%mm3, %%mm5 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
645 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
646 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
647 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
648 "paddd %%mm2, %%mm5 \n\t" /* B1 b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
649 "psrad $" #shift ", %%mm7 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
650 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
651 "movq %%mm1, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
652 "paddd %%mm5, %%mm1 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
653 "psubd %%mm5, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
654 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
655 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
656 "packssdw %%mm1, %%mm7 \n\t" /* A1+B1 a1+b1 A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
657 "packssdw %%mm4, %%mm2 \n\t" /* A0-B0 a0-b0 A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
658 "movq %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
659 "movq " #src1 ", %%mm1 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
660 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
661 "movq %%mm2, 24+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
662 "pmaddwd %%mm1, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
663 "movq 88(%2), %%mm7 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
664 "pmaddwd 96(%2), %%mm1 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
665 "pmaddwd %%mm3, %%mm7 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
666 "movq %%mm0, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
667 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
668 "paddd %%mm7, %%mm4 \n\t" /* B2 b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
669 "paddd %%mm4, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
670 "psubd %%mm4, %%mm0 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
671 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
672 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
673 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
674 "paddd %%mm1, %%mm3 \n\t" /* B3 b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
675 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
676 "psubd %%mm3, %%mm4 \n\t" /* a3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
677 "psrad $" #shift ", %%mm6 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
678 "packssdw %%mm6, %%mm2 \n\t" /* A3+B3 a3+b3 A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
679 "movq %%mm2, 8+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
680 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
681 "packssdw %%mm0, %%mm4 \n\t" /* A2-B2 a2-b2 A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
682 "movq %%mm4, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
683
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
684 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
685 DC_COND_IDCT( 0(%0), 8(%0), 16(%0), 24(%0), 0(%1),paddd 8(%2), 11)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
686 Z_COND_IDCT( 32(%0), 40(%0), 48(%0), 56(%0), 32(%1),paddd (%2), 11, 4f)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
687 Z_COND_IDCT( 64(%0), 72(%0), 80(%0), 88(%0), 64(%1),paddd (%2), 11, 2f)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
688 Z_COND_IDCT( 96(%0),104(%0),112(%0),120(%0), 96(%1),paddd (%2), 11, 1f)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
689
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
690 #undef IDCT
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
691 #define IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
692 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
693 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
694 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
695 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
696 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
697 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
698 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
699 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
700 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
701 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
702 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
703 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
704 #rounder ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
705 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
706 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
707 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
708 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
709 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
710 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
711 "movq %%mm0, %%mm5 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
712 "paddd %%mm1, %%mm0 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
713 "psubd %%mm1, %%mm5 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
714 "movq 56(%2), %%mm1 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
715 "pmaddwd %%mm3, %%mm1 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
716 "pmaddwd 64(%2), %%mm2 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
717 "paddd %%mm1, %%mm7 \n\t" /* B0 b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
718 "movq 72(%2), %%mm1 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
719 "pmaddwd %%mm3, %%mm1 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
720 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
721 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
722 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
723 "paddd %%mm2, %%mm1 \n\t" /* B1 b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
724 "psrad $" #shift ", %%mm7 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
725 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
726 "movq %%mm0, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
727 "paddd %%mm1, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
728 "psubd %%mm1, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
729 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
730 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
731 "packssdw %%mm7, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
732 "movd %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
733 "packssdw %%mm0, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
734 "movd %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
735 "packssdw %%mm2, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
736 "movd %%mm2, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
737 "packssdw %%mm4, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
738 "movd %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
739 "movq " #src1 ", %%mm0 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
740 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
741 "pmaddwd %%mm0, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
742 "movq 88(%2), %%mm7 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
743 "pmaddwd 96(%2), %%mm0 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
744 "pmaddwd %%mm3, %%mm7 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
745 "movq %%mm5, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
746 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
747 "paddd %%mm7, %%mm4 \n\t" /* B2 b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
748 "paddd %%mm4, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
749 "psubd %%mm4, %%mm5 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
750 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
751 "psrad $" #shift ", %%mm5 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
752 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
753 "paddd %%mm0, %%mm3 \n\t" /* B3 b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
754 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
755 "psubd %%mm3, %%mm4 \n\t" /* a3-B3 a3-b3 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
756 "psrad $" #shift ", %%mm6 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
757 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
758 "packssdw %%mm2, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
759 "packssdw %%mm6, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
760 "movd %%mm2, 32+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
761 "packssdw %%mm4, %%mm4 \n\t" /* A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
762 "packssdw %%mm5, %%mm5 \n\t" /* A2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
763 "movd %%mm6, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
764 "movd %%mm4, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
765 "movd %%mm5, 80+" #dst " \n\t"
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
766
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
767
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
768 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
769 IDCT( (%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
770 IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
771 IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
772 IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
773 "jmp 9f \n\t"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
774
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
775 "#.balign 16 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
776 "4: \n\t"
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
777 Z_COND_IDCT( 64(%0), 72(%0), 80(%0), 88(%0), 64(%1),paddd (%2), 11, 6f)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
778 Z_COND_IDCT( 96(%0),104(%0),112(%0),120(%0), 96(%1),paddd (%2), 11, 5f)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
779
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
780 #undef IDCT
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
781 #define IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
782 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
783 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
784 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
785 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
786 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
787 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
788 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
789 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
790 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
791 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
792 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
793 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
794 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
795 #rounder ", %%mm0 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
796 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
797 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
798 "movq %%mm0, %%mm5 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
799 "paddd %%mm1, %%mm0 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
800 "psubd %%mm1, %%mm5 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
801 "movq 56(%2), %%mm1 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
802 "pmaddwd %%mm3, %%mm1 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
803 "movq 72(%2), %%mm7 \n\t" /* -C5 -C1 -C5 -C1 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
804 "pmaddwd %%mm3, %%mm7 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
805 "paddd %%mm4, %%mm1 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
806 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
807 "psubd %%mm1, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
808 "psrad $" #shift ", %%mm1 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
809 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
810 "movq %%mm0, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
811 "paddd %%mm7, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
812 "psubd %%mm7, %%mm2 \n\t" /* A1-B1 a1-b1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
813 "psrad $" #shift ", %%mm0 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
814 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
815 "packssdw %%mm1, %%mm1 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
816 "movd %%mm1, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
817 "packssdw %%mm0, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
818 "movd %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
819 "packssdw %%mm2, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
820 "movd %%mm2, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
821 "packssdw %%mm4, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
822 "movd %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
823 "movq 88(%2), %%mm1 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
824 "pmaddwd %%mm3, %%mm1 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
825 "movq %%mm5, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
826 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
827 "paddd %%mm1, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
828 "psubd %%mm1, %%mm5 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
829 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
830 "psrad $" #shift ", %%mm5 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
831 "movq %%mm6, %%mm1 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
832 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
833 "psubd %%mm3, %%mm1 \n\t" /* a3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
834 "psrad $" #shift ", %%mm6 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
835 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
836 "packssdw %%mm2, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
837 "packssdw %%mm6, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
838 "movd %%mm2, 32+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
839 "packssdw %%mm1, %%mm1 \n\t" /* A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
840 "packssdw %%mm5, %%mm5 \n\t" /* A2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
841 "movd %%mm6, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
842 "movd %%mm1, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
843 "movd %%mm5, 80+" #dst " \n\t"
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
844
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
845 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
846 IDCT( (%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
847 IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
848 IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
849 IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
850 "jmp 9f \n\t"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
851
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
852 "#.balign 16 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
853 "6: \n\t"
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
854 Z_COND_IDCT( 96(%0),104(%0),112(%0),120(%0), 96(%1),paddd (%2), 11, 7f)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
855
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
856 #undef IDCT
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
857 #define IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
858 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
859 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
860 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
861 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
862 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
863 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
864 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
865 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
866 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
867 "movq %%mm0, %%mm5 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
868 "movq 56(%2), %%mm1 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
869 "pmaddwd %%mm3, %%mm1 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
870 "movq 72(%2), %%mm7 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
871 "pmaddwd %%mm3, %%mm7 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
872 "paddd %%mm4, %%mm1 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
873 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
874 "psubd %%mm1, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
875 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
876 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
877 "movq %%mm0, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
878 "paddd %%mm7, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
879 "psubd %%mm7, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
880 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
881 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
882 "packssdw %%mm1, %%mm1 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
883 "movd %%mm1, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
884 "packssdw %%mm0, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
885 "movd %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
886 "packssdw %%mm2, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
887 "movd %%mm2, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
888 "packssdw %%mm4, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
889 "movd %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
890 "movq 88(%2), %%mm1 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
891 "pmaddwd %%mm3, %%mm1 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
892 "movq %%mm5, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
893 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
894 "paddd %%mm1, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
895 "psubd %%mm1, %%mm5 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
896 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
897 "psrad $" #shift ", %%mm5 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
898 "movq %%mm6, %%mm1 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
899 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
900 "psubd %%mm3, %%mm1 \n\t" /* a3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
901 "psrad $" #shift ", %%mm6 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
902 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
903 "packssdw %%mm2, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
904 "packssdw %%mm6, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
905 "movd %%mm2, 32+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
906 "packssdw %%mm1, %%mm1 \n\t" /* A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
907 "packssdw %%mm5, %%mm5 \n\t" /* A2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
908 "movd %%mm6, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
909 "movd %%mm1, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
910 "movd %%mm5, 80+" #dst " \n\t"
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
911
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
912
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
913 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
914 IDCT( (%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
915 IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
916 IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
917 IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
918 "jmp 9f \n\t"
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
919
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
920 "#.balign 16 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
921 "2: \n\t"
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
922 Z_COND_IDCT( 96(%0),104(%0),112(%0),120(%0), 96(%1),paddd (%2), 11, 3f)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
923
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
924 #undef IDCT
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
925 #define IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
926 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
927 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
928 "movq " #src5 ", %%mm3 \n\t" /* R7 R5 r7 r5 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
929 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
930 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
931 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
932 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
933 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
934 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
935 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
936 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
937 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
938 "movq %%mm0, %%mm5 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
939 "movq 56(%2), %%mm1 \n\t" /* C7 C5 C7 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
940 "pmaddwd %%mm3, %%mm1 \n\t" /* C7R7+C5R5 C7r7+C5r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
941 "pmaddwd 64(%2), %%mm2 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
942 "paddd %%mm1, %%mm7 \n\t" /* B0 b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
943 "movq 72(%2), %%mm1 \n\t" /* -C5 -C1 -C5 -C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
944 "pmaddwd %%mm3, %%mm1 \n\t" /* -C5R7-C1R5 -C5r7-C1r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
945 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
946 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
947 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
948 "paddd %%mm2, %%mm1 \n\t" /* B1 b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
949 "psrad $" #shift ", %%mm7 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
950 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
951 "movq %%mm0, %%mm2 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
952 "paddd %%mm1, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
953 "psubd %%mm1, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
954 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
955 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
956 "packssdw %%mm7, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
957 "movd %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
958 "packssdw %%mm0, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
959 "movd %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
960 "packssdw %%mm2, %%mm2 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
961 "movd %%mm2, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
962 "packssdw %%mm4, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
963 "movd %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
964 "movq " #src1 ", %%mm0 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
965 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
966 "pmaddwd %%mm0, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
967 "movq 88(%2), %%mm7 \n\t" /* C3 C7 C3 C7 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
968 "pmaddwd 96(%2), %%mm0 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
969 "pmaddwd %%mm3, %%mm7 \n\t" /* C3R7+C7R5 C3r7+C7r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
970 "movq %%mm5, %%mm2 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
971 "pmaddwd 104(%2), %%mm3 \n\t" /* -C1R7+C3R5 -C1r7+C3r5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
972 "paddd %%mm7, %%mm4 \n\t" /* B2 b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
973 "paddd %%mm4, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
974 "psubd %%mm4, %%mm5 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
975 "psrad $" #shift ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
976 "psrad $" #shift ", %%mm5 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
977 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
978 "paddd %%mm0, %%mm3 \n\t" /* B3 b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
979 "paddd %%mm3, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
980 "psubd %%mm3, %%mm4 \n\t" /* a3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
981 "psrad $" #shift ", %%mm6 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
982 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
983 "packssdw %%mm2, %%mm2 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
984 "packssdw %%mm6, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
985 "movd %%mm2, 32+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
986 "packssdw %%mm4, %%mm4 \n\t" /* A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
987 "packssdw %%mm5, %%mm5 \n\t" /* A2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
988 "movd %%mm6, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
989 "movd %%mm4, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
990 "movd %%mm5, 80+" #dst " \n\t"
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
991
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
992 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
993 IDCT( (%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
994 IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
995 IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
996 IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
997 "jmp 9f \n\t"
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
998
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
999 "#.balign 16 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1000 "3: \n\t"
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1001 #undef IDCT
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1002 #define IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1003 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1004 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1005 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1006 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1007 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1008 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1009 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1010 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1011 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1012 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1013 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1014 "movq %%mm0, %%mm5 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1015 "movq 64(%2), %%mm3 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1016 "pmaddwd %%mm2, %%mm3 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1017 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1018 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1019 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1020 "psrad $" #shift ", %%mm7 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1021 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1022 "movq %%mm0, %%mm1 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1023 "paddd %%mm3, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1024 "psubd %%mm3, %%mm1 \n\t" /* A1-B1 a1-b1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1025 "psrad $" #shift ", %%mm0 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1026 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1027 "packssdw %%mm7, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1028 "movd %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1029 "packssdw %%mm0, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1030 "movd %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1031 "packssdw %%mm1, %%mm1 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1032 "movd %%mm1, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1033 "packssdw %%mm4, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1034 "movd %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1035 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1036 "pmaddwd %%mm2, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1037 "pmaddwd 96(%2), %%mm2 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1038 "movq %%mm5, %%mm1 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1039 "paddd %%mm4, %%mm1 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1040 "psubd %%mm4, %%mm5 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1041 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1042 "psrad $" #shift ", %%mm5 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1043 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1044 "paddd %%mm2, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1045 "psubd %%mm2, %%mm4 \n\t" /* a3-B3 a3-b3 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1046 "psrad $" #shift ", %%mm6 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1047 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1048 "packssdw %%mm1, %%mm1 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1049 "packssdw %%mm6, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1050 "movd %%mm1, 32+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1051 "packssdw %%mm4, %%mm4 \n\t" /* A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1052 "packssdw %%mm5, %%mm5 \n\t" /* A2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1053 "movd %%mm6, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1054 "movd %%mm4, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1055 "movd %%mm5, 80+" #dst " \n\t"
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1056
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1057
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1058 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1059 IDCT( (%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1060 IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1061 IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1062 IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1063 "jmp 9f \n\t"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1064
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1065 "#.balign 16 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1066 "5: \n\t"
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1067 #undef IDCT
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1068 #define IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1069 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1070 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1071 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1072 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1073 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1074 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1075 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1076 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1077 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1078 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1079 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1080 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1081 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1082 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1083 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1084 "movq %%mm0, %%mm5 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1085 "paddd %%mm1, %%mm0 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1086 "psubd %%mm1, %%mm5 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1087 "movq 8+" #src0 ", %%mm2 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1088 "movq 8+" #src4 ", %%mm3 \n\t" /* R6 R2 r6 r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1089 "movq 16(%2), %%mm1 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1090 "pmaddwd %%mm2, %%mm1 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1091 "movq 24(%2), %%mm7 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1092 "pmaddwd %%mm7, %%mm2 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1093 "movq 32(%2), %%mm7 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1094 "pmaddwd %%mm3, %%mm7 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1095 "pmaddwd 40(%2), %%mm3 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1096 #rounder ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1097 "paddd %%mm1, %%mm7 \n\t" /* A0 a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1098 "paddd %%mm1, %%mm1 \n\t" /* 2C0 2c0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1099 #rounder ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1100 "psubd %%mm7, %%mm1 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1101 "paddd %%mm2, %%mm3 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1102 "paddd %%mm2, %%mm2 \n\t" /* 2C1 2c1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1103 "psubd %%mm3, %%mm2 \n\t" /* A2 a2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1104 "psrad $" #shift ", %%mm4 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1105 "psrad $" #shift ", %%mm7 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1106 "psrad $" #shift ", %%mm3 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1107 "packssdw %%mm7, %%mm4 \n\t" /* A0 a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1108 "movq %%mm4, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1109 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1110 "packssdw %%mm3, %%mm0 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1111 "movq %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1112 "movq %%mm0, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1113 "movq %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1114 "psrad $" #shift ", %%mm5 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1115 "psrad $" #shift ", %%mm6 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1116 "psrad $" #shift ", %%mm2 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1117 "packssdw %%mm2, %%mm5 \n\t" /* A2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1118 "movq %%mm5, 32+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1119 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1120 "packssdw %%mm1, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1121 "movq %%mm6, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1122 "movq %%mm6, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1123 "movq %%mm5, 80+" #dst " \n\t"
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1124
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1125
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1126 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1127 IDCT( 0(%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1128 //IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1129 IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1130 //IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1131 "jmp 9f \n\t"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1132
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1133
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1134 "#.balign 16 \n\t"\
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1135 "1: \n\t"
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1136 #undef IDCT
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1137 #define IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1138 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1139 "movq " #src4 ", %%mm1 \n\t" /* R6 R2 r6 r2 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1140 "movq " #src1 ", %%mm2 \n\t" /* R3 R1 r3 r1 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1141 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1142 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1143 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1144 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1145 "movq 32(%2), %%mm5 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1146 "pmaddwd %%mm1, %%mm5 \n\t" /* C6R6+C2R2 C6r6+C2r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1147 "movq 40(%2), %%mm6 \n\t" /* -C2 C6 -C2 C6 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1148 "pmaddwd %%mm6, %%mm1 \n\t" /* -C2R6+C6R2 -C2r6+C6r2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1149 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1150 "movq %%mm4, %%mm6 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1151 "movq 48(%2), %%mm7 \n\t" /* C3 C1 C3 C1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1152 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1153 "pmaddwd %%mm2, %%mm7 \n\t" /* C3R3+C1R1 C3r3+C1r1 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1154 "paddd %%mm5, %%mm4 \n\t" /* A0 a0 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1155 "psubd %%mm5, %%mm6 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1156 "movq %%mm0, %%mm5 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1157 "paddd %%mm1, %%mm0 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1158 "psubd %%mm1, %%mm5 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1159 "movq 64(%2), %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1160 "pmaddwd %%mm2, %%mm1 \n\t" /* -C7R3+C3R1 -C7r3+C3r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1161 "paddd %%mm4, %%mm7 \n\t" /* A0+B0 a0+b0 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1162 "paddd %%mm4, %%mm4 \n\t" /* 2A0 2a0 */\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1163 "psubd %%mm7, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1164 "psrad $" #shift ", %%mm7 \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1165 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1166 "movq %%mm0, %%mm3 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1167 "paddd %%mm1, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1168 "psubd %%mm1, %%mm3 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1169 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1170 "psrad $" #shift ", %%mm3 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1171 "packssdw %%mm7, %%mm7 \n\t" /* A0+B0 a0+b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1172 "movd %%mm7, " #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1173 "packssdw %%mm0, %%mm0 \n\t" /* A1+B1 a1+b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1174 "movd %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1175 "packssdw %%mm3, %%mm3 \n\t" /* A1-B1 a1-b1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1176 "movd %%mm3, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1177 "packssdw %%mm4, %%mm4 \n\t" /* A0-B0 a0-b0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1178 "movd %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1179 "movq 80(%2), %%mm4 \n\t" /* -C1 C5 -C1 C5 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1180 "pmaddwd %%mm2, %%mm4 \n\t" /* -C1R3+C5R1 -C1r3+C5r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1181 "pmaddwd 96(%2), %%mm2 \n\t" /* -C5R3+C7R1 -C5r3+C7r1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1182 "movq %%mm5, %%mm3 \n\t" /* A2 a2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1183 "paddd %%mm4, %%mm3 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1184 "psubd %%mm4, %%mm5 \n\t" /* a2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1185 "psrad $" #shift ", %%mm3 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1186 "psrad $" #shift ", %%mm5 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1187 "movq %%mm6, %%mm4 \n\t" /* A3 a3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1188 "paddd %%mm2, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1189 "psubd %%mm2, %%mm4 \n\t" /* a3-B3 a3-b3 */\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1190 "psrad $" #shift ", %%mm6 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1191 "packssdw %%mm3, %%mm3 \n\t" /* A2+B2 a2+b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1192 "movd %%mm3, 32+" #dst " \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1193 "psrad $" #shift ", %%mm4 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1194 "packssdw %%mm6, %%mm6 \n\t" /* A3+B3 a3+b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1195 "movd %%mm6, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1196 "packssdw %%mm4, %%mm4 \n\t" /* A3-B3 a3-b3 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1197 "packssdw %%mm5, %%mm5 \n\t" /* A2-B2 a2-b2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1198 "movd %%mm4, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1199 "movd %%mm5, 80+" #dst " \n\t"
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1200
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1201
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1202 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1203 IDCT( (%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1204 IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1205 IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1206 IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1207 "jmp 9f \n\t"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1208
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1209
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1210 "#.balign 16 \n\t"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1211 "7: \n\t"
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1212 #undef IDCT
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1213 #define IDCT(src0, src4, src1, src5, dst, rounder, shift) \
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1214 "movq " #src0 ", %%mm0 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1215 "movq 16(%2), %%mm4 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1216 "pmaddwd %%mm0, %%mm4 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1217 "movq 24(%2), %%mm5 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1218 "pmaddwd %%mm5, %%mm0 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1219 #rounder ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1220 #rounder ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1221 "psrad $" #shift ", %%mm4 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1222 "psrad $" #shift ", %%mm0 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1223 "movq 8+" #src0 ", %%mm2 \n\t" /* R4 R0 r4 r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1224 "movq 16(%2), %%mm1 \n\t" /* C4 C4 C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1225 "pmaddwd %%mm2, %%mm1 \n\t" /* C4R4+C4R0 C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1226 "movq 24(%2), %%mm7 \n\t" /* -C4 C4 -C4 C4 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1227 "pmaddwd %%mm7, %%mm2 \n\t" /* -C4R4+C4R0 -C4r4+C4r0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1228 "movq 32(%2), %%mm7 \n\t" /* C6 C2 C6 C2 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1229 #rounder ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1230 #rounder ", %%mm2 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1231 "psrad $" #shift ", %%mm1 \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1232 "packssdw %%mm1, %%mm4 \n\t" /* A0 a0 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1233 "movq %%mm4, " #dst " \n\t"\
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1234 "psrad $" #shift ", %%mm2 \n\t"\
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1235 "packssdw %%mm2, %%mm0 \n\t" /* A1 a1 */\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1236 "movq %%mm0, 16+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1237 "movq %%mm0, 96+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1238 "movq %%mm4, 112+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1239 "movq %%mm0, 32+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1240 "movq %%mm4, 48+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1241 "movq %%mm4, 64+" #dst " \n\t"\
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1242 "movq %%mm0, 80+" #dst " \n\t"
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1243
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1244 //IDCT( src0, src4, src1, src5, dst, rounder, shift)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1245 IDCT( 0(%1), 64(%1), 32(%1), 96(%1), 0(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1246 //IDCT( 8(%1), 72(%1), 40(%1), 104(%1), 4(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1247 IDCT( 16(%1), 80(%1), 48(%1), 112(%1), 8(%0),/nop, 20)
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1248 //IDCT( 24(%1), 88(%1), 56(%1), 120(%1), 12(%0),/nop, 20)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1249
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1250
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1251 #endif
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1252
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1253 /*
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1254 Input
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1255 00 40 04 44 20 60 24 64
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1256 10 30 14 34 50 70 54 74
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1257 01 41 03 43 21 61 23 63
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1258 11 31 13 33 51 71 53 73
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1259 02 42 06 46 22 62 26 66
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1260 12 32 16 36 52 72 56 76
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1261 05 45 07 47 25 65 27 67
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1262 15 35 17 37 55 75 57 77
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1263
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1264 Temp
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1265 00 04 10 14 20 24 30 34
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1266 40 44 50 54 60 64 70 74
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1267 01 03 11 13 21 23 31 33
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1268 41 43 51 53 61 63 71 73
209
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1269 02 06 12 16 22 26 32 36
c0d8ecae7ac5 (commit by michael)
arpi_esp
parents: 175
diff changeset
1270 42 46 52 56 62 66 72 76
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1271 05 07 15 17 25 27 35 37
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1272 45 47 55 57 65 67 75 77
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1273 */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1274
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1275 "9: \n\t"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1276 :: "r" (block), "r" (temp), "r" (coeffs)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1277 : "%eax"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1278 );
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1279 }
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1280
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1281 void simple_idct_mmx(int16_t *block)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1282 {
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1283 idct(block);
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1284 }