annotate i386/snowdsp_mmx.c @ 8400:4877d4c6d8ae libavcodec

Add automatic prefix handling to yasm functions. Does nothing now, but will be useful for porting x264 asm in the future.
author darkshikari
date Fri, 19 Dec 2008 03:01:08 +0000
parents eebc7209c47f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
1 /*
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
2 * MMX and SSE2 optimized snow DSP utils
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
3 * Copyright (c) 2005-2006 Robert Edele <yartrebo@earthlink.net>
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
4 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3566
diff changeset
5 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3566
diff changeset
6 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3566
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3566
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
11 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3566
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
15 * Lesser General Public License for more details.
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
16 *
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3566
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
20 */
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
21
6763
f7cbb7733146 Use full path for #includes from another directory.
diego
parents: 6755
diff changeset
22 #include "libavutil/x86_cpu.h"
f7cbb7733146 Use full path for #includes from another directory.
diego
parents: 6755
diff changeset
23 #include "libavcodec/avcodec.h"
f7cbb7733146 Use full path for #includes from another directory.
diego
parents: 6755
diff changeset
24 #include "libavcodec/snow.h"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
25
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
26 void ff_snow_horizontal_compose97i_sse2(IDWTELEM *b, int width){
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
27 const int w2= (width+1)>>1;
5613
544bcf5891ad Replace complicated and currently broken manual alignment code by
reimar
parents: 5610
diff changeset
28 DECLARE_ALIGNED_16(IDWTELEM, temp[width>>1]);
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
29 const int w_l= (width>>1);
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
30 const int w_r= w2 - 1;
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
31 int i;
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
32
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
33 { // Lift 0
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
34 IDWTELEM * const ref = b + w2 - 1;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
35 IDWTELEM b_0 = b[0]; //By allowing the first entry in b[0] to be calculated twice
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
36 // (the first time erroneously), we allow the SSE2 code to run an extra pass.
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
37 // The savings in code and time are well worth having to store this value and
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
38 // calculate b[0] correctly afterwards.
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
39
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
40 i = 0;
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
41 __asm__ volatile(
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
42 "pcmpeqd %%xmm7, %%xmm7 \n\t"
5599
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
43 "pcmpeqd %%xmm3, %%xmm3 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
44 "psllw $1, %%xmm3 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
45 "paddw %%xmm7, %%xmm3 \n\t"
5610
michael
parents: 5602
diff changeset
46 "psllw $13, %%xmm3 \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
47 ::);
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
48 for(; i<w_l-15; i+=16){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
49 __asm__ volatile(
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
50 "movdqu (%1), %%xmm1 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
51 "movdqu 16(%1), %%xmm5 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
52 "movdqu 2(%1), %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
53 "movdqu 18(%1), %%xmm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
54 "paddw %%xmm1, %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
55 "paddw %%xmm5, %%xmm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
56 "paddw %%xmm7, %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
57 "paddw %%xmm7, %%xmm6 \n\t"
5599
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
58 "pmulhw %%xmm3, %%xmm2 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
59 "pmulhw %%xmm3, %%xmm6 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
60 "paddw (%0), %%xmm2 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
61 "paddw 16(%0), %%xmm6 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
62 "movdqa %%xmm2, (%0) \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
63 "movdqa %%xmm6, 16(%0) \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
64 :: "r"(&b[i]), "r"(&ref[i])
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
65 : "memory"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
66 );
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
67 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
68 snow_horizontal_compose_lift_lead_out(i, b, b, ref, width, w_l, 0, W_DM, W_DO, W_DS);
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
69 b[0] = b_0 - ((W_DM * 2 * ref[1]+W_DO)>>W_DS);
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
70 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
71
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
72 { // Lift 1
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
73 IDWTELEM * const dst = b+w2;
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
74
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
75 i = 0;
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
76 for(; (((x86_reg)&dst[i]) & 0x1F) && i<w_r; i++){
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
77 dst[i] = dst[i] - (b[i] + b[i + 1]);
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
78 }
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
79 for(; i<w_r-15; i+=16){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
80 __asm__ volatile(
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
81 "movdqu (%1), %%xmm1 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
82 "movdqu 16(%1), %%xmm5 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
83 "movdqu 2(%1), %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
84 "movdqu 18(%1), %%xmm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
85 "paddw %%xmm1, %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
86 "paddw %%xmm5, %%xmm6 \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
87 "movdqa (%0), %%xmm0 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
88 "movdqa 16(%0), %%xmm4 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
89 "psubw %%xmm2, %%xmm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
90 "psubw %%xmm6, %%xmm4 \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
91 "movdqa %%xmm0, (%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
92 "movdqa %%xmm4, 16(%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
93 :: "r"(&dst[i]), "r"(&b[i])
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
94 : "memory"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
95 );
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
96 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
97 snow_horizontal_compose_lift_lead_out(i, dst, dst, b, width, w_r, 1, W_CM, W_CO, W_CS);
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
98 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
99
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
100 { // Lift 2
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
101 IDWTELEM * const ref = b+w2 - 1;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
102 IDWTELEM b_0 = b[0];
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
103
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
104 i = 0;
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
105 __asm__ volatile(
5599
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
106 "psllw $15, %%xmm7 \n\t"
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
107 "pcmpeqw %%xmm6, %%xmm6 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
108 "psrlw $13, %%xmm6 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
109 "paddw %%xmm7, %%xmm6 \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
110 ::);
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
111 for(; i<w_l-15; i+=16){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
112 __asm__ volatile(
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
113 "movdqu (%1), %%xmm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
114 "movdqu 16(%1), %%xmm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
115 "movdqu 2(%1), %%xmm1 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
116 "movdqu 18(%1), %%xmm5 \n\t" //FIXME try aligned reads and shifts
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
117 "paddw %%xmm6, %%xmm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
118 "paddw %%xmm6, %%xmm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
119 "paddw %%xmm7, %%xmm1 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
120 "paddw %%xmm7, %%xmm5 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
121 "pavgw %%xmm1, %%xmm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
122 "pavgw %%xmm5, %%xmm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
123 "psubw %%xmm7, %%xmm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
124 "psubw %%xmm7, %%xmm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
125 "psraw $1, %%xmm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
126 "psraw $1, %%xmm4 \n\t"
5555
0790af6d0028 remove idiotc double subtraction from the sse2 code (untested, no sse2 here)
michael
parents: 5554
diff changeset
127 "movdqa (%0), %%xmm1 \n\t"
0790af6d0028 remove idiotc double subtraction from the sse2 code (untested, no sse2 here)
michael
parents: 5554
diff changeset
128 "movdqa 16(%0), %%xmm5 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
129 "paddw %%xmm1, %%xmm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
130 "paddw %%xmm5, %%xmm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
131 "psraw $2, %%xmm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
132 "psraw $2, %%xmm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
133 "paddw %%xmm1, %%xmm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
134 "paddw %%xmm5, %%xmm4 \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
135 "movdqa %%xmm0, (%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
136 "movdqa %%xmm4, 16(%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
137 :: "r"(&b[i]), "r"(&ref[i])
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
138 : "memory"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
139 );
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
140 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
141 snow_horizontal_compose_liftS_lead_out(i, b, b, ref, width, w_l);
5555
0790af6d0028 remove idiotc double subtraction from the sse2 code (untested, no sse2 here)
michael
parents: 5554
diff changeset
142 b[0] = b_0 + ((2 * ref[1] + W_BO-1 + 4 * b_0) >> W_BS);
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
143 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
144
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
145 { // Lift 3
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
146 IDWTELEM * const src = b+w2;
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
147
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
148 i = 0;
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
149 for(; (((x86_reg)&temp[i]) & 0x1F) && i<w_r; i++){
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
150 temp[i] = src[i] - ((-W_AM*(b[i] + b[i+1]))>>W_AS);
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
151 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
152 for(; i<w_r-7; i+=8){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
153 __asm__ volatile(
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
154 "movdqu 2(%1), %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
155 "movdqu 18(%1), %%xmm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
156 "paddw (%1), %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
157 "paddw 16(%1), %%xmm6 \n\t"
5565
93082c591c8b Change rounding of the horizontal DWT to match the vertical one.
michael
parents: 5563
diff changeset
158 "movdqu (%0), %%xmm0 \n\t"
93082c591c8b Change rounding of the horizontal DWT to match the vertical one.
michael
parents: 5563
diff changeset
159 "movdqu 16(%0), %%xmm4 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
160 "paddw %%xmm2, %%xmm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
161 "paddw %%xmm6, %%xmm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
162 "psraw $1, %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
163 "psraw $1, %%xmm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
164 "paddw %%xmm0, %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
165 "paddw %%xmm4, %%xmm6 \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
166 "movdqa %%xmm2, (%2) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
167 "movdqa %%xmm6, 16(%2) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
168 :: "r"(&src[i]), "r"(&b[i]), "r"(&temp[i])
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
169 : "memory"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
170 );
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
171 }
5565
93082c591c8b Change rounding of the horizontal DWT to match the vertical one.
michael
parents: 5563
diff changeset
172 snow_horizontal_compose_lift_lead_out(i, temp, src, b, width, w_r, 1, -W_AM, W_AO+1, W_AS);
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
173 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
174
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
175 {
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
176 snow_interleave_line_header(&i, width, b, temp);
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
177
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
178 for (; (i & 0x3E) != 0x3E; i-=2){
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
179 b[i+1] = temp[i>>1];
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
180 b[i] = b[i>>1];
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
181 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
182 for (i-=62; i>=0; i-=64){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
183 __asm__ volatile(
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
184 "movdqa (%1), %%xmm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
185 "movdqa 16(%1), %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
186 "movdqa 32(%1), %%xmm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
187 "movdqa 48(%1), %%xmm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
188 "movdqa (%1), %%xmm1 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
189 "movdqa 16(%1), %%xmm3 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
190 "movdqa 32(%1), %%xmm5 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
191 "movdqa 48(%1), %%xmm7 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
192 "punpcklwd (%2), %%xmm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
193 "punpcklwd 16(%2), %%xmm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
194 "punpcklwd 32(%2), %%xmm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
195 "punpcklwd 48(%2), %%xmm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
196 "movdqa %%xmm0, (%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
197 "movdqa %%xmm2, 32(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
198 "movdqa %%xmm4, 64(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
199 "movdqa %%xmm6, 96(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
200 "punpckhwd (%2), %%xmm1 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
201 "punpckhwd 16(%2), %%xmm3 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
202 "punpckhwd 32(%2), %%xmm5 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
203 "punpckhwd 48(%2), %%xmm7 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
204 "movdqa %%xmm1, 16(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
205 "movdqa %%xmm3, 48(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
206 "movdqa %%xmm5, 80(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
207 "movdqa %%xmm7, 112(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
208 :: "r"(&(b)[i]), "r"(&(b)[i>>1]), "r"(&(temp)[i>>1])
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
209 : "memory"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
210 );
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
211 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
212 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
213 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
214
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
215 void ff_snow_horizontal_compose97i_mmx(IDWTELEM *b, int width){
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
216 const int w2= (width+1)>>1;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
217 IDWTELEM temp[width >> 1];
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
218 const int w_l= (width>>1);
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
219 const int w_r= w2 - 1;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
220 int i;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
221
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
222 { // Lift 0
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
223 IDWTELEM * const ref = b + w2 - 1;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
224
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
225 i = 1;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
226 b[0] = b[0] - ((W_DM * 2 * ref[1]+W_DO)>>W_DS);
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
227 __asm__ volatile(
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
228 "pcmpeqw %%mm7, %%mm7 \n\t"
5599
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
229 "pcmpeqw %%mm3, %%mm3 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
230 "psllw $1, %%mm3 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
231 "paddw %%mm7, %%mm3 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
232 "psllw $13, %%mm3 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
233 ::);
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
234 for(; i<w_l-7; i+=8){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
235 __asm__ volatile(
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
236 "movq (%1), %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
237 "movq 8(%1), %%mm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
238 "paddw 2(%1), %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
239 "paddw 10(%1), %%mm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
240 "paddw %%mm7, %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
241 "paddw %%mm7, %%mm6 \n\t"
5599
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
242 "pmulhw %%mm3, %%mm2 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
243 "pmulhw %%mm3, %%mm6 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
244 "paddw (%0), %%mm2 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
245 "paddw 8(%0), %%mm6 \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
246 "movq %%mm2, (%0) \n\t"
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
247 "movq %%mm6, 8(%0) \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
248 :: "r"(&b[i]), "r"(&ref[i])
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
249 : "memory"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
250 );
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
251 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
252 snow_horizontal_compose_lift_lead_out(i, b, b, ref, width, w_l, 0, W_DM, W_DO, W_DS);
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
253 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
254
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
255 { // Lift 1
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
256 IDWTELEM * const dst = b+w2;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
257
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
258 i = 0;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
259 for(; i<w_r-7; i+=8){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
260 __asm__ volatile(
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
261 "movq (%1), %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
262 "movq 8(%1), %%mm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
263 "paddw 2(%1), %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
264 "paddw 10(%1), %%mm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
265 "movq (%0), %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
266 "movq 8(%0), %%mm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
267 "psubw %%mm2, %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
268 "psubw %%mm6, %%mm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
269 "movq %%mm0, (%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
270 "movq %%mm4, 8(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
271 :: "r"(&dst[i]), "r"(&b[i])
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
272 : "memory"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
273 );
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
274 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
275 snow_horizontal_compose_lift_lead_out(i, dst, dst, b, width, w_r, 1, W_CM, W_CO, W_CS);
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
276 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
277
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
278 { // Lift 2
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
279 IDWTELEM * const ref = b+w2 - 1;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
280
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
281 i = 1;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
282 b[0] = b[0] + (((2 * ref[1] + W_BO) + 4 * b[0]) >> W_BS);
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
283 __asm__ volatile(
5599
f81e45d5ebb1 optimize 1st horizontal lifting step
michael
parents: 5598
diff changeset
284 "psllw $15, %%mm7 \n\t"
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
285 "pcmpeqw %%mm6, %%mm6 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
286 "psrlw $13, %%mm6 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
287 "paddw %%mm7, %%mm6 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
288 ::);
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
289 for(; i<w_l-7; i+=8){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
290 __asm__ volatile(
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
291 "movq (%1), %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
292 "movq 8(%1), %%mm4 \n\t"
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
293 "movq 2(%1), %%mm1 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
294 "movq 10(%1), %%mm5 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
295 "paddw %%mm6, %%mm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
296 "paddw %%mm6, %%mm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
297 "paddw %%mm7, %%mm1 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
298 "paddw %%mm7, %%mm5 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
299 "pavgw %%mm1, %%mm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
300 "pavgw %%mm5, %%mm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
301 "psubw %%mm7, %%mm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
302 "psubw %%mm7, %%mm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
303 "psraw $1, %%mm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
304 "psraw $1, %%mm4 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
305 "movq (%0), %%mm1 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
306 "movq 8(%0), %%mm5 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
307 "paddw %%mm1, %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
308 "paddw %%mm5, %%mm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
309 "psraw $2, %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
310 "psraw $2, %%mm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
311 "paddw %%mm1, %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
312 "paddw %%mm5, %%mm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
313 "movq %%mm0, (%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
314 "movq %%mm4, 8(%0) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
315 :: "r"(&b[i]), "r"(&ref[i])
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
316 : "memory"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
317 );
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
318 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
319 snow_horizontal_compose_liftS_lead_out(i, b, b, ref, width, w_l);
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
320 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
321
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
322 { // Lift 3
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
323 IDWTELEM * const src = b+w2;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
324 i = 0;
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
325
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
326 for(; i<w_r-7; i+=8){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
327 __asm__ volatile(
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
328 "movq 2(%1), %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
329 "movq 10(%1), %%mm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
330 "paddw (%1), %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
331 "paddw 8(%1), %%mm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
332 "movq (%0), %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
333 "movq 8(%0), %%mm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
334 "paddw %%mm2, %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
335 "paddw %%mm6, %%mm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
336 "psraw $1, %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
337 "psraw $1, %%mm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
338 "paddw %%mm0, %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
339 "paddw %%mm4, %%mm6 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
340 "movq %%mm2, (%2) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
341 "movq %%mm6, 8(%2) \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
342 :: "r"(&src[i]), "r"(&b[i]), "r"(&temp[i])
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
343 : "memory"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
344 );
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
345 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
346 snow_horizontal_compose_lift_lead_out(i, temp, src, b, width, w_r, 1, -W_AM, W_AO+1, W_AS);
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
347 }
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
348
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
349 {
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
350 snow_interleave_line_header(&i, width, b, temp);
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
351
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
352 for (; (i & 0x1E) != 0x1E; i-=2){
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
353 b[i+1] = temp[i>>1];
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
354 b[i] = b[i>>1];
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
355 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
356 for (i-=30; i>=0; i-=32){
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
357 __asm__ volatile(
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
358 "movq (%1), %%mm0 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
359 "movq 8(%1), %%mm2 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
360 "movq 16(%1), %%mm4 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
361 "movq 24(%1), %%mm6 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
362 "movq (%1), %%mm1 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
363 "movq 8(%1), %%mm3 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
364 "movq 16(%1), %%mm5 \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
365 "movq 24(%1), %%mm7 \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
366 "punpcklwd (%2), %%mm0 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
367 "punpcklwd 8(%2), %%mm2 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
368 "punpcklwd 16(%2), %%mm4 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
369 "punpcklwd 24(%2), %%mm6 \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
370 "movq %%mm0, (%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
371 "movq %%mm2, 16(%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
372 "movq %%mm4, 32(%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
373 "movq %%mm6, 48(%0) \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
374 "punpckhwd (%2), %%mm1 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
375 "punpckhwd 8(%2), %%mm3 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
376 "punpckhwd 16(%2), %%mm5 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
377 "punpckhwd 24(%2), %%mm7 \n\t"
3210
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
378 "movq %%mm1, 8(%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
379 "movq %%mm3, 24(%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
380 "movq %%mm5, 40(%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
381 "movq %%mm7, 56(%0) \n\t"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
382 :: "r"(&b[i]), "r"(&b[i>>1]), "r"(&temp[i>>1])
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
383 : "memory"
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
384 );
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
385 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
386 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
387 }
81cafbc23b8d snow mmx+sse2 optimizations, part 4
corey
parents: 3207
diff changeset
388
5602
3b21f3268707 CONFIG_7REGS has been renamed to HAVE_7REGS
ramiro
parents: 5601
diff changeset
389 #ifdef HAVE_7REGS
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
390 #define snow_vertical_compose_sse2_load_add(op,r,t0,t1,t2,t3)\
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
391 ""op" ("r",%%"REG_d"), %%"t0" \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
392 ""op" 16("r",%%"REG_d"), %%"t1" \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
393 ""op" 32("r",%%"REG_d"), %%"t2" \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
394 ""op" 48("r",%%"REG_d"), %%"t3" \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
395
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
396 #define snow_vertical_compose_sse2_load(r,t0,t1,t2,t3)\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
397 snow_vertical_compose_sse2_load_add("movdqa",r,t0,t1,t2,t3)
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
398
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
399 #define snow_vertical_compose_sse2_add(r,t0,t1,t2,t3)\
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
400 snow_vertical_compose_sse2_load_add("paddw",r,t0,t1,t2,t3)
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
401
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
402 #define snow_vertical_compose_r2r_sub(s0,s1,s2,s3,t0,t1,t2,t3)\
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
403 "psubw %%"s0", %%"t0" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
404 "psubw %%"s1", %%"t1" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
405 "psubw %%"s2", %%"t2" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
406 "psubw %%"s3", %%"t3" \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
407
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
408 #define snow_vertical_compose_sse2_store(w,s0,s1,s2,s3)\
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
409 "movdqa %%"s0", ("w",%%"REG_d") \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
410 "movdqa %%"s1", 16("w",%%"REG_d") \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
411 "movdqa %%"s2", 32("w",%%"REG_d") \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
412 "movdqa %%"s3", 48("w",%%"REG_d") \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
413
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
414 #define snow_vertical_compose_sra(n,t0,t1,t2,t3)\
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
415 "psraw $"n", %%"t0" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
416 "psraw $"n", %%"t1" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
417 "psraw $"n", %%"t2" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
418 "psraw $"n", %%"t3" \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
419
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
420 #define snow_vertical_compose_r2r_add(s0,s1,s2,s3,t0,t1,t2,t3)\
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
421 "paddw %%"s0", %%"t0" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
422 "paddw %%"s1", %%"t1" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
423 "paddw %%"s2", %%"t2" \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
424 "paddw %%"s3", %%"t3" \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
425
5600
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
426 #define snow_vertical_compose_r2r_pmulhw(s0,s1,s2,s3,t0,t1,t2,t3)\
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
427 "pmulhw %%"s0", %%"t0" \n\t"\
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
428 "pmulhw %%"s1", %%"t1" \n\t"\
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
429 "pmulhw %%"s2", %%"t2" \n\t"\
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
430 "pmulhw %%"s3", %%"t3" \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
431
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
432 #define snow_vertical_compose_sse2_move(s0,s1,s2,s3,t0,t1,t2,t3)\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
433 "movdqa %%"s0", %%"t0" \n\t"\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
434 "movdqa %%"s1", %%"t1" \n\t"\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
435 "movdqa %%"s2", %%"t2" \n\t"\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
436 "movdqa %%"s3", %%"t3" \n\t"
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
437
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
438 void ff_snow_vertical_compose97i_sse2(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width){
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
439 x86_reg i = width;
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
440
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
441 while(i & 0x1F)
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
442 {
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
443 i--;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
444 b4[i] -= (W_DM*(b3[i] + b5[i])+W_DO)>>W_DS;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
445 b3[i] -= (W_CM*(b2[i] + b4[i])+W_CO)>>W_CS;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
446 b2[i] += (W_BM*(b1[i] + b3[i])+4*b2[i]+W_BO)>>W_BS;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
447 b1[i] += (W_AM*(b0[i] + b2[i])+W_AO)>>W_AS;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
448 }
5596
051caa9c1ba5 simplify senselessly complex addressing
michael
parents: 5595
diff changeset
449 i+=i;
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
450
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
451 __asm__ volatile (
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
452 "jmp 2f \n\t"
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
453 "1: \n\t"
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
454 snow_vertical_compose_sse2_load("%4","xmm0","xmm2","xmm4","xmm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
455 snow_vertical_compose_sse2_add("%6","xmm0","xmm2","xmm4","xmm6")
5600
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
456
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
457
5600
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
458 "pcmpeqw %%xmm0, %%xmm0 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
459 "pcmpeqw %%xmm2, %%xmm2 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
460 "paddw %%xmm2, %%xmm2 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
461 "paddw %%xmm0, %%xmm2 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
462 "psllw $13, %%xmm2 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
463 snow_vertical_compose_r2r_add("xmm0","xmm0","xmm0","xmm0","xmm1","xmm3","xmm5","xmm7")
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
464 snow_vertical_compose_r2r_pmulhw("xmm2","xmm2","xmm2","xmm2","xmm1","xmm3","xmm5","xmm7")
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
465 snow_vertical_compose_sse2_add("%5","xmm1","xmm3","xmm5","xmm7")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
466 snow_vertical_compose_sse2_store("%5","xmm1","xmm3","xmm5","xmm7")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
467 snow_vertical_compose_sse2_load("%4","xmm0","xmm2","xmm4","xmm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
468 snow_vertical_compose_sse2_add("%3","xmm1","xmm3","xmm5","xmm7")
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
469 snow_vertical_compose_r2r_sub("xmm1","xmm3","xmm5","xmm7","xmm0","xmm2","xmm4","xmm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
470 snow_vertical_compose_sse2_store("%4","xmm0","xmm2","xmm4","xmm6")
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
471
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
472 "pcmpeqw %%xmm7, %%xmm7 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
473 "pcmpeqw %%xmm5, %%xmm5 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
474 "psllw $15, %%xmm7 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
475 "psrlw $13, %%xmm5 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
476 "paddw %%xmm7, %%xmm5 \n\t"
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
477 snow_vertical_compose_r2r_add("xmm5","xmm5","xmm5","xmm5","xmm0","xmm2","xmm4","xmm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
478 "movq (%2,%%"REG_d"), %%xmm1 \n\t"
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
479 "movq 8(%2,%%"REG_d"), %%xmm3 \n\t"
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
480 "paddw %%xmm7, %%xmm1 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
481 "paddw %%xmm7, %%xmm3 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
482 "pavgw %%xmm1, %%xmm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
483 "pavgw %%xmm3, %%xmm2 \n\t"
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
484 "movq 16(%2,%%"REG_d"), %%xmm1 \n\t"
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
485 "movq 24(%2,%%"REG_d"), %%xmm3 \n\t"
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
486 "paddw %%xmm7, %%xmm1 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
487 "paddw %%xmm7, %%xmm3 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
488 "pavgw %%xmm1, %%xmm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
489 "pavgw %%xmm3, %%xmm6 \n\t"
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
490 snow_vertical_compose_r2r_sub("xmm7","xmm7","xmm7","xmm7","xmm0","xmm2","xmm4","xmm6")
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
491 snow_vertical_compose_sra("1","xmm0","xmm2","xmm4","xmm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
492 snow_vertical_compose_sse2_add("%3","xmm0","xmm2","xmm4","xmm6")
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
493
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
494 snow_vertical_compose_sra("2","xmm0","xmm2","xmm4","xmm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
495 snow_vertical_compose_sse2_add("%3","xmm0","xmm2","xmm4","xmm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
496 snow_vertical_compose_sse2_store("%3","xmm0","xmm2","xmm4","xmm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
497 snow_vertical_compose_sse2_add("%1","xmm0","xmm2","xmm4","xmm6")
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
498 snow_vertical_compose_sse2_move("xmm0","xmm2","xmm4","xmm6","xmm1","xmm3","xmm5","xmm7")
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
499 snow_vertical_compose_sra("1","xmm0","xmm2","xmm4","xmm6")
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
500 snow_vertical_compose_r2r_add("xmm1","xmm3","xmm5","xmm7","xmm0","xmm2","xmm4","xmm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
501 snow_vertical_compose_sse2_add("%2","xmm0","xmm2","xmm4","xmm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
502 snow_vertical_compose_sse2_store("%2","xmm0","xmm2","xmm4","xmm6")
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
503
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
504 "2: \n\t"
5596
051caa9c1ba5 simplify senselessly complex addressing
michael
parents: 5595
diff changeset
505 "sub $64, %%"REG_d" \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
506 "jge 1b \n\t"
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
507 :"+d"(i)
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
508 :"r"(b0),"r"(b1),"r"(b2),"r"(b3),"r"(b4),"r"(b5));
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
509 }
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
510
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
511 #define snow_vertical_compose_mmx_load_add(op,r,t0,t1,t2,t3)\
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
512 ""op" ("r",%%"REG_d"), %%"t0" \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
513 ""op" 8("r",%%"REG_d"), %%"t1" \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
514 ""op" 16("r",%%"REG_d"), %%"t2" \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
515 ""op" 24("r",%%"REG_d"), %%"t3" \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
516
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
517 #define snow_vertical_compose_mmx_load(r,t0,t1,t2,t3)\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
518 snow_vertical_compose_mmx_load_add("movq",r,t0,t1,t2,t3)
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
519
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
520 #define snow_vertical_compose_mmx_add(r,t0,t1,t2,t3)\
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
521 snow_vertical_compose_mmx_load_add("paddw",r,t0,t1,t2,t3)
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
522
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
523 #define snow_vertical_compose_mmx_store(w,s0,s1,s2,s3)\
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
524 "movq %%"s0", ("w",%%"REG_d") \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
525 "movq %%"s1", 8("w",%%"REG_d") \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
526 "movq %%"s2", 16("w",%%"REG_d") \n\t"\
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
527 "movq %%"s3", 24("w",%%"REG_d") \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
528
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
529 #define snow_vertical_compose_mmx_move(s0,s1,s2,s3,t0,t1,t2,t3)\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
530 "movq %%"s0", %%"t0" \n\t"\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
531 "movq %%"s1", %%"t1" \n\t"\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
532 "movq %%"s2", %%"t2" \n\t"\
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
533 "movq %%"s3", %%"t3" \n\t"
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
534
5600
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
535
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
536 void ff_snow_vertical_compose97i_mmx(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width){
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
537 x86_reg i = width;
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
538 while(i & 15)
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
539 {
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
540 i--;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
541 b4[i] -= (W_DM*(b3[i] + b5[i])+W_DO)>>W_DS;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
542 b3[i] -= (W_CM*(b2[i] + b4[i])+W_CO)>>W_CS;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
543 b2[i] += (W_BM*(b1[i] + b3[i])+4*b2[i]+W_BO)>>W_BS;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
544 b1[i] += (W_AM*(b0[i] + b2[i])+W_AO)>>W_AS;
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
545 }
5596
051caa9c1ba5 simplify senselessly complex addressing
michael
parents: 5595
diff changeset
546 i+=i;
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
547 __asm__ volatile(
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
548 "jmp 2f \n\t"
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
549 "1: \n\t"
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
550
5600
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
551 snow_vertical_compose_mmx_load("%4","mm1","mm3","mm5","mm7")
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
552 snow_vertical_compose_mmx_add("%6","mm1","mm3","mm5","mm7")
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
553 "pcmpeqw %%mm0, %%mm0 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
554 "pcmpeqw %%mm2, %%mm2 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
555 "paddw %%mm2, %%mm2 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
556 "paddw %%mm0, %%mm2 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
557 "psllw $13, %%mm2 \n\t"
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
558 snow_vertical_compose_r2r_add("mm0","mm0","mm0","mm0","mm1","mm3","mm5","mm7")
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
559 snow_vertical_compose_r2r_pmulhw("mm2","mm2","mm2","mm2","mm1","mm3","mm5","mm7")
f302e395f552 optimize the first vertical lifting step, this also prevents another
michael
parents: 5599
diff changeset
560 snow_vertical_compose_mmx_add("%5","mm1","mm3","mm5","mm7")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
561 snow_vertical_compose_mmx_store("%5","mm1","mm3","mm5","mm7")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
562 snow_vertical_compose_mmx_load("%4","mm0","mm2","mm4","mm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
563 snow_vertical_compose_mmx_add("%3","mm1","mm3","mm5","mm7")
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
564 snow_vertical_compose_r2r_sub("mm1","mm3","mm5","mm7","mm0","mm2","mm4","mm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
565 snow_vertical_compose_mmx_store("%4","mm0","mm2","mm4","mm6")
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
566 "pcmpeqw %%mm7, %%mm7 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
567 "pcmpeqw %%mm5, %%mm5 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
568 "psllw $15, %%mm7 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
569 "psrlw $13, %%mm5 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
570 "paddw %%mm7, %%mm5 \n\t"
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
571 snow_vertical_compose_r2r_add("mm5","mm5","mm5","mm5","mm0","mm2","mm4","mm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
572 "movq (%2,%%"REG_d"), %%mm1 \n\t"
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
573 "movq 8(%2,%%"REG_d"), %%mm3 \n\t"
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
574 "paddw %%mm7, %%mm1 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
575 "paddw %%mm7, %%mm3 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
576 "pavgw %%mm1, %%mm0 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
577 "pavgw %%mm3, %%mm2 \n\t"
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
578 "movq 16(%2,%%"REG_d"), %%mm1 \n\t"
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
579 "movq 24(%2,%%"REG_d"), %%mm3 \n\t"
5594
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
580 "paddw %%mm7, %%mm1 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
581 "paddw %%mm7, %%mm3 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
582 "pavgw %%mm1, %%mm4 \n\t"
384629ebcb93 avoid overflow in the 3rd lifting step, this now needs mmx2 at minimum
michael
parents: 5593
diff changeset
583 "pavgw %%mm3, %%mm6 \n\t"
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
584 snow_vertical_compose_r2r_sub("mm7","mm7","mm7","mm7","mm0","mm2","mm4","mm6")
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
585 snow_vertical_compose_sra("1","mm0","mm2","mm4","mm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
586 snow_vertical_compose_mmx_add("%3","mm0","mm2","mm4","mm6")
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
587
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
588 snow_vertical_compose_sra("2","mm0","mm2","mm4","mm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
589 snow_vertical_compose_mmx_add("%3","mm0","mm2","mm4","mm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
590 snow_vertical_compose_mmx_store("%3","mm0","mm2","mm4","mm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
591 snow_vertical_compose_mmx_add("%1","mm0","mm2","mm4","mm6")
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
592 snow_vertical_compose_mmx_move("mm0","mm2","mm4","mm6","mm1","mm3","mm5","mm7")
5595
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
593 snow_vertical_compose_sra("1","mm0","mm2","mm4","mm6")
9da9e00a04a5 cosmetics
michael
parents: 5594
diff changeset
594 snow_vertical_compose_r2r_add("mm1","mm3","mm5","mm7","mm0","mm2","mm4","mm6")
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
595 snow_vertical_compose_mmx_add("%2","mm0","mm2","mm4","mm6")
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
596 snow_vertical_compose_mmx_store("%2","mm0","mm2","mm4","mm6")
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
597
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
598 "2: \n\t"
5596
051caa9c1ba5 simplify senselessly complex addressing
michael
parents: 5595
diff changeset
599 "sub $32, %%"REG_d" \n\t"
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
600 "jge 1b \n\t"
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
601 :"+d"(i)
5597
d350b388a6ae get rid of totally senseless "m" + read in register we have enough
michael
parents: 5596
diff changeset
602 :"r"(b0),"r"(b1),"r"(b2),"r"(b3),"r"(b4),"r"(b5));
3207
33110c1008a4 Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
diff changeset
603 }
5602
3b21f3268707 CONFIG_7REGS has been renamed to HAVE_7REGS
ramiro
parents: 5601
diff changeset
604 #endif //HAVE_7REGS
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
605
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
606 #define snow_inner_add_yblock_sse2_header \
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
607 IDWTELEM * * dst_array = sb->line + src_y;\
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
608 x86_reg tmp;\
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
609 __asm__ volatile(\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
610 "mov %7, %%"REG_c" \n\t"\
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
611 "mov %6, %2 \n\t"\
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
612 "mov %4, %%"REG_S" \n\t"\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
613 "pxor %%xmm7, %%xmm7 \n\t" /* 0 */\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
614 "pcmpeqd %%xmm3, %%xmm3 \n\t"\
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
615 "psllw $15, %%xmm3 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
616 "psrlw $12, %%xmm3 \n\t" /* FRAC_BITS >> 1 */\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
617 "1: \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
618 "mov %1, %%"REG_D" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
619 "mov (%%"REG_D"), %%"REG_D" \n\t"\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
620 "add %3, %%"REG_D" \n\t"
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
621
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
622 #define snow_inner_add_yblock_sse2_start_8(out_reg1, out_reg2, ptr_offset, s_offset)\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
623 "mov "PTR_SIZE"*"ptr_offset"(%%"REG_a"), %%"REG_d"; \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
624 "movq (%%"REG_d"), %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
625 "movq (%%"REG_d", %%"REG_c"), %%"out_reg2" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
626 "punpcklbw %%xmm7, %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
627 "punpcklbw %%xmm7, %%"out_reg2" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
628 "movq "s_offset"(%%"REG_S"), %%xmm0 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
629 "movq "s_offset"+16(%%"REG_S"), %%xmm4 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
630 "punpcklbw %%xmm7, %%xmm0 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
631 "punpcklbw %%xmm7, %%xmm4 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
632 "pmullw %%xmm0, %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
633 "pmullw %%xmm4, %%"out_reg2" \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
634
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
635 #define snow_inner_add_yblock_sse2_start_16(out_reg1, out_reg2, ptr_offset, s_offset)\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
636 "mov "PTR_SIZE"*"ptr_offset"(%%"REG_a"), %%"REG_d"; \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
637 "movq (%%"REG_d"), %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
638 "movq 8(%%"REG_d"), %%"out_reg2" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
639 "punpcklbw %%xmm7, %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
640 "punpcklbw %%xmm7, %%"out_reg2" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
641 "movq "s_offset"(%%"REG_S"), %%xmm0 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
642 "movq "s_offset"+8(%%"REG_S"), %%xmm4 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
643 "punpcklbw %%xmm7, %%xmm0 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
644 "punpcklbw %%xmm7, %%xmm4 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
645 "pmullw %%xmm0, %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
646 "pmullw %%xmm4, %%"out_reg2" \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
647
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
648 #define snow_inner_add_yblock_sse2_accum_8(ptr_offset, s_offset) \
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
649 snow_inner_add_yblock_sse2_start_8("xmm2", "xmm6", ptr_offset, s_offset)\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
650 "paddusw %%xmm2, %%xmm1 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
651 "paddusw %%xmm6, %%xmm5 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
652
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
653 #define snow_inner_add_yblock_sse2_accum_16(ptr_offset, s_offset) \
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
654 snow_inner_add_yblock_sse2_start_16("xmm2", "xmm6", ptr_offset, s_offset)\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
655 "paddusw %%xmm2, %%xmm1 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
656 "paddusw %%xmm6, %%xmm5 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
657
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
658 #define snow_inner_add_yblock_sse2_end_common1\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
659 "add $32, %%"REG_S" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
660 "add %%"REG_c", %0 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
661 "add %%"REG_c", "PTR_SIZE"*3(%%"REG_a");\n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
662 "add %%"REG_c", "PTR_SIZE"*2(%%"REG_a");\n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
663 "add %%"REG_c", "PTR_SIZE"*1(%%"REG_a");\n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
664 "add %%"REG_c", (%%"REG_a") \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
665
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
666 #define snow_inner_add_yblock_sse2_end_common2\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
667 "jnz 1b \n\t"\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
668 :"+m"(dst8),"+m"(dst_array),"=&r"(tmp)\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
669 :\
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
670 "rm"((x86_reg)(src_x<<1)),"m"(obmc),"a"(block),"m"((x86_reg)b_h),"m"((x86_reg)src_stride):\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
671 "%"REG_c"","%"REG_S"","%"REG_D"","%"REG_d"");
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
672
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
673 #define snow_inner_add_yblock_sse2_end_8\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
674 "sal $1, %%"REG_c" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
675 "add $"PTR_SIZE"*2, %1 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
676 snow_inner_add_yblock_sse2_end_common1\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
677 "sar $1, %%"REG_c" \n\t"\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
678 "sub $2, %2 \n\t"\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
679 snow_inner_add_yblock_sse2_end_common2
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
680
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
681 #define snow_inner_add_yblock_sse2_end_16\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
682 "add $"PTR_SIZE"*1, %1 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
683 snow_inner_add_yblock_sse2_end_common1\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
684 "dec %2 \n\t"\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
685 snow_inner_add_yblock_sse2_end_common2
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
686
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
687 static void inner_add_yblock_bw_8_obmc_16_bh_even_sse2(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h,
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
688 int src_x, int src_y, x86_reg src_stride, slice_buffer * sb, int add, uint8_t * dst8){
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
689 snow_inner_add_yblock_sse2_header
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
690 snow_inner_add_yblock_sse2_start_8("xmm1", "xmm5", "3", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
691 snow_inner_add_yblock_sse2_accum_8("2", "8")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
692 snow_inner_add_yblock_sse2_accum_8("1", "128")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
693 snow_inner_add_yblock_sse2_accum_8("0", "136")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
694
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
695 "mov %0, %%"REG_d" \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
696 "movdqa (%%"REG_D"), %%xmm0 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
697 "movdqa %%xmm1, %%xmm2 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
698
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
699 "punpckhwd %%xmm7, %%xmm1 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
700 "punpcklwd %%xmm7, %%xmm2 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
701 "paddd %%xmm2, %%xmm0 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
702 "movdqa 16(%%"REG_D"), %%xmm2 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
703 "paddd %%xmm1, %%xmm2 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
704 "paddd %%xmm3, %%xmm0 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
705 "paddd %%xmm3, %%xmm2 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
706
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
707 "mov %1, %%"REG_D" \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
708 "mov "PTR_SIZE"(%%"REG_D"), %%"REG_D";\n\t"
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
709 "add %3, %%"REG_D" \n\t"
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
710
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
711 "movdqa (%%"REG_D"), %%xmm4 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
712 "movdqa %%xmm5, %%xmm6 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
713 "punpckhwd %%xmm7, %%xmm5 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
714 "punpcklwd %%xmm7, %%xmm6 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
715 "paddd %%xmm6, %%xmm4 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
716 "movdqa 16(%%"REG_D"), %%xmm6 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
717 "paddd %%xmm5, %%xmm6 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
718 "paddd %%xmm3, %%xmm4 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
719 "paddd %%xmm3, %%xmm6 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
720
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
721 "psrad $8, %%xmm0 \n\t" /* FRAC_BITS. */
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
722 "psrad $8, %%xmm2 \n\t" /* FRAC_BITS. */
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
723 "packssdw %%xmm2, %%xmm0 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
724 "packuswb %%xmm7, %%xmm0 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
725 "movq %%xmm0, (%%"REG_d") \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
726
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
727 "psrad $8, %%xmm4 \n\t" /* FRAC_BITS. */
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
728 "psrad $8, %%xmm6 \n\t" /* FRAC_BITS. */
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
729 "packssdw %%xmm6, %%xmm4 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
730 "packuswb %%xmm7, %%xmm4 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
731 "movq %%xmm4, (%%"REG_d",%%"REG_c");\n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
732 snow_inner_add_yblock_sse2_end_8
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
733 }
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
734
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
735 static void inner_add_yblock_bw_16_obmc_32_sse2(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h,
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
736 int src_x, int src_y, x86_reg src_stride, slice_buffer * sb, int add, uint8_t * dst8){
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
737 snow_inner_add_yblock_sse2_header
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
738 snow_inner_add_yblock_sse2_start_16("xmm1", "xmm5", "3", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
739 snow_inner_add_yblock_sse2_accum_16("2", "16")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
740 snow_inner_add_yblock_sse2_accum_16("1", "512")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
741 snow_inner_add_yblock_sse2_accum_16("0", "528")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
742
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
743 "mov %0, %%"REG_d" \n\t"
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
744 "psrlw $4, %%xmm1 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
745 "psrlw $4, %%xmm5 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
746 "paddw (%%"REG_D"), %%xmm1 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
747 "paddw 16(%%"REG_D"), %%xmm5 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
748 "paddw %%xmm3, %%xmm1 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
749 "paddw %%xmm3, %%xmm5 \n\t"
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
750 "psraw $4, %%xmm1 \n\t" /* FRAC_BITS. */
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
751 "psraw $4, %%xmm5 \n\t" /* FRAC_BITS. */
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
752 "packuswb %%xmm5, %%xmm1 \n\t"
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
753
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
754 "movdqu %%xmm1, (%%"REG_d") \n\t"
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
755
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
756 snow_inner_add_yblock_sse2_end_16
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
757 }
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
758
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
759 #define snow_inner_add_yblock_mmx_header \
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
760 IDWTELEM * * dst_array = sb->line + src_y;\
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
761 x86_reg tmp;\
8031
eebc7209c47f Convert asm keyword into __asm__.
flameeyes
parents: 6763
diff changeset
762 __asm__ volatile(\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
763 "mov %7, %%"REG_c" \n\t"\
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
764 "mov %6, %2 \n\t"\
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
765 "mov %4, %%"REG_S" \n\t"\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
766 "pxor %%mm7, %%mm7 \n\t" /* 0 */\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
767 "pcmpeqd %%mm3, %%mm3 \n\t"\
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
768 "psllw $15, %%mm3 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
769 "psrlw $12, %%mm3 \n\t" /* FRAC_BITS >> 1 */\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
770 "1: \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
771 "mov %1, %%"REG_D" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
772 "mov (%%"REG_D"), %%"REG_D" \n\t"\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
773 "add %3, %%"REG_D" \n\t"
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
774
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
775 #define snow_inner_add_yblock_mmx_start(out_reg1, out_reg2, ptr_offset, s_offset, d_offset)\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
776 "mov "PTR_SIZE"*"ptr_offset"(%%"REG_a"), %%"REG_d"; \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
777 "movd "d_offset"(%%"REG_d"), %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
778 "movd "d_offset"+4(%%"REG_d"), %%"out_reg2" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
779 "punpcklbw %%mm7, %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
780 "punpcklbw %%mm7, %%"out_reg2" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
781 "movd "s_offset"(%%"REG_S"), %%mm0 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
782 "movd "s_offset"+4(%%"REG_S"), %%mm4 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
783 "punpcklbw %%mm7, %%mm0 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
784 "punpcklbw %%mm7, %%mm4 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
785 "pmullw %%mm0, %%"out_reg1" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
786 "pmullw %%mm4, %%"out_reg2" \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
787
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
788 #define snow_inner_add_yblock_mmx_accum(ptr_offset, s_offset, d_offset) \
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
789 snow_inner_add_yblock_mmx_start("mm2", "mm6", ptr_offset, s_offset, d_offset)\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
790 "paddusw %%mm2, %%mm1 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
791 "paddusw %%mm6, %%mm5 \n\t"
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
792
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
793 #define snow_inner_add_yblock_mmx_mix(read_offset, write_offset)\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
794 "mov %0, %%"REG_d" \n\t"\
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
795 "psrlw $4, %%mm1 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
796 "psrlw $4, %%mm5 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
797 "paddw "read_offset"(%%"REG_D"), %%mm1 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
798 "paddw "read_offset"+8(%%"REG_D"), %%mm5 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
799 "paddw %%mm3, %%mm1 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
800 "paddw %%mm3, %%mm5 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
801 "psraw $4, %%mm1 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
802 "psraw $4, %%mm5 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
803 "packuswb %%mm5, %%mm1 \n\t"\
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
804 "movq %%mm1, "write_offset"(%%"REG_d") \n\t"
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
805
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
806 #define snow_inner_add_yblock_mmx_end(s_step)\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
807 "add $"s_step", %%"REG_S" \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
808 "add %%"REG_c", "PTR_SIZE"*3(%%"REG_a");\n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
809 "add %%"REG_c", "PTR_SIZE"*2(%%"REG_a");\n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
810 "add %%"REG_c", "PTR_SIZE"*1(%%"REG_a");\n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
811 "add %%"REG_c", (%%"REG_a") \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
812 "add $"PTR_SIZE"*1, %1 \n\t"\
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
813 "add %%"REG_c", %0 \n\t"\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
814 "dec %2 \n\t"\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
815 "jnz 1b \n\t"\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
816 :"+m"(dst8),"+m"(dst_array),"=&r"(tmp)\
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
817 :\
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
818 "rm"((x86_reg)(src_x<<1)),"m"(obmc),"a"(block),"m"((x86_reg)b_h),"m"((x86_reg)src_stride):\
3566
b63ef6fcbc70 Fix x86 SIMD asm and pic, patch from Martin von Gagern <Martin.vGagern@gmx.net>
lu_zero
parents: 3398
diff changeset
819 "%"REG_c"","%"REG_S"","%"REG_D"","%"REG_d"");
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
820
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
821 static void inner_add_yblock_bw_8_obmc_16_mmx(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h,
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
822 int src_x, int src_y, x86_reg src_stride, slice_buffer * sb, int add, uint8_t * dst8){
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
823 snow_inner_add_yblock_mmx_header
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
824 snow_inner_add_yblock_mmx_start("mm1", "mm5", "3", "0", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
825 snow_inner_add_yblock_mmx_accum("2", "8", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
826 snow_inner_add_yblock_mmx_accum("1", "128", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
827 snow_inner_add_yblock_mmx_accum("0", "136", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
828 snow_inner_add_yblock_mmx_mix("0", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
829 snow_inner_add_yblock_mmx_end("16")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
830 }
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
831
6755
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
832 static void inner_add_yblock_bw_16_obmc_32_mmx(const uint8_t *obmc, const x86_reg obmc_stride, uint8_t * * block, int b_w, x86_reg b_h,
33896780c612 Do not misuse long as the size of a register in x86.
ramiro
parents: 5613
diff changeset
833 int src_x, int src_y, x86_reg src_stride, slice_buffer * sb, int add, uint8_t * dst8){
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
834 snow_inner_add_yblock_mmx_header
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
835 snow_inner_add_yblock_mmx_start("mm1", "mm5", "3", "0", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
836 snow_inner_add_yblock_mmx_accum("2", "16", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
837 snow_inner_add_yblock_mmx_accum("1", "512", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
838 snow_inner_add_yblock_mmx_accum("0", "528", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
839 snow_inner_add_yblock_mmx_mix("0", "0")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
840
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
841 snow_inner_add_yblock_mmx_start("mm1", "mm5", "3", "8", "8")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
842 snow_inner_add_yblock_mmx_accum("2", "24", "8")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
843 snow_inner_add_yblock_mmx_accum("1", "520", "8")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
844 snow_inner_add_yblock_mmx_accum("0", "536", "8")
5591
642588a60570 update mmx code to latest snow changes
michael
parents: 5565
diff changeset
845 snow_inner_add_yblock_mmx_mix("16", "8")
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
846 snow_inner_add_yblock_mmx_end("32")
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
847 }
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
848
4436
d3e389536b0a Add the const specifier as needed to reduce the number of warnings.
takis
parents: 3947
diff changeset
849 void ff_snow_inner_add_yblock_sse2(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h,
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
850 int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8){
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
851
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
852 if (b_w == 16)
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
853 inner_add_yblock_bw_16_obmc_32_sse2(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
854 else if (b_w == 8 && obmc_stride == 16) {
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
855 if (!(b_h & 1))
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
856 inner_add_yblock_bw_8_obmc_16_bh_even_sse2(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
857 else
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
858 inner_add_yblock_bw_8_obmc_16_mmx(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
859 } else
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
860 ff_snow_inner_add_yblock(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
861 }
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
862
4436
d3e389536b0a Add the const specifier as needed to reduce the number of warnings.
takis
parents: 3947
diff changeset
863 void ff_snow_inner_add_yblock_mmx(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h,
3211
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
864 int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8){
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
865 if (b_w == 16)
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
866 inner_add_yblock_bw_16_obmc_32_mmx(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
867 else if (b_w == 8 && obmc_stride == 16)
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
868 inner_add_yblock_bw_8_obmc_16_mmx(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
869 else
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
870 ff_snow_inner_add_yblock(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
b77b5e7072d6 add MMX and SSE versions of ff_snow_inner_add_yblock
gpoirier
parents: 3210
diff changeset
871 }