1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
{
pII-optimised MMX format converters for HERMES
Copyright (c) 1998 Christian Nentwich (c.nentwich@cs.ucl.ac.uk)
and (c) 1999 Jonathan Matthew (jmatthew@uq.net.au)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version
with the following modification:
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent modules,and
to copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the terms
and conditions of the license of that module. An independent module is a
module which is not derived from or based on this library. If you modify
this library, you may extend this exception to your version of the library,
but you are not obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
COPYRIGHT NOTICE
This file partly contains code that is (c) Intel Corporation, specifically
the mode detection routine, and the converter to 15 bit (8 pixel
conversion routine from the mmx programming tutorial pages).
These routines aren't exactly pII optimised - it's just that as they
are, theyre terrible on p5 MMXs, but less so on pIIs. Someone needs to
optimise them for p5 MMXs..
}
// Constants for conversion routines
const
mmx32_rgb888_mask: QWord = $00ffffff00ffffff;
mmx32_rgb565_b: QWord = $000000f8000000f8;
mmx32_rgb565_g: QWord = $0000fc000000fc00;
mmx32_rgb565_r: QWord = $00f8000000f80000;
mmx32_rgb555_rb: QWord = $00f800f800f800f8;
mmx32_rgb555_g: QWord = $0000f8000000f800;
mmx32_rgb555_mul: QWord = $2000000820000008;
mmx32_bgr555_mul: QWord = $0008200000082000;
procedure ConvertMMXpII32_24RGB888(CONVERT_PARAMETERS); cdecl; nostackframe; assembler;
asm
// set up mm6 as the mask, mm7 as zero
movq mmx32_rgb888_mask,%mm6
pxor %mm7,%mm7
movl %ecx,%edx // save ecx
andl $0x0fffffffc,%ecx // clear lower two bits
jnz .L1
jmp .L2
.L1:
movq (%esi),%mm0 // A R G B a r g b
pand %mm6,%mm0 // 0 R G B 0 r g b
movq 8(%esi),%mm1 // A R G B a r g b
pand %mm6,%mm1 // 0 R G B 0 r g b
movq %mm0,%mm2 // 0 R G B 0 r g b
punpckhdq %mm7,%mm2 // 0 0 0 0 0 R G B
punpckldq %mm7,%mm0 // 0 0 0 0 0 r g b
psllq $24,%mm2 // 0 0 R G B 0 0 0
por %mm2,%mm0 // 0 0 R G B r g b
movq %mm1,%mm3 // 0 R G B 0 r g b
psllq $48,%mm3 // g b 0 0 0 0 0 0
por %mm3,%mm0 // g b R G B r g b
movq %mm1,%mm4 // 0 R G B 0 r g b
punpckhdq %mm7,%mm4 // 0 0 0 0 0 R G B
punpckldq %mm7,%mm1 // 0 0 0 0 0 r g b
psrlq $16,%mm1 // 0 0 0 R G B 0 r
psllq $8,%mm4 // 0 0 0 0 R G B 0
por %mm4,%mm1 // 0 0 0 0 R G B r
movq %mm0,(%edi)
addl $16,%esi
movd %mm1,8(%edi)
addl $12,%edi
subl $4,%ecx
jnz .L1
.L2:
movl %edx,%ecx
andl $3,%ecx
jz .L4
.L3:
movb (%esi),%al
movb 1(%esi),%bl
movb 2(%esi),%dl
movb %al,(%edi)
movb %bl,1(%edi)
movb %dl,2(%edi)
addl $4,%esi
addl $3,%edi
decl %ecx
jnz .L3
.L4:
jmp _MMXRETURN
end;
procedure ConvertMMXpII32_16RGB565(CONVERT_PARAMETERS); cdecl; nostackframe; assembler;
asm
// set up masks
movq mmx32_rgb565_b,%mm5
movq mmx32_rgb565_g,%mm6
movq mmx32_rgb565_r,%mm7
movl %ecx,%edx
shrl $2,%ecx
jnz .L1
jmp .L2 // not necessary at the moment, but doesnt hurt (much)
.L1:
movq (%esi),%mm0 // argb
movq %mm0,%mm1 // argb
pand %mm6,%mm0 // 00g0
movq %mm1,%mm3 // argb
pand %mm5,%mm1 // 000b
pand %mm7,%mm3 // 0r00
pslld $2,%mm1 // 0 0 000000bb bbb00000
por %mm1,%mm0 // 0 0 ggggggbb bbb00000
psrld $5,%mm0 // 0 0 00000ggg gggbbbbb
movq 8(%esi),%mm4 // argb
movq %mm4,%mm2 // argb
pand %mm6,%mm4 // 00g0
movq %mm2,%mm1 // argb
pand %mm5,%mm2 // 000b
pand %mm7,%mm1 // 0r00
pslld $2,%mm2 // 0 0 000000bb bbb00000
por %mm2,%mm4 // 0 0 ggggggbb bbb00000
psrld $5,%mm4 // 0 0 00000ggg gggbbbbb
packuswb %mm1,%mm3 // R 0 r 0
packssdw %mm4,%mm0 // as above.. ish
por %mm3,%mm0 // done.
movq %mm0,(%edi)
addl $16,%esi
addl $8,%edi
decl %ecx
jnz .L1
.L2:
movl %edx,%ecx
andl $3,%ecx
jz .L4
.L3:
movb (%esi),%al
movb 1(%esi),%bh
movb 2(%esi),%ah
shrb $3,%al
andl $0x0F81F,%eax // BYTE?
shrl $5,%ebx
andl $0x07E0,%ebx // BYTE?
addl %ebx,%eax
movb %al,(%edi)
movb %ah,1(%edi)
addl $4,%esi
addl $2,%edi
decl %ecx
jnz .L3
.L4:
jmp _MMXRETURN
end;
procedure ConvertMMXpII32_16BGR565(CONVERT_PARAMETERS); cdecl; nostackframe; assembler;
asm
movq mmx32_rgb565_r,%mm5
movq mmx32_rgb565_g,%mm6
movq mmx32_rgb565_b,%mm7
movl %ecx,%edx
shrl $2,%ecx
jnz .L1
jmp .L2
.L1:
movq (%esi),%mm0 // a r g b
movq %mm0,%mm1 // a r g b
pand %mm6,%mm0 // 0 0 g 0
movq %mm1,%mm3 // a r g b
pand %mm5,%mm1 // 0 r 0 0
pand %mm7,%mm3 // 0 0 0 b
psllq $16,%mm3 // 0 b 0 0
psrld $14,%mm1 // 0 0 000000rr rrr00000
por %mm1,%mm0 // 0 0 ggggggrr rrr00000
psrld $5,%mm0 // 0 0 00000ggg gggrrrrr
movq 8(%esi),%mm4 // a r g b
movq %mm4,%mm2 // a r g b
pand %mm6,%mm4 // 0 0 g 0
movq %mm2,%mm1 // a r g b
pand %mm5,%mm2 // 0 r 0 0
pand %mm7,%mm1 // 0 0 0 b
psllq $16,%mm1 // 0 b 0 0
psrld $14,%mm2 // 0 0 000000rr rrr00000
por %mm2,%mm4 // 0 0 ggggggrr rrr00000
psrld $5,%mm4 // 0 0 00000ggg gggrrrrr
packuswb %mm1,%mm3 // BBBBB000 00000000 bbbbb000 00000000
packssdw %mm4,%mm0 // 00000GGG GGGRRRRR 00000GGG GGGRRRRR
por %mm3,%mm0 // BBBBBGGG GGGRRRRR bbbbbggg gggrrrrr
movq %mm0,(%edi)
addl $16,%esi
addl $8,%edi
decl %ecx
jnz .L1
.L2:
andl $3,%edx
jz .L4
.L3:
movb 2(%esi),%al
movb 1(%esi),%bh
movb (%esi),%ah
shrb $3,%al
andl $0x0F81F,%eax // BYTE ?
shrl $5,%ebx
andl $0x07E0,%ebx // BYTE ?
addl %ebx,%eax
movb %al,(%edi)
movb %ah,1(%edi)
addl $4,%esi
addl $2,%edi
decl %edx
jnz .L3
.L4:
jmp _MMXRETURN
end;
label
_convert_bgr555_cheat;
procedure ConvertMMXpII32_16BGR555(CONVERT_PARAMETERS); cdecl; nostackframe; assembler;
asm
// the 16BGR555 converter is identical to the RGB555 one,
// except it uses a different multiplier for the pmaddwd
// instruction. cool huh.
movq mmx32_bgr555_mul,%mm7
jmp _convert_bgr555_cheat
end;
// This is the same as the Intel version.. they obviously went to
// much more trouble to expand/coil the loop than I did, so theirs
// would almost certainly be faster, even if only a little.
// I did rename 'mmx32_rgb555_add' to 'mmx32_rgb555_mul', which is
// (I think) a more accurate name..
procedure ConvertMMXpII32_16RGB555(CONVERT_PARAMETERS); cdecl; nostackframe; assembler;
asm
movq mmx32_rgb555_mul,%mm7
_convert_bgr555_cheat:
movq mmx32_rgb555_g,%mm6
movl %ecx,%edx // Save ecx
andl $0x0fffffff8,%ecx // clear lower three bits
jnz .L_OK
jmp .L2
.L_OK:
movq 8(%esi),%mm2
movq (%esi),%mm0
movq %mm2,%mm3
pand mmx32_rgb555_rb,%mm3
movq %mm0,%mm1
pand mmx32_rgb555_rb,%mm1
pmaddwd %mm7,%mm3
pmaddwd %mm7,%mm1
pand %mm6,%mm2
.L1:
movq 24(%esi),%mm4
pand %mm6,%mm0
movq 16(%esi),%mm5
por %mm2,%mm3
psrld $6,%mm3
por %mm0,%mm1
movq %mm4,%mm0
psrld $6,%mm1
pand mmx32_rgb555_rb,%mm0
packssdw %mm3,%mm1
movq %mm5,%mm3
pmaddwd %mm7,%mm0
pand mmx32_rgb555_rb,%mm3
pand %mm6,%mm4
movq %mm1,(%edi)
pmaddwd %mm7,%mm3
addl $32,%esi
por %mm0,%mm4
pand %mm6,%mm5
psrld $6,%mm4
movq 8(%esi),%mm2
por %mm3,%mm5
movq (%esi),%mm0
psrld $6,%mm5
movq %mm2,%mm3
movq %mm0,%mm1
pand mmx32_rgb555_rb,%mm3
packssdw %mm4,%mm5
pand mmx32_rgb555_rb,%mm1
pand %mm6,%mm2
movq %mm5,8(%edi)
pmaddwd %mm7,%mm3
pmaddwd %mm7,%mm1
addl $16,%edi
subl $8,%ecx
jz .L2
jmp .L1
.L2:
movl %edx,%ecx
andl $7,%ecx
jz .L4
.L3:
movl (%esi),%ebx
addl $4,%esi
movl %ebx,%eax
movl %ebx,%edx
shrl $3,%eax
shrl $6,%edx
andl $0b0000000000011111,%eax
andl $0b0000001111100000,%edx
shrl $9,%ebx
orl %edx,%eax
andl $0b0111110000000000,%ebx
orl %ebx,%eax
movw %ax,(%edi)
addl $2,%edi
decl %ecx
jnz .L3
.L4:
jmp _MMXRETURN
end;
|