Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: src/opts/Sk4px_SSE2.h

Issue 1138333003: Sk4px: alphas() and Load[24]Alphas() (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: neon too Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/opts/Sk4px_NEON.h ('k') | src/opts/Sk4px_none.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 inline Sk4px::Sk4px(SkPMColor px) : INHERITED(_mm_set1_epi32(px)) {} 8 inline Sk4px::Sk4px(SkPMColor px) : INHERITED(_mm_set1_epi32(px)) {}
9 9
10 inline Sk4px Sk4px::Load4(const SkPMColor px[4]) { 10 inline Sk4px Sk4px::Load4(const SkPMColor px[4]) {
(...skipping 19 matching lines...) Expand all
30 } 30 }
31 31
32 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const { 32 inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
33 return this->widenLo() * Sk4px(other).widenLo(); 33 return this->widenLo() * Sk4px(other).widenLo();
34 } 34 }
35 35
36 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const { 36 inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
37 Sk4px::Wide r = (*this + other) >> 8; 37 Sk4px::Wide r = (*this + other) >> 8;
38 return Sk4px(_mm_packus_epi16(r.fLo.fVec, r.fHi.fVec)); 38 return Sk4px(_mm_packus_epi16(r.fLo.fVec, r.fHi.fVec));
39 } 39 }
40
41 // Load4Alphas and Load2Alphas use possibly-unaligned loads (SkAlpha[] -> uint16 _t or uint32_t).
42 // These are safe on x86, often with no speed penalty.
43
44 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSSE3
45 inline Sk4px Sk4px::alphas() const {
46 static_assert(SK_A32_SHIFT == 24, "Intel's always little-endian.");
47 __m128i splat = _mm_set_epi8(15,15,15,15, 11,11,11,11, 7,7,7,7, 3,3,3,3) ;
48 return Sk16b(_mm_shuffle_epi8(this->fVec, splat));
49 }
50
51 inline Sk4px Sk4px::Load4Alphas(const SkAlpha a[4]) {
52 uint32_t as = *(const uint32_t*)a;
53 __m128i splat = _mm_set_epi8(3,3,3,3, 2,2,2,2, 1,1,1,1, 0,0,0,0);
54 return Sk16b(_mm_shuffle_epi8(_mm_cvtsi32_si128(as), splat));
55 }
56 #else
57 inline Sk4px Sk4px::alphas() const {
58 static_assert(SK_A32_SHIFT == 24, "Intel's always little-endian.");
59 __m128i as = _mm_srli_epi32(this->fVec, 24); // ___3 ___2 ___1 ___0
60 as = _mm_or_si128(as, _mm_slli_si128(as, 1)); // __33 __22 __11 __00
61 as = _mm_or_si128(as, _mm_slli_si128(as, 2)); // 3333 2222 1111 0000
62 return Sk16b(as);
63 }
64
65 inline Sk4px Sk4px::Load4Alphas(const SkAlpha a[4]) {
66 __m128i as = _mm_cvtsi32_si128(*(const uint32_t*)a); // ____ ____ ____ 3210
67 as = _mm_unpacklo_epi8 (as, _mm_setzero_si128()); // ____ ____ _3_2 _1_0
68 as = _mm_unpacklo_epi16(as, _mm_setzero_si128()); // ___3 ___2 ___1 ___0
69 as = _mm_or_si128(as, _mm_slli_si128(as, 1)); // __33 __22 __11 __00
70 as = _mm_or_si128(as, _mm_slli_si128(as, 2)); // 3333 2222 1111 0000
71 return Sk16b(as);
72 }
73 #endif
74
75 inline Sk4px Sk4px::Load2Alphas(const SkAlpha a[2]) {
76 uint32_t as = *(const uint16_t*)a; // Aa -> Aa00
77 return Load4Alphas((const SkAlpha*)&as);
78 }
OLDNEW
« no previous file with comments | « src/opts/Sk4px_NEON.h ('k') | src/opts/Sk4px_none.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698