blob: f14d2a5aeaddc4ed6637d426184b673193dc1203 [file] [log] [blame]
Mike Klein78d5a3b2016-09-30 10:48:01 -04001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Mike Kleina174e062017-01-26 11:41:03 -05008// It is not safe to #include any header file here unless it has been vetted for ODR safety:
9// all symbols used must be file-scoped static or in an anonymous namespace. This applies
10// to _all_ header files: C standard library, C++ standard library, Skia... everything.
Mike Klein78d5a3b2016-09-30 10:48:01 -040011
Mike Kleina174e062017-01-26 11:41:03 -050012#include <immintrin.h> // ODR safe
13#include <stdint.h> // ODR safe
Mike Klein464e6a12017-01-04 11:04:01 -050014
Mike Klein88235bb2017-01-26 16:23:26 -050015#if defined(__AVX2__)
16
Mike Kleina174e062017-01-26 11:41:03 -050017namespace hsw {
Mike Klein78d5a3b2016-09-30 10:48:01 -040018
Mike Kleina174e062017-01-26 11:41:03 -050019 void convolve_vertically(const int16_t* filter, int filterLen,
20 uint8_t* const* srcRows, int width,
21 uint8_t* out, bool hasAlpha) {
22 // It's simpler to work with the output array in terms of 4-byte pixels.
23 auto dst = (int*)out;
24
25 // Output up to eight pixels per iteration.
26 for (int x = 0; x < width; x += 8) {
Mike Kleinf65d19b2017-01-26 14:58:42 -050027 // Accumulated result for 4 (non-adjacent) pairs of pixels,
28 // with each channel in signed 17.14 fixed point.
29 auto accum04 = _mm256_setzero_si256(),
30 accum15 = _mm256_setzero_si256(),
31 accum26 = _mm256_setzero_si256(),
32 accum37 = _mm256_setzero_si256();
Mike Kleina174e062017-01-26 11:41:03 -050033
34 // Convolve with the filter. (This inner loop is where we spend ~all our time.)
35 for (int i = 0; i < filterLen; i++) {
36 auto coeffs = _mm256_set1_epi16(filter[i]);
37 auto pixels = _mm256_loadu_si256((const __m256i*)(srcRows[i] + x*4));
38
Mike Kleinf65d19b2017-01-26 14:58:42 -050039 auto pixels_0145 = _mm256_unpacklo_epi8(pixels, _mm256_setzero_si256()),
40 pixels_2367 = _mm256_unpackhi_epi8(pixels, _mm256_setzero_si256());
Mike Kleina174e062017-01-26 11:41:03 -050041
Mike Kleinf65d19b2017-01-26 14:58:42 -050042 auto lo_0145 = _mm256_mullo_epi16(pixels_0145, coeffs),
43 hi_0145 = _mm256_mulhi_epi16(pixels_0145, coeffs),
44 lo_2367 = _mm256_mullo_epi16(pixels_2367, coeffs),
45 hi_2367 = _mm256_mulhi_epi16(pixels_2367, coeffs);
Mike Kleina174e062017-01-26 11:41:03 -050046
Mike Kleinf65d19b2017-01-26 14:58:42 -050047 accum04 = _mm256_add_epi32(accum04, _mm256_unpacklo_epi16(lo_0145, hi_0145));
48 accum15 = _mm256_add_epi32(accum15, _mm256_unpackhi_epi16(lo_0145, hi_0145));
49 accum26 = _mm256_add_epi32(accum26, _mm256_unpacklo_epi16(lo_2367, hi_2367));
50 accum37 = _mm256_add_epi32(accum37, _mm256_unpackhi_epi16(lo_2367, hi_2367));
Mike Kleina174e062017-01-26 11:41:03 -050051 }
52
53 // Trim the fractional parts.
Mike Kleinf65d19b2017-01-26 14:58:42 -050054 accum04 = _mm256_srai_epi32(accum04, 14);
55 accum15 = _mm256_srai_epi32(accum15, 14);
56 accum26 = _mm256_srai_epi32(accum26, 14);
57 accum37 = _mm256_srai_epi32(accum37, 14);
Mike Kleina174e062017-01-26 11:41:03 -050058
59 // Pack back down to 8-bit channels.
Mike Kleinf65d19b2017-01-26 14:58:42 -050060 auto pixels = _mm256_packus_epi16(_mm256_packs_epi32(accum04, accum15),
61 _mm256_packs_epi32(accum26, accum37));
Mike Kleina174e062017-01-26 11:41:03 -050062
63 if (hasAlpha) {
64 // Clamp alpha to the max of r,g,b to make sure we stay premultiplied.
65 __m256i max_rg = _mm256_max_epu8(pixels, _mm256_srli_epi32(pixels, 8)),
66 max_rgb = _mm256_max_epu8(max_rg, _mm256_srli_epi32(pixels, 16));
67 pixels = _mm256_max_epu8(pixels, _mm256_slli_epi32(max_rgb, 24));
68 } else {
69 // Force opaque.
70 pixels = _mm256_or_si256(pixels, _mm256_set1_epi32(0xff000000));
71 }
72
73 // Normal path to store 8 pixels.
74 if (x + 8 <= width) {
75 _mm256_storeu_si256((__m256i*)dst, pixels);
76 dst += 8;
77 continue;
78 }
79
80 // Store one pixel at a time on the last iteration.
81 for (int i = x; i < width; i++) {
82 *dst++ = _mm_cvtsi128_si32(_mm256_castsi256_si128(pixels));
83 pixels = _mm256_permutevar8x32_epi32(pixels, _mm256_setr_epi32(1,2,3,4,5,6,7,0));
84 }
85 }
86 }
87
88}
Mike Kleine9f78b42016-11-22 08:57:45 -050089
Mike Klein78d5a3b2016-09-30 10:48:01 -040090namespace SkOpts {
Mike Kleina174e062017-01-26 11:41:03 -050091 // See SkOpts.h, writing SkConvolutionFilter1D::ConvolutionFixed as the underlying type.
92 extern void (*convolve_vertically)(const int16_t* filter, int filterLen,
93 uint8_t* const* srcRows, int width,
94 uint8_t* out, bool hasAlpha);
Mike Kleinec07b0b2016-10-19 16:45:16 -040095 void Init_hsw() {
xiangze.zhang4adac2e2016-12-07 17:54:04 -080096 convolve_vertically = hsw::convolve_vertically;
Mike Kleinec07b0b2016-10-19 16:45:16 -040097 }
Mike Klein78d5a3b2016-09-30 10:48:01 -040098}
Mike Klein88235bb2017-01-26 16:23:26 -050099
100#else // defined(__AVX2__) is not true...
101
102namespace SkOpts { void Init_hsw() {} }
103
104#endif