Coverage Report

Created: 2025-08-11 08:01

/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
105k
               pixel_type* out2, size_t w) {
33
105k
  static_assert(transform_type >= 0 && transform_type < 7,
34
105k
                "Invalid transform type");
35
105k
  int second = transform_type >> 1;
36
105k
  int third = transform_type & 1;
37
38
105k
  size_t x = 0;
39
105k
  const HWY_FULL(pixel_type) d;
40
105k
  const size_t N = Lanes(d);
41
411k
  for (; x + N - 1 < w; x += N) {
42
306k
    if (transform_type == 6) {
43
196k
      auto Y = Load(d, in0 + x);
44
196k
      auto Co = Load(d, in1 + x);
45
196k
      auto Cg = Load(d, in2 + x);
46
196k
      Y = Sub(Y, ShiftRight<1>(Cg));
47
196k
      auto G = Add(Cg, Y);
48
196k
      Y = Sub(Y, ShiftRight<1>(Co));
49
196k
      auto R = Add(Y, Co);
50
196k
      Store(R, d, out0 + x);
51
196k
      Store(G, d, out1 + x);
52
196k
      Store(Y, d, out2 + x);
53
196k
    } else {
54
110k
      auto First = Load(d, in0 + x);
55
110k
      auto Second = Load(d, in1 + x);
56
110k
      auto Third = Load(d, in2 + x);
57
110k
      if (third) Third = Add(Third, First);
58
110k
      if (second == 1) {
59
59.8k
        Second = Add(Second, First);
60
59.8k
      } else if (second == 2) {
61
34.7k
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
34.7k
      }
63
110k
      Store(First, d, out0 + x);
64
110k
      Store(Second, d, out1 + x);
65
110k
      Store(Third, d, out2 + x);
66
110k
    }
67
306k
  }
68
613k
  for (; x < w; x++) {
69
508k
    if (transform_type == 6) {
70
485k
      pixel_type Y = in0[x];
71
485k
      pixel_type Co = in1[x];
72
485k
      pixel_type Cg = in2[x];
73
485k
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
485k
      pixel_type G = PixelAdd(Cg, tmp);
75
485k
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
485k
      pixel_type R = PixelAdd(B, Co);
77
485k
      out0[x] = R;
78
485k
      out1[x] = G;
79
485k
      out2[x] = B;
80
485k
    } else {
81
23.6k
      pixel_type First = in0[x];
82
23.6k
      pixel_type Second = in1[x];
83
23.6k
      pixel_type Third = in2[x];
84
23.6k
      if (third) Third = PixelAdd(Third, First);
85
23.6k
      if (second == 1) {
86
13.7k
        Second = PixelAdd(Second, First);
87
13.7k
      } else if (second == 2) {
88
4.67k
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
4.67k
      }
90
23.6k
      out0[x] = First;
91
23.6k
      out1[x] = Second;
92
23.6k
      out2[x] = Third;
93
23.6k
    }
94
508k
  }
95
105k
}
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
2.78k
               pixel_type* out2, size_t w) {
33
2.78k
  static_assert(transform_type >= 0 && transform_type < 7,
34
2.78k
                "Invalid transform type");
35
2.78k
  int second = transform_type >> 1;
36
2.78k
  int third = transform_type & 1;
37
38
2.78k
  size_t x = 0;
39
2.78k
  const HWY_FULL(pixel_type) d;
40
2.78k
  const size_t N = Lanes(d);
41
18.5k
  for (; x + N - 1 < w; x += N) {
42
15.7k
    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
15.7k
    } else {
54
15.7k
      auto First = Load(d, in0 + x);
55
15.7k
      auto Second = Load(d, in1 + x);
56
15.7k
      auto Third = Load(d, in2 + x);
57
15.7k
      if (third) Third = Add(Third, First);
58
15.7k
      if (second == 1) {
59
0
        Second = Add(Second, First);
60
15.7k
      } else if (second == 2) {
61
0
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
0
      }
63
15.7k
      Store(First, d, out0 + x);
64
15.7k
      Store(Second, d, out1 + x);
65
15.7k
      Store(Third, d, out2 + x);
66
15.7k
    }
67
15.7k
  }
68
8.04k
  for (; x < w; x++) {
69
5.26k
    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
5.26k
    } else {
81
5.26k
      pixel_type First = in0[x];
82
5.26k
      pixel_type Second = in1[x];
83
5.26k
      pixel_type Third = in2[x];
84
5.26k
      if (third) Third = PixelAdd(Third, First);
85
5.26k
      if (second == 1) {
86
0
        Second = PixelAdd(Second, First);
87
5.26k
      } else if (second == 2) {
88
0
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
0
      }
90
5.26k
      out0[x] = First;
91
5.26k
      out1[x] = Second;
92
5.26k
      out2[x] = Third;
93
5.26k
    }
94
5.26k
  }
95
2.78k
}
void jxl::N_AVX2::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
1.46k
               pixel_type* out2, size_t w) {
33
1.46k
  static_assert(transform_type >= 0 && transform_type < 7,
34
1.46k
                "Invalid transform type");
35
1.46k
  int second = transform_type >> 1;
36
1.46k
  int third = transform_type & 1;
37
38
1.46k
  size_t x = 0;
39
1.46k
  const HWY_FULL(pixel_type) d;
40
1.46k
  const size_t N = Lanes(d);
41
5.24k
  for (; x + N - 1 < w; x += N) {
42
3.78k
    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
3.78k
    } else {
54
3.78k
      auto First = Load(d, in0 + x);
55
3.78k
      auto Second = Load(d, in1 + x);
56
3.78k
      auto Third = Load(d, in2 + x);
57
3.78k
      if (third) Third = Add(Third, First);
58
3.78k
      if (second == 1) {
59
3.78k
        Second = Add(Second, First);
60
3.78k
      } else if (second == 2) {
61
0
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
0
      }
63
3.78k
      Store(First, d, out0 + x);
64
3.78k
      Store(Second, d, out1 + x);
65
3.78k
      Store(Third, d, out2 + x);
66
3.78k
    }
67
3.78k
  }
68
4.09k
  for (; x < w; x++) {
69
2.63k
    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
2.63k
    } else {
81
2.63k
      pixel_type First = in0[x];
82
2.63k
      pixel_type Second = in1[x];
83
2.63k
      pixel_type Third = in2[x];
84
2.63k
      if (third) Third = PixelAdd(Third, First);
85
2.63k
      if (second == 1) {
86
2.63k
        Second = PixelAdd(Second, First);
87
2.63k
      } else if (second == 2) {
88
0
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
0
      }
90
2.63k
      out0[x] = First;
91
2.63k
      out1[x] = Second;
92
2.63k
      out2[x] = Third;
93
2.63k
    }
94
2.63k
  }
95
1.46k
}
void jxl::N_AVX2::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
5.23k
               pixel_type* out2, size_t w) {
33
5.23k
  static_assert(transform_type >= 0 && transform_type < 7,
34
5.23k
                "Invalid transform type");
35
5.23k
  int second = transform_type >> 1;
36
5.23k
  int third = transform_type & 1;
37
38
5.23k
  size_t x = 0;
39
5.23k
  const HWY_FULL(pixel_type) d;
40
5.23k
  const size_t N = Lanes(d);
41
61.2k
  for (; x + N - 1 < w; x += N) {
42
56.0k
    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
56.0k
    } else {
54
56.0k
      auto First = Load(d, in0 + x);
55
56.0k
      auto Second = Load(d, in1 + x);
56
56.0k
      auto Third = Load(d, in2 + x);
57
56.0k
      if (third) Third = Add(Third, First);
58
56.0k
      if (second == 1) {
59
56.0k
        Second = Add(Second, First);
60
56.0k
      } else if (second == 2) {
61
0
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
0
      }
63
56.0k
      Store(First, d, out0 + x);
64
56.0k
      Store(Second, d, out1 + x);
65
56.0k
      Store(Third, d, out2 + x);
66
56.0k
    }
67
56.0k
  }
68
16.3k
  for (; x < w; x++) {
69
11.1k
    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.1k
    } else {
81
11.1k
      pixel_type First = in0[x];
82
11.1k
      pixel_type Second = in1[x];
83
11.1k
      pixel_type Third = in2[x];
84
11.1k
      if (third) Third = PixelAdd(Third, First);
85
11.1k
      if (second == 1) {
86
11.1k
        Second = PixelAdd(Second, First);
87
11.1k
      } else if (second == 2) {
88
0
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
0
      }
90
11.1k
      out0[x] = First;
91
11.1k
      out1[x] = Second;
92
11.1k
      out2[x] = Third;
93
11.1k
    }
94
11.1k
  }
95
5.23k
}
void jxl::N_AVX2::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
2.16k
               pixel_type* out2, size_t w) {
33
2.16k
  static_assert(transform_type >= 0 && transform_type < 7,
34
2.16k
                "Invalid transform type");
35
2.16k
  int second = transform_type >> 1;
36
2.16k
  int third = transform_type & 1;
37
38
2.16k
  size_t x = 0;
39
2.16k
  const HWY_FULL(pixel_type) d;
40
2.16k
  const size_t N = Lanes(d);
41
24.5k
  for (; x + N - 1 < w; x += N) {
42
22.4k
    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
22.4k
    } else {
54
22.4k
      auto First = Load(d, in0 + x);
55
22.4k
      auto Second = Load(d, in1 + x);
56
22.4k
      auto Third = Load(d, in2 + x);
57
22.4k
      if (third) Third = Add(Third, First);
58
22.4k
      if (second == 1) {
59
0
        Second = Add(Second, First);
60
22.4k
      } else if (second == 2) {
61
22.4k
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
22.4k
      }
63
22.4k
      Store(First, d, out0 + x);
64
22.4k
      Store(Second, d, out1 + x);
65
22.4k
      Store(Third, d, out2 + x);
66
22.4k
    }
67
22.4k
  }
68
3.47k
  for (; x < w; x++) {
69
1.30k
    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
1.30k
    } else {
81
1.30k
      pixel_type First = in0[x];
82
1.30k
      pixel_type Second = in1[x];
83
1.30k
      pixel_type Third = in2[x];
84
1.30k
      if (third) Third = PixelAdd(Third, First);
85
1.30k
      if (second == 1) {
86
0
        Second = PixelAdd(Second, First);
87
1.30k
      } else if (second == 2) {
88
1.30k
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
1.30k
      }
90
1.30k
      out0[x] = First;
91
1.30k
      out1[x] = Second;
92
1.30k
      out2[x] = Third;
93
1.30k
    }
94
1.30k
  }
95
2.16k
}
void jxl::N_AVX2::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
4.85k
               pixel_type* out2, size_t w) {
33
4.85k
  static_assert(transform_type >= 0 && transform_type < 7,
34
4.85k
                "Invalid transform type");
35
4.85k
  int second = transform_type >> 1;
36
4.85k
  int third = transform_type & 1;
37
38
4.85k
  size_t x = 0;
39
4.85k
  const HWY_FULL(pixel_type) d;
40
4.85k
  const size_t N = Lanes(d);
41
17.1k
  for (; x + N - 1 < w; x += N) {
42
12.3k
    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
12.3k
    } else {
54
12.3k
      auto First = Load(d, in0 + x);
55
12.3k
      auto Second = Load(d, in1 + x);
56
12.3k
      auto Third = Load(d, in2 + x);
57
12.3k
      if (third) Third = Add(Third, First);
58
12.3k
      if (second == 1) {
59
0
        Second = Add(Second, First);
60
12.3k
      } else if (second == 2) {
61
12.3k
        Second = Add(Second, ShiftRight<1>(Add(First, Third)));
62
12.3k
      }
63
12.3k
      Store(First, d, out0 + x);
64
12.3k
      Store(Second, d, out1 + x);
65
12.3k
      Store(Third, d, out2 + x);
66
12.3k
    }
67
12.3k
  }
68
8.21k
  for (; x < w; x++) {
69
3.36k
    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
3.36k
    } else {
81
3.36k
      pixel_type First = in0[x];
82
3.36k
      pixel_type Second = in1[x];
83
3.36k
      pixel_type Third = in2[x];
84
3.36k
      if (third) Third = PixelAdd(Third, First);
85
3.36k
      if (second == 1) {
86
0
        Second = PixelAdd(Second, First);
87
3.36k
      } else if (second == 2) {
88
3.36k
        Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1));
89
3.36k
      }
90
3.36k
      out0[x] = First;
91
3.36k
      out1[x] = Second;
92
3.36k
      out2[x] = Third;
93
3.36k
    }
94
3.36k
  }
95
4.85k
}
void jxl::N_AVX2::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long)
Line
Count
Source
32
88.6k
               pixel_type* out2, size_t w) {
33
88.6k
  static_assert(transform_type >= 0 && transform_type < 7,
34
88.6k
                "Invalid transform type");
35
88.6k
  int second = transform_type >> 1;
36
88.6k
  int third = transform_type & 1;
37
38
88.6k
  size_t x = 0;
39
88.6k
  const HWY_FULL(pixel_type) d;
40
88.6k
  const size_t N = Lanes(d);
41
284k
  for (; x + N - 1 < w; x += N) {
42
196k
    if (transform_type == 6) {
43
196k
      auto Y = Load(d, in0 + x);
44
196k
      auto Co = Load(d, in1 + x);
45
196k
      auto Cg = Load(d, in2 + x);
46
196k
      Y = Sub(Y, ShiftRight<1>(Cg));
47
196k
      auto G = Add(Cg, Y);
48
196k
      Y = Sub(Y, ShiftRight<1>(Co));
49
196k
      auto R = Add(Y, Co);
50
196k
      Store(R, d, out0 + x);
51
196k
      Store(G, d, out1 + x);
52
196k
      Store(Y, d, out2 + x);
53
196k
    } 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
196k
  }
68
573k
  for (; x < w; x++) {
69
485k
    if (transform_type == 6) {
70
485k
      pixel_type Y = in0[x];
71
485k
      pixel_type Co = in1[x];
72
485k
      pixel_type Cg = in2[x];
73
485k
      pixel_type tmp = PixelAdd(Y, -(Cg >> 1));
74
485k
      pixel_type G = PixelAdd(Cg, tmp);
75
485k
      pixel_type B = PixelAdd(tmp, -(Co >> 1));
76
485k
      pixel_type R = PixelAdd(B, Co);
77
485k
      out0[x] = R;
78
485k
      out1[x] = G;
79
485k
      out2[x] = B;
80
485k
    } 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
485k
  }
95
88.6k
}
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
1.72k
Status InvRCT(Image& input, size_t begin_c, size_t rct_type, ThreadPool* pool) {
98
1.72k
  JXL_RETURN_IF_ERROR(CheckEqualChannels(input, begin_c, begin_c + 2));
99
1.72k
  size_t m = begin_c;
100
1.72k
  Channel& c0 = input.channel[m + 0];
101
1.72k
  size_t w = c0.w;
102
1.72k
  size_t h = c0.h;
103
1.72k
  if (rct_type == 0) {  // noop
104
46
    return true;
105
46
  }
106
  // Permutation: 0=RGB, 1=GBR, 2=BRG, 3=RBG, 4=GRB, 5=BGR
107
1.67k
  int permutation = rct_type / 7;
108
1.67k
  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
1.67k
  int custom = rct_type % 7;
116
  // Special case: permute-only. Swap channels around.
117
1.67k
  if (custom == 0) {
118
67
    Channel ch0 = std::move(input.channel[m]);
119
67
    Channel ch1 = std::move(input.channel[m + 1]);
120
67
    Channel ch2 = std::move(input.channel[m + 2]);
121
67
    input.channel[m + (permutation % 3)] = std::move(ch0);
122
67
    input.channel[m + ((permutation + 1 + permutation / 3) % 3)] =
123
67
        std::move(ch1);
124
67
    input.channel[m + ((permutation + 2 - permutation / 3) % 3)] =
125
67
        std::move(ch2);
126
67
    return true;
127
67
  }
128
1.61k
  constexpr decltype(&InvRCTRow<0>) inv_rct_row[] = {
129
1.61k
      InvRCTRow<0>, InvRCTRow<1>, InvRCTRow<2>, InvRCTRow<3>,
130
1.61k
      InvRCTRow<4>, InvRCTRow<5>, InvRCTRow<6>};
131
1.61k
  const auto process_row = [&](const uint32_t task,
132
105k
                               size_t /* thread */) -> Status {
133
105k
    const size_t y = task;
134
105k
    const pixel_type* in0 = input.channel[m].Row(y);
135
105k
    const pixel_type* in1 = input.channel[m + 1].Row(y);
136
105k
    const pixel_type* in2 = input.channel[m + 2].Row(y);
137
105k
    pixel_type* out0 = input.channel[m + (permutation % 3)].Row(y);
138
105k
    pixel_type* out1 =
139
105k
        input.channel[m + ((permutation + 1 + permutation / 3) % 3)].Row(y);
140
105k
    pixel_type* out2 =
141
105k
        input.channel[m + ((permutation + 2 - permutation / 3) % 3)].Row(y);
142
105k
    inv_rct_row[custom](in0, in1, in2, out0, out1, out2, w);
143
105k
    return true;
144
105k
  };
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
105k
                               size_t /* thread */) -> Status {
133
105k
    const size_t y = task;
134
105k
    const pixel_type* in0 = input.channel[m].Row(y);
135
105k
    const pixel_type* in1 = input.channel[m + 1].Row(y);
136
105k
    const pixel_type* in2 = input.channel[m + 2].Row(y);
137
105k
    pixel_type* out0 = input.channel[m + (permutation % 3)].Row(y);
138
105k
    pixel_type* out1 =
139
105k
        input.channel[m + ((permutation + 1 + permutation / 3) % 3)].Row(y);
140
105k
    pixel_type* out2 =
141
105k
        input.channel[m + ((permutation + 2 - permutation / 3) % 3)].Row(y);
142
105k
    inv_rct_row[custom](in0, in1, in2, out0, out1, out2, w);
143
105k
    return true;
144
105k
  };
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
1.61k
  JXL_RETURN_IF_ERROR(
146
1.61k
      RunOnPool(pool, 0, h, ThreadPool::NoInit, process_row, "InvRCT"));
147
1.61k
  return true;
148
1.61k
}
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
1.72k
Status InvRCT(Image& input, size_t begin_c, size_t rct_type, ThreadPool* pool) {
98
1.72k
  JXL_RETURN_IF_ERROR(CheckEqualChannels(input, begin_c, begin_c + 2));
99
1.72k
  size_t m = begin_c;
100
1.72k
  Channel& c0 = input.channel[m + 0];
101
1.72k
  size_t w = c0.w;
102
1.72k
  size_t h = c0.h;
103
1.72k
  if (rct_type == 0) {  // noop
104
46
    return true;
105
46
  }
106
  // Permutation: 0=RGB, 1=GBR, 2=BRG, 3=RBG, 4=GRB, 5=BGR
107
1.67k
  int permutation = rct_type / 7;
108
1.67k
  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
1.67k
  int custom = rct_type % 7;
116
  // Special case: permute-only. Swap channels around.
117
1.67k
  if (custom == 0) {
118
67
    Channel ch0 = std::move(input.channel[m]);
119
67
    Channel ch1 = std::move(input.channel[m + 1]);
120
67
    Channel ch2 = std::move(input.channel[m + 2]);
121
67
    input.channel[m + (permutation % 3)] = std::move(ch0);
122
67
    input.channel[m + ((permutation + 1 + permutation / 3) % 3)] =
123
67
        std::move(ch1);
124
67
    input.channel[m + ((permutation + 2 - permutation / 3) % 3)] =
125
67
        std::move(ch2);
126
67
    return true;
127
67
  }
128
1.61k
  constexpr decltype(&InvRCTRow<0>) inv_rct_row[] = {
129
1.61k
      InvRCTRow<0>, InvRCTRow<1>, InvRCTRow<2>, InvRCTRow<3>,
130
1.61k
      InvRCTRow<4>, InvRCTRow<5>, InvRCTRow<6>};
131
1.61k
  const auto process_row = [&](const uint32_t task,
132
1.61k
                               size_t /* thread */) -> Status {
133
1.61k
    const size_t y = task;
134
1.61k
    const pixel_type* in0 = input.channel[m].Row(y);
135
1.61k
    const pixel_type* in1 = input.channel[m + 1].Row(y);
136
1.61k
    const pixel_type* in2 = input.channel[m + 2].Row(y);
137
1.61k
    pixel_type* out0 = input.channel[m + (permutation % 3)].Row(y);
138
1.61k
    pixel_type* out1 =
139
1.61k
        input.channel[m + ((permutation + 1 + permutation / 3) % 3)].Row(y);
140
1.61k
    pixel_type* out2 =
141
1.61k
        input.channel[m + ((permutation + 2 - permutation / 3) % 3)].Row(y);
142
1.61k
    inv_rct_row[custom](in0, in1, in2, out0, out1, out2, w);
143
1.61k
    return true;
144
1.61k
  };
145
1.61k
  JXL_RETURN_IF_ERROR(
146
1.61k
      RunOnPool(pool, 0, h, ThreadPool::NoInit, process_row, "InvRCT"));
147
1.61k
  return true;
148
1.61k
}
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
1.72k
Status InvRCT(Image& input, size_t begin_c, size_t rct_type, ThreadPool* pool) {
159
1.72k
  return HWY_DYNAMIC_DISPATCH(InvRCT)(input, begin_c, rct_type, pool);
160
1.72k
}
161
162
}  // namespace jxl
163
#endif