Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
405 lines (313 loc) · 9.31 KB

mmxp2_32.asm

File metadata and controls

405 lines (313 loc) · 9.31 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;
; 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 source code is licensed under the GNU LGPL
;
; Please refer to the file COPYING.LIB contained in the distribution for
; licensing conditions
;
; 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, they're terrible on p5 MMXs, but less so on pIIs. Someone needs to
; optimise them for p5 MMXs..
BITS 32
Jun 21, 2006
Jun 21, 2006
23
%include "common.inc"
Apr 26, 2001
Apr 26, 2001
24
Jun 21, 2006
Jun 21, 2006
25
26
27
28
29
SDL_FUNC _ConvertMMXpII32_24RGB888
SDL_FUNC _ConvertMMXpII32_16RGB565
SDL_FUNC _ConvertMMXpII32_16BGR565
SDL_FUNC _ConvertMMXpII32_16RGB555
SDL_FUNC _ConvertMMXpII32_16BGR555
Apr 26, 2001
Apr 26, 2001
30
Jan 5, 2006
Jan 5, 2006
31
32
33
34
35
36
;; Macros for conversion routines
%macro _push_immq_mask 1
push dword %1
push dword %1
%endmacro
Apr 26, 2001
Apr 26, 2001
37
Jan 5, 2006
Jan 5, 2006
38
39
40
41
%macro load_immq 2
_push_immq_mask %2
movq %1, [esp]
%endmacro
Apr 26, 2001
Apr 26, 2001
42
Jan 5, 2006
Jan 5, 2006
43
44
45
46
%macro pand_immq 2
_push_immq_mask %2
pand %1, [esp]
%endmacro
Apr 26, 2001
Apr 26, 2001
47
Jan 5, 2006
Jan 5, 2006
48
49
%define CLEANUP_IMMQ_LOADS(num) \
add esp, byte 8 * num
Apr 26, 2001
Apr 26, 2001
50
Jan 5, 2006
Jan 5, 2006
51
52
53
54
%define mmx32_rgb888_mask 00ffffffh
%define mmx32_rgb565_b 000000f8h
%define mmx32_rgb565_g 0000fc00h
%define mmx32_rgb565_r 00f80000h
Apr 26, 2001
Apr 26, 2001
55
Jan 5, 2006
Jan 5, 2006
56
57
58
59
%define mmx32_rgb555_rb 00f800f8h
%define mmx32_rgb555_g 0000f800h
%define mmx32_rgb555_mul 20000008h
%define mmx32_bgr555_mul 00082000h
Apr 26, 2001
Apr 26, 2001
60
61
62
63
64
65
SECTION .text
_ConvertMMXpII32_24RGB888:
; set up mm6 as the mask, mm7 as zero
Jan 5, 2006
Jan 5, 2006
66
67
load_immq mm6, mmx32_rgb888_mask
CLEANUP_IMMQ_LOADS(1)
Apr 26, 2001
Apr 26, 2001
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
pxor mm7, mm7
mov edx, ecx ; save ecx
and ecx, 0fffffffch ; clear lower two bits
jnz .L1
jmp .L2
.L1:
movq mm0, [esi] ; A R G B a r g b
pand mm0, mm6 ; 0 R G B 0 r g b
movq mm1, [esi+8] ; A R G B a r g b
pand mm1, mm6 ; 0 R G B 0 r g b
movq mm2, mm0 ; 0 R G B 0 r g b
punpckhdq mm2, mm7 ; 0 0 0 0 0 R G B
punpckldq mm0, mm7 ; 0 0 0 0 0 r g b
psllq mm2, 24 ; 0 0 R G B 0 0 0
por mm0, mm2 ; 0 0 R G B r g b
movq mm3, mm1 ; 0 R G B 0 r g b
psllq mm3, 48 ; g b 0 0 0 0 0 0
por mm0, mm3 ; g b R G B r g b
movq mm4, mm1 ; 0 R G B 0 r g b
punpckhdq mm4, mm7 ; 0 0 0 0 0 R G B
punpckldq mm1, mm7 ; 0 0 0 0 0 r g b
psrlq mm1, 16 ; 0 0 0 R G B 0 r
psllq mm4, 8 ; 0 0 0 0 R G B 0
por mm1, mm4 ; 0 0 0 0 R G B r
movq [edi], mm0
add esi, BYTE 16
movd [edi+8], mm1
add edi, BYTE 12
sub ecx, BYTE 4
jnz .L1
.L2:
mov ecx, edx
and ecx, BYTE 3
jz .L4
.L3:
mov al, [esi]
mov bl, [esi+1]
mov dl, [esi+2]
mov [edi], al
mov [edi+1], bl
mov [edi+2], dl
add esi, BYTE 4
add edi, BYTE 3
dec ecx
jnz .L3
.L4:
Jun 27, 2007
Jun 27, 2007
122
return
Apr 26, 2001
Apr 26, 2001
123
124
125
126
127
128
_ConvertMMXpII32_16RGB565:
; set up masks
Jan 5, 2006
Jan 5, 2006
129
130
131
132
load_immq mm5, mmx32_rgb565_b
load_immq mm6, mmx32_rgb565_g
load_immq mm7, mmx32_rgb565_r
CLEANUP_IMMQ_LOADS(3)
Apr 26, 2001
Apr 26, 2001
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
mov edx, ecx
shr ecx, 2
jnz .L1
jmp .L2 ; not necessary at the moment, but doesn't hurt (much)
.L1:
movq mm0, [esi] ; argb
movq mm1, mm0 ; argb
pand mm0, mm6 ; 00g0
movq mm3, mm1 ; argb
pand mm1, mm5 ; 000b
pand mm3, mm7 ; 0r00
pslld mm1, 2 ; 0 0 000000bb bbb00000
por mm0, mm1 ; 0 0 ggggggbb bbb00000
psrld mm0, 5 ; 0 0 00000ggg gggbbbbb
movq mm4, [esi+8] ; argb
movq mm2, mm4 ; argb
pand mm4, mm6 ; 00g0
movq mm1, mm2 ; argb
pand mm2, mm5 ; 000b
pand mm1, mm7 ; 0r00
pslld mm2, 2 ; 0 0 000000bb bbb00000
por mm4, mm2 ; 0 0 ggggggbb bbb00000
psrld mm4, 5 ; 0 0 00000ggg gggbbbbb
packuswb mm3, mm1 ; R 0 r 0
packssdw mm0, mm4 ; as above.. ish
por mm0, mm3 ; done.
movq [edi], mm0
add esi, 16
add edi, 8
dec ecx
jnz .L1
.L2:
mov ecx, edx
and ecx, BYTE 3
jz .L4
.L3:
mov al, [esi]
mov bh, [esi+1]
mov ah, [esi+2]
shr al, 3
and eax, 0F81Fh ; BYTE?
shr ebx, 5
and ebx, 07E0h ; BYTE?
add eax, ebx
mov [edi], al
mov [edi+1], ah
add esi, BYTE 4
add edi, BYTE 2
dec ecx
jnz .L3
.L4:
Jun 27, 2007
Jun 27, 2007
191
retn
Apr 26, 2001
Apr 26, 2001
192
193
194
195
_ConvertMMXpII32_16BGR565:
Jan 5, 2006
Jan 5, 2006
196
197
198
199
load_immq mm5, mmx32_rgb565_r
load_immq mm6, mmx32_rgb565_g
load_immq mm7, mmx32_rgb565_b
CLEANUP_IMMQ_LOADS(3)
Apr 26, 2001
Apr 26, 2001
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
mov edx, ecx
shr ecx, 2
jnz .L1
jmp .L2
.L1:
movq mm0, [esi] ; a r g b
movq mm1, mm0 ; a r g b
pand mm0, mm6 ; 0 0 g 0
movq mm3, mm1 ; a r g b
pand mm1, mm5 ; 0 r 0 0
pand mm3, mm7 ; 0 0 0 b
psllq mm3, 16 ; 0 b 0 0
psrld mm1, 14 ; 0 0 000000rr rrr00000
por mm0, mm1 ; 0 0 ggggggrr rrr00000
psrld mm0, 5 ; 0 0 00000ggg gggrrrrr
movq mm4, [esi+8] ; a r g b
movq mm2, mm4 ; a r g b
pand mm4, mm6 ; 0 0 g 0
movq mm1, mm2 ; a r g b
pand mm2, mm5 ; 0 r 0 0
pand mm1, mm7 ; 0 0 0 b
psllq mm1, 16 ; 0 b 0 0
psrld mm2, 14 ; 0 0 000000rr rrr00000
por mm4, mm2 ; 0 0 ggggggrr rrr00000
psrld mm4, 5 ; 0 0 00000ggg gggrrrrr
packuswb mm3, mm1 ; BBBBB000 00000000 bbbbb000 00000000
packssdw mm0, mm4 ; 00000GGG GGGRRRRR 00000GGG GGGRRRRR
por mm0, mm3 ; BBBBBGGG GGGRRRRR bbbbbggg gggrrrrr
movq [edi], mm0
add esi, BYTE 16
add edi, BYTE 8
dec ecx
jnz .L1
.L2:
and edx, BYTE 3
jz .L4
.L3:
mov al, [esi+2]
mov bh, [esi+1]
mov ah, [esi]
shr al, 3
and eax, 0F81Fh ; BYTE ?
shr ebx, 5
and ebx, 07E0h ; BYTE ?
add eax, ebx
mov [edi], al
mov [edi+1], ah
add esi, BYTE 4
add edi, BYTE 2
dec edx
jnz .L3
.L4:
Jun 27, 2007
Jun 27, 2007
261
retn
Apr 26, 2001
Apr 26, 2001
262
263
264
265
266
267
268
_ConvertMMXpII32_16BGR555:
; the 16BGR555 converter is identical to the RGB555 one,
; except it uses a different multiplier for the pmaddwd
; instruction. cool huh.
Jan 5, 2006
Jan 5, 2006
269
load_immq mm7, mmx32_bgr555_mul
Apr 26, 2001
Apr 26, 2001
270
271
272
273
274
275
276
277
278
jmp _convert_bgr555_cheat
; 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..
_ConvertMMXpII32_16RGB555:
Jan 5, 2006
Jan 5, 2006
279
load_immq mm7, mmx32_rgb555_mul
Apr 26, 2001
Apr 26, 2001
280
_convert_bgr555_cheat:
Jan 5, 2006
Jan 5, 2006
281
282
load_immq mm6, mmx32_rgb555_g
CLEANUP_IMMQ_LOADS(2)
Apr 26, 2001
Apr 26, 2001
283
284
285
286
287
mov edx,ecx ; Save ecx
and ecx,BYTE 0fffffff8h ; clear lower three bits
jnz .L_OK
Mar 1, 2002
Mar 1, 2002
288
jmp near .L2
Apr 26, 2001
Apr 26, 2001
289
290
291
292
293
294
295
296
.L_OK:
movq mm2,[esi+8]
movq mm0,[esi]
movq mm3,mm2
Jan 5, 2006
Jan 5, 2006
297
pand_immq mm3, mmx32_rgb555_rb
Apr 26, 2001
Apr 26, 2001
298
299
movq mm1,mm0
Jan 5, 2006
Jan 5, 2006
300
pand_immq mm1, mmx32_rgb555_rb
Apr 26, 2001
Apr 26, 2001
301
302
pmaddwd mm3,mm7
Jan 5, 2006
Jan 5, 2006
303
304
CLEANUP_IMMQ_LOADS(2)
Apr 26, 2001
Apr 26, 2001
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
pmaddwd mm1,mm7
pand mm2,mm6
.L1:
movq mm4,[esi+24]
pand mm0,mm6
movq mm5,[esi+16]
por mm3,mm2
psrld mm3,6
por mm1,mm0
movq mm0,mm4
psrld mm1,6
Jan 5, 2006
Jan 5, 2006
321
pand_immq mm0, mmx32_rgb555_rb
Apr 26, 2001
Apr 26, 2001
322
323
324
325
326
packssdw mm1,mm3
movq mm3,mm5
pmaddwd mm0,mm7
Jan 5, 2006
Jan 5, 2006
327
pand_immq mm3, mmx32_rgb555_rb
Apr 26, 2001
Apr 26, 2001
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
pand mm4,mm6
movq [edi],mm1
pmaddwd mm3,mm7
add esi,BYTE 32
por mm4,mm0
pand mm5,mm6
psrld mm4,6
movq mm2,[esi+8]
por mm5,mm3
movq mm0,[esi]
psrld mm5,6
movq mm3,mm2
movq mm1,mm0
Jan 5, 2006
Jan 5, 2006
348
pand_immq mm3, mmx32_rgb555_rb
Apr 26, 2001
Apr 26, 2001
349
350
packssdw mm5,mm4
Jan 5, 2006
Jan 5, 2006
351
pand_immq mm1, mmx32_rgb555_rb
Apr 26, 2001
Apr 26, 2001
352
353
pand mm2,mm6
Jan 5, 2006
Jan 5, 2006
354
355
CLEANUP_IMMQ_LOADS(4)
Apr 26, 2001
Apr 26, 2001
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
392
393
394
395
396
397
398
399
400
movq [edi+8],mm5
pmaddwd mm3,mm7
pmaddwd mm1,mm7
add edi,BYTE 16
sub ecx,BYTE 8
jz .L2
jmp .L1
.L2:
mov ecx,edx
and ecx,BYTE 7
jz .L4
.L3:
mov ebx,[esi]
add esi,BYTE 4
mov eax,ebx
mov edx,ebx
shr eax,3
shr edx,6
and eax,BYTE 0000000000011111b
and edx, 0000001111100000b
shr ebx,9
or eax,edx
and ebx, 0111110000000000b
or eax,ebx
mov [edi],ax
add edi,BYTE 2
dec ecx
jnz .L3
.L4:
Jun 27, 2007
Jun 27, 2007
401
retn
Apr 26, 2001
Apr 26, 2001
402
Dec 12, 2005
Dec 12, 2005
403
404
405
%ifidn __OUTPUT_FORMAT__,elf
section .note.GNU-stack noalloc noexec nowrite progbits
%endif