Coverage Report

Created: 2026-05-16 07:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libwebp/src/dsp/dec_sse2.c
Line
Count
Source
1
// Copyright 2011 Google Inc. All Rights Reserved.
2
//
3
// Use of this source code is governed by a BSD-style license
4
// that can be found in the COPYING file in the root of the source
5
// tree. An additional intellectual property rights grant can be found
6
// in the file PATENTS. All contributing project authors may
7
// be found in the AUTHORS file in the root of the source tree.
8
// -----------------------------------------------------------------------------
9
//
10
// SSE2 version of some decoding functions (idct, loop filtering).
11
//
12
// Author: somnath@google.com (Somnath Banerjee)
13
//         cduvivier@google.com (Christian Duvivier)
14
15
#include "src/dsp/dsp.h"
16
17
#if defined(WEBP_USE_SSE2)
18
19
// The 3-coeff sparse transform in SSE2 is not really faster than the plain-C
20
// one it seems => disable it by default. Uncomment the following to enable:
21
#if !defined(USE_TRANSFORM_AC3)
22
#define USE_TRANSFORM_AC3 0  // ALTERNATE_CODE
23
#endif
24
25
#include <emmintrin.h>
26
27
#include "src/dec/vp8i_dec.h"
28
#include "src/dsp/common_sse2.h"
29
#include "src/dsp/cpu.h"
30
#include "src/utils/utils.h"
31
#include "src/webp/types.h"
32
33
//------------------------------------------------------------------------------
34
// Transforms (Paragraph 14.4)
35
36
static void Transform_SSE2(const int16_t* WEBP_RESTRICT in,
37
21.9k
                           uint8_t* WEBP_RESTRICT dst, int do_two) {
38
  // This implementation makes use of 16-bit fixed point versions of two
39
  // multiply constants:
40
  //    K1 = sqrt(2) * cos (pi/8) ~= 85627 / 2^16
41
  //    K2 = sqrt(2) * sin (pi/8) ~= 35468 / 2^16
42
  //
43
  // To be able to use signed 16-bit integers, we use the following trick to
44
  // have constants within range:
45
  // - Associated constants are obtained by subtracting the 16-bit fixed point
46
  //   version of one:
47
  //      k = K - (1 << 16)  =>  K = k + (1 << 16)
48
  //      K1 = 85267  =>  k1 =  20091
49
  //      K2 = 35468  =>  k2 = -30068
50
  // - The multiplication of a variable by a constant become the sum of the
51
  //   variable and the multiplication of that variable by the associated
52
  //   constant:
53
  //      (x * K) >> 16 = (x * (k + (1 << 16))) >> 16 = ((x * k ) >> 16) + x
54
21.9k
  const __m128i k1 = _mm_set1_epi16(20091);
55
21.9k
  const __m128i k2 = _mm_set1_epi16(-30068);
56
21.9k
  __m128i T0, T1, T2, T3;
57
58
  // Load and concatenate the transform coefficients (we'll do two transforms
59
  // in parallel). In the case of only one transform, the second half of the
60
  // vectors will just contain random value we'll never use nor store.
61
21.9k
  __m128i in0, in1, in2, in3;
62
21.9k
  {
63
21.9k
    in0 = _mm_loadl_epi64((const __m128i*)&in[0]);
64
21.9k
    in1 = _mm_loadl_epi64((const __m128i*)&in[4]);
65
21.9k
    in2 = _mm_loadl_epi64((const __m128i*)&in[8]);
66
21.9k
    in3 = _mm_loadl_epi64((const __m128i*)&in[12]);
67
    // a00 a10 a20 a30   x x x x
68
    // a01 a11 a21 a31   x x x x
69
    // a02 a12 a22 a32   x x x x
70
    // a03 a13 a23 a33   x x x x
71
21.9k
    if (do_two) {
72
6.34k
      const __m128i inB0 = _mm_loadl_epi64((const __m128i*)&in[16]);
73
6.34k
      const __m128i inB1 = _mm_loadl_epi64((const __m128i*)&in[20]);
74
6.34k
      const __m128i inB2 = _mm_loadl_epi64((const __m128i*)&in[24]);
75
6.34k
      const __m128i inB3 = _mm_loadl_epi64((const __m128i*)&in[28]);
76
6.34k
      in0 = _mm_unpacklo_epi64(in0, inB0);
77
6.34k
      in1 = _mm_unpacklo_epi64(in1, inB1);
78
6.34k
      in2 = _mm_unpacklo_epi64(in2, inB2);
79
6.34k
      in3 = _mm_unpacklo_epi64(in3, inB3);
80
      // a00 a10 a20 a30   b00 b10 b20 b30
81
      // a01 a11 a21 a31   b01 b11 b21 b31
82
      // a02 a12 a22 a32   b02 b12 b22 b32
83
      // a03 a13 a23 a33   b03 b13 b23 b33
84
6.34k
    }
85
21.9k
  }
86
87
  // Vertical pass and subsequent transpose.
88
21.9k
  {
89
    // First pass, c and d calculations are longer because of the "trick"
90
    // multiplications.
91
21.9k
    const __m128i a = _mm_add_epi16(in0, in2);
92
21.9k
    const __m128i b = _mm_sub_epi16(in0, in2);
93
    // c = MUL(in1, K2) - MUL(in3, K1) = MUL(in1, k2) - MUL(in3, k1) + in1 - in3
94
21.9k
    const __m128i c1 = _mm_mulhi_epi16(in1, k2);
95
21.9k
    const __m128i c2 = _mm_mulhi_epi16(in3, k1);
96
21.9k
    const __m128i c3 = _mm_sub_epi16(in1, in3);
97
21.9k
    const __m128i c4 = _mm_sub_epi16(c1, c2);
98
21.9k
    const __m128i c = _mm_add_epi16(c3, c4);
99
    // d = MUL(in1, K1) + MUL(in3, K2) = MUL(in1, k1) + MUL(in3, k2) + in1 + in3
100
21.9k
    const __m128i d1 = _mm_mulhi_epi16(in1, k1);
101
21.9k
    const __m128i d2 = _mm_mulhi_epi16(in3, k2);
102
21.9k
    const __m128i d3 = _mm_add_epi16(in1, in3);
103
21.9k
    const __m128i d4 = _mm_add_epi16(d1, d2);
104
21.9k
    const __m128i d = _mm_add_epi16(d3, d4);
105
106
    // Second pass.
107
21.9k
    const __m128i tmp0 = _mm_add_epi16(a, d);
108
21.9k
    const __m128i tmp1 = _mm_add_epi16(b, c);
109
21.9k
    const __m128i tmp2 = _mm_sub_epi16(b, c);
110
21.9k
    const __m128i tmp3 = _mm_sub_epi16(a, d);
111
112
    // Transpose the two 4x4.
113
21.9k
    VP8Transpose_2_4x4_16b(&tmp0, &tmp1, &tmp2, &tmp3, &T0, &T1, &T2, &T3);
114
21.9k
  }
115
116
  // Horizontal pass and subsequent transpose.
117
21.9k
  {
118
    // First pass, c and d calculations are longer because of the "trick"
119
    // multiplications.
120
21.9k
    const __m128i four = _mm_set1_epi16(4);
121
21.9k
    const __m128i dc = _mm_add_epi16(T0, four);
122
21.9k
    const __m128i a = _mm_add_epi16(dc, T2);
123
21.9k
    const __m128i b = _mm_sub_epi16(dc, T2);
124
    // c = MUL(T1, K2) - MUL(T3, K1) = MUL(T1, k2) - MUL(T3, k1) + T1 - T3
125
21.9k
    const __m128i c1 = _mm_mulhi_epi16(T1, k2);
126
21.9k
    const __m128i c2 = _mm_mulhi_epi16(T3, k1);
127
21.9k
    const __m128i c3 = _mm_sub_epi16(T1, T3);
128
21.9k
    const __m128i c4 = _mm_sub_epi16(c1, c2);
129
21.9k
    const __m128i c = _mm_add_epi16(c3, c4);
130
    // d = MUL(T1, K1) + MUL(T3, K2) = MUL(T1, k1) + MUL(T3, k2) + T1 + T3
131
21.9k
    const __m128i d1 = _mm_mulhi_epi16(T1, k1);
132
21.9k
    const __m128i d2 = _mm_mulhi_epi16(T3, k2);
133
21.9k
    const __m128i d3 = _mm_add_epi16(T1, T3);
134
21.9k
    const __m128i d4 = _mm_add_epi16(d1, d2);
135
21.9k
    const __m128i d = _mm_add_epi16(d3, d4);
136
137
    // Second pass.
138
21.9k
    const __m128i tmp0 = _mm_add_epi16(a, d);
139
21.9k
    const __m128i tmp1 = _mm_add_epi16(b, c);
140
21.9k
    const __m128i tmp2 = _mm_sub_epi16(b, c);
141
21.9k
    const __m128i tmp3 = _mm_sub_epi16(a, d);
142
21.9k
    const __m128i shifted0 = _mm_srai_epi16(tmp0, 3);
143
21.9k
    const __m128i shifted1 = _mm_srai_epi16(tmp1, 3);
144
21.9k
    const __m128i shifted2 = _mm_srai_epi16(tmp2, 3);
145
21.9k
    const __m128i shifted3 = _mm_srai_epi16(tmp3, 3);
146
147
    // Transpose the two 4x4.
148
21.9k
    VP8Transpose_2_4x4_16b(&shifted0, &shifted1, &shifted2, &shifted3, &T0, &T1,
149
21.9k
                           &T2, &T3);
150
21.9k
  }
151
152
  // Add inverse transform to 'dst' and store.
153
21.9k
  {
154
21.9k
    const __m128i zero = _mm_setzero_si128();
155
    // Load the reference(s).
156
21.9k
    __m128i dst0, dst1, dst2, dst3;
157
21.9k
    if (do_two) {
158
      // Load eight bytes/pixels per line.
159
6.34k
      dst0 = _mm_loadl_epi64((__m128i*)(dst + 0 * BPS));
160
6.34k
      dst1 = _mm_loadl_epi64((__m128i*)(dst + 1 * BPS));
161
6.34k
      dst2 = _mm_loadl_epi64((__m128i*)(dst + 2 * BPS));
162
6.34k
      dst3 = _mm_loadl_epi64((__m128i*)(dst + 3 * BPS));
163
15.6k
    } else {
164
      // Load four bytes/pixels per line.
165
15.6k
      dst0 = _mm_cvtsi32_si128(WebPMemToInt32(dst + 0 * BPS));
166
15.6k
      dst1 = _mm_cvtsi32_si128(WebPMemToInt32(dst + 1 * BPS));
167
15.6k
      dst2 = _mm_cvtsi32_si128(WebPMemToInt32(dst + 2 * BPS));
168
15.6k
      dst3 = _mm_cvtsi32_si128(WebPMemToInt32(dst + 3 * BPS));
169
15.6k
    }
170
    // Convert to 16b.
171
21.9k
    dst0 = _mm_unpacklo_epi8(dst0, zero);
172
21.9k
    dst1 = _mm_unpacklo_epi8(dst1, zero);
173
21.9k
    dst2 = _mm_unpacklo_epi8(dst2, zero);
174
21.9k
    dst3 = _mm_unpacklo_epi8(dst3, zero);
175
    // Add the inverse transform(s).
176
21.9k
    dst0 = _mm_add_epi16(dst0, T0);
177
21.9k
    dst1 = _mm_add_epi16(dst1, T1);
178
21.9k
    dst2 = _mm_add_epi16(dst2, T2);
179
21.9k
    dst3 = _mm_add_epi16(dst3, T3);
180
    // Unsigned saturate to 8b.
181
21.9k
    dst0 = _mm_packus_epi16(dst0, dst0);
182
21.9k
    dst1 = _mm_packus_epi16(dst1, dst1);
183
21.9k
    dst2 = _mm_packus_epi16(dst2, dst2);
184
21.9k
    dst3 = _mm_packus_epi16(dst3, dst3);
185
    // Store the results.
186
21.9k
    if (do_two) {
187
      // Store eight bytes/pixels per line.
188
6.34k
      _mm_storel_epi64((__m128i*)(dst + 0 * BPS), dst0);
189
6.34k
      _mm_storel_epi64((__m128i*)(dst + 1 * BPS), dst1);
190
6.34k
      _mm_storel_epi64((__m128i*)(dst + 2 * BPS), dst2);
191
6.34k
      _mm_storel_epi64((__m128i*)(dst + 3 * BPS), dst3);
192
15.6k
    } else {
193
      // Store four bytes/pixels per line.
194
15.6k
      WebPInt32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32(dst0));
195
15.6k
      WebPInt32ToMem(dst + 1 * BPS, _mm_cvtsi128_si32(dst1));
196
15.6k
      WebPInt32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(dst2));
197
15.6k
      WebPInt32ToMem(dst + 3 * BPS, _mm_cvtsi128_si32(dst3));
198
15.6k
    }
199
21.9k
  }
200
21.9k
}
201
202
#if (USE_TRANSFORM_AC3 == 1)
203
204
static void TransformAC3_SSE2(const int16_t* WEBP_RESTRICT in,
205
                              uint8_t* WEBP_RESTRICT dst) {
206
  const __m128i A = _mm_set1_epi16(in[0] + 4);
207
  const __m128i c4 = _mm_set1_epi16(WEBP_TRANSFORM_AC3_MUL2(in[4]));
208
  const __m128i d4 = _mm_set1_epi16(WEBP_TRANSFORM_AC3_MUL1(in[4]));
209
  const int c1 = WEBP_TRANSFORM_AC3_MUL2(in[1]);
210
  const int d1 = WEBP_TRANSFORM_AC3_MUL1(in[1]);
211
  const __m128i CD = _mm_set_epi16(0, 0, 0, 0, -d1, -c1, c1, d1);
212
  const __m128i B = _mm_adds_epi16(A, CD);
213
  const __m128i m0 = _mm_adds_epi16(B, d4);
214
  const __m128i m1 = _mm_adds_epi16(B, c4);
215
  const __m128i m2 = _mm_subs_epi16(B, c4);
216
  const __m128i m3 = _mm_subs_epi16(B, d4);
217
  const __m128i zero = _mm_setzero_si128();
218
  // Load the source pixels.
219
  __m128i dst0 = _mm_cvtsi32_si128(WebPMemToInt32(dst + 0 * BPS));
220
  __m128i dst1 = _mm_cvtsi32_si128(WebPMemToInt32(dst + 1 * BPS));
221
  __m128i dst2 = _mm_cvtsi32_si128(WebPMemToInt32(dst + 2 * BPS));
222
  __m128i dst3 = _mm_cvtsi32_si128(WebPMemToInt32(dst + 3 * BPS));
223
  // Convert to 16b.
224
  dst0 = _mm_unpacklo_epi8(dst0, zero);
225
  dst1 = _mm_unpacklo_epi8(dst1, zero);
226
  dst2 = _mm_unpacklo_epi8(dst2, zero);
227
  dst3 = _mm_unpacklo_epi8(dst3, zero);
228
  // Add the inverse transform.
229
  dst0 = _mm_adds_epi16(dst0, _mm_srai_epi16(m0, 3));
230
  dst1 = _mm_adds_epi16(dst1, _mm_srai_epi16(m1, 3));
231
  dst2 = _mm_adds_epi16(dst2, _mm_srai_epi16(m2, 3));
232
  dst3 = _mm_adds_epi16(dst3, _mm_srai_epi16(m3, 3));
233
  // Unsigned saturate to 8b.
234
  dst0 = _mm_packus_epi16(dst0, dst0);
235
  dst1 = _mm_packus_epi16(dst1, dst1);
236
  dst2 = _mm_packus_epi16(dst2, dst2);
237
  dst3 = _mm_packus_epi16(dst3, dst3);
238
  // Store the results.
239
  WebPInt32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32(dst0));
240
  WebPInt32ToMem(dst + 1 * BPS, _mm_cvtsi128_si32(dst1));
241
  WebPInt32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(dst2));
242
  WebPInt32ToMem(dst + 3 * BPS, _mm_cvtsi128_si32(dst3));
243
}
244
245
#endif  // USE_TRANSFORM_AC3
246
247
//------------------------------------------------------------------------------
248
// Loop Filter (Paragraph 15)
249
250
// Compute abs(p - q) = subs(p - q) OR subs(q - p)
251
#define MM_ABS(p, q) \
252
544k
  _mm_or_si128(_mm_subs_epu8((q), (p)), _mm_subs_epu8((p), (q)))
253
254
// Shift each byte of "x" by 3 bits while preserving by the sign bit.
255
177k
static WEBP_INLINE void SignedShift8b_SSE2(__m128i* const x) {
256
177k
  const __m128i zero = _mm_setzero_si128();
257
177k
  const __m128i lo_0 = _mm_unpacklo_epi8(zero, *x);
258
177k
  const __m128i hi_0 = _mm_unpackhi_epi8(zero, *x);
259
177k
  const __m128i lo_1 = _mm_srai_epi16(lo_0, 3 + 8);
260
177k
  const __m128i hi_1 = _mm_srai_epi16(hi_0, 3 + 8);
261
177k
  *x = _mm_packs_epi16(lo_1, hi_1);
262
177k
}
263
264
#define FLIP_SIGN_BIT2(a, b)          \
265
303k
  do {                                \
266
303k
    (a) = _mm_xor_si128(a, sign_bit); \
267
303k
    (b) = _mm_xor_si128(b, sign_bit); \
268
303k
  } while (0)
269
270
#define FLIP_SIGN_BIT4(a, b, c, d) \
271
45.9k
  do {                             \
272
45.9k
    FLIP_SIGN_BIT2(a, b);          \
273
45.9k
    FLIP_SIGN_BIT2(c, d);          \
274
45.9k
  } while (0)
275
276
// input/output is uint8_t
277
static WEBP_INLINE void GetNotHEV_SSE2(const __m128i* const p1,
278
                                       const __m128i* const p0,
279
                                       const __m128i* const q0,
280
                                       const __m128i* const q1, int hev_thresh,
281
45.9k
                                       __m128i* const not_hev) {
282
45.9k
  const __m128i zero = _mm_setzero_si128();
283
45.9k
  const __m128i t_1 = MM_ABS(*p1, *p0);
284
45.9k
  const __m128i t_2 = MM_ABS(*q1, *q0);
285
286
45.9k
  const __m128i h = _mm_set1_epi8(hev_thresh);
287
45.9k
  const __m128i t_max = _mm_max_epu8(t_1, t_2);
288
289
45.9k
  const __m128i t_max_h = _mm_subs_epu8(t_max, h);
290
45.9k
  *not_hev = _mm_cmpeq_epi8(t_max_h, zero);  // not_hev <= t1 && not_hev <= t2
291
45.9k
}
292
293
// input pixels are int8_t
294
static WEBP_INLINE void GetBaseDelta_SSE2(const __m128i* const p1,
295
                                          const __m128i* const p0,
296
                                          const __m128i* const q0,
297
                                          const __m128i* const q1,
298
60.1k
                                          __m128i* const delta) {
299
  // beware of addition order, for saturation!
300
60.1k
  const __m128i p1_q1 = _mm_subs_epi8(*p1, *q1);   // p1 - q1
301
60.1k
  const __m128i q0_p0 = _mm_subs_epi8(*q0, *p0);   // q0 - p0
302
60.1k
  const __m128i s1 = _mm_adds_epi8(p1_q1, q0_p0);  // p1 - q1 + 1 * (q0 - p0)
303
60.1k
  const __m128i s2 = _mm_adds_epi8(q0_p0, s1);     // p1 - q1 + 2 * (q0 - p0)
304
60.1k
  const __m128i s3 = _mm_adds_epi8(q0_p0, s2);     // p1 - q1 + 3 * (q0 - p0)
305
60.1k
  *delta = s3;
306
60.1k
}
307
308
// input and output are int8_t
309
static WEBP_INLINE void DoSimpleFilter_SSE2(__m128i* const p0,
310
                                            __m128i* const q0,
311
60.1k
                                            const __m128i* const fl) {
312
60.1k
  const __m128i k3 = _mm_set1_epi8(3);
313
60.1k
  const __m128i k4 = _mm_set1_epi8(4);
314
60.1k
  __m128i v3 = _mm_adds_epi8(*fl, k3);
315
60.1k
  __m128i v4 = _mm_adds_epi8(*fl, k4);
316
317
60.1k
  SignedShift8b_SSE2(&v4);       // v4 >> 3
318
60.1k
  SignedShift8b_SSE2(&v3);       // v3 >> 3
319
60.1k
  *q0 = _mm_subs_epi8(*q0, v4);  // q0 -= v4
320
60.1k
  *p0 = _mm_adds_epi8(*p0, v3);  // p0 += v3
321
60.1k
}
322
323
// Updates values of 2 pixels at MB edge during complex filtering.
324
// Update operations:
325
// q = q - delta and p = p + delta; where delta = [(a_hi >> 7), (a_lo >> 7)]
326
// Pixels 'pi' and 'qi' are int8_t on input, uint8_t on output (sign flip).
327
static WEBP_INLINE void Update2Pixels_SSE2(__m128i* const pi, __m128i* const qi,
328
                                           const __m128i* const a0_lo,
329
52.0k
                                           const __m128i* const a0_hi) {
330
52.0k
  const __m128i a1_lo = _mm_srai_epi16(*a0_lo, 7);
331
52.0k
  const __m128i a1_hi = _mm_srai_epi16(*a0_hi, 7);
332
52.0k
  const __m128i delta = _mm_packs_epi16(a1_lo, a1_hi);
333
52.0k
  const __m128i sign_bit = _mm_set1_epi8((char)0x80);
334
52.0k
  *pi = _mm_adds_epi8(*pi, delta);
335
52.0k
  *qi = _mm_subs_epi8(*qi, delta);
336
52.0k
  FLIP_SIGN_BIT2(*pi, *qi);
337
52.0k
}
338
339
// input pixels are uint8_t
340
static WEBP_INLINE void NeedsFilter_SSE2(const __m128i* const p1,
341
                                         const __m128i* const p0,
342
                                         const __m128i* const q0,
343
                                         const __m128i* const q1, int thresh,
344
88.6k
                                         __m128i* const mask) {
345
88.6k
  const __m128i m_thresh = _mm_set1_epi8((char)thresh);
346
88.6k
  const __m128i t1 = MM_ABS(*p1, *q1);  // abs(p1 - q1)
347
88.6k
  const __m128i kFE = _mm_set1_epi8((char)0xFE);
348
88.6k
  const __m128i t2 = _mm_and_si128(t1, kFE);  // set lsb of each byte to zero
349
88.6k
  const __m128i t3 = _mm_srli_epi16(t2, 1);   // abs(p1 - q1) / 2
350
351
88.6k
  const __m128i t4 = MM_ABS(*p0, *q0);       // abs(p0 - q0)
352
88.6k
  const __m128i t5 = _mm_adds_epu8(t4, t4);  // abs(p0 - q0) * 2
353
88.6k
  const __m128i t6 = _mm_adds_epu8(t5, t3);  // abs(p0-q0)*2 + abs(p1-q1)/2
354
355
88.6k
  const __m128i t7 = _mm_subs_epu8(t6, m_thresh);  // mask <= m_thresh
356
88.6k
  *mask = _mm_cmpeq_epi8(t7, _mm_setzero_si128());
357
88.6k
}
358
359
//------------------------------------------------------------------------------
360
// Edge filtering functions
361
362
// Applies filter on 2 pixels (p0 and q0)
363
static WEBP_INLINE void DoFilter2_SSE2(__m128i* const p1, __m128i* const p0,
364
                                       __m128i* const q0, __m128i* const q1,
365
42.7k
                                       int thresh) {
366
42.7k
  __m128i a, mask;
367
42.7k
  const __m128i sign_bit = _mm_set1_epi8((char)0x80);
368
  // convert p1/q1 to int8_t (for GetBaseDelta_SSE2)
369
42.7k
  const __m128i p1s = _mm_xor_si128(*p1, sign_bit);
370
42.7k
  const __m128i q1s = _mm_xor_si128(*q1, sign_bit);
371
372
42.7k
  NeedsFilter_SSE2(p1, p0, q0, q1, thresh, &mask);
373
374
42.7k
  FLIP_SIGN_BIT2(*p0, *q0);
375
42.7k
  GetBaseDelta_SSE2(&p1s, p0, q0, &q1s, &a);
376
42.7k
  a = _mm_and_si128(a, mask);  // mask filter values we don't care about
377
42.7k
  DoSimpleFilter_SSE2(p0, q0, &a);
378
42.7k
  FLIP_SIGN_BIT2(*p0, *q0);
379
42.7k
}
380
381
// Applies filter on 4 pixels (p1, p0, q0 and q1)
382
static WEBP_INLINE void DoFilter4_SSE2(__m128i* const p1, __m128i* const p0,
383
                                       __m128i* const q0, __m128i* const q1,
384
                                       const __m128i* const mask,
385
28.5k
                                       int hev_thresh) {
386
28.5k
  const __m128i zero = _mm_setzero_si128();
387
28.5k
  const __m128i sign_bit = _mm_set1_epi8((char)0x80);
388
28.5k
  const __m128i k64 = _mm_set1_epi8(64);
389
28.5k
  const __m128i k3 = _mm_set1_epi8(3);
390
28.5k
  const __m128i k4 = _mm_set1_epi8(4);
391
28.5k
  __m128i not_hev;
392
28.5k
  __m128i t1, t2, t3;
393
394
  // compute hev mask
395
28.5k
  GetNotHEV_SSE2(p1, p0, q0, q1, hev_thresh, &not_hev);
396
397
  // convert to signed values
398
28.5k
  FLIP_SIGN_BIT4(*p1, *p0, *q0, *q1);
399
400
28.5k
  t1 = _mm_subs_epi8(*p1, *q1);        // p1 - q1
401
28.5k
  t1 = _mm_andnot_si128(not_hev, t1);  // hev(p1 - q1)
402
28.5k
  t2 = _mm_subs_epi8(*q0, *p0);        // q0 - p0
403
28.5k
  t1 = _mm_adds_epi8(t1, t2);          // hev(p1 - q1) + 1 * (q0 - p0)
404
28.5k
  t1 = _mm_adds_epi8(t1, t2);          // hev(p1 - q1) + 2 * (q0 - p0)
405
28.5k
  t1 = _mm_adds_epi8(t1, t2);          // hev(p1 - q1) + 3 * (q0 - p0)
406
28.5k
  t1 = _mm_and_si128(t1, *mask);       // mask filter values we don't care about
407
408
28.5k
  t2 = _mm_adds_epi8(t1, k3);    // 3 * (q0 - p0) + hev(p1 - q1) + 3
409
28.5k
  t3 = _mm_adds_epi8(t1, k4);    // 3 * (q0 - p0) + hev(p1 - q1) + 4
410
28.5k
  SignedShift8b_SSE2(&t2);       // (3 * (q0 - p0) + hev(p1 - q1) + 3) >> 3
411
28.5k
  SignedShift8b_SSE2(&t3);       // (3 * (q0 - p0) + hev(p1 - q1) + 4) >> 3
412
28.5k
  *p0 = _mm_adds_epi8(*p0, t2);  // p0 += t2
413
28.5k
  *q0 = _mm_subs_epi8(*q0, t3);  // q0 -= t3
414
28.5k
  FLIP_SIGN_BIT2(*p0, *q0);
415
416
  // this is equivalent to signed (a + 1) >> 1 calculation
417
28.5k
  t2 = _mm_add_epi8(t3, sign_bit);
418
28.5k
  t3 = _mm_avg_epu8(t2, zero);
419
28.5k
  t3 = _mm_sub_epi8(t3, k64);
420
421
28.5k
  t3 = _mm_and_si128(not_hev, t3);  // if !hev
422
28.5k
  *q1 = _mm_subs_epi8(*q1, t3);     // q1 -= t3
423
28.5k
  *p1 = _mm_adds_epi8(*p1, t3);     // p1 += t3
424
28.5k
  FLIP_SIGN_BIT2(*p1, *q1);
425
28.5k
}
426
427
// Applies filter on 6 pixels (p2, p1, p0, q0, q1 and q2)
428
static WEBP_INLINE void DoFilter6_SSE2(__m128i* const p2, __m128i* const p1,
429
                                       __m128i* const p0, __m128i* const q0,
430
                                       __m128i* const q1, __m128i* const q2,
431
                                       const __m128i* const mask,
432
17.3k
                                       int hev_thresh) {
433
17.3k
  const __m128i zero = _mm_setzero_si128();
434
17.3k
  const __m128i sign_bit = _mm_set1_epi8((char)0x80);
435
17.3k
  __m128i a, not_hev;
436
437
  // compute hev mask
438
17.3k
  GetNotHEV_SSE2(p1, p0, q0, q1, hev_thresh, &not_hev);
439
440
17.3k
  FLIP_SIGN_BIT4(*p1, *p0, *q0, *q1);
441
17.3k
  FLIP_SIGN_BIT2(*p2, *q2);
442
17.3k
  GetBaseDelta_SSE2(p1, p0, q0, q1, &a);
443
444
17.3k
  {  // do simple filter on pixels with hev
445
17.3k
    const __m128i m = _mm_andnot_si128(not_hev, *mask);
446
17.3k
    const __m128i f = _mm_and_si128(a, m);
447
17.3k
    DoSimpleFilter_SSE2(p0, q0, &f);
448
17.3k
  }
449
450
17.3k
  {  // do strong filter on pixels with not hev
451
17.3k
    const __m128i k9 = _mm_set1_epi16(0x0900);
452
17.3k
    const __m128i k63 = _mm_set1_epi16(63);
453
454
17.3k
    const __m128i m = _mm_and_si128(not_hev, *mask);
455
17.3k
    const __m128i f = _mm_and_si128(a, m);
456
457
17.3k
    const __m128i f_lo = _mm_unpacklo_epi8(zero, f);
458
17.3k
    const __m128i f_hi = _mm_unpackhi_epi8(zero, f);
459
460
17.3k
    const __m128i f9_lo = _mm_mulhi_epi16(f_lo, k9);  // Filter (lo) * 9
461
17.3k
    const __m128i f9_hi = _mm_mulhi_epi16(f_hi, k9);  // Filter (hi) * 9
462
463
17.3k
    const __m128i a2_lo = _mm_add_epi16(f9_lo, k63);  // Filter * 9 + 63
464
17.3k
    const __m128i a2_hi = _mm_add_epi16(f9_hi, k63);  // Filter * 9 + 63
465
466
17.3k
    const __m128i a1_lo = _mm_add_epi16(a2_lo, f9_lo);  // Filter * 18 + 63
467
17.3k
    const __m128i a1_hi = _mm_add_epi16(a2_hi, f9_hi);  // Filter * 18 + 63
468
469
17.3k
    const __m128i a0_lo = _mm_add_epi16(a1_lo, f9_lo);  // Filter * 27 + 63
470
17.3k
    const __m128i a0_hi = _mm_add_epi16(a1_hi, f9_hi);  // Filter * 27 + 63
471
472
17.3k
    Update2Pixels_SSE2(p2, q2, &a2_lo, &a2_hi);
473
17.3k
    Update2Pixels_SSE2(p1, q1, &a1_lo, &a1_hi);
474
17.3k
    Update2Pixels_SSE2(p0, q0, &a0_lo, &a0_hi);
475
17.3k
  }
476
17.3k
}
477
478
// reads 8 rows across a vertical edge.
479
static WEBP_INLINE void Load8x4_SSE2(const uint8_t* const b, int stride,
480
118k
                                     __m128i* const p, __m128i* const q) {
481
  // A0 = 63 62 61 60 23 22 21 20 43 42 41 40 03 02 01 00
482
  // A1 = 73 72 71 70 33 32 31 30 53 52 51 50 13 12 11 10
483
118k
  const __m128i A0 = _mm_set_epi32(
484
118k
      WebPMemToInt32(&b[6 * stride]), WebPMemToInt32(&b[2 * stride]),
485
118k
      WebPMemToInt32(&b[4 * stride]), WebPMemToInt32(&b[0 * stride]));
486
118k
  const __m128i A1 = _mm_set_epi32(
487
118k
      WebPMemToInt32(&b[7 * stride]), WebPMemToInt32(&b[3 * stride]),
488
118k
      WebPMemToInt32(&b[5 * stride]), WebPMemToInt32(&b[1 * stride]));
489
490
  // B0 = 53 43 52 42 51 41 50 40 13 03 12 02 11 01 10 00
491
  // B1 = 73 63 72 62 71 61 70 60 33 23 32 22 31 21 30 20
492
118k
  const __m128i B0 = _mm_unpacklo_epi8(A0, A1);
493
118k
  const __m128i B1 = _mm_unpackhi_epi8(A0, A1);
494
495
  // C0 = 33 23 13 03 32 22 12 02 31 21 11 01 30 20 10 00
496
  // C1 = 73 63 53 43 72 62 52 42 71 61 51 41 70 60 50 40
497
118k
  const __m128i C0 = _mm_unpacklo_epi16(B0, B1);
498
118k
  const __m128i C1 = _mm_unpackhi_epi16(B0, B1);
499
500
  // *p = 71 61 51 41 31 21 11 01 70 60 50 40 30 20 10 00
501
  // *q = 73 63 53 43 33 23 13 03 72 62 52 42 32 22 12 02
502
118k
  *p = _mm_unpacklo_epi32(C0, C1);
503
118k
  *q = _mm_unpackhi_epi32(C0, C1);
504
118k
}
505
506
static WEBP_INLINE void Load16x4_SSE2(const uint8_t* const r0,
507
                                      const uint8_t* const r8, int stride,
508
                                      __m128i* const p1, __m128i* const p0,
509
59.2k
                                      __m128i* const q0, __m128i* const q1) {
510
  // Assume the pixels around the edge (|) are numbered as follows
511
  //                00 01 | 02 03
512
  //                10 11 | 12 13
513
  //                 ...  |  ...
514
  //                e0 e1 | e2 e3
515
  //                f0 f1 | f2 f3
516
  //
517
  // r0 is pointing to the 0th row (00)
518
  // r8 is pointing to the 8th row (80)
519
520
  // Load
521
  // p1 = 71 61 51 41 31 21 11 01 70 60 50 40 30 20 10 00
522
  // q0 = 73 63 53 43 33 23 13 03 72 62 52 42 32 22 12 02
523
  // p0 = f1 e1 d1 c1 b1 a1 91 81 f0 e0 d0 c0 b0 a0 90 80
524
  // q1 = f3 e3 d3 c3 b3 a3 93 83 f2 e2 d2 c2 b2 a2 92 82
525
59.2k
  Load8x4_SSE2(r0, stride, p1, q0);
526
59.2k
  Load8x4_SSE2(r8, stride, p0, q1);
527
528
59.2k
  {
529
    // p1 = f0 e0 d0 c0 b0 a0 90 80 70 60 50 40 30 20 10 00
530
    // p0 = f1 e1 d1 c1 b1 a1 91 81 71 61 51 41 31 21 11 01
531
    // q0 = f2 e2 d2 c2 b2 a2 92 82 72 62 52 42 32 22 12 02
532
    // q1 = f3 e3 d3 c3 b3 a3 93 83 73 63 53 43 33 23 13 03
533
59.2k
    const __m128i t1 = *p1;
534
59.2k
    const __m128i t2 = *q0;
535
59.2k
    *p1 = _mm_unpacklo_epi64(t1, *p0);
536
59.2k
    *p0 = _mm_unpackhi_epi64(t1, *p0);
537
59.2k
    *q0 = _mm_unpacklo_epi64(t2, *q1);
538
59.2k
    *q1 = _mm_unpackhi_epi64(t2, *q1);
539
59.2k
  }
540
59.2k
}
541
542
static WEBP_INLINE void Store4x4_SSE2(__m128i* const x, uint8_t* dst,
543
208k
                                      int stride) {
544
208k
  int i;
545
1.04M
  for (i = 0; i < 4; ++i, dst += stride) {
546
834k
    WebPInt32ToMem(dst, _mm_cvtsi128_si32(*x));
547
834k
    *x = _mm_srli_si128(*x, 4);
548
834k
  }
549
208k
}
550
551
// Transpose back and store
552
static WEBP_INLINE void Store16x4_SSE2(const __m128i* const p1,
553
                                       const __m128i* const p0,
554
                                       const __m128i* const q0,
555
                                       const __m128i* const q1, uint8_t* r0,
556
52.1k
                                       uint8_t* r8, int stride) {
557
52.1k
  __m128i t1, p1_s, p0_s, q0_s, q1_s;
558
559
  // p0 = 71 70 61 60 51 50 41 40 31 30 21 20 11 10 01 00
560
  // p1 = f1 f0 e1 e0 d1 d0 c1 c0 b1 b0 a1 a0 91 90 81 80
561
52.1k
  t1 = *p0;
562
52.1k
  p0_s = _mm_unpacklo_epi8(*p1, t1);
563
52.1k
  p1_s = _mm_unpackhi_epi8(*p1, t1);
564
565
  // q0 = 73 72 63 62 53 52 43 42 33 32 23 22 13 12 03 02
566
  // q1 = f3 f2 e3 e2 d3 d2 c3 c2 b3 b2 a3 a2 93 92 83 82
567
52.1k
  t1 = *q0;
568
52.1k
  q0_s = _mm_unpacklo_epi8(t1, *q1);
569
52.1k
  q1_s = _mm_unpackhi_epi8(t1, *q1);
570
571
  // p0 = 33 32 31 30 23 22 21 20 13 12 11 10 03 02 01 00
572
  // q0 = 73 72 71 70 63 62 61 60 53 52 51 50 43 42 41 40
573
52.1k
  t1 = p0_s;
574
52.1k
  p0_s = _mm_unpacklo_epi16(t1, q0_s);
575
52.1k
  q0_s = _mm_unpackhi_epi16(t1, q0_s);
576
577
  // p1 = b3 b2 b1 b0 a3 a2 a1 a0 93 92 91 90 83 82 81 80
578
  // q1 = f3 f2 f1 f0 e3 e2 e1 e0 d3 d2 d1 d0 c3 c2 c1 c0
579
52.1k
  t1 = p1_s;
580
52.1k
  p1_s = _mm_unpacklo_epi16(t1, q1_s);
581
52.1k
  q1_s = _mm_unpackhi_epi16(t1, q1_s);
582
583
52.1k
  Store4x4_SSE2(&p0_s, r0, stride);
584
52.1k
  r0 += 4 * stride;
585
52.1k
  Store4x4_SSE2(&q0_s, r0, stride);
586
587
52.1k
  Store4x4_SSE2(&p1_s, r8, stride);
588
52.1k
  r8 += 4 * stride;
589
52.1k
  Store4x4_SSE2(&q1_s, r8, stride);
590
52.1k
}
591
592
//------------------------------------------------------------------------------
593
// Simple In-loop filtering (Paragraph 15.2)
594
595
21.7k
static void SimpleVFilter16_SSE2(uint8_t* p, int stride, int thresh) {
596
  // Load
597
21.7k
  __m128i p1 = _mm_loadu_si128((__m128i*)&p[-2 * stride]);
598
21.7k
  __m128i p0 = _mm_loadu_si128((__m128i*)&p[-stride]);
599
21.7k
  __m128i q0 = _mm_loadu_si128((__m128i*)&p[0]);
600
21.7k
  __m128i q1 = _mm_loadu_si128((__m128i*)&p[stride]);
601
602
21.7k
  DoFilter2_SSE2(&p1, &p0, &q0, &q1, thresh);
603
604
  // Store
605
21.7k
  _mm_storeu_si128((__m128i*)&p[-stride], p0);
606
21.7k
  _mm_storeu_si128((__m128i*)&p[0], q0);
607
21.7k
}
608
609
21.0k
static void SimpleHFilter16_SSE2(uint8_t* p, int stride, int thresh) {
610
21.0k
  __m128i p1, p0, q0, q1;
611
612
21.0k
  p -= 2;  // beginning of p1
613
614
21.0k
  Load16x4_SSE2(p, p + 8 * stride, stride, &p1, &p0, &q0, &q1);
615
21.0k
  DoFilter2_SSE2(&p1, &p0, &q0, &q1, thresh);
616
21.0k
  Store16x4_SSE2(&p1, &p0, &q0, &q1, p, p + 8 * stride, stride);
617
21.0k
}
618
619
5.25k
static void SimpleVFilter16i_SSE2(uint8_t* p, int stride, int thresh) {
620
5.25k
  int k;
621
21.0k
  for (k = 3; k > 0; --k) {
622
15.7k
    p += 4 * stride;
623
15.7k
    SimpleVFilter16_SSE2(p, stride, thresh);
624
15.7k
  }
625
5.25k
}
626
627
5.25k
static void SimpleHFilter16i_SSE2(uint8_t* p, int stride, int thresh) {
628
5.25k
  int k;
629
21.0k
  for (k = 3; k > 0; --k) {
630
15.7k
    p += 4;
631
15.7k
    SimpleHFilter16_SSE2(p, stride, thresh);
632
15.7k
  }
633
5.25k
}
634
635
//------------------------------------------------------------------------------
636
// Complex In-loop filtering (Paragraph 15.3)
637
638
#define MAX_DIFF1(p3, p2, p1, p0, m)       \
639
45.9k
  do {                                     \
640
45.9k
    (m) = MM_ABS(p1, p0);                  \
641
45.9k
    (m) = _mm_max_epu8(m, MM_ABS(p3, p2)); \
642
45.9k
    (m) = _mm_max_epu8(m, MM_ABS(p2, p1)); \
643
45.9k
  } while (0)
644
645
#define MAX_DIFF2(p3, p2, p1, p0, m)       \
646
45.9k
  do {                                     \
647
45.9k
    (m) = _mm_max_epu8(m, MM_ABS(p1, p0)); \
648
45.9k
    (m) = _mm_max_epu8(m, MM_ABS(p3, p2)); \
649
45.9k
    (m) = _mm_max_epu8(m, MM_ABS(p2, p1)); \
650
45.9k
  } while (0)
651
652
#define LOAD_H_EDGES4(p, stride, e1, e2, e3, e4)          \
653
23.2k
  do {                                                    \
654
23.2k
    (e1) = _mm_loadu_si128((__m128i*)&(p)[0 * (stride)]); \
655
23.2k
    (e2) = _mm_loadu_si128((__m128i*)&(p)[1 * (stride)]); \
656
23.2k
    (e3) = _mm_loadu_si128((__m128i*)&(p)[2 * (stride)]); \
657
23.2k
    (e4) = _mm_loadu_si128((__m128i*)&(p)[3 * (stride)]); \
658
23.2k
  } while (0)
659
660
#define LOADUV_H_EDGE(p, u, v, stride)                           \
661
64.3k
  do {                                                           \
662
64.3k
    const __m128i U = _mm_loadl_epi64((__m128i*)&(u)[(stride)]); \
663
64.3k
    const __m128i V = _mm_loadl_epi64((__m128i*)&(v)[(stride)]); \
664
64.3k
    (p) = _mm_unpacklo_epi64(U, V);                              \
665
64.3k
  } while (0)
666
667
#define LOADUV_H_EDGES4(u, v, stride, e1, e2, e3, e4) \
668
16.0k
  do {                                                \
669
16.0k
    LOADUV_H_EDGE(e1, u, v, 0 * (stride));            \
670
16.0k
    LOADUV_H_EDGE(e2, u, v, 1 * (stride));            \
671
16.0k
    LOADUV_H_EDGE(e3, u, v, 2 * (stride));            \
672
16.0k
    LOADUV_H_EDGE(e4, u, v, 3 * (stride));            \
673
16.0k
  } while (0)
674
675
#define STOREUV(p, u, v, stride)                   \
676
41.1k
  do {                                             \
677
41.1k
    _mm_storel_epi64((__m128i*)&(u)[(stride)], p); \
678
41.1k
    (p) = _mm_srli_si128(p, 8);                    \
679
41.1k
    _mm_storel_epi64((__m128i*)&(v)[(stride)], p); \
680
41.1k
  } while (0)
681
682
static WEBP_INLINE void ComplexMask_SSE2(const __m128i* const p1,
683
                                         const __m128i* const p0,
684
                                         const __m128i* const q0,
685
                                         const __m128i* const q1, int thresh,
686
45.9k
                                         int ithresh, __m128i* const mask) {
687
45.9k
  const __m128i it = _mm_set1_epi8(ithresh);
688
45.9k
  const __m128i diff = _mm_subs_epu8(*mask, it);
689
45.9k
  const __m128i thresh_mask = _mm_cmpeq_epi8(diff, _mm_setzero_si128());
690
45.9k
  __m128i filter_mask;
691
45.9k
  NeedsFilter_SSE2(p1, p0, q0, q1, thresh, &filter_mask);
692
45.9k
  *mask = _mm_and_si128(thresh_mask, filter_mask);
693
45.9k
}
694
695
// on macroblock edges
696
static void VFilter16_SSE2(uint8_t* p, int stride, int thresh, int ithresh,
697
4.47k
                           int hev_thresh) {
698
4.47k
  __m128i t1;
699
4.47k
  __m128i mask;
700
4.47k
  __m128i p2, p1, p0, q0, q1, q2;
701
702
  // Load p3, p2, p1, p0
703
4.47k
  LOAD_H_EDGES4(p - 4 * stride, stride, t1, p2, p1, p0);
704
4.47k
  MAX_DIFF1(t1, p2, p1, p0, mask);
705
706
  // Load q0, q1, q2, q3
707
4.47k
  LOAD_H_EDGES4(p, stride, q0, q1, q2, t1);
708
4.47k
  MAX_DIFF2(t1, q2, q1, q0, mask);
709
710
4.47k
  ComplexMask_SSE2(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
711
4.47k
  DoFilter6_SSE2(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
712
713
  // Store
714
4.47k
  _mm_storeu_si128((__m128i*)&p[-3 * stride], p2);
715
4.47k
  _mm_storeu_si128((__m128i*)&p[-2 * stride], p1);
716
4.47k
  _mm_storeu_si128((__m128i*)&p[-1 * stride], p0);
717
4.47k
  _mm_storeu_si128((__m128i*)&p[+0 * stride], q0);
718
4.47k
  _mm_storeu_si128((__m128i*)&p[+1 * stride], q1);
719
4.47k
  _mm_storeu_si128((__m128i*)&p[+2 * stride], q2);
720
4.47k
}
721
722
static void HFilter16_SSE2(uint8_t* p, int stride, int thresh, int ithresh,
723
4.19k
                           int hev_thresh) {
724
4.19k
  __m128i mask;
725
4.19k
  __m128i p3, p2, p1, p0, q0, q1, q2, q3;
726
727
4.19k
  uint8_t* const b = p - 4;
728
4.19k
  Load16x4_SSE2(b, b + 8 * stride, stride, &p3, &p2, &p1, &p0);
729
4.19k
  MAX_DIFF1(p3, p2, p1, p0, mask);
730
731
4.19k
  Load16x4_SSE2(p, p + 8 * stride, stride, &q0, &q1, &q2, &q3);
732
4.19k
  MAX_DIFF2(q3, q2, q1, q0, mask);
733
734
4.19k
  ComplexMask_SSE2(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
735
4.19k
  DoFilter6_SSE2(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
736
737
4.19k
  Store16x4_SSE2(&p3, &p2, &p1, &p0, b, b + 8 * stride, stride);
738
4.19k
  Store16x4_SSE2(&q0, &q1, &q2, &q3, p, p + 8 * stride, stride);
739
4.19k
}
740
741
// on three inner edges
742
static void VFilter16i_SSE2(uint8_t* p, int stride, int thresh, int ithresh,
743
3.57k
                            int hev_thresh) {
744
3.57k
  int k;
745
3.57k
  __m128i p3, p2, p1, p0;  // loop invariants
746
747
3.57k
  LOAD_H_EDGES4(p, stride, p3, p2, p1, p0);  // prologue
748
749
14.2k
  for (k = 3; k > 0; --k) {
750
10.7k
    __m128i mask, tmp1, tmp2;
751
10.7k
    uint8_t* const b = p + 2 * stride;  // beginning of p1
752
10.7k
    p += 4 * stride;
753
754
10.7k
    MAX_DIFF1(p3, p2, p1, p0, mask);  // compute partial mask
755
10.7k
    LOAD_H_EDGES4(p, stride, p3, p2, tmp1, tmp2);
756
10.7k
    MAX_DIFF2(p3, p2, tmp1, tmp2, mask);
757
758
    // p3 and p2 are not just temporary variables here: they will be
759
    // re-used for next span. And q2/q3 will become p1/p0 accordingly.
760
10.7k
    ComplexMask_SSE2(&p1, &p0, &p3, &p2, thresh, ithresh, &mask);
761
10.7k
    DoFilter4_SSE2(&p1, &p0, &p3, &p2, &mask, hev_thresh);
762
763
    // Store
764
10.7k
    _mm_storeu_si128((__m128i*)&b[0 * stride], p1);
765
10.7k
    _mm_storeu_si128((__m128i*)&b[1 * stride], p0);
766
10.7k
    _mm_storeu_si128((__m128i*)&b[2 * stride], p3);
767
10.7k
    _mm_storeu_si128((__m128i*)&b[3 * stride], p2);
768
769
    // rotate samples
770
10.7k
    p1 = tmp1;
771
10.7k
    p0 = tmp2;
772
10.7k
  }
773
3.57k
}
774
775
static void HFilter16i_SSE2(uint8_t* p, int stride, int thresh, int ithresh,
776
3.57k
                            int hev_thresh) {
777
3.57k
  int k;
778
3.57k
  __m128i p3, p2, p1, p0;  // loop invariants
779
780
3.57k
  Load16x4_SSE2(p, p + 8 * stride, stride, &p3, &p2, &p1, &p0);  // prologue
781
782
14.2k
  for (k = 3; k > 0; --k) {
783
10.7k
    __m128i mask, tmp1, tmp2;
784
10.7k
    uint8_t* const b = p + 2;  // beginning of p1
785
786
10.7k
    p += 4;  // beginning of q0 (and next span)
787
788
10.7k
    MAX_DIFF1(p3, p2, p1, p0, mask);  // compute partial mask
789
10.7k
    Load16x4_SSE2(p, p + 8 * stride, stride, &p3, &p2, &tmp1, &tmp2);
790
10.7k
    MAX_DIFF2(p3, p2, tmp1, tmp2, mask);
791
792
10.7k
    ComplexMask_SSE2(&p1, &p0, &p3, &p2, thresh, ithresh, &mask);
793
10.7k
    DoFilter4_SSE2(&p1, &p0, &p3, &p2, &mask, hev_thresh);
794
795
10.7k
    Store16x4_SSE2(&p1, &p0, &p3, &p2, b, b + 8 * stride, stride);
796
797
    // rotate samples
798
10.7k
    p1 = tmp1;
799
10.7k
    p0 = tmp2;
800
10.7k
  }
801
3.57k
}
802
803
// 8-pixels wide variant, for chroma filtering
804
static void VFilter8_SSE2(uint8_t* WEBP_RESTRICT u, uint8_t* WEBP_RESTRICT v,
805
4.47k
                          int stride, int thresh, int ithresh, int hev_thresh) {
806
4.47k
  __m128i mask;
807
4.47k
  __m128i t1, p2, p1, p0, q0, q1, q2;
808
809
  // Load p3, p2, p1, p0
810
4.47k
  LOADUV_H_EDGES4(u - 4 * stride, v - 4 * stride, stride, t1, p2, p1, p0);
811
4.47k
  MAX_DIFF1(t1, p2, p1, p0, mask);
812
813
  // Load q0, q1, q2, q3
814
4.47k
  LOADUV_H_EDGES4(u, v, stride, q0, q1, q2, t1);
815
4.47k
  MAX_DIFF2(t1, q2, q1, q0, mask);
816
817
4.47k
  ComplexMask_SSE2(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
818
4.47k
  DoFilter6_SSE2(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
819
820
  // Store
821
4.47k
  STOREUV(p2, u, v, -3 * stride);
822
4.47k
  STOREUV(p1, u, v, -2 * stride);
823
4.47k
  STOREUV(p0, u, v, -1 * stride);
824
4.47k
  STOREUV(q0, u, v, 0 * stride);
825
4.47k
  STOREUV(q1, u, v, 1 * stride);
826
4.47k
  STOREUV(q2, u, v, 2 * stride);
827
4.47k
}
828
829
static void HFilter8_SSE2(uint8_t* WEBP_RESTRICT u, uint8_t* WEBP_RESTRICT v,
830
4.19k
                          int stride, int thresh, int ithresh, int hev_thresh) {
831
4.19k
  __m128i mask;
832
4.19k
  __m128i p3, p2, p1, p0, q0, q1, q2, q3;
833
834
4.19k
  uint8_t* const tu = u - 4;
835
4.19k
  uint8_t* const tv = v - 4;
836
4.19k
  Load16x4_SSE2(tu, tv, stride, &p3, &p2, &p1, &p0);
837
4.19k
  MAX_DIFF1(p3, p2, p1, p0, mask);
838
839
4.19k
  Load16x4_SSE2(u, v, stride, &q0, &q1, &q2, &q3);
840
4.19k
  MAX_DIFF2(q3, q2, q1, q0, mask);
841
842
4.19k
  ComplexMask_SSE2(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
843
4.19k
  DoFilter6_SSE2(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
844
845
4.19k
  Store16x4_SSE2(&p3, &p2, &p1, &p0, tu, tv, stride);
846
4.19k
  Store16x4_SSE2(&q0, &q1, &q2, &q3, u, v, stride);
847
4.19k
}
848
849
static void VFilter8i_SSE2(uint8_t* WEBP_RESTRICT u, uint8_t* WEBP_RESTRICT v,
850
                           int stride, int thresh, int ithresh,
851
3.57k
                           int hev_thresh) {
852
3.57k
  __m128i mask;
853
3.57k
  __m128i t1, t2, p1, p0, q0, q1;
854
855
  // Load p3, p2, p1, p0
856
3.57k
  LOADUV_H_EDGES4(u, v, stride, t2, t1, p1, p0);
857
3.57k
  MAX_DIFF1(t2, t1, p1, p0, mask);
858
859
3.57k
  u += 4 * stride;
860
3.57k
  v += 4 * stride;
861
862
  // Load q0, q1, q2, q3
863
3.57k
  LOADUV_H_EDGES4(u, v, stride, q0, q1, t1, t2);
864
3.57k
  MAX_DIFF2(t2, t1, q1, q0, mask);
865
866
3.57k
  ComplexMask_SSE2(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
867
3.57k
  DoFilter4_SSE2(&p1, &p0, &q0, &q1, &mask, hev_thresh);
868
869
  // Store
870
3.57k
  STOREUV(p1, u, v, -2 * stride);
871
3.57k
  STOREUV(p0, u, v, -1 * stride);
872
3.57k
  STOREUV(q0, u, v, 0 * stride);
873
3.57k
  STOREUV(q1, u, v, 1 * stride);
874
3.57k
}
875
876
static void HFilter8i_SSE2(uint8_t* WEBP_RESTRICT u, uint8_t* WEBP_RESTRICT v,
877
                           int stride, int thresh, int ithresh,
878
3.57k
                           int hev_thresh) {
879
3.57k
  __m128i mask;
880
3.57k
  __m128i t1, t2, p1, p0, q0, q1;
881
3.57k
  Load16x4_SSE2(u, v, stride, &t2, &t1, &p1, &p0);  // p3, p2, p1, p0
882
3.57k
  MAX_DIFF1(t2, t1, p1, p0, mask);
883
884
3.57k
  u += 4;  // beginning of q0
885
3.57k
  v += 4;
886
3.57k
  Load16x4_SSE2(u, v, stride, &q0, &q1, &t1, &t2);  // q0, q1, q2, q3
887
3.57k
  MAX_DIFF2(t2, t1, q1, q0, mask);
888
889
3.57k
  ComplexMask_SSE2(&p1, &p0, &q0, &q1, thresh, ithresh, &mask);
890
3.57k
  DoFilter4_SSE2(&p1, &p0, &q0, &q1, &mask, hev_thresh);
891
892
3.57k
  u -= 2;  // beginning of p1
893
3.57k
  v -= 2;
894
3.57k
  Store16x4_SSE2(&p1, &p0, &q0, &q1, u, v, stride);
895
3.57k
}
896
897
//------------------------------------------------------------------------------
898
// 4x4 predictions
899
900
5.72k
#define DST(x, y) dst[(x) + (y) * BPS]
901
2.76k
#define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2)
902
903
// We use the following 8b-arithmetic tricks:
904
//     (a + 2 * b + c + 2) >> 2 = (AC + b + 1) >> 1
905
//   where: AC = (a + c) >> 1 = [(a + c + 1) >> 1] - [(a^c) & 1]
906
// and:
907
//     (a + 2 * b + c + 2) >> 2 = (AB + BC + 1) >> 1 - (ab|bc)&lsb
908
//   where: AC = (a + b + 1) >> 1,   BC = (b + c + 1) >> 1
909
//   and ab = a ^ b, bc = b ^ c, lsb = (AC^BC)&1
910
911
3.20k
static void VE4_SSE2(uint8_t* dst) {  // vertical
912
3.20k
  const __m128i one = _mm_set1_epi8(1);
913
3.20k
  const __m128i ABCDEFGH = _mm_loadl_epi64((__m128i*)(dst - BPS - 1));
914
3.20k
  const __m128i BCDEFGH0 = _mm_srli_si128(ABCDEFGH, 1);
915
3.20k
  const __m128i CDEFGH00 = _mm_srli_si128(ABCDEFGH, 2);
916
3.20k
  const __m128i a = _mm_avg_epu8(ABCDEFGH, CDEFGH00);
917
3.20k
  const __m128i lsb = _mm_and_si128(_mm_xor_si128(ABCDEFGH, CDEFGH00), one);
918
3.20k
  const __m128i b = _mm_subs_epu8(a, lsb);
919
3.20k
  const __m128i avg = _mm_avg_epu8(b, BCDEFGH0);
920
3.20k
  const int vals = _mm_cvtsi128_si32(avg);
921
3.20k
  int i;
922
16.0k
  for (i = 0; i < 4; ++i) {
923
12.8k
    WebPInt32ToMem(dst + i * BPS, vals);
924
12.8k
  }
925
3.20k
}
926
927
1.13k
static void LD4_SSE2(uint8_t* dst) {  // Down-Left
928
1.13k
  const __m128i one = _mm_set1_epi8(1);
929
1.13k
  const __m128i ABCDEFGH = _mm_loadl_epi64((__m128i*)(dst - BPS));
930
1.13k
  const __m128i BCDEFGH0 = _mm_srli_si128(ABCDEFGH, 1);
931
1.13k
  const __m128i CDEFGH00 = _mm_srli_si128(ABCDEFGH, 2);
932
1.13k
  const __m128i CDEFGHH0 = _mm_insert_epi16(CDEFGH00, dst[-BPS + 7], 3);
933
1.13k
  const __m128i avg1 = _mm_avg_epu8(ABCDEFGH, CDEFGHH0);
934
1.13k
  const __m128i lsb = _mm_and_si128(_mm_xor_si128(ABCDEFGH, CDEFGHH0), one);
935
1.13k
  const __m128i avg2 = _mm_subs_epu8(avg1, lsb);
936
1.13k
  const __m128i abcdefg = _mm_avg_epu8(avg2, BCDEFGH0);
937
1.13k
  WebPInt32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32(abcdefg));
938
1.13k
  WebPInt32ToMem(dst + 1 * BPS, _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 1)));
939
1.13k
  WebPInt32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 2)));
940
1.13k
  WebPInt32ToMem(dst + 3 * BPS, _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 3)));
941
1.13k
}
942
943
1.38k
static void VR4_SSE2(uint8_t* dst) {  // Vertical-Right
944
1.38k
  const __m128i one = _mm_set1_epi8(1);
945
1.38k
  const int I = dst[-1 + 0 * BPS];
946
1.38k
  const int J = dst[-1 + 1 * BPS];
947
1.38k
  const int K = dst[-1 + 2 * BPS];
948
1.38k
  const int X = dst[-1 - BPS];
949
1.38k
  const __m128i XABCD = _mm_loadl_epi64((__m128i*)(dst - BPS - 1));
950
1.38k
  const __m128i ABCD0 = _mm_srli_si128(XABCD, 1);
951
1.38k
  const __m128i abcd = _mm_avg_epu8(XABCD, ABCD0);
952
1.38k
  const __m128i _XABCD = _mm_slli_si128(XABCD, 1);
953
1.38k
  const __m128i IXABCD = _mm_insert_epi16(_XABCD, (short)(I | (X << 8)), 0);
954
1.38k
  const __m128i avg1 = _mm_avg_epu8(IXABCD, ABCD0);
955
1.38k
  const __m128i lsb = _mm_and_si128(_mm_xor_si128(IXABCD, ABCD0), one);
956
1.38k
  const __m128i avg2 = _mm_subs_epu8(avg1, lsb);
957
1.38k
  const __m128i efgh = _mm_avg_epu8(avg2, XABCD);
958
1.38k
  WebPInt32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32(abcd));
959
1.38k
  WebPInt32ToMem(dst + 1 * BPS, _mm_cvtsi128_si32(efgh));
960
1.38k
  WebPInt32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(_mm_slli_si128(abcd, 1)));
961
1.38k
  WebPInt32ToMem(dst + 3 * BPS, _mm_cvtsi128_si32(_mm_slli_si128(efgh, 1)));
962
963
  // these two are hard to implement in SSE2, so we keep the C-version:
964
1.38k
  DST(0, 2) = AVG3(J, I, X);
965
1.38k
  DST(0, 3) = AVG3(K, J, I);
966
1.38k
}
967
968
1.48k
static void VL4_SSE2(uint8_t* dst) {  // Vertical-Left
969
1.48k
  const __m128i one = _mm_set1_epi8(1);
970
1.48k
  const __m128i ABCDEFGH = _mm_loadl_epi64((__m128i*)(dst - BPS));
971
1.48k
  const __m128i BCDEFGH_ = _mm_srli_si128(ABCDEFGH, 1);
972
1.48k
  const __m128i CDEFGH__ = _mm_srli_si128(ABCDEFGH, 2);
973
1.48k
  const __m128i avg1 = _mm_avg_epu8(ABCDEFGH, BCDEFGH_);
974
1.48k
  const __m128i avg2 = _mm_avg_epu8(CDEFGH__, BCDEFGH_);
975
1.48k
  const __m128i avg3 = _mm_avg_epu8(avg1, avg2);
976
1.48k
  const __m128i lsb1 = _mm_and_si128(_mm_xor_si128(avg1, avg2), one);
977
1.48k
  const __m128i ab = _mm_xor_si128(ABCDEFGH, BCDEFGH_);
978
1.48k
  const __m128i bc = _mm_xor_si128(CDEFGH__, BCDEFGH_);
979
1.48k
  const __m128i abbc = _mm_or_si128(ab, bc);
980
1.48k
  const __m128i lsb2 = _mm_and_si128(abbc, lsb1);
981
1.48k
  const __m128i avg4 = _mm_subs_epu8(avg3, lsb2);
982
1.48k
  const uint32_t extra_out =
983
1.48k
      (uint32_t)_mm_cvtsi128_si32(_mm_srli_si128(avg4, 4));
984
1.48k
  WebPInt32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32(avg1));
985
1.48k
  WebPInt32ToMem(dst + 1 * BPS, _mm_cvtsi128_si32(avg4));
986
1.48k
  WebPInt32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(_mm_srli_si128(avg1, 1)));
987
1.48k
  WebPInt32ToMem(dst + 3 * BPS, _mm_cvtsi128_si32(_mm_srli_si128(avg4, 1)));
988
989
  // these two are hard to get and irregular
990
1.48k
  DST(3, 2) = (extra_out >> 0) & 0xff;
991
1.48k
  DST(3, 3) = (extra_out >> 8) & 0xff;
992
1.48k
}
993
994
1.01k
static void RD4_SSE2(uint8_t* dst) {  // Down-right
995
1.01k
  const __m128i one = _mm_set1_epi8(1);
996
1.01k
  const __m128i XABCD = _mm_loadl_epi64((__m128i*)(dst - BPS - 1));
997
1.01k
  const __m128i ____XABCD = _mm_slli_si128(XABCD, 4);
998
1.01k
  const uint32_t I = dst[-1 + 0 * BPS];
999
1.01k
  const uint32_t J = dst[-1 + 1 * BPS];
1000
1.01k
  const uint32_t K = dst[-1 + 2 * BPS];
1001
1.01k
  const uint32_t L = dst[-1 + 3 * BPS];
1002
1.01k
  const __m128i LKJI_____ =
1003
1.01k
      _mm_cvtsi32_si128((int)(L | (K << 8) | (J << 16) | (I << 24)));
1004
1.01k
  const __m128i LKJIXABCD = _mm_or_si128(LKJI_____, ____XABCD);
1005
1.01k
  const __m128i KJIXABCD_ = _mm_srli_si128(LKJIXABCD, 1);
1006
1.01k
  const __m128i JIXABCD__ = _mm_srli_si128(LKJIXABCD, 2);
1007
1.01k
  const __m128i avg1 = _mm_avg_epu8(JIXABCD__, LKJIXABCD);
1008
1.01k
  const __m128i lsb = _mm_and_si128(_mm_xor_si128(JIXABCD__, LKJIXABCD), one);
1009
1.01k
  const __m128i avg2 = _mm_subs_epu8(avg1, lsb);
1010
1.01k
  const __m128i abcdefg = _mm_avg_epu8(avg2, KJIXABCD_);
1011
1.01k
  WebPInt32ToMem(dst + 3 * BPS, _mm_cvtsi128_si32(abcdefg));
1012
1.01k
  WebPInt32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 1)));
1013
1.01k
  WebPInt32ToMem(dst + 1 * BPS, _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 2)));
1014
1.01k
  WebPInt32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32(_mm_srli_si128(abcdefg, 3)));
1015
1.01k
}
1016
1017
#undef DST
1018
#undef AVG3
1019
1020
//------------------------------------------------------------------------------
1021
// Luma 16x16
1022
1023
20.5k
static WEBP_INLINE void TrueMotion_SSE2(uint8_t* dst, int size) {
1024
20.5k
  const uint8_t* top = dst - BPS;
1025
20.5k
  const __m128i zero = _mm_setzero_si128();
1026
20.5k
  int y;
1027
20.5k
  if (size == 4) {
1028
7.52k
    const __m128i top_values = _mm_cvtsi32_si128(WebPMemToInt32(top));
1029
7.52k
    const __m128i top_base = _mm_unpacklo_epi8(top_values, zero);
1030
37.6k
    for (y = 0; y < 4; ++y, dst += BPS) {
1031
30.0k
      const int val = dst[-1] - top[-1];
1032
30.0k
      const __m128i base = _mm_set1_epi16(val);
1033
30.0k
      const __m128i out = _mm_packus_epi16(_mm_add_epi16(base, top_base), zero);
1034
30.0k
      WebPInt32ToMem(dst, _mm_cvtsi128_si32(out));
1035
30.0k
    }
1036
13.0k
  } else if (size == 8) {
1037
8.43k
    const __m128i top_values = _mm_loadl_epi64((const __m128i*)top);
1038
8.43k
    const __m128i top_base = _mm_unpacklo_epi8(top_values, zero);
1039
75.9k
    for (y = 0; y < 8; ++y, dst += BPS) {
1040
67.4k
      const int val = dst[-1] - top[-1];
1041
67.4k
      const __m128i base = _mm_set1_epi16(val);
1042
67.4k
      const __m128i out = _mm_packus_epi16(_mm_add_epi16(base, top_base), zero);
1043
67.4k
      _mm_storel_epi64((__m128i*)dst, out);
1044
67.4k
    }
1045
8.43k
  } else {
1046
4.64k
    const __m128i top_values = _mm_loadu_si128((const __m128i*)top);
1047
4.64k
    const __m128i top_base_0 = _mm_unpacklo_epi8(top_values, zero);
1048
4.64k
    const __m128i top_base_1 = _mm_unpackhi_epi8(top_values, zero);
1049
78.8k
    for (y = 0; y < 16; ++y, dst += BPS) {
1050
74.2k
      const int val = dst[-1] - top[-1];
1051
74.2k
      const __m128i base = _mm_set1_epi16(val);
1052
74.2k
      const __m128i out_0 = _mm_add_epi16(base, top_base_0);
1053
74.2k
      const __m128i out_1 = _mm_add_epi16(base, top_base_1);
1054
74.2k
      const __m128i out = _mm_packus_epi16(out_0, out_1);
1055
74.2k
      _mm_storeu_si128((__m128i*)dst, out);
1056
74.2k
    }
1057
4.64k
  }
1058
20.5k
}
1059
1060
7.52k
static void TM4_SSE2(uint8_t* dst) { TrueMotion_SSE2(dst, 4); }
1061
8.43k
static void TM8uv_SSE2(uint8_t* dst) { TrueMotion_SSE2(dst, 8); }
1062
4.64k
static void TM16_SSE2(uint8_t* dst) { TrueMotion_SSE2(dst, 16); }
1063
1064
994
static void VE16_SSE2(uint8_t* dst) {
1065
994
  const __m128i top = _mm_loadu_si128((const __m128i*)(dst - BPS));
1066
994
  int j;
1067
16.8k
  for (j = 0; j < 16; ++j) {
1068
15.9k
    _mm_storeu_si128((__m128i*)(dst + j * BPS), top);
1069
15.9k
  }
1070
994
}
1071
1072
0
static void HE16_SSE2(uint8_t* dst) {  // horizontal
1073
0
  int j;
1074
0
  for (j = 16; j > 0; --j) {
1075
0
    const __m128i values = _mm_set1_epi8((char)dst[-1]);
1076
0
    _mm_storeu_si128((__m128i*)dst, values);
1077
0
    dst += BPS;
1078
0
  }
1079
0
}
1080
1081
3.14k
static WEBP_INLINE void Put16_SSE2(uint8_t v, uint8_t* dst) {
1082
3.14k
  int j;
1083
3.14k
  const __m128i values = _mm_set1_epi8((char)v);
1084
53.4k
  for (j = 0; j < 16; ++j) {
1085
50.3k
    _mm_storeu_si128((__m128i*)(dst + j * BPS), values);
1086
50.3k
  }
1087
3.14k
}
1088
1089
2.12k
static void DC16_SSE2(uint8_t* dst) {  // DC
1090
2.12k
  const __m128i zero = _mm_setzero_si128();
1091
2.12k
  const __m128i top = _mm_loadu_si128((const __m128i*)(dst - BPS));
1092
2.12k
  const __m128i sad8x2 = _mm_sad_epu8(top, zero);
1093
  // sum the two sads: sad8x2[0:1] + sad8x2[8:9]
1094
2.12k
  const __m128i sum = _mm_add_epi16(sad8x2, _mm_shuffle_epi32(sad8x2, 2));
1095
2.12k
  int left = 0;
1096
2.12k
  int j;
1097
36.1k
  for (j = 0; j < 16; ++j) {
1098
33.9k
    left += dst[-1 + j * BPS];
1099
33.9k
  }
1100
2.12k
  {
1101
2.12k
    const int DC = _mm_cvtsi128_si32(sum) + left + 16;
1102
2.12k
    Put16_SSE2(DC >> 5, dst);
1103
2.12k
  }
1104
2.12k
}
1105
1106
472
static void DC16NoTop_SSE2(uint8_t* dst) {  // DC with top samples unavailable
1107
472
  int DC = 8;
1108
472
  int j;
1109
8.02k
  for (j = 0; j < 16; ++j) {
1110
7.55k
    DC += dst[-1 + j * BPS];
1111
7.55k
  }
1112
472
  Put16_SSE2(DC >> 4, dst);
1113
472
}
1114
1115
463
static void DC16NoLeft_SSE2(uint8_t* dst) {  // DC with left samples unavailable
1116
463
  const __m128i zero = _mm_setzero_si128();
1117
463
  const __m128i top = _mm_loadu_si128((const __m128i*)(dst - BPS));
1118
463
  const __m128i sad8x2 = _mm_sad_epu8(top, zero);
1119
  // sum the two sads: sad8x2[0:1] + sad8x2[8:9]
1120
463
  const __m128i sum = _mm_add_epi16(sad8x2, _mm_shuffle_epi32(sad8x2, 2));
1121
463
  const int DC = _mm_cvtsi128_si32(sum) + 8;
1122
463
  Put16_SSE2(DC >> 4, dst);
1123
463
}
1124
1125
85
static void DC16NoTopLeft_SSE2(uint8_t* dst) {  // DC with no top & left samples
1126
85
  Put16_SSE2(0x80, dst);
1127
85
}
1128
1129
//------------------------------------------------------------------------------
1130
// Chroma
1131
1132
4.60k
static void VE8uv_SSE2(uint8_t* dst) {  // vertical
1133
4.60k
  int j;
1134
4.60k
  const __m128i top = _mm_loadl_epi64((const __m128i*)(dst - BPS));
1135
41.4k
  for (j = 0; j < 8; ++j) {
1136
36.8k
    _mm_storel_epi64((__m128i*)(dst + j * BPS), top);
1137
36.8k
  }
1138
4.60k
}
1139
1140
// helper for chroma-DC predictions
1141
18.9k
static WEBP_INLINE void Put8x8uv_SSE2(uint8_t v, uint8_t* dst) {
1142
18.9k
  int j;
1143
18.9k
  const __m128i values = _mm_set1_epi8((char)v);
1144
170k
  for (j = 0; j < 8; ++j) {
1145
151k
    _mm_storel_epi64((__m128i*)(dst + j * BPS), values);
1146
151k
  }
1147
18.9k
}
1148
1149
10.0k
static void DC8uv_SSE2(uint8_t* dst) {  // DC
1150
10.0k
  const __m128i zero = _mm_setzero_si128();
1151
10.0k
  const __m128i top = _mm_loadl_epi64((const __m128i*)(dst - BPS));
1152
10.0k
  const __m128i sum = _mm_sad_epu8(top, zero);
1153
10.0k
  int left = 0;
1154
10.0k
  int j;
1155
90.3k
  for (j = 0; j < 8; ++j) {
1156
80.3k
    left += dst[-1 + j * BPS];
1157
80.3k
  }
1158
10.0k
  {
1159
10.0k
    const int DC = _mm_cvtsi128_si32(sum) + left + 8;
1160
10.0k
    Put8x8uv_SSE2(DC >> 4, dst);
1161
10.0k
  }
1162
10.0k
}
1163
1164
3.94k
static void DC8uvNoLeft_SSE2(uint8_t* dst) {  // DC with no left samples
1165
3.94k
  const __m128i zero = _mm_setzero_si128();
1166
3.94k
  const __m128i top = _mm_loadl_epi64((const __m128i*)(dst - BPS));
1167
3.94k
  const __m128i sum = _mm_sad_epu8(top, zero);
1168
3.94k
  const int DC = _mm_cvtsi128_si32(sum) + 4;
1169
3.94k
  Put8x8uv_SSE2(DC >> 3, dst);
1170
3.94k
}
1171
1172
3.77k
static void DC8uvNoTop_SSE2(uint8_t* dst) {  // DC with no top samples
1173
3.77k
  int dc0 = 4;
1174
3.77k
  int i;
1175
33.9k
  for (i = 0; i < 8; ++i) {
1176
30.2k
    dc0 += dst[-1 + i * BPS];
1177
30.2k
  }
1178
3.77k
  Put8x8uv_SSE2(dc0 >> 3, dst);
1179
3.77k
}
1180
1181
1.23k
static void DC8uvNoTopLeft_SSE2(uint8_t* dst) {  // DC with nothing
1182
1.23k
  Put8x8uv_SSE2(0x80, dst);
1183
1.23k
}
1184
1185
//------------------------------------------------------------------------------
1186
// Entry point
1187
1188
extern void VP8DspInitSSE2(void);
1189
1190
1
WEBP_TSAN_IGNORE_FUNCTION void VP8DspInitSSE2(void) {
1191
1
  VP8Transform = Transform_SSE2;
1192
#if (USE_TRANSFORM_AC3 == 1)
1193
  VP8TransformAC3 = TransformAC3_SSE2;
1194
#endif
1195
1196
1
  VP8VFilter16 = VFilter16_SSE2;
1197
1
  VP8HFilter16 = HFilter16_SSE2;
1198
1
  VP8VFilter8 = VFilter8_SSE2;
1199
1
  VP8HFilter8 = HFilter8_SSE2;
1200
1
  VP8VFilter16i = VFilter16i_SSE2;
1201
1
  VP8HFilter16i = HFilter16i_SSE2;
1202
1
  VP8VFilter8i = VFilter8i_SSE2;
1203
1
  VP8HFilter8i = HFilter8i_SSE2;
1204
1205
1
  VP8SimpleVFilter16 = SimpleVFilter16_SSE2;
1206
1
  VP8SimpleHFilter16 = SimpleHFilter16_SSE2;
1207
1
  VP8SimpleVFilter16i = SimpleVFilter16i_SSE2;
1208
1
  VP8SimpleHFilter16i = SimpleHFilter16i_SSE2;
1209
1210
1
  VP8PredLuma4[1] = TM4_SSE2;
1211
1
  VP8PredLuma4[2] = VE4_SSE2;
1212
1
  VP8PredLuma4[4] = RD4_SSE2;
1213
1
  VP8PredLuma4[5] = VR4_SSE2;
1214
1
  VP8PredLuma4[6] = LD4_SSE2;
1215
1
  VP8PredLuma4[7] = VL4_SSE2;
1216
1217
1
  VP8PredLuma16[0] = DC16_SSE2;
1218
1
  VP8PredLuma16[1] = TM16_SSE2;
1219
1
  VP8PredLuma16[2] = VE16_SSE2;
1220
1
  VP8PredLuma16[3] = HE16_SSE2;
1221
1
  VP8PredLuma16[4] = DC16NoTop_SSE2;
1222
1
  VP8PredLuma16[5] = DC16NoLeft_SSE2;
1223
1
  VP8PredLuma16[6] = DC16NoTopLeft_SSE2;
1224
1225
1
  VP8PredChroma8[0] = DC8uv_SSE2;
1226
1
  VP8PredChroma8[1] = TM8uv_SSE2;
1227
1
  VP8PredChroma8[2] = VE8uv_SSE2;
1228
1
  VP8PredChroma8[4] = DC8uvNoTop_SSE2;
1229
1
  VP8PredChroma8[5] = DC8uvNoLeft_SSE2;
1230
1
  VP8PredChroma8[6] = DC8uvNoTopLeft_SSE2;
1231
1
}
1232
1233
#else  // !WEBP_USE_SSE2
1234
1235
WEBP_DSP_INIT_STUB(VP8DspInitSSE2)
1236
1237
#endif  // WEBP_USE_SSE2