source: trunk/src/gui/painting/qdrawhelper_sse2.cpp@ 781

Last change on this file since 781 was 769, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

File size: 17.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtGui module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include <private/qdrawhelper_x86_p.h>
43
44#ifdef QT_HAVE_SSE2
45
46#include <private/qpaintengine_raster_p.h>
47
48#ifdef QT_LINUXBASE
49// this is an evil hack - the posix_memalign declaration in LSB
50// is wrong - see http://bugs.linuxbase.org/show_bug.cgi?id=2431
51# define posix_memalign _lsb_hack_posix_memalign
52# include <emmintrin.h>
53# undef posix_memalign
54#else
55# include <emmintrin.h>
56#endif
57
58QT_BEGIN_NAMESPACE
59
60/*
61 * Multiply the components of pixelVector by alphaChannel
62 * Each 32bits components of alphaChannel must be in the form 0x00AA00AA
63 * colorMask must have 0x00ff00ff on each 32 bits component
64 * half must have the value 128 (0x80) for each 32 bits compnent
65 */
66#define BYTE_MUL_SSE2(result, pixelVector, alphaChannel, colorMask, half) \
67{ \
68 /* 1. separate the colors in 2 vectors so each color is on 16 bits \
69 (in order to be multiplied by the alpha \
70 each 32 bit of dstVectorAG are in the form 0x00AA00GG \
71 each 32 bit of dstVectorRB are in the form 0x00RR00BB */\
72 __m128i pixelVectorAG = _mm_srli_epi16(pixelVector, 8); \
73 __m128i pixelVectorRB = _mm_and_si128(pixelVector, colorMask); \
74 \
75 /* 2. multiply the vectors by the alpha channel */\
76 pixelVectorAG = _mm_mullo_epi16(pixelVectorAG, alphaChannel); \
77 pixelVectorRB = _mm_mullo_epi16(pixelVectorRB, alphaChannel); \
78 \
79 /* 3. devide by 255, that's the tricky part. \
80 we do it like for BYTE_MUL(), with bit shift: X/255 ~= (X + X/256 + rounding)/256 */ \
81 /** so first (X + X/256 + rounding) */\
82 pixelVectorRB = _mm_add_epi16(pixelVectorRB, _mm_srli_epi16(pixelVectorRB, 8)); \
83 pixelVectorRB = _mm_add_epi16(pixelVectorRB, half); \
84 pixelVectorAG = _mm_add_epi16(pixelVectorAG, _mm_srli_epi16(pixelVectorAG, 8)); \
85 pixelVectorAG = _mm_add_epi16(pixelVectorAG, half); \
86 \
87 /** second devide by 256 */\
88 pixelVectorRB = _mm_srli_epi16(pixelVectorRB, 8); \
89 /** for AG, we could >> 8 to divide followed by << 8 to put the \
90 bytes in the correct position. By masking instead, we execute \
91 only one instruction */\
92 pixelVectorAG = _mm_andnot_si128(colorMask, pixelVectorAG); \
93 \
94 /* 4. combine the 2 pairs of colors */ \
95 result = _mm_or_si128(pixelVectorAG, pixelVectorRB); \
96}
97
98/*
99 * Each 32bits components of alphaChannel must be in the form 0x00AA00AA
100 * oneMinusAlphaChannel must be 255 - alpha for each 32 bits component
101 * colorMask must have 0x00ff00ff on each 32 bits component
102 * half must have the value 128 (0x80) for each 32 bits compnent
103 */
104#define INTERPOLATE_PIXEL_255_SSE2(result, srcVector, dstVector, alphaChannel, oneMinusAlphaChannel, colorMask, half) { \
105 /* interpolate AG */\
106 __m128i srcVectorAG = _mm_srli_epi16(srcVector, 8); \
107 __m128i dstVectorAG = _mm_srli_epi16(dstVector, 8); \
108 __m128i srcVectorAGalpha = _mm_mullo_epi16(srcVectorAG, alphaChannel); \
109 __m128i dstVectorAGoneMinusAlphalpha = _mm_mullo_epi16(dstVectorAG, oneMinusAlphaChannel); \
110 __m128i finalAG = _mm_add_epi16(srcVectorAGalpha, dstVectorAGoneMinusAlphalpha); \
111 finalAG = _mm_add_epi16(finalAG, _mm_srli_epi16(finalAG, 8)); \
112 finalAG = _mm_add_epi16(finalAG, half); \
113 finalAG = _mm_andnot_si128(colorMask, finalAG); \
114 \
115 /* interpolate RB */\
116 __m128i srcVectorRB = _mm_and_si128(srcVector, colorMask); \
117 __m128i dstVectorRB = _mm_and_si128(dstVector, colorMask); \
118 __m128i srcVectorRBalpha = _mm_mullo_epi16(srcVectorRB, alphaChannel); \
119 __m128i dstVectorRBoneMinusAlphalpha = _mm_mullo_epi16(dstVectorRB, oneMinusAlphaChannel); \
120 __m128i finalRB = _mm_add_epi16(srcVectorRBalpha, dstVectorRBoneMinusAlphalpha); \
121 finalRB = _mm_add_epi16(finalRB, _mm_srli_epi16(finalRB, 8)); \
122 finalRB = _mm_add_epi16(finalRB, half); \
123 finalRB = _mm_srli_epi16(finalRB, 8); \
124 \
125 /* combine */\
126 result = _mm_or_si128(finalAG, finalRB); \
127}
128
129void qt_blend_argb32_on_argb32_sse2(uchar *destPixels, int dbpl,
130 const uchar *srcPixels, int sbpl,
131 int w, int h,
132 int const_alpha)
133{
134 const quint32 *src = (const quint32 *) srcPixels;
135 quint32 *dst = (uint *) destPixels;
136 if (const_alpha == 256) {
137 const __m128i alphaMask = _mm_set1_epi32(0xff000000);
138 const __m128i nullVector = _mm_set1_epi32(0);
139 const __m128i half = _mm_set1_epi16(0x80);
140 const __m128i one = _mm_set1_epi16(0xff);
141 const __m128i colorMask = _mm_set1_epi32(0x00ff00ff);
142 for (int y = 0; y < h; ++y) {
143 int x = 0;
144 for (; x < w-3; x += 4) {
145 const __m128i srcVector = _mm_loadu_si128((__m128i *)&src[x]);
146 const __m128i srcVectorAlpha = _mm_and_si128(srcVector, alphaMask);
147 if (_mm_movemask_epi8(_mm_cmpeq_epi32(srcVectorAlpha, alphaMask)) == 0xffff) {
148 // all opaque
149 _mm_storeu_si128((__m128i *)&dst[x], srcVector);
150 } else if (_mm_movemask_epi8(_mm_cmpeq_epi32(srcVectorAlpha, nullVector)) != 0xffff) {
151 // not fully transparent
152 // result = s + d * (1-alpha)
153
154 // extract the alpha channel on 2 x 16 bits
155 // so we have room for the multiplication
156 // each 32 bits will be in the form 0x00AA00AA
157 // with A being the 1 - alpha
158 __m128i alphaChannel = _mm_srli_epi32(srcVector, 24);
159 alphaChannel = _mm_or_si128(alphaChannel, _mm_slli_epi32(alphaChannel, 16));
160 alphaChannel = _mm_sub_epi16(one, alphaChannel);
161
162 const __m128i dstVector = _mm_loadu_si128((__m128i *)&dst[x]);
163 __m128i destMultipliedByOneMinusAlpha;
164 BYTE_MUL_SSE2(destMultipliedByOneMinusAlpha, dstVector, alphaChannel, colorMask, half);
165
166 // result = s + d * (1-alpha)
167 const __m128i result = _mm_add_epi8(srcVector, destMultipliedByOneMinusAlpha);
168 _mm_storeu_si128((__m128i *)&dst[x], result);
169 }
170 }
171 for (; x<w; ++x) {
172 uint s = src[x];
173 if (s >= 0xff000000)
174 dst[x] = s;
175 else if (s != 0)
176 dst[x] = s + BYTE_MUL(dst[x], qAlpha(~s));
177 }
178 dst = (quint32 *)(((uchar *) dst) + dbpl);
179 src = (const quint32 *)(((const uchar *) src) + sbpl);
180 }
181 } else if (const_alpha != 0) {
182 // dest = (s + d * sia) * ca + d * cia
183 // = s * ca + d * (sia * ca + cia)
184 // = s * ca + d * (1 - sa*ca)
185 const_alpha = (const_alpha * 255) >> 8;
186 const __m128i nullVector = _mm_set1_epi32(0);
187 const __m128i half = _mm_set1_epi16(0x80);
188 const __m128i one = _mm_set1_epi16(0xff);
189 const __m128i colorMask = _mm_set1_epi32(0x00ff00ff);
190 const __m128i constAlphaVector = _mm_set1_epi16(const_alpha);
191 for (int y = 0; y < h; ++y) {
192 int x = 0;
193 for (; x < w-3; x += 4) {
194 __m128i srcVector = _mm_loadu_si128((__m128i *)&src[x]);
195 if (_mm_movemask_epi8(_mm_cmpeq_epi32(srcVector, nullVector)) != 0xffff) {
196 BYTE_MUL_SSE2(srcVector, srcVector, constAlphaVector, colorMask, half);
197
198 __m128i alphaChannel = _mm_srli_epi32(srcVector, 24);
199 alphaChannel = _mm_or_si128(alphaChannel, _mm_slli_epi32(alphaChannel, 16));
200 alphaChannel = _mm_sub_epi16(one, alphaChannel);
201
202 const __m128i dstVector = _mm_loadu_si128((__m128i *)&dst[x]);
203 __m128i destMultipliedByOneMinusAlpha;
204 BYTE_MUL_SSE2(destMultipliedByOneMinusAlpha, dstVector, alphaChannel, colorMask, half);
205
206 const __m128i result = _mm_add_epi8(srcVector, destMultipliedByOneMinusAlpha);
207 _mm_storeu_si128((__m128i *)&dst[x], result);
208 }
209 }
210 for (; x<w; ++x) {
211 quint32 s = src[x];
212 if (s != 0) {
213 s = BYTE_MUL(s, const_alpha);
214 dst[x] = s + BYTE_MUL(dst[x], qAlpha(~s));
215 }
216 }
217 dst = (quint32 *)(((uchar *) dst) + dbpl);
218 src = (const quint32 *)(((const uchar *) src) + sbpl);
219 }
220 }
221}
222
223// qblendfunctions.cpp
224void qt_blend_rgb32_on_rgb32(uchar *destPixels, int dbpl,
225 const uchar *srcPixels, int sbpl,
226 int w, int h,
227 int const_alpha);
228
229void qt_blend_rgb32_on_rgb32_sse2(uchar *destPixels, int dbpl,
230 const uchar *srcPixels, int sbpl,
231 int w, int h,
232 int const_alpha)
233{
234 const quint32 *src = (const quint32 *) srcPixels;
235 quint32 *dst = (uint *) destPixels;
236 if (const_alpha != 256) {
237 if (const_alpha != 0) {
238 const __m128i nullVector = _mm_set1_epi32(0);
239 const __m128i half = _mm_set1_epi16(0x80);
240 const __m128i colorMask = _mm_set1_epi32(0x00ff00ff);
241
242 const_alpha = (const_alpha * 255) >> 8;
243 int one_minus_const_alpha = 255 - const_alpha;
244 const __m128i constAlphaVector = _mm_set1_epi16(const_alpha);
245 const __m128i oneMinusConstAlpha = _mm_set1_epi16(one_minus_const_alpha);
246 for (int y = 0; y < h; ++y) {
247 int x = 0;
248 for (; x < w-3; x += 4) {
249 __m128i srcVector = _mm_loadu_si128((__m128i *)&src[x]);
250 if (_mm_movemask_epi8(_mm_cmpeq_epi32(srcVector, nullVector)) != 0xffff) {
251 const __m128i dstVector = _mm_loadu_si128((__m128i *)&dst[x]);
252 __m128i result;
253 INTERPOLATE_PIXEL_255_SSE2(result, srcVector, dstVector, constAlphaVector, oneMinusConstAlpha, colorMask, half);
254 _mm_storeu_si128((__m128i *)&dst[x], result);
255 }
256 }
257 for (; x<w; ++x) {
258 quint32 s = src[x];
259 s = BYTE_MUL(s, const_alpha);
260 dst[x] = INTERPOLATE_PIXEL_255(src[x], const_alpha, dst[x], one_minus_const_alpha);
261 }
262 dst = (quint32 *)(((uchar *) dst) + dbpl);
263 src = (const quint32 *)(((const uchar *) src) + sbpl);
264 }
265 }
266 } else {
267 qt_blend_rgb32_on_rgb32(destPixels, dbpl, srcPixels, sbpl, w, h, const_alpha);
268 }
269}
270
271void qt_memfill32_sse2(quint32 *dest, quint32 value, int count)
272{
273 if (count < 7) {
274 switch (count) {
275 case 6: *dest++ = value;
276 case 5: *dest++ = value;
277 case 4: *dest++ = value;
278 case 3: *dest++ = value;
279 case 2: *dest++ = value;
280 case 1: *dest = value;
281 }
282 return;
283 };
284
285 const int align = (quintptr)(dest) & 0xf;
286 switch (align) {
287 case 4: *dest++ = value; --count;
288 case 8: *dest++ = value; --count;
289 case 12: *dest++ = value; --count;
290 }
291
292 int count128 = count / 4;
293 __m128i *dst128 = reinterpret_cast<__m128i*>(dest);
294 const __m128i value128 = _mm_set_epi32(value, value, value, value);
295
296 int n = (count128 + 3) / 4;
297 switch (count128 & 0x3) {
298 case 0: do { _mm_store_si128(dst128++, value128);
299 case 3: _mm_store_si128(dst128++, value128);
300 case 2: _mm_store_si128(dst128++, value128);
301 case 1: _mm_store_si128(dst128++, value128);
302 } while (--n > 0);
303 }
304
305 const int rest = count & 0x3;
306 if (rest) {
307 switch (rest) {
308 case 3: dest[count - 3] = value;
309 case 2: dest[count - 2] = value;
310 case 1: dest[count - 1] = value;
311 }
312 }
313}
314
315void qt_memfill16_sse2(quint16 *dest, quint16 value, int count)
316{
317 if (count < 3) {
318 switch (count) {
319 case 2: *dest++ = value;
320 case 1: *dest = value;
321 }
322 return;
323 }
324
325 const int align = (quintptr)(dest) & 0x3;
326 switch (align) {
327 case 2: *dest++ = value; --count;
328 }
329
330 const quint32 value32 = (value << 16) | value;
331 qt_memfill32_sse2(reinterpret_cast<quint32*>(dest), value32, count / 2);
332
333 if (count & 0x1)
334 dest[count - 1] = value;
335}
336
337void qt_bitmapblit32_sse2(QRasterBuffer *rasterBuffer, int x, int y,
338 quint32 color,
339 const uchar *src, int width, int height, int stride)
340{
341 quint32 *dest = reinterpret_cast<quint32*>(rasterBuffer->scanLine(y)) + x;
342 const int destStride = rasterBuffer->bytesPerLine() / sizeof(quint32);
343
344 const __m128i c128 = _mm_set1_epi32(color);
345 const __m128i maskmask1 = _mm_set_epi32(0x10101010, 0x20202020,
346 0x40404040, 0x80808080);
347 const __m128i maskadd1 = _mm_set_epi32(0x70707070, 0x60606060,
348 0x40404040, 0x00000000);
349
350 if (width > 4) {
351 const __m128i maskmask2 = _mm_set_epi32(0x01010101, 0x02020202,
352 0x04040404, 0x08080808);
353 const __m128i maskadd2 = _mm_set_epi32(0x7f7f7f7f, 0x7e7e7e7e,
354 0x7c7c7c7c, 0x78787878);
355 while (height--) {
356 for (int x = 0; x < width; x += 8) {
357 const quint8 s = src[x >> 3];
358 if (!s)
359 continue;
360 __m128i mask1 = _mm_set1_epi8(s);
361 __m128i mask2 = mask1;
362
363 mask1 = _mm_and_si128(mask1, maskmask1);
364 mask1 = _mm_add_epi8(mask1, maskadd1);
365 _mm_maskmoveu_si128(c128, mask1, (char*)(dest + x));
366 mask2 = _mm_and_si128(mask2, maskmask2);
367 mask2 = _mm_add_epi8(mask2, maskadd2);
368 _mm_maskmoveu_si128(c128, mask2, (char*)(dest + x + 4));
369 }
370 dest += destStride;
371 src += stride;
372 }
373 } else {
374 while (height--) {
375 const quint8 s = *src;
376 if (s) {
377 __m128i mask1 = _mm_set1_epi8(s);
378 mask1 = _mm_and_si128(mask1, maskmask1);
379 mask1 = _mm_add_epi8(mask1, maskadd1);
380 _mm_maskmoveu_si128(c128, mask1, (char*)(dest));
381 }
382 dest += destStride;
383 src += stride;
384 }
385 }
386}
387
388void qt_bitmapblit16_sse2(QRasterBuffer *rasterBuffer, int x, int y,
389 quint32 color,
390 const uchar *src, int width, int height, int stride)
391{
392 const quint16 c = qt_colorConvert<quint16, quint32>(color, 0);
393 quint16 *dest = reinterpret_cast<quint16*>(rasterBuffer->scanLine(y)) + x;
394 const int destStride = rasterBuffer->bytesPerLine() / sizeof(quint16);
395
396 const __m128i c128 = _mm_set1_epi16(c);
397#if defined(Q_CC_MSVC)
398# pragma warning(disable: 4309) // truncation of constant value
399#endif
400 const __m128i maskmask = _mm_set_epi16(0x0101, 0x0202, 0x0404, 0x0808,
401 0x1010, 0x2020, 0x4040, 0x8080);
402 const __m128i maskadd = _mm_set_epi16(0x7f7f, 0x7e7e, 0x7c7c, 0x7878,
403 0x7070, 0x6060, 0x4040, 0x0000);
404
405 while (height--) {
406 for (int x = 0; x < width; x += 8) {
407 const quint8 s = src[x >> 3];
408 if (!s)
409 continue;
410 __m128i mask = _mm_set1_epi8(s);
411 mask = _mm_and_si128(mask, maskmask);
412 mask = _mm_add_epi8(mask, maskadd);
413 _mm_maskmoveu_si128(c128, mask, (char*)(dest + x));
414 }
415 dest += destStride;
416 src += stride;
417 }
418}
419
420QT_END_NAMESPACE
421
422#endif // QT_HAVE_SSE2
Note: See TracBrowser for help on using the repository browser.