Coverage Report

Created: 2026-06-16 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjxl/lib/jxl/modular/transform/rct.cc
Line
Count
Source
1
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
2
//
3
// Use of this source code is governed by a BSD-style
4
// license that can be found in the LICENSE file.
5
6
#include "lib/jxl/modular/transform/rct.h"
7
8
#include <cstddef>
9
#include <cstdint>
10
#include <utility>
11
12
#include "lib/jxl/base/data_parallel.h"
13
#include "lib/jxl/base/status.h"
14
#include "lib/jxl/modular/modular_image.h"
15
#include "lib/jxl/modular/transform/transform.h"
16
#undef HWY_TARGET_INCLUDE
17
#define HWY_TARGET_INCLUDE "lib/jxl/modular/transform/rct.cc"
18
#include <hwy/foreach_target.h>
19
#include <hwy/highway.h>
20
HWY_BEFORE_NAMESPACE();
21
namespace jxl {
22
namespace HWY_NAMESPACE {
23
24
// These templates are not found via ADL.
25
using hwy::HWY_NAMESPACE::Add;
26
using hwy::HWY_NAMESPACE::ShiftRight;
27
using hwy::HWY_NAMESPACE::Sub;
28
29
template <int transform_type>
30
void InvRCTRow(const pixel_type* in0, const pixel_type* in1,
31
               const pixel_type* in2, pixel_type* out0, pixel_type* out1,
32
334k
               pixel_type* out2, size_t w) {
33
334k
  static_assert(transform_type >= 0 && transform_type < 7,
34
334k
                "Invalid transform type");
35
334k
  int second = transform_type >> 1;
36
334k
  int third = transform_type & 1;
37
38
334k
  size_t x = 0;
39
334k
  const HWY_FULL(pixel_type) d;
40
334k
  const size_t N = Lanes(d);
41
3.73M
  for (; x + N - 1 < w; x += N) {
42
3.39M
    if (transform_type == 6) {
43
2.03M
      auto Y = Load(d, in0 + x);
44
2.03M
      auto Co = Load(d, in1 + x);
45
2.03M
      auto Cg = Load(d, in2 + x);
46
2.03M
      Y = Sub(Y, ShiftRight<1>(Cg));
47
2.03M
      auto G = Add(Cg, Y);
48
2.03M
      Y = Sub(Y, ShiftRight<1>(Co));
49
2.03M
      auto R = Add(Y, Co);
50
2.03M
      Store(R, d, out0 + x);
51
2.03M
      Store(G, d, out1 + x);
52
2.03M
      Store(Y, d, out2 + x);
53
2.03M
    } else {
54
1.36M
      auto First = Load(d, in0 + x);
55
1.36M
      auto Second = Load(d, in1 + x);
56
1.36M
      auto Third = Load(d, in2 + x);
57
1.36M
      if (third) Third = Add(Third, First);
58
1.36M
      if (second == 1) {
59
791k
        Second = Add(Second, First);
60
791k
      } else if (second == 2) {
61
531k
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
531k
      }
63
1.36M
      Store(First, d, out0 + x);
64
1.36M
      Store(Second, d, out1 + x);
65
1.36M
      Store(Third, d, out2 + x);
66
1.36M
    }
67
3.39M
  }
68
984k
  for (; x < w; x++) {
69
650k
    if (transform_type == 6) {
70
581k
      pixel_type Y = in0[x];
71
581k
      pixel_type Co = in1[x];
72
581k
      pixel_type Cg = in2[x];
73
581k
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
581k
      pixel_type G = PixelAdd(Cg, tmp);
75
581k
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
581k
      pixel_type R = PixelAdd(B, Co);
77
581k
      out0[x] = R;
78
581k
      out1[x] = G;
79
581k
      out2[x] = B;
80
581k
    } else {
81
69.3k
      pixel_type First = in0[x];
82
69.3k
      pixel_type Second = in1[x];
83
69.3k
      pixel_type Third = in2[x];
84
69.3k
      if (third) Third = PixelAdd(Third, First);
85
69.3k
      if (second == 1) {
86
40.8k
        Second = PixelAdd(Second, First);
87
40.8k
      } else if (second == 2) {
88
21.3k
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
21.3k
      }
90
69.3k
      out0[x] = First;
91
69.3k
      out1[x] = Second;
92
69.3k
      out2[x] = Third;
93
69.3k
    }
94
650k
  }
95
334k
}
Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX2::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
void jxl::N_AVX2::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
4.20k
               pixel_type* out2, size_t w) {
33
4.20k
  static_assert(transform_type >= 0 && transform_type < 7,
34
4.20k
                "Invalid transform type");
35
4.20k
  int second = transform_type >> 1;
36
4.20k
  int third = transform_type & 1;
37
38
4.20k
  size_t x = 0;
39
4.20k
  const HWY_FULL(pixel_type) d;
40
4.20k
  const size_t N = Lanes(d);
41
48.0k
  for (; x + N - 1 < w; x += N) {
42
43.8k
    if (transform_type == 6) {
43
0
      auto Y = Load(d, in0 + x);
44
0
      auto Co = Load(d, in1 + x);
45
0
      auto Cg = Load(d, in2 + x);
46
0
      Y = Sub(Y, ShiftRight<1>(Cg));
47
0
      auto G = Add(Cg, Y);
48
0
      Y = Sub(Y, ShiftRight<1>(Co));
49
0
      auto R = Add(Y, Co);
50
0
      Store(R, d, out0 + x);
51
0
      Store(G, d, out1 + x);
52
0
      Store(Y, d, out2 + x);
53
43.8k
    } else {
54
43.8k
      auto First = Load(d, in0 + x);
55
43.8k
      auto Second = Load(d, in1 + x);
56
43.8k
      auto Third = Load(d, in2 + x);
57
43.8k
      if (third) Third = Add(Third, First);
58
43.8k
      if (second == 1) {
59
0
        Second = Add(Second, First);
60
43.8k
      } else if (second == 2) {
61
0
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
0
      }
63
43.8k
      Store(First, d, out0 + x);
64
43.8k
      Store(Second, d, out1 + x);
65
43.8k
      Store(Third, d, out2 + x);
66
43.8k
    }
67
43.8k
  }
68
11.3k
  for (; x < w; x++) {
69
7.12k
    if (transform_type == 6) {
70
0
      pixel_type Y = in0[x];
71
0
      pixel_type Co = in1[x];
72
0
      pixel_type Cg = in2[x];
73
0
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
0
      pixel_type G = PixelAdd(Cg, tmp);
75
0
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
0
      pixel_type R = PixelAdd(B, Co);
77
0
      out0[x] = R;
78
0
      out1[x] = G;
79
0
      out2[x] = B;
80
7.12k
    } else {
81
7.12k
      pixel_type First = in0[x];
82
7.12k
      pixel_type Second = in1[x];
83
7.12k
      pixel_type Third = in2[x];
84
7.12k
      if (third) Third = PixelAdd(Third, First);
85
7.12k
      if (second == 1) {
86
0
        Second = PixelAdd(Second, First);
87
7.12k
      } else if (second == 2) {
88
0
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
0
      }
90
7.12k
      out0[x] = First;
91
7.12k
      out1[x] = Second;
92
7.12k
      out2[x] = Third;
93
7.12k
    }
94
7.12k
  }
95
4.20k
}
void jxl::N_AVX2::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
4.35k
               pixel_type* out2, size_t w) {
33
4.35k
  static_assert(transform_type >= 0 && transform_type < 7,
34
4.35k
                "Invalid transform type");
35
4.35k
  int second = transform_type >> 1;
36
4.35k
  int third = transform_type & 1;
37
38
4.35k
  size_t x = 0;
39
4.35k
  const HWY_FULL(pixel_type) d;
40
4.35k
  const size_t N = Lanes(d);
41
69.9k
  for (; x + N - 1 < w; x += N) {
42
65.6k
    if (transform_type == 6) {
43
0
      auto Y = Load(d, in0 + x);
44
0
      auto Co = Load(d, in1 + x);
45
0
      auto Cg = Load(d, in2 + x);
46
0
      Y = Sub(Y, ShiftRight<1>(Cg));
47
0
      auto G = Add(Cg, Y);
48
0
      Y = Sub(Y, ShiftRight<1>(Co));
49
0
      auto R = Add(Y, Co);
50
0
      Store(R, d, out0 + x);
51
0
      Store(G, d, out1 + x);
52
0
      Store(Y, d, out2 + x);
53
65.6k
    } else {
54
65.6k
      auto First = Load(d, in0 + x);
55
65.6k
      auto Second = Load(d, in1 + x);
56
65.6k
      auto Third = Load(d, in2 + x);
57
65.6k
      if (third) Third = Add(Third, First);
58
65.6k
      if (second == 1) {
59
65.6k
        Second = Add(Second, First);
60
65.6k
      } else if (second == 2) {
61
0
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
0
      }
63
65.6k
      Store(First, d, out0 + x);
64
65.6k
      Store(Second, d, out1 + x);
65
65.6k
      Store(Third, d, out2 + x);
66
65.6k
    }
67
65.6k
  }
68
11.1k
  for (; x < w; x++) {
69
6.82k
    if (transform_type == 6) {
70
0
      pixel_type Y = in0[x];
71
0
      pixel_type Co = in1[x];
72
0
      pixel_type Cg = in2[x];
73
0
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
0
      pixel_type G = PixelAdd(Cg, tmp);
75
0
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
0
      pixel_type R = PixelAdd(B, Co);
77
0
      out0[x] = R;
78
0
      out1[x] = G;
79
0
      out2[x] = B;
80
6.82k
    } else {
81
6.82k
      pixel_type First = in0[x];
82
6.82k
      pixel_type Second = in1[x];
83
6.82k
      pixel_type Third = in2[x];
84
6.82k
      if (third) Third = PixelAdd(Third, First);
85
6.82k
      if (second == 1) {
86
6.82k
        Second = PixelAdd(Second, First);
87
6.82k
      } else if (second == 2) {
88
0
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
0
      }
90
6.82k
      out0[x] = First;
91
6.82k
      out1[x] = Second;
92
6.82k
      out2[x] = Third;
93
6.82k
    }
94
6.82k
  }
95
4.35k
}
void jxl::N_AVX2::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
32.1k
               pixel_type* out2, size_t w) {
33
32.1k
  static_assert(transform_type >= 0 && transform_type < 7,
34
32.1k
                "Invalid transform type");
35
32.1k
  int second = transform_type >> 1;
36
32.1k
  int third = transform_type & 1;
37
38
32.1k
  size_t x = 0;
39
32.1k
  const HWY_FULL(pixel_type) d;
40
32.1k
  const size_t N = Lanes(d);
41
758k
  for (; x + N - 1 < w; x += N) {
42
726k
    if (transform_type == 6) {
43
0
      auto Y = Load(d, in0 + x);
44
0
      auto Co = Load(d, in1 + x);
45
0
      auto Cg = Load(d, in2 + x);
46
0
      Y = Sub(Y, ShiftRight<1>(Cg));
47
0
      auto G = Add(Cg, Y);
48
0
      Y = Sub(Y, ShiftRight<1>(Co));
49
0
      auto R = Add(Y, Co);
50
0
      Store(R, d, out0 + x);
51
0
      Store(G, d, out1 + x);
52
0
      Store(Y, d, out2 + x);
53
726k
    } else {
54
726k
      auto First = Load(d, in0 + x);
55
726k
      auto Second = Load(d, in1 + x);
56
726k
      auto Third = Load(d, in2 + x);
57
726k
      if (third) Third = Add(Third, First);
58
726k
      if (second == 1) {
59
726k
        Second = Add(Second, First);
60
726k
      } else if (second == 2) {
61
0
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
0
      }
63
726k
      Store(First, d, out0 + x);
64
726k
      Store(Second, d, out1 + x);
65
726k
      Store(Third, d, out2 + x);
66
726k
    }
67
726k
  }
68
66.1k
  for (; x < w; x++) {
69
33.9k
    if (transform_type == 6) {
70
0
      pixel_type Y = in0[x];
71
0
      pixel_type Co = in1[x];
72
0
      pixel_type Cg = in2[x];
73
0
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
0
      pixel_type G = PixelAdd(Cg, tmp);
75
0
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
0
      pixel_type R = PixelAdd(B, Co);
77
0
      out0[x] = R;
78
0
      out1[x] = G;
79
0
      out2[x] = B;
80
33.9k
    } else {
81
33.9k
      pixel_type First = in0[x];
82
33.9k
      pixel_type Second = in1[x];
83
33.9k
      pixel_type Third = in2[x];
84
33.9k
      if (third) Third = PixelAdd(Third, First);
85
33.9k
      if (second == 1) {
86
33.9k
        Second = PixelAdd(Second, First);
87
33.9k
      } else if (second == 2) {
88
0
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
0
      }
90
33.9k
      out0[x] = First;
91
33.9k
      out1[x] = Second;
92
33.9k
      out2[x] = Third;
93
33.9k
    }
94
33.9k
  }
95
32.1k
}
void jxl::N_AVX2::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
5.17k
               pixel_type* out2, size_t w) {
33
5.17k
  static_assert(transform_type >= 0 && transform_type < 7,
34
5.17k
                "Invalid transform type");
35
5.17k
  int second = transform_type >> 1;
36
5.17k
  int third = transform_type & 1;
37
38
5.17k
  size_t x = 0;
39
5.17k
  const HWY_FULL(pixel_type) d;
40
5.17k
  const size_t N = Lanes(d);
41
195k
  for (; x + N - 1 < w; x += N) {
42
190k
    if (transform_type == 6) {
43
0
      auto Y = Load(d, in0 + x);
44
0
      auto Co = Load(d, in1 + x);
45
0
      auto Cg = Load(d, in2 + x);
46
0
      Y = Sub(Y, ShiftRight<1>(Cg));
47
0
      auto G = Add(Cg, Y);
48
0
      Y = Sub(Y, ShiftRight<1>(Co));
49
0
      auto R = Add(Y, Co);
50
0
      Store(R, d, out0 + x);
51
0
      Store(G, d, out1 + x);
52
0
      Store(Y, d, out2 + x);
53
190k
    } else {
54
190k
      auto First = Load(d, in0 + x);
55
190k
      auto Second = Load(d, in1 + x);
56
190k
      auto Third = Load(d, in2 + x);
57
190k
      if (third) Third = Add(Third, First);
58
190k
      if (second == 1) {
59
0
        Second = Add(Second, First);
60
190k
      } else if (second == 2) {
61
190k
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
190k
      }
63
190k
      Store(First, d, out0 + x);
64
190k
      Store(Second, d, out1 + x);
65
190k
      Store(Third, d, out2 + x);
66
190k
    }
67
190k
  }
68
16.9k
  for (; x < w; x++) {
69
11.7k
    if (transform_type == 6) {
70
0
      pixel_type Y = in0[x];
71
0
      pixel_type Co = in1[x];
72
0
      pixel_type Cg = in2[x];
73
0
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
0
      pixel_type G = PixelAdd(Cg, tmp);
75
0
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
0
      pixel_type R = PixelAdd(B, Co);
77
0
      out0[x] = R;
78
0
      out1[x] = G;
79
0
      out2[x] = B;
80
11.7k
    } else {
81
11.7k
      pixel_type First = in0[x];
82
11.7k
      pixel_type Second = in1[x];
83
11.7k
      pixel_type Third = in2[x];
84
11.7k
      if (third) Third = PixelAdd(Third, First);
85
11.7k
      if (second == 1) {
86
0
        Second = PixelAdd(Second, First);
87
11.7k
      } else if (second == 2) {
88
11.7k
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
11.7k
      }
90
11.7k
      out0[x] = First;
91
11.7k
      out1[x] = Second;
92
11.7k
      out2[x] = Third;
93
11.7k
    }
94
11.7k
  }
95
5.17k
}
void jxl::N_AVX2::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
18.6k
               pixel_type* out2, size_t w) {
33
18.6k
  static_assert(transform_type >= 0 && transform_type < 7,
34
18.6k
                "Invalid transform type");
35
18.6k
  int second = transform_type >> 1;
36
18.6k
  int third = transform_type & 1;
37
38
18.6k
  size_t x = 0;
39
18.6k
  const HWY_FULL(pixel_type) d;
40
18.6k
  const size_t N = Lanes(d);
41
360k
  for (; x + N - 1 < w; x += N) {
42
341k
    if (transform_type == 6) {
43
0
      auto Y = Load(d, in0 + x);
44
0
      auto Co = Load(d, in1 + x);
45
0
      auto Cg = Load(d, in2 + x);
46
0
      Y = Sub(Y, ShiftRight<1>(Cg));
47
0
      auto G = Add(Cg, Y);
48
0
      Y = Sub(Y, ShiftRight<1>(Co));
49
0
      auto R = Add(Y, Co);
50
0
      Store(R, d, out0 + x);
51
0
      Store(G, d, out1 + x);
52
0
      Store(Y, d, out2 + x);
53
341k
    } else {
54
341k
      auto First = Load(d, in0 + x);
55
341k
      auto Second = Load(d, in1 + x);
56
341k
      auto Third = Load(d, in2 + x);
57
341k
      if (third) Third = Add(Third, First);
58
341k
      if (second == 1) {
59
0
        Second = Add(Second, First);
60
341k
      } else if (second == 2) {
61
341k
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
341k
      }
63
341k
      Store(First, d, out0 + x);
64
341k
      Store(Second, d, out1 + x);
65
341k
      Store(Third, d, out2 + x);
66
341k
    }
67
341k
  }
68
28.3k
  for (; x < w; x++) {
69
9.65k
    if (transform_type == 6) {
70
0
      pixel_type Y = in0[x];
71
0
      pixel_type Co = in1[x];
72
0
      pixel_type Cg = in2[x];
73
0
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
0
      pixel_type G = PixelAdd(Cg, tmp);
75
0
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
0
      pixel_type R = PixelAdd(B, Co);
77
0
      out0[x] = R;
78
0
      out1[x] = G;
79
0
      out2[x] = B;
80
9.65k
    } else {
81
9.65k
      pixel_type First = in0[x];
82
9.65k
      pixel_type Second = in1[x];
83
9.65k
      pixel_type Third = in2[x];
84
9.65k
      if (third) Third = PixelAdd(Third, First);
85
9.65k
      if (second == 1) {
86
0
        Second = PixelAdd(Second, First);
87
9.65k
      } else if (second == 2) {
88
9.65k
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
9.65k
      }
90
9.65k
      out0[x] = First;
91
9.65k
      out1[x] = Second;
92
9.65k
      out2[x] = Third;
93
9.65k
    }
94
9.65k
  }
95
18.6k
}
void jxl::N_AVX2::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
269k
               pixel_type* out2, size_t w) {
33
269k
  static_assert(transform_type >= 0 && transform_type < 7,
34
269k
                "Invalid transform type");
35
269k
  int second = transform_type >> 1;
36
269k
  int third = transform_type & 1;
37
38
269k
  size_t x = 0;
39
269k
  const HWY_FULL(pixel_type) d;
40
269k
  const size_t N = Lanes(d);
41
2.30M
  for (; x + N - 1 < w; x += N) {
42
2.03M
    if (transform_type == 6) {
43
2.03M
      auto Y = Load(d, in0 + x);
44
2.03M
      auto Co = Load(d, in1 + x);
45
2.03M
      auto Cg = Load(d, in2 + x);
46
2.03M
      Y = Sub(Y, ShiftRight<1>(Cg));
47
2.03M
      auto G = Add(Cg, Y);
48
2.03M
      Y = Sub(Y, ShiftRight<1>(Co));
49
2.03M
      auto R = Add(Y, Co);
50
2.03M
      Store(R, d, out0 + x);
51
2.03M
      Store(G, d, out1 + x);
52
2.03M
      Store(Y, d, out2 + x);
53
2.03M
    } else {
54
0
      auto First = Load(d, in0 + x);
55
0
      auto Second = Load(d, in1 + x);
56
0
      auto Third = Load(d, in2 + x);
57
0
      if (third) Third = Add(Third, First);
58
0
      if (second == 1) {
59
0
        Second = Add(Second, First);
60
0
      } else if (second == 2) {
61
0
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
0
      }
63
0
      Store(First, d, out0 + x);
64
0
      Store(Second, d, out1 + x);
65
0
      Store(Third, d, out2 + x);
66
0
    }
67
2.03M
  }
68
851k
  for (; x < w; x++) {
69
581k
    if (transform_type == 6) {
70
581k
      pixel_type Y = in0[x];
71
581k
      pixel_type Co = in1[x];
72
581k
      pixel_type Cg = in2[x];
73
581k
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
581k
      pixel_type G = PixelAdd(Cg, tmp);
75
581k
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
581k
      pixel_type R = PixelAdd(B, Co);
77
581k
      out0[x] = R;
78
581k
      out1[x] = G;
79
581k
      out2[x] = B;
80
581k
    } else {
81
0
      pixel_type First = in0[x];
82
0
      pixel_type Second = in1[x];
83
0
      pixel_type Third = in2[x];
84
0
      if (third) Third = PixelAdd(Third, First);
85
0
      if (second == 1) {
86
0
        Second = PixelAdd(Second, First);
87
0
      } else if (second == 2) {
88
0
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
0
      }
90
0
      out0[x] = First;
91
0
      out1[x] = Second;
92
0
      out2[x] = Third;
93
0
    }
94
581k
  }
95
269k
}
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
96
97
11.9k
Status InvRCT(Image& input, size_t begin_c, size_t rct_type, ThreadPool* pool) {
98
11.9k
  JXL_RETURN_IF_ERROR(CheckEqualChannels(input, begin_c, begin_c + 2));
99
11.9k
  size_t m = begin_c;
100
11.9k
  Channel& c0 = input.channel[m + 0];
101
11.9k
  size_t w = c0.w;
102
11.9k
  size_t h = c0.h;
103
11.9k
  if (rct_type == 0) {  // noop
104
5.12k
    return true;
105
5.12k
  }
106
  // Permutation: 0=RGB, 1=GBR, 2=BRG, 3=RBG, 4=GRB, 5=BGR
107
6.80k
  int permutation = rct_type / 7;
108
6.80k
  JXL_ENSURE(permutation < 6);
109
  // 0-5 values have the low bit corresponding to Third and the high bits
110
  // corresponding to Second. 6 corresponds to YCoCg.
111
  //
112
  // Second: 0=nop, 1=SubtractFirst, 2=SubtractAvgFirstThird
113
  //
114
  // Third: 0=nop, 1=SubtractFirst
115
6.80k
  int custom = rct_type % 7;
116
  // Special case: permute-only. Swap channels around.
117
6.80k
  if (custom == 0) {
118
1.99k
    Channel ch0 = std::move(input.channel[m]);
119
1.99k
    Channel ch1 = std::move(input.channel[m + 1]);
120
1.99k
    Channel ch2 = std::move(input.channel[m + 2]);
121
1.99k
    input.channel[m + (permutation % 3)] = std::move(ch0);
122
1.99k
    input.channel[m + ((permutation + 1 + permutation / 3) % 3)] =
123
1.99k
        std::move(ch1);
124
1.99k
    input.channel[m + ((permutation + 2 - permutation / 3) % 3)] =
125
1.99k
        std::move(ch2);
126
1.99k
    return true;
127
1.99k
  }
128
4.80k
  constexpr decltype(&InvRCTRow<0>) inv_rct_row[] = {
129
4.80k
      InvRCTRow<0>, InvRCTRow<1>, InvRCTRow<2>, InvRCTRow<3>,
130
4.80k
      InvRCTRow<4>, InvRCTRow<5>, InvRCTRow<6>};
131
4.80k
  const auto process_row = [&](const uint32_t task,
132
334k
                               size_t /* thread */) -> Status {
133
334k
    const size_t y = task;
134
334k
    const pixel_type* in0 = input.channel[m].Row(y);
135
334k
    const pixel_type* in1 = input.channel[m + 1].Row(y);
136
334k
    const pixel_type* in2 = input.channel[m + 2].Row(y);
137
334k
    pixel_type* out0 = input.channel[m + (permutation % 3)].Row(y);
138
334k
    pixel_type* out1 =
139
334k
        input.channel[m + ((permutation + 1 + permutation / 3) % 3)].Row(y);
140
334k
    pixel_type* out2 =
141
334k
        input.channel[m + ((permutation + 2 - permutation / 3) % 3)].Row(y);
142
334k
    inv_rct_row[custom](in0, in1, in2, out0, out1, out2, w);
143
334k
    return true;
144
334k
  };
Unexecuted instantiation: rct.cc:jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
rct.cc:jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
Line
Count
Source
132
334k
                               size_t /* thread */) -> Status {
133
334k
    const size_t y = task;
134
334k
    const pixel_type* in0 = input.channel[m].Row(y);
135
334k
    const pixel_type* in1 = input.channel[m + 1].Row(y);
136
334k
    const pixel_type* in2 = input.channel[m + 2].Row(y);
137
334k
    pixel_type* out0 = input.channel[m + (permutation % 3)].Row(y);
138
334k
    pixel_type* out1 =
139
334k
        input.channel[m + ((permutation + 1 + permutation / 3) % 3)].Row(y);
140
334k
    pixel_type* out2 =
141
334k
        input.channel[m + ((permutation + 2 - permutation / 3) % 3)].Row(y);
142
334k
    inv_rct_row[custom](in0, in1, in2, out0, out1, out2, w);
143
334k
    return true;
144
334k
  };
Unexecuted instantiation: rct.cc:jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
Unexecuted instantiation: rct.cc:jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
Unexecuted instantiation: rct.cc:jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
Unexecuted instantiation: rct.cc:jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
145
4.80k
  JXL_RETURN_IF_ERROR(
146
4.80k
      RunOnPool(pool, 0, h, ThreadPool::NoInit, process_row, "InvRCT"));
147
4.80k
  return true;
148
4.80k
}
Unexecuted instantiation: jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)
jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)
Line
Count
Source
97
11.9k
Status InvRCT(Image& input, size_t begin_c, size_t rct_type, ThreadPool* pool) {
98
11.9k
  JXL_RETURN_IF_ERROR(CheckEqualChannels(input, begin_c, begin_c + 2));
99
11.9k
  size_t m = begin_c;
100
11.9k
  Channel& c0 = input.channel[m + 0];
101
11.9k
  size_t w = c0.w;
102
11.9k
  size_t h = c0.h;
103
11.9k
  if (rct_type == 0) {  // noop
104
5.12k
    return true;
105
5.12k
  }
106
  // Permutation: 0=RGB, 1=GBR, 2=BRG, 3=RBG, 4=GRB, 5=BGR
107
6.80k
  int permutation = rct_type / 7;
108
6.80k
  JXL_ENSURE(permutation < 6);
109
  // 0-5 values have the low bit corresponding to Third and the high bits
110
  // corresponding to Second. 6 corresponds to YCoCg.
111
  //
112
  // Second: 0=nop, 1=SubtractFirst, 2=SubtractAvgFirstThird
113
  //
114
  // Third: 0=nop, 1=SubtractFirst
115
6.80k
  int custom = rct_type % 7;
116
  // Special case: permute-only. Swap channels around.
117
6.80k
  if (custom == 0) {
118
1.99k
    Channel ch0 = std::move(input.channel[m]);
119
1.99k
    Channel ch1 = std::move(input.channel[m + 1]);
120
1.99k
    Channel ch2 = std::move(input.channel[m + 2]);
121
1.99k
    input.channel[m + (permutation % 3)] = std::move(ch0);
122
1.99k
    input.channel[m + ((permutation + 1 + permutation / 3) % 3)] =
123
1.99k
        std::move(ch1);
124
1.99k
    input.channel[m + ((permutation + 2 - permutation / 3) % 3)] =
125
1.99k
        std::move(ch2);
126
1.99k
    return true;
127
1.99k
  }
128
4.80k
  constexpr decltype(&InvRCTRow<0>) inv_rct_row[] = {
129
4.80k
      InvRCTRow<0>, InvRCTRow<1>, InvRCTRow<2>, InvRCTRow<3>,
130
4.80k
      InvRCTRow<4>, InvRCTRow<5>, InvRCTRow<6>};
131
4.80k
  const auto process_row = [&](const uint32_t task,
132
4.80k
                               size_t /* thread */) -> Status {
133
4.80k
    const size_t y = task;
134
4.80k
    const pixel_type* in0 = input.channel[m].Row(y);
135
4.80k
    const pixel_type* in1 = input.channel[m + 1].Row(y);
136
4.80k
    const pixel_type* in2 = input.channel[m + 2].Row(y);
137
4.80k
    pixel_type* out0 = input.channel[m + (permutation % 3)].Row(y);
138
4.80k
    pixel_type* out1 =
139
4.80k
        input.channel[m + ((permutation + 1 + permutation / 3) % 3)].Row(y);
140
4.80k
    pixel_type* out2 =
141
4.80k
        input.channel[m + ((permutation + 2 - permutation / 3) % 3)].Row(y);
142
4.80k
    inv_rct_row[custom](in0, in1, in2, out0, out1, out2, w);
143
4.80k
    return true;
144
4.80k
  };
145
4.80k
  JXL_RETURN_IF_ERROR(
146
4.80k
      RunOnPool(pool, 0, h, ThreadPool::NoInit, process_row, "InvRCT"));
147
4.80k
  return true;
148
4.80k
}
Unexecuted instantiation: jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)
Unexecuted instantiation: jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)
Unexecuted instantiation: jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)
149
150
}  // namespace HWY_NAMESPACE
151
}  // namespace jxl
152
HWY_AFTER_NAMESPACE();
153
154
#if HWY_ONCE
155
namespace jxl {
156
157
HWY_EXPORT(InvRCT);
158
11.9k
Status InvRCT(Image& input, size_t begin_c, size_t rct_type, ThreadPool* pool) {
159
11.9k
  return HWY_DYNAMIC_DISPATCH(InvRCT)(input, begin_c, rct_type, pool);
160
11.9k
}
161
162
}  // namespace jxl
163
#endif