annotate src/video/SDL_yuv_mmx.c @ 2186:6fe43f7efd94

Simplify setting window title
author Patrice Mandin <patmandin@gmail.com>
date Fri, 13 Jul 2007 16:11:58 +0000
parents 26233707bc94
children 46e373b27d6d
rev   line source
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
1 /*
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
2 SDL - Simple DirectMedia Layer
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1148
diff changeset
3 Copyright (C) 1997-2006 Sam Lantinga
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
4
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
5 This library is free software; you can redistribute it and/or
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1148
diff changeset
6 modify it under the terms of the GNU Lesser General Public
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
7 License as published by the Free Software Foundation; either
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1148
diff changeset
8 version 2.1 of the License, or (at your option) any later version.
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
9
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
10 This library is distributed in the hope that it will be useful,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1148
diff changeset
13 Lesser General Public License for more details.
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
14
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1148
diff changeset
15 You should have received a copy of the GNU Lesser General Public
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1148
diff changeset
16 License along with this library; if not, write to the Free Software
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1148
diff changeset
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
18
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
19 Sam Lantinga
252
e8157fcb3114 Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents: 0
diff changeset
20 slouken@libsdl.org
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
21 */
1402
d910939febfa Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents: 1361
diff changeset
22 #include "SDL_config.h"
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
23
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
24 #if (__GNUC__ > 2) && defined(__i386__) && SDL_ASSEMBLY_ROUTINES
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
25
1407
0c6941483cc6 Whoops, forgot to check in this fix
Sam Lantinga <slouken@libsdl.org>
parents: 1402
diff changeset
26 #include "SDL_stdinc.h"
0c6941483cc6 Whoops, forgot to check in this fix
Sam Lantinga <slouken@libsdl.org>
parents: 1402
diff changeset
27
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
28 #include "mmx.h"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
29
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
30 /* *INDENT-OFF* */
1148
63fb2da89a4b Patched inline assembly to compile on gcc 4.0.1. Details are here:
Ryan C. Gordon <icculus@icculus.org>
parents: 1038
diff changeset
31
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
32 static mmx_t MMX_0080w = { .ud = {0x00800080, 0x00800080} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
33 static mmx_t MMX_00FFw = { .ud = {0x00ff00ff, 0x00ff00ff} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
34 static mmx_t MMX_FF00w = { .ud = {0xff00ff00, 0xff00ff00} };
1148
63fb2da89a4b Patched inline assembly to compile on gcc 4.0.1. Details are here:
Ryan C. Gordon <icculus@icculus.org>
parents: 1038
diff changeset
35
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
36 static mmx_t MMX_Ycoeff = { .uw = {0x004a, 0x004a, 0x004a, 0x004a} };
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
37
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
38 static mmx_t MMX_UbluRGB = { .uw = {0x0072, 0x0072, 0x0072, 0x0072} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
39 static mmx_t MMX_VredRGB = { .uw = {0x0059, 0x0059, 0x0059, 0x0059} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
40 static mmx_t MMX_UgrnRGB = { .uw = {0xffea, 0xffea, 0xffea, 0xffea} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
41 static mmx_t MMX_VgrnRGB = { .uw = {0xffd2, 0xffd2, 0xffd2, 0xffd2} };
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
42
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
43 static mmx_t MMX_Ublu5x5 = { .uw = {0x0081, 0x0081, 0x0081, 0x0081} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
44 static mmx_t MMX_Vred5x5 = { .uw = {0x0066, 0x0066, 0x0066, 0x0066} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
45 static mmx_t MMX_Ugrn555 = { .uw = {0xffe7, 0xffe7, 0xffe7, 0xffe7} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
46 static mmx_t MMX_Vgrn555 = { .uw = {0xffcc, 0xffcc, 0xffcc, 0xffcc} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
47 static mmx_t MMX_Ugrn565 = { .uw = {0xffe8, 0xffe8, 0xffe8, 0xffe8} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
48 static mmx_t MMX_Vgrn565 = { .uw = {0xffcd, 0xffcd, 0xffcd, 0xffcd} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
49
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
50 static mmx_t MMX_red555 = { .uw = {0x7c00, 0x7c00, 0x7c00, 0x7c00} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
51 static mmx_t MMX_red565 = { .uw = {0xf800, 0xf800, 0xf800, 0xf800} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
52 static mmx_t MMX_grn555 = { .uw = {0x03e0, 0x03e0, 0x03e0, 0x03e0} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
53 static mmx_t MMX_grn565 = { .uw = {0x07e0, 0x07e0, 0x07e0, 0x07e0} };
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
54 static mmx_t MMX_blu5x5 = { .uw = {0x001f, 0x001f, 0x001f, 0x001f} };
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
55
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
56 /**
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
57 This MMX assembler is my first assembler/MMX program ever.
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
58 Thus it maybe buggy.
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
59 Send patches to:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
60 mvogt@rhrk.uni-kl.de
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
61
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
62 After it worked fine I have "obfuscated" the code a bit to have
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
63 more parallism in the MMX units. This means I moved
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
64 initilisation around and delayed other instruction.
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
65 Performance measurement did not show that this brought any advantage
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
66 but in theory it _should_ be faster this way.
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
67
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
68 The overall performanve gain to the C based dither was 30%-40%.
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
69 The MMX routine calculates 256bit=8RGB values in each cycle
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
70 (4 for row1 & 4 for row2)
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
71
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
72 The red/green/blue.. coefficents are taken from the mpeg_play
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
73 player. They look nice, but I dont know if you can have
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
74 better values, to avoid integer rounding errors.
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
75
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
76
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
77 IMPORTANT:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
78 ==========
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
79
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
80 It is a requirement that the cr/cb/lum are 8 byte aligned and
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
81 the out are 16byte aligned or you will/may get segfaults
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
82
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
83 */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
84
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
85 void ColorRGBDitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix,
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
86 unsigned char *lum, unsigned char *cr,
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
87 unsigned char *cb, unsigned char *out,
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
88 int rows, int cols, int mod )
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
89 {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
90 Uint32 *row1;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
91 Uint32 *row2;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
92
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
93 unsigned char* y = lum +cols*rows; // Pointer to the end
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
94 int x = 0;
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
95 row1 = (Uint32 *)out; // 32 bit target
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
96 row2 = (Uint32 *)out+cols+mod; // start of second row
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
97 mod = (mod+cols+mod)*4; // increment for row1 in byte
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
98
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
99 __asm__ __volatile__ (
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
100 // tap dance to workaround the inability to use %%ebx at will...
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
101 // move one thing to the stack...
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
102 "pushl $0\n" // save a slot on the stack.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
103 "pushl %%ebx\n" // save %%ebx.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
104 "movl %0, %%ebx\n" // put the thing in ebx.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
105 "movl %%ebx,4(%%esp)\n" // put the thing in the stack slot.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
106 "popl %%ebx\n" // get back %%ebx (the PIC register).
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
107
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
108 ".align 8\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
109 "1:\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
110
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
111 // create Cr (result in mm1)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
112 "pushl %%ebx\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
113 "movl 4(%%esp),%%ebx\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
114 "movd (%%ebx),%%mm1\n" // 0 0 0 0 v3 v2 v1 v0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
115 "popl %%ebx\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
116 "pxor %%mm7,%%mm7\n" // 00 00 00 00 00 00 00 00
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
117 "movd (%2), %%mm2\n" // 0 0 0 0 l3 l2 l1 l0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
118 "punpcklbw %%mm7,%%mm1\n" // 0 v3 0 v2 00 v1 00 v0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
119 "punpckldq %%mm1,%%mm1\n" // 00 v1 00 v0 00 v1 00 v0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
120 "psubw %9,%%mm1\n" // mm1-128:r1 r1 r0 r0 r1 r1 r0 r0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
121
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
122 // create Cr_g (result in mm0)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
123 "movq %%mm1,%%mm0\n" // r1 r1 r0 r0 r1 r1 r0 r0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
124 "pmullw %10,%%mm0\n" // red*-46dec=0.7136*64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
125 "pmullw %11,%%mm1\n" // red*89dec=1.4013*64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
126 "psraw $6, %%mm0\n" // red=red/64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
127 "psraw $6, %%mm1\n" // red=red/64
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
128
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
129 // create L1 L2 (result in mm2,mm4)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
130 // L2=lum+cols
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
131 "movq (%2,%4),%%mm3\n" // 0 0 0 0 L3 L2 L1 L0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
132 "punpckldq %%mm3,%%mm2\n" // L3 L2 L1 L0 l3 l2 l1 l0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
133 "movq %%mm2,%%mm4\n" // L3 L2 L1 L0 l3 l2 l1 l0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
134 "pand %12,%%mm2\n" // L3 0 L1 0 l3 0 l1 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
135 "pand %13,%%mm4\n" // 0 L2 0 L0 0 l2 0 l0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
136 "psrlw $8,%%mm2\n" // 0 L3 0 L1 0 l3 0 l1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
137
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
138 // create R (result in mm6)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
139 "movq %%mm2,%%mm5\n" // 0 L3 0 L1 0 l3 0 l1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
140 "movq %%mm4,%%mm6\n" // 0 L2 0 L0 0 l2 0 l0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
141 "paddsw %%mm1, %%mm5\n" // lum1+red:x R3 x R1 x r3 x r1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
142 "paddsw %%mm1, %%mm6\n" // lum1+red:x R2 x R0 x r2 x r0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
143 "packuswb %%mm5,%%mm5\n" // R3 R1 r3 r1 R3 R1 r3 r1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
144 "packuswb %%mm6,%%mm6\n" // R2 R0 r2 r0 R2 R0 r2 r0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
145 "pxor %%mm7,%%mm7\n" // 00 00 00 00 00 00 00 00
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
146 "punpcklbw %%mm5,%%mm6\n" // R3 R2 R1 R0 r3 r2 r1 r0
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
147
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
148 // create Cb (result in mm1)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
149 "movd (%1), %%mm1\n" // 0 0 0 0 u3 u2 u1 u0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
150 "punpcklbw %%mm7,%%mm1\n" // 0 u3 0 u2 00 u1 00 u0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
151 "punpckldq %%mm1,%%mm1\n" // 00 u1 00 u0 00 u1 00 u0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
152 "psubw %9,%%mm1\n" // mm1-128:u1 u1 u0 u0 u1 u1 u0 u0
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
153
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
154 // create Cb_g (result in mm5)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
155 "movq %%mm1,%%mm5\n" // u1 u1 u0 u0 u1 u1 u0 u0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
156 "pmullw %14,%%mm5\n" // blue*-109dec=1.7129*64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
157 "pmullw %15,%%mm1\n" // blue*114dec=1.78125*64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
158 "psraw $6, %%mm5\n" // blue=red/64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
159 "psraw $6, %%mm1\n" // blue=blue/64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
160
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
161 // create G (result in mm7)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
162 "movq %%mm2,%%mm3\n" // 0 L3 0 L1 0 l3 0 l1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
163 "movq %%mm4,%%mm7\n" // 0 L2 0 L0 0 l2 0 l1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
164 "paddsw %%mm5, %%mm3\n" // lum1+Cb_g:x G3t x G1t x g3t x g1t
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
165 "paddsw %%mm5, %%mm7\n" // lum1+Cb_g:x G2t x G0t x g2t x g0t
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
166 "paddsw %%mm0, %%mm3\n" // lum1+Cr_g:x G3 x G1 x g3 x g1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
167 "paddsw %%mm0, %%mm7\n" // lum1+blue:x G2 x G0 x g2 x g0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
168 "packuswb %%mm3,%%mm3\n" // G3 G1 g3 g1 G3 G1 g3 g1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
169 "packuswb %%mm7,%%mm7\n" // G2 G0 g2 g0 G2 G0 g2 g0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
170 "punpcklbw %%mm3,%%mm7\n" // G3 G2 G1 G0 g3 g2 g1 g0
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
171
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
172 // create B (result in mm5)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
173 "movq %%mm2,%%mm3\n" // 0 L3 0 L1 0 l3 0 l1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
174 "movq %%mm4,%%mm5\n" // 0 L2 0 L0 0 l2 0 l1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
175 "paddsw %%mm1, %%mm3\n" // lum1+blue:x B3 x B1 x b3 x b1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
176 "paddsw %%mm1, %%mm5\n" // lum1+blue:x B2 x B0 x b2 x b0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
177 "packuswb %%mm3,%%mm3\n" // B3 B1 b3 b1 B3 B1 b3 b1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
178 "packuswb %%mm5,%%mm5\n" // B2 B0 b2 b0 B2 B0 b2 b0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
179 "punpcklbw %%mm3,%%mm5\n" // B3 B2 B1 B0 b3 b2 b1 b0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
180
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
181 // fill destination row1 (needed are mm6=Rr,mm7=Gg,mm5=Bb)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
182
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
183 "pxor %%mm2,%%mm2\n" // 0 0 0 0 0 0 0 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
184 "pxor %%mm4,%%mm4\n" // 0 0 0 0 0 0 0 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
185 "movq %%mm6,%%mm1\n" // R3 R2 R1 R0 r3 r2 r1 r0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
186 "movq %%mm5,%%mm3\n" // B3 B2 B1 B0 b3 b2 b1 b0
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
187
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
188 // process lower lum
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
189 "punpcklbw %%mm4,%%mm1\n" // 0 r3 0 r2 0 r1 0 r0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
190 "punpcklbw %%mm4,%%mm3\n" // 0 b3 0 b2 0 b1 0 b0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
191 "movq %%mm1,%%mm2\n" // 0 r3 0 r2 0 r1 0 r0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
192 "movq %%mm3,%%mm0\n" // 0 b3 0 b2 0 b1 0 b0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
193 "punpcklwd %%mm1,%%mm3\n" // 0 r1 0 b1 0 r0 0 b0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
194 "punpckhwd %%mm2,%%mm0\n" // 0 r3 0 b3 0 r2 0 b2
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
195
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
196 "pxor %%mm2,%%mm2\n" // 0 0 0 0 0 0 0 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
197 "movq %%mm7,%%mm1\n" // G3 G2 G1 G0 g3 g2 g1 g0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
198 "punpcklbw %%mm1,%%mm2\n" // g3 0 g2 0 g1 0 g0 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
199 "punpcklwd %%mm4,%%mm2\n" // 0 0 g1 0 0 0 g0 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
200 "por %%mm3, %%mm2\n" // 0 r1 g1 b1 0 r0 g0 b0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
201 "movq %%mm2,(%3)\n" // wrote out ! row1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
202
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
203 "pxor %%mm2,%%mm2\n" // 0 0 0 0 0 0 0 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
204 "punpcklbw %%mm1,%%mm4\n" // g3 0 g2 0 g1 0 g0 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
205 "punpckhwd %%mm2,%%mm4\n" // 0 0 g3 0 0 0 g2 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
206 "por %%mm0, %%mm4\n" // 0 r3 g3 b3 0 r2 g2 b2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
207 "movq %%mm4,8(%3)\n" // wrote out ! row1
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
208
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
209 // fill destination row2 (needed are mm6=Rr,mm7=Gg,mm5=Bb)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
210 // this can be done "destructive"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
211 "pxor %%mm2,%%mm2\n" // 0 0 0 0 0 0 0 0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
212 "punpckhbw %%mm2,%%mm6\n" // 0 R3 0 R2 0 R1 0 R0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
213 "punpckhbw %%mm1,%%mm5\n" // G3 B3 G2 B2 G1 B1 G0 B0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
214 "movq %%mm5,%%mm1\n" // G3 B3 G2 B2 G1 B1 G0 B0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
215 "punpcklwd %%mm6,%%mm1\n" // 0 R1 G1 B1 0 R0 G0 B0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
216 "movq %%mm1,(%5)\n" // wrote out ! row2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
217 "punpckhwd %%mm6,%%mm5\n" // 0 R3 G3 B3 0 R2 G2 B2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
218 "movq %%mm5,8(%5)\n" // wrote out ! row2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
219
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
220 "addl $4,%2\n" // lum+4
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
221 "leal 16(%3),%3\n" // row1+16
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
222 "leal 16(%5),%5\n" // row2+16
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
223 "addl $2,(%%esp)\n" // cr+2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
224 "addl $2,%1\n" // cb+2
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
225
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
226 "addl $4,%6\n" // x+4
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
227 "cmpl %4,%6\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
228
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
229 "jl 1b\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
230 "addl %4,%2\n" // lum += cols
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
231 "addl %8,%3\n" // row1+= mod
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
232 "addl %8,%5\n" // row2+= mod
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
233 "movl $0,%6\n" // x=0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
234 "cmpl %7,%2\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
235 "jl 1b\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
236
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
237 "addl $4,%%esp\n" // get rid of the stack slot we reserved.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
238 "emms\n" // reset MMX registers.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
239 :
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
240 : "m" (cr), "r"(cb),"r"(lum),
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
241 "r"(row1),"r"(cols),"r"(row2),"m"(x),"m"(y),"m"(mod),
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
242 "m"(MMX_0080w),"m"(MMX_VgrnRGB),"m"(MMX_VredRGB),
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
243 "m"(MMX_FF00w),"m"(MMX_00FFw),"m"(MMX_UgrnRGB),
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
244 "m"(MMX_UbluRGB)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
245 );
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
246 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
247
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
248 void Color565DitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix,
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
249 unsigned char *lum, unsigned char *cr,
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
250 unsigned char *cb, unsigned char *out,
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
251 int rows, int cols, int mod )
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
252 {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
253 Uint16 *row1;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
254 Uint16 *row2;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
255
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
256 unsigned char* y = lum +cols*rows; /* Pointer to the end */
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
257 int x = 0;
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
258 row1 = (Uint16 *)out; /* 16 bit target */
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
259 row2 = (Uint16 *)out+cols+mod; /* start of second row */
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
260 mod = (mod+cols+mod)*2; /* increment for row1 in byte */
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
261
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
262 __asm__ __volatile__(
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
263 // tap dance to workaround the inability to use %%ebx at will...
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
264 // move one thing to the stack...
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
265 "pushl $0\n" // save a slot on the stack.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
266 "pushl %%ebx\n" // save %%ebx.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
267 "movl %0, %%ebx\n" // put the thing in ebx.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
268 "movl %%ebx, 4(%%esp)\n" // put the thing in the stack slot.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
269 "popl %%ebx\n" // get back %%ebx (the PIC register).
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
270
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
271 ".align 8\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
272 "1:\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
273
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
274 "movd (%1), %%mm0\n" // 4 Cb 0 0 0 0 u3 u2 u1 u0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
275 "pxor %%mm7, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
276 "pushl %%ebx\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
277 "movl 4(%%esp), %%ebx\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
278 "movd (%%ebx), %%mm1\n" // 4 Cr 0 0 0 0 v3 v2 v1 v0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
279 "popl %%ebx\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
280
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
281 "punpcklbw %%mm7, %%mm0\n" // 4 W cb 0 u3 0 u2 0 u1 0 u0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
282 "punpcklbw %%mm7, %%mm1\n" // 4 W cr 0 v3 0 v2 0 v1 0 v0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
283 "psubw %9, %%mm0\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
284 "psubw %9, %%mm1\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
285 "movq %%mm0, %%mm2\n" // Cb 0 u3 0 u2 0 u1 0 u0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
286 "movq %%mm1, %%mm3\n" // Cr
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
287 "pmullw %10, %%mm2\n" // Cb2green 0 R3 0 R2 0 R1 0 R0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
288 "movq (%2), %%mm6\n" // L1 l7 L6 L5 L4 L3 L2 L1 L0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
289 "pmullw %11, %%mm0\n" // Cb2blue
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
290 "pand %12, %%mm6\n" // L1 00 L6 00 L4 00 L2 00 L0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
291 "pmullw %13, %%mm3\n" // Cr2green
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
292 "movq (%2), %%mm7\n" // L2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
293 "pmullw %14, %%mm1\n" // Cr2red
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
294 "psrlw $8, %%mm7\n" // L2 00 L7 00 L5 00 L3 00 L1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
295 "pmullw %15, %%mm6\n" // lum1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
296 "paddw %%mm3, %%mm2\n" // Cb2green + Cr2green == green
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
297 "pmullw %15, %%mm7\n" // lum2
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
298
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
299 "movq %%mm6, %%mm4\n" // lum1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
300 "paddw %%mm0, %%mm6\n" // lum1 +blue 00 B6 00 B4 00 B2 00 B0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
301 "movq %%mm4, %%mm5\n" // lum1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
302 "paddw %%mm1, %%mm4\n" // lum1 +red 00 R6 00 R4 00 R2 00 R0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
303 "paddw %%mm2, %%mm5\n" // lum1 +green 00 G6 00 G4 00 G2 00 G0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
304 "psraw $6, %%mm4\n" // R1 0 .. 64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
305 "movq %%mm7, %%mm3\n" // lum2 00 L7 00 L5 00 L3 00 L1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
306 "psraw $6, %%mm5\n" // G1 - .. +
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
307 "paddw %%mm0, %%mm7\n" // Lum2 +blue 00 B7 00 B5 00 B3 00 B1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
308 "psraw $6, %%mm6\n" // B1 0 .. 64
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
309 "packuswb %%mm4, %%mm4\n" // R1 R1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
310 "packuswb %%mm5, %%mm5\n" // G1 G1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
311 "packuswb %%mm6, %%mm6\n" // B1 B1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
312 "punpcklbw %%mm4, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
313 "punpcklbw %%mm5, %%mm5\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
314
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
315 "pand %16, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
316 "psllw $3, %%mm5\n" // GREEN 1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
317 "punpcklbw %%mm6, %%mm6\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
318 "pand %17, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
319 "pand %16, %%mm6\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
320 "por %%mm5, %%mm4\n" //
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
321 "psrlw $11, %%mm6\n" // BLUE 1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
322 "movq %%mm3, %%mm5\n" // lum2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
323 "paddw %%mm1, %%mm3\n" // lum2 +red 00 R7 00 R5 00 R3 00 R1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
324 "paddw %%mm2, %%mm5\n" // lum2 +green 00 G7 00 G5 00 G3 00 G1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
325 "psraw $6, %%mm3\n" // R2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
326 "por %%mm6, %%mm4\n" // MM4
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
327 "psraw $6, %%mm5\n" // G2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
328 "movq (%2, %4), %%mm6\n" // L3 load lum2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
329 "psraw $6, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
330 "packuswb %%mm3, %%mm3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
331 "packuswb %%mm5, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
332 "packuswb %%mm7, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
333 "pand %12, %%mm6\n" // L3
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
334 "punpcklbw %%mm3, %%mm3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
335 "punpcklbw %%mm5, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
336 "pmullw %15, %%mm6\n" // lum3
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
337 "punpcklbw %%mm7, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
338 "psllw $3, %%mm5\n" // GREEN 2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
339 "pand %16, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
340 "pand %16, %%mm3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
341 "psrlw $11, %%mm7\n" // BLUE 2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
342 "pand %17, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
343 "por %%mm7, %%mm3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
344 "movq (%2,%4), %%mm7\n" // L4 load lum2
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
345 "por %%mm5, %%mm3\n" //
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
346 "psrlw $8, %%mm7\n" // L4
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
347 "movq %%mm4, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
348 "punpcklwd %%mm3, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
349 "pmullw %15, %%mm7\n" // lum4
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
350 "punpckhwd %%mm3, %%mm5\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
351
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
352 "movq %%mm4, (%3)\n" // write row1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
353 "movq %%mm5, 8(%3)\n" // write row1
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
354
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
355 "movq %%mm6, %%mm4\n" // Lum3
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
356 "paddw %%mm0, %%mm6\n" // Lum3 +blue
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
357
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
358 "movq %%mm4, %%mm5\n" // Lum3
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
359 "paddw %%mm1, %%mm4\n" // Lum3 +red
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
360 "paddw %%mm2, %%mm5\n" // Lum3 +green
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
361 "psraw $6, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
362 "movq %%mm7, %%mm3\n" // Lum4
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
363 "psraw $6, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
364 "paddw %%mm0, %%mm7\n" // Lum4 +blue
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
365 "psraw $6, %%mm6\n" // Lum3 +blue
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
366 "movq %%mm3, %%mm0\n" // Lum4
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
367 "packuswb %%mm4, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
368 "paddw %%mm1, %%mm3\n" // Lum4 +red
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
369 "packuswb %%mm5, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
370 "paddw %%mm2, %%mm0\n" // Lum4 +green
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
371 "packuswb %%mm6, %%mm6\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
372 "punpcklbw %%mm4, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
373 "punpcklbw %%mm5, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
374 "punpcklbw %%mm6, %%mm6\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
375 "psllw $3, %%mm5\n" // GREEN 3
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
376 "pand %16, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
377 "psraw $6, %%mm3\n" // psr 6
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
378 "psraw $6, %%mm0\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
379 "pand %16, %%mm6\n" // BLUE
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
380 "pand %17, %%mm5\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
381 "psrlw $11, %%mm6\n" // BLUE 3
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
382 "por %%mm5, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
383 "psraw $6, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
384 "por %%mm6, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
385 "packuswb %%mm3, %%mm3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
386 "packuswb %%mm0, %%mm0\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
387 "packuswb %%mm7, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
388 "punpcklbw %%mm3, %%mm3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
389 "punpcklbw %%mm0, %%mm0\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
390 "punpcklbw %%mm7, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
391 "pand %16, %%mm3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
392 "pand %16, %%mm7\n" // BLUE
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
393 "psllw $3, %%mm0\n" // GREEN 4
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
394 "psrlw $11, %%mm7\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
395 "pand %17, %%mm0\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
396 "por %%mm7, %%mm3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
397 "por %%mm0, %%mm3\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
398
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
399 "movq %%mm4, %%mm5\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
400
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
401 "punpcklwd %%mm3, %%mm4\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
402 "punpckhwd %%mm3, %%mm5\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
403
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
404 "movq %%mm4, (%5)\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
405 "movq %%mm5, 8(%5)\n"
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
406
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
407 "addl $8, %6\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
408 "addl $8, %2\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
409 "addl $4, (%%esp)\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
410 "addl $4, %1\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
411 "cmpl %4, %6\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
412 "leal 16(%3), %3\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
413 "leal 16(%5),%5\n" // row2+16
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
414
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
415 "jl 1b\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
416 "addl %4, %2\n" // lum += cols
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
417 "addl %8, %3\n" // row1+= mod
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
418 "addl %8, %5\n" // row2+= mod
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
419 "movl $0, %6\n" // x=0
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
420 "cmpl %7, %2\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
421 "jl 1b\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
422 "addl $4, %%esp\n" // get rid of the stack slot we reserved.
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
423 "emms\n"
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
424 :
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
425 : "m" (cr), "r"(cb),"r"(lum),
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
426 "r"(row1),"r"(cols),"r"(row2),"m"(x),"m"(y),"m"(mod),
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
427 "m"(MMX_0080w),"m"(MMX_Ugrn565),"m"(MMX_Ublu5x5),
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
428 "m"(MMX_00FFw),"m"(MMX_Vgrn565),"m"(MMX_Vred5x5),
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
429 "m"(MMX_Ycoeff),"m"(MMX_red565),"m"(MMX_grn565)
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
430 );
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
431 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
432
2167
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
433 /* *INDENT-ON* */
8f2174e22cd5 indent doesn't know how to handle inline asm
Sam Lantinga <slouken@libsdl.org>
parents: 1895
diff changeset
434
2168
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
435 #endif /* GCC3 i386 inline assembly */
07f084fe97d0 Merged r3211:3213 from branches/SDL-1.2: YUV MMX inline asm for GCC.
Ryan C. Gordon <icculus@icculus.org>
parents: 2167
diff changeset
436
1895
c121d94672cb SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents: 1413
diff changeset
437 /* vi: set ts=4 sw=4 expandtab: */