Coverage Report

Created: 2025-06-13 07:07

/src/aom/av1/common/cfl.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) 2016, Alliance for Open Media. All rights reserved.
3
 *
4
 * This source code is subject to the terms of the BSD 2 Clause License and
5
 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6
 * was not distributed with this source code in the LICENSE file, you can
7
 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8
 * Media Patent License 1.0 was not distributed with this source code in the
9
 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10
 */
11
12
#ifndef AOM_AV1_COMMON_CFL_H_
13
#define AOM_AV1_COMMON_CFL_H_
14
15
#include "av1/common/av1_common_int.h"
16
#include "av1/common/blockd.h"
17
18
// Can we use CfL for the current block?
19
12.8M
static inline CFL_ALLOWED_TYPE is_cfl_allowed(const MACROBLOCKD *xd) {
20
12.8M
  const MB_MODE_INFO *mbmi = xd->mi[0];
21
12.8M
  const BLOCK_SIZE bsize = mbmi->bsize;
22
12.8M
  assert(bsize < BLOCK_SIZES_ALL);
23
12.8M
  if (xd->lossless[mbmi->segment_id]) {
24
    // In lossless, CfL is available when the partition size is equal to the
25
    // transform size.
26
90.6k
    const int ssx = xd->plane[AOM_PLANE_U].subsampling_x;
27
90.6k
    const int ssy = xd->plane[AOM_PLANE_U].subsampling_y;
28
90.6k
    const int plane_bsize = get_plane_block_size(bsize, ssx, ssy);
29
90.6k
    return (CFL_ALLOWED_TYPE)(plane_bsize == BLOCK_4X4);
30
90.6k
  }
31
  // Spec: CfL is available to luma partitions lesser than or equal to 32x32
32
12.7M
  return (CFL_ALLOWED_TYPE)(block_size_wide[bsize] <= 32 &&
33
12.7M
                            block_size_high[bsize] <= 32);
34
12.8M
}
Unexecuted instantiation: decodeframe.c:is_cfl_allowed
decodemv.c:is_cfl_allowed
Line
Count
Source
19
9.87M
static inline CFL_ALLOWED_TYPE is_cfl_allowed(const MACROBLOCKD *xd) {
20
9.87M
  const MB_MODE_INFO *mbmi = xd->mi[0];
21
9.87M
  const BLOCK_SIZE bsize = mbmi->bsize;
22
9.87M
  assert(bsize < BLOCK_SIZES_ALL);
23
9.87M
  if (xd->lossless[mbmi->segment_id]) {
24
    // In lossless, CfL is available when the partition size is equal to the
25
    // transform size.
26
88.7k
    const int ssx = xd->plane[AOM_PLANE_U].subsampling_x;
27
88.7k
    const int ssy = xd->plane[AOM_PLANE_U].subsampling_y;
28
88.7k
    const int plane_bsize = get_plane_block_size(bsize, ssx, ssy);
29
88.7k
    return (CFL_ALLOWED_TYPE)(plane_bsize == BLOCK_4X4);
30
88.7k
  }
31
  // Spec: CfL is available to luma partitions lesser than or equal to 32x32
32
9.78M
  return (CFL_ALLOWED_TYPE)(block_size_wide[bsize] <= 32 &&
33
9.78M
                            block_size_high[bsize] <= 32);
34
9.87M
}
cfl.c:is_cfl_allowed
Line
Count
Source
19
2.97M
static inline CFL_ALLOWED_TYPE is_cfl_allowed(const MACROBLOCKD *xd) {
20
2.97M
  const MB_MODE_INFO *mbmi = xd->mi[0];
21
2.97M
  const BLOCK_SIZE bsize = mbmi->bsize;
22
2.97M
  assert(bsize < BLOCK_SIZES_ALL);
23
2.97M
  if (xd->lossless[mbmi->segment_id]) {
24
    // In lossless, CfL is available when the partition size is equal to the
25
    // transform size.
26
1.88k
    const int ssx = xd->plane[AOM_PLANE_U].subsampling_x;
27
1.88k
    const int ssy = xd->plane[AOM_PLANE_U].subsampling_y;
28
1.88k
    const int plane_bsize = get_plane_block_size(bsize, ssx, ssy);
29
1.88k
    return (CFL_ALLOWED_TYPE)(plane_bsize == BLOCK_4X4);
30
1.88k
  }
31
  // Spec: CfL is available to luma partitions lesser than or equal to 32x32
32
2.97M
  return (CFL_ALLOWED_TYPE)(block_size_wide[bsize] <= 32 &&
33
2.97M
                            block_size_high[bsize] <= 32);
34
2.97M
}
Unexecuted instantiation: reconintra.c:is_cfl_allowed
Unexecuted instantiation: cfl_sse2.c:is_cfl_allowed
Unexecuted instantiation: cfl_ssse3.c:is_cfl_allowed
Unexecuted instantiation: cfl_avx2.c:is_cfl_allowed
35
36
// Do we need to save the luma pixels from the current block,
37
// for a possible future CfL prediction?
38
static inline CFL_ALLOWED_TYPE store_cfl_required(const AV1_COMMON *cm,
39
58.8M
                                                  const MACROBLOCKD *xd) {
40
58.8M
  const MB_MODE_INFO *mbmi = xd->mi[0];
41
42
58.8M
  if (cm->seq_params->monochrome) return CFL_DISALLOWED;
43
44
57.1M
  if (!xd->is_chroma_ref) {
45
    // For non-chroma-reference blocks, we should always store the luma pixels,
46
    // in case the corresponding chroma-reference block uses CfL.
47
    // Note that this can only happen for block sizes which are <8 on
48
    // their shortest side, as otherwise they would be chroma reference
49
    // blocks.
50
2.59M
    return CFL_ALLOWED;
51
2.59M
  }
52
53
  // If this block has chroma information, we know whether we're
54
  // actually going to perform a CfL prediction
55
54.5M
  return (CFL_ALLOWED_TYPE)(!is_inter_block(mbmi) &&
56
54.5M
                            mbmi->uv_mode == UV_CFL_PRED);
57
57.1M
}
decodeframe.c:store_cfl_required
Line
Count
Source
39
43.3M
                                                  const MACROBLOCKD *xd) {
40
43.3M
  const MB_MODE_INFO *mbmi = xd->mi[0];
41
42
43.3M
  if (cm->seq_params->monochrome) return CFL_DISALLOWED;
43
44
42.2M
  if (!xd->is_chroma_ref) {
45
    // For non-chroma-reference blocks, we should always store the luma pixels,
46
    // in case the corresponding chroma-reference block uses CfL.
47
    // Note that this can only happen for block sizes which are <8 on
48
    // their shortest side, as otherwise they would be chroma reference
49
    // blocks.
50
1.27M
    return CFL_ALLOWED;
51
1.27M
  }
52
53
  // If this block has chroma information, we know whether we're
54
  // actually going to perform a CfL prediction
55
40.9M
  return (CFL_ALLOWED_TYPE)(!is_inter_block(mbmi) &&
56
40.9M
                            mbmi->uv_mode == UV_CFL_PRED);
57
42.2M
}
decodemv.c:store_cfl_required
Line
Count
Source
39
15.5M
                                                  const MACROBLOCKD *xd) {
40
15.5M
  const MB_MODE_INFO *mbmi = xd->mi[0];
41
42
15.5M
  if (cm->seq_params->monochrome) return CFL_DISALLOWED;
43
44
14.9M
  if (!xd->is_chroma_ref) {
45
    // For non-chroma-reference blocks, we should always store the luma pixels,
46
    // in case the corresponding chroma-reference block uses CfL.
47
    // Note that this can only happen for block sizes which are <8 on
48
    // their shortest side, as otherwise they would be chroma reference
49
    // blocks.
50
1.31M
    return CFL_ALLOWED;
51
1.31M
  }
52
53
  // If this block has chroma information, we know whether we're
54
  // actually going to perform a CfL prediction
55
13.6M
  return (CFL_ALLOWED_TYPE)(!is_inter_block(mbmi) &&
56
13.6M
                            mbmi->uv_mode == UV_CFL_PRED);
57
14.9M
}
Unexecuted instantiation: cfl.c:store_cfl_required
Unexecuted instantiation: reconintra.c:store_cfl_required
Unexecuted instantiation: cfl_sse2.c:store_cfl_required
Unexecuted instantiation: cfl_ssse3.c:store_cfl_required
Unexecuted instantiation: cfl_avx2.c:store_cfl_required
58
59
0
static inline int get_scaled_luma_q0(int alpha_q3, int16_t pred_buf_q3) {
60
0
  int scaled_luma_q6 = alpha_q3 * pred_buf_q3;
61
0
  return ROUND_POWER_OF_TWO_SIGNED(scaled_luma_q6, 6);
62
0
}
Unexecuted instantiation: decodeframe.c:get_scaled_luma_q0
Unexecuted instantiation: decodemv.c:get_scaled_luma_q0
Unexecuted instantiation: cfl.c:get_scaled_luma_q0
Unexecuted instantiation: reconintra.c:get_scaled_luma_q0
Unexecuted instantiation: cfl_sse2.c:get_scaled_luma_q0
Unexecuted instantiation: cfl_ssse3.c:get_scaled_luma_q0
Unexecuted instantiation: cfl_avx2.c:get_scaled_luma_q0
63
64
2.97M
static inline CFL_PRED_TYPE get_cfl_pred_type(int plane) {
65
2.97M
  assert(plane > 0);
66
2.97M
  return (CFL_PRED_TYPE)(plane - 1);
67
2.97M
}
Unexecuted instantiation: decodeframe.c:get_cfl_pred_type
Unexecuted instantiation: decodemv.c:get_cfl_pred_type
Unexecuted instantiation: cfl.c:get_cfl_pred_type
reconintra.c:get_cfl_pred_type
Line
Count
Source
64
2.97M
static inline CFL_PRED_TYPE get_cfl_pred_type(int plane) {
65
2.97M
  assert(plane > 0);
66
2.97M
  return (CFL_PRED_TYPE)(plane - 1);
67
2.97M
}
Unexecuted instantiation: cfl_sse2.c:get_cfl_pred_type
Unexecuted instantiation: cfl_ssse3.c:get_cfl_pred_type
Unexecuted instantiation: cfl_avx2.c:get_cfl_pred_type
68
69
287k
static inline void clear_cfl_dc_pred_cache_flags(CFL_CTX *cfl) {
70
287k
  cfl->use_dc_pred_cache = false;
71
287k
  cfl->dc_pred_is_cached[CFL_PRED_U] = false;
72
287k
  cfl->dc_pred_is_cached[CFL_PRED_V] = false;
73
287k
}
Unexecuted instantiation: decodeframe.c:clear_cfl_dc_pred_cache_flags
Unexecuted instantiation: decodemv.c:clear_cfl_dc_pred_cache_flags
cfl.c:clear_cfl_dc_pred_cache_flags
Line
Count
Source
69
287k
static inline void clear_cfl_dc_pred_cache_flags(CFL_CTX *cfl) {
70
287k
  cfl->use_dc_pred_cache = false;
71
287k
  cfl->dc_pred_is_cached[CFL_PRED_U] = false;
72
287k
  cfl->dc_pred_is_cached[CFL_PRED_V] = false;
73
287k
}
Unexecuted instantiation: reconintra.c:clear_cfl_dc_pred_cache_flags
Unexecuted instantiation: cfl_sse2.c:clear_cfl_dc_pred_cache_flags
Unexecuted instantiation: cfl_ssse3.c:clear_cfl_dc_pred_cache_flags
Unexecuted instantiation: cfl_avx2.c:clear_cfl_dc_pred_cache_flags
74
75
void av1_cfl_predict_block(MACROBLOCKD *const xd, uint8_t *dst, int dst_stride,
76
                           TX_SIZE tx_size, int plane);
77
78
void cfl_store_block(MACROBLOCKD *const xd, BLOCK_SIZE bsize, TX_SIZE tx_size);
79
80
void cfl_store_tx(MACROBLOCKD *const xd, int row, int col, TX_SIZE tx_size,
81
                  BLOCK_SIZE bsize);
82
83
void cfl_store_dc_pred(MACROBLOCKD *const xd, const uint8_t *input,
84
                       CFL_PRED_TYPE pred_plane, int width);
85
86
void cfl_load_dc_pred(MACROBLOCKD *const xd, uint8_t *dst, int dst_stride,
87
                      TX_SIZE tx_size, CFL_PRED_TYPE pred_plane);
88
89
// Allows the CFL_SUBSAMPLE function to switch types depending on the bitdepth.
90
#define CFL_lbd_TYPE uint8_t *cfl_type
91
#define CFL_hbd_TYPE uint16_t *cfl_type
92
93
// Declare a size-specific wrapper for the size-generic function. The compiler
94
// will inline the size generic function in here, the advantage is that the size
95
// will be constant allowing for loop unrolling and other constant propagated
96
// goodness.
97
#define CFL_SUBSAMPLE(arch, sub, bd, width, height)                       \
98
  void cfl_subsample_##bd##_##sub##_##width##x##height##_##arch(          \
99
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3);      \
100
  void cfl_subsample_##bd##_##sub##_##width##x##height##_##arch(          \
101
3.03M
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
3.03M
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
3.03M
                                               output_q3, width, height); \
104
3.03M
  }
Unexecuted instantiation: cfl_subsample_lbd_420_4x4_c
Unexecuted instantiation: cfl_subsample_lbd_420_8x8_c
Unexecuted instantiation: cfl_subsample_lbd_420_16x16_c
Unexecuted instantiation: cfl_subsample_lbd_420_32x32_c
Unexecuted instantiation: cfl_subsample_lbd_420_4x8_c
Unexecuted instantiation: cfl_subsample_lbd_420_8x4_c
Unexecuted instantiation: cfl_subsample_lbd_420_8x16_c
Unexecuted instantiation: cfl_subsample_lbd_420_16x8_c
Unexecuted instantiation: cfl_subsample_lbd_420_16x32_c
Unexecuted instantiation: cfl_subsample_lbd_420_32x16_c
Unexecuted instantiation: cfl_subsample_lbd_420_4x16_c
Unexecuted instantiation: cfl_subsample_lbd_420_16x4_c
Unexecuted instantiation: cfl_subsample_lbd_420_8x32_c
Unexecuted instantiation: cfl_subsample_lbd_420_32x8_c
Unexecuted instantiation: cfl_subsample_lbd_422_4x4_c
Unexecuted instantiation: cfl_subsample_lbd_422_8x8_c
Unexecuted instantiation: cfl_subsample_lbd_422_16x16_c
Unexecuted instantiation: cfl_subsample_lbd_422_32x32_c
Unexecuted instantiation: cfl_subsample_lbd_422_4x8_c
Unexecuted instantiation: cfl_subsample_lbd_422_8x4_c
Unexecuted instantiation: cfl_subsample_lbd_422_8x16_c
Unexecuted instantiation: cfl_subsample_lbd_422_16x8_c
Unexecuted instantiation: cfl_subsample_lbd_422_16x32_c
Unexecuted instantiation: cfl_subsample_lbd_422_32x16_c
Unexecuted instantiation: cfl_subsample_lbd_422_4x16_c
Unexecuted instantiation: cfl_subsample_lbd_422_16x4_c
Unexecuted instantiation: cfl_subsample_lbd_422_8x32_c
Unexecuted instantiation: cfl_subsample_lbd_422_32x8_c
Unexecuted instantiation: cfl_subsample_lbd_444_4x4_c
Unexecuted instantiation: cfl_subsample_lbd_444_8x8_c
Unexecuted instantiation: cfl_subsample_lbd_444_16x16_c
Unexecuted instantiation: cfl_subsample_lbd_444_32x32_c
Unexecuted instantiation: cfl_subsample_lbd_444_4x8_c
Unexecuted instantiation: cfl_subsample_lbd_444_8x4_c
Unexecuted instantiation: cfl_subsample_lbd_444_8x16_c
Unexecuted instantiation: cfl_subsample_lbd_444_16x8_c
Unexecuted instantiation: cfl_subsample_lbd_444_16x32_c
Unexecuted instantiation: cfl_subsample_lbd_444_32x16_c
Unexecuted instantiation: cfl_subsample_lbd_444_4x16_c
Unexecuted instantiation: cfl_subsample_lbd_444_16x4_c
Unexecuted instantiation: cfl_subsample_lbd_444_8x32_c
Unexecuted instantiation: cfl_subsample_lbd_444_32x8_c
Unexecuted instantiation: cfl_subsample_hbd_420_4x4_c
Unexecuted instantiation: cfl_subsample_hbd_420_8x8_c
Unexecuted instantiation: cfl_subsample_hbd_420_16x16_c
Unexecuted instantiation: cfl_subsample_hbd_420_32x32_c
Unexecuted instantiation: cfl_subsample_hbd_420_4x8_c
Unexecuted instantiation: cfl_subsample_hbd_420_8x4_c
Unexecuted instantiation: cfl_subsample_hbd_420_8x16_c
Unexecuted instantiation: cfl_subsample_hbd_420_16x8_c
Unexecuted instantiation: cfl_subsample_hbd_420_16x32_c
Unexecuted instantiation: cfl_subsample_hbd_420_32x16_c
Unexecuted instantiation: cfl_subsample_hbd_420_4x16_c
Unexecuted instantiation: cfl_subsample_hbd_420_16x4_c
Unexecuted instantiation: cfl_subsample_hbd_420_8x32_c
Unexecuted instantiation: cfl_subsample_hbd_420_32x8_c
Unexecuted instantiation: cfl_subsample_hbd_422_4x4_c
Unexecuted instantiation: cfl_subsample_hbd_422_8x8_c
Unexecuted instantiation: cfl_subsample_hbd_422_16x16_c
Unexecuted instantiation: cfl_subsample_hbd_422_32x32_c
Unexecuted instantiation: cfl_subsample_hbd_422_4x8_c
Unexecuted instantiation: cfl_subsample_hbd_422_8x4_c
Unexecuted instantiation: cfl_subsample_hbd_422_8x16_c
Unexecuted instantiation: cfl_subsample_hbd_422_16x8_c
Unexecuted instantiation: cfl_subsample_hbd_422_16x32_c
Unexecuted instantiation: cfl_subsample_hbd_422_32x16_c
Unexecuted instantiation: cfl_subsample_hbd_422_4x16_c
Unexecuted instantiation: cfl_subsample_hbd_422_16x4_c
Unexecuted instantiation: cfl_subsample_hbd_422_8x32_c
Unexecuted instantiation: cfl_subsample_hbd_422_32x8_c
Unexecuted instantiation: cfl_subsample_hbd_444_4x4_c
Unexecuted instantiation: cfl_subsample_hbd_444_8x8_c
Unexecuted instantiation: cfl_subsample_hbd_444_16x16_c
Unexecuted instantiation: cfl_subsample_hbd_444_32x32_c
Unexecuted instantiation: cfl_subsample_hbd_444_4x8_c
Unexecuted instantiation: cfl_subsample_hbd_444_8x4_c
Unexecuted instantiation: cfl_subsample_hbd_444_8x16_c
Unexecuted instantiation: cfl_subsample_hbd_444_16x8_c
Unexecuted instantiation: cfl_subsample_hbd_444_16x32_c
Unexecuted instantiation: cfl_subsample_hbd_444_32x16_c
Unexecuted instantiation: cfl_subsample_hbd_444_4x16_c
Unexecuted instantiation: cfl_subsample_hbd_444_16x4_c
Unexecuted instantiation: cfl_subsample_hbd_444_8x32_c
Unexecuted instantiation: cfl_subsample_hbd_444_32x8_c
cfl_subsample_lbd_420_4x4_ssse3
Line
Count
Source
101
197k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
197k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
197k
                                               output_q3, width, height); \
104
197k
  }
cfl_subsample_lbd_420_8x8_ssse3
Line
Count
Source
101
87.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
87.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
87.3k
                                               output_q3, width, height); \
104
87.3k
  }
cfl_subsample_lbd_420_16x16_ssse3
Line
Count
Source
101
48.0k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
48.0k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
48.0k
                                               output_q3, width, height); \
104
48.0k
  }
Unexecuted instantiation: cfl_subsample_lbd_420_32x32_ssse3
cfl_subsample_lbd_420_4x8_ssse3
Line
Count
Source
101
95.4k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
95.4k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
95.4k
                                               output_q3, width, height); \
104
95.4k
  }
cfl_subsample_lbd_420_8x4_ssse3
Line
Count
Source
101
119k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
119k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
119k
                                               output_q3, width, height); \
104
119k
  }
cfl_subsample_lbd_420_8x16_ssse3
Line
Count
Source
101
24.8k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
24.8k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
24.8k
                                               output_q3, width, height); \
104
24.8k
  }
cfl_subsample_lbd_420_16x8_ssse3
Line
Count
Source
101
39.5k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
39.5k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
39.5k
                                               output_q3, width, height); \
104
39.5k
  }
cfl_subsample_lbd_420_16x32_ssse3
Line
Count
Source
101
8.56k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
8.56k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
8.56k
                                               output_q3, width, height); \
104
8.56k
  }
Unexecuted instantiation: cfl_subsample_lbd_420_32x16_ssse3
cfl_subsample_lbd_420_4x16_ssse3
Line
Count
Source
101
126k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
126k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
126k
                                               output_q3, width, height); \
104
126k
  }
cfl_subsample_lbd_420_16x4_ssse3
Line
Count
Source
101
157k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
157k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
157k
                                               output_q3, width, height); \
104
157k
  }
cfl_subsample_lbd_420_8x32_ssse3
Line
Count
Source
101
10.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
10.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
10.6k
                                               output_q3, width, height); \
104
10.6k
  }
Unexecuted instantiation: cfl_subsample_lbd_420_32x8_ssse3
cfl_subsample_lbd_422_4x4_ssse3
Line
Count
Source
101
668
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
668
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
668
                                               output_q3, width, height); \
104
668
  }
cfl_subsample_lbd_422_8x8_ssse3
Line
Count
Source
101
395
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
395
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
395
                                               output_q3, width, height); \
104
395
  }
cfl_subsample_lbd_422_16x16_ssse3
Line
Count
Source
101
261
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
261
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
261
                                               output_q3, width, height); \
104
261
  }
Unexecuted instantiation: cfl_subsample_lbd_422_32x32_ssse3
Unexecuted instantiation: cfl_subsample_lbd_422_4x8_ssse3
cfl_subsample_lbd_422_8x4_ssse3
Line
Count
Source
101
100
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
100
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
100
                                               output_q3, width, height); \
104
100
  }
Unexecuted instantiation: cfl_subsample_lbd_422_8x16_ssse3
cfl_subsample_lbd_422_16x8_ssse3
Line
Count
Source
101
178
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
178
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
178
                                               output_q3, width, height); \
104
178
  }
Unexecuted instantiation: cfl_subsample_lbd_422_16x32_ssse3
Unexecuted instantiation: cfl_subsample_lbd_422_32x16_ssse3
Unexecuted instantiation: cfl_subsample_lbd_422_4x16_ssse3
cfl_subsample_lbd_422_16x4_ssse3
Line
Count
Source
101
197
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
197
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
197
                                               output_q3, width, height); \
104
197
  }
Unexecuted instantiation: cfl_subsample_lbd_422_8x32_ssse3
Unexecuted instantiation: cfl_subsample_lbd_422_32x8_ssse3
cfl_subsample_lbd_444_4x4_ssse3
Line
Count
Source
101
70.9k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
70.9k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
70.9k
                                               output_q3, width, height); \
104
70.9k
  }
cfl_subsample_lbd_444_8x8_ssse3
Line
Count
Source
101
77.9k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
77.9k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
77.9k
                                               output_q3, width, height); \
104
77.9k
  }
cfl_subsample_lbd_444_16x16_ssse3
Line
Count
Source
101
37.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
37.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
37.6k
                                               output_q3, width, height); \
104
37.6k
  }
Unexecuted instantiation: cfl_subsample_lbd_444_32x32_ssse3
cfl_subsample_lbd_444_4x8_ssse3
Line
Count
Source
101
15.4k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
15.4k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
15.4k
                                               output_q3, width, height); \
104
15.4k
  }
cfl_subsample_lbd_444_8x4_ssse3
Line
Count
Source
101
24.5k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
24.5k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
24.5k
                                               output_q3, width, height); \
104
24.5k
  }
cfl_subsample_lbd_444_8x16_ssse3
Line
Count
Source
101
23.0k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
23.0k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
23.0k
                                               output_q3, width, height); \
104
23.0k
  }
cfl_subsample_lbd_444_16x8_ssse3
Line
Count
Source
101
32.1k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
32.1k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
32.1k
                                               output_q3, width, height); \
104
32.1k
  }
cfl_subsample_lbd_444_16x32_ssse3
Line
Count
Source
101
10.2k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
10.2k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
10.2k
                                               output_q3, width, height); \
104
10.2k
  }
Unexecuted instantiation: cfl_subsample_lbd_444_32x16_ssse3
cfl_subsample_lbd_444_4x16_ssse3
Line
Count
Source
101
29.8k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
29.8k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
29.8k
                                               output_q3, width, height); \
104
29.8k
  }
cfl_subsample_lbd_444_16x4_ssse3
Line
Count
Source
101
38.3k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
38.3k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
38.3k
                                               output_q3, width, height); \
104
38.3k
  }
cfl_subsample_lbd_444_8x32_ssse3
Line
Count
Source
101
18.0k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
18.0k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
18.0k
                                               output_q3, width, height); \
104
18.0k
  }
Unexecuted instantiation: cfl_subsample_lbd_444_32x8_ssse3
cfl_subsample_hbd_420_4x4_ssse3
Line
Count
Source
101
162k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
162k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
162k
                                               output_q3, width, height); \
104
162k
  }
cfl_subsample_hbd_420_8x8_ssse3
Line
Count
Source
101
70.8k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
70.8k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
70.8k
                                               output_q3, width, height); \
104
70.8k
  }
cfl_subsample_hbd_420_16x16_ssse3
Line
Count
Source
101
28.7k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
28.7k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
28.7k
                                               output_q3, width, height); \
104
28.7k
  }
Unexecuted instantiation: cfl_subsample_hbd_420_32x32_ssse3
cfl_subsample_hbd_420_4x8_ssse3
Line
Count
Source
101
104k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
104k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
104k
                                               output_q3, width, height); \
104
104k
  }
cfl_subsample_hbd_420_8x4_ssse3
Line
Count
Source
101
145k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
145k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
145k
                                               output_q3, width, height); \
104
145k
  }
cfl_subsample_hbd_420_8x16_ssse3
Line
Count
Source
101
11.7k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
11.7k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
11.7k
                                               output_q3, width, height); \
104
11.7k
  }
cfl_subsample_hbd_420_16x8_ssse3
Line
Count
Source
101
26.2k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
26.2k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
26.2k
                                               output_q3, width, height); \
104
26.2k
  }
cfl_subsample_hbd_420_16x32_ssse3
Line
Count
Source
101
4.51k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
4.51k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
4.51k
                                               output_q3, width, height); \
104
4.51k
  }
Unexecuted instantiation: cfl_subsample_hbd_420_32x16_ssse3
cfl_subsample_hbd_420_4x16_ssse3
Line
Count
Source
101
124k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
124k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
124k
                                               output_q3, width, height); \
104
124k
  }
cfl_subsample_hbd_420_16x4_ssse3
Line
Count
Source
101
163k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
163k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
163k
                                               output_q3, width, height); \
104
163k
  }
cfl_subsample_hbd_420_8x32_ssse3
Line
Count
Source
101
9.08k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
9.08k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
9.08k
                                               output_q3, width, height); \
104
9.08k
  }
Unexecuted instantiation: cfl_subsample_hbd_420_32x8_ssse3
cfl_subsample_hbd_422_4x4_ssse3
Line
Count
Source
101
1.22k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
1.22k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
1.22k
                                               output_q3, width, height); \
104
1.22k
  }
cfl_subsample_hbd_422_8x8_ssse3
Line
Count
Source
101
228
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
228
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
228
                                               output_q3, width, height); \
104
228
  }
cfl_subsample_hbd_422_16x16_ssse3
Line
Count
Source
101
37
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
37
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
37
                                               output_q3, width, height); \
104
37
  }
Unexecuted instantiation: cfl_subsample_hbd_422_32x32_ssse3
Unexecuted instantiation: cfl_subsample_hbd_422_4x8_ssse3
cfl_subsample_hbd_422_8x4_ssse3
Line
Count
Source
101
119
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
119
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
119
                                               output_q3, width, height); \
104
119
  }
Unexecuted instantiation: cfl_subsample_hbd_422_8x16_ssse3
cfl_subsample_hbd_422_16x8_ssse3
Line
Count
Source
101
109
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
109
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
109
                                               output_q3, width, height); \
104
109
  }
Unexecuted instantiation: cfl_subsample_hbd_422_16x32_ssse3
Unexecuted instantiation: cfl_subsample_hbd_422_32x16_ssse3
Unexecuted instantiation: cfl_subsample_hbd_422_4x16_ssse3
cfl_subsample_hbd_422_16x4_ssse3
Line
Count
Source
101
44
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
44
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
44
                                               output_q3, width, height); \
104
44
  }
Unexecuted instantiation: cfl_subsample_hbd_422_8x32_ssse3
Unexecuted instantiation: cfl_subsample_hbd_422_32x8_ssse3
cfl_subsample_hbd_444_4x4_ssse3
Line
Count
Source
101
143k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
143k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
143k
                                               output_q3, width, height); \
104
143k
  }
cfl_subsample_hbd_444_8x8_ssse3
Line
Count
Source
101
205k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
205k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
205k
                                               output_q3, width, height); \
104
205k
  }
cfl_subsample_hbd_444_16x16_ssse3
Line
Count
Source
101
43.0k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
43.0k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
43.0k
                                               output_q3, width, height); \
104
43.0k
  }
Unexecuted instantiation: cfl_subsample_hbd_444_32x32_ssse3
cfl_subsample_hbd_444_4x8_ssse3
Line
Count
Source
101
43.5k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
43.5k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
43.5k
                                               output_q3, width, height); \
104
43.5k
  }
cfl_subsample_hbd_444_8x4_ssse3
Line
Count
Source
101
71.4k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
71.4k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
71.4k
                                               output_q3, width, height); \
104
71.4k
  }
cfl_subsample_hbd_444_8x16_ssse3
Line
Count
Source
101
49.0k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
49.0k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
49.0k
                                               output_q3, width, height); \
104
49.0k
  }
cfl_subsample_hbd_444_16x8_ssse3
Line
Count
Source
101
53.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
53.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
53.6k
                                               output_q3, width, height); \
104
53.6k
  }
cfl_subsample_hbd_444_16x32_ssse3
Line
Count
Source
101
7.06k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
7.06k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
7.06k
                                               output_q3, width, height); \
104
7.06k
  }
Unexecuted instantiation: cfl_subsample_hbd_444_32x16_ssse3
cfl_subsample_hbd_444_4x16_ssse3
Line
Count
Source
101
30.2k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
30.2k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
30.2k
                                               output_q3, width, height); \
104
30.2k
  }
cfl_subsample_hbd_444_16x4_ssse3
Line
Count
Source
101
43.2k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
43.2k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
43.2k
                                               output_q3, width, height); \
104
43.2k
  }
cfl_subsample_hbd_444_8x32_ssse3
Line
Count
Source
101
15.8k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
15.8k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
15.8k
                                               output_q3, width, height); \
104
15.8k
  }
Unexecuted instantiation: cfl_subsample_hbd_444_32x8_ssse3
cfl_subsample_lbd_420_32x32_avx2
Line
Count
Source
101
23.5k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
23.5k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
23.5k
                                               output_q3, width, height); \
104
23.5k
  }
cfl_subsample_lbd_420_32x16_avx2
Line
Count
Source
101
8.71k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
8.71k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
8.71k
                                               output_q3, width, height); \
104
8.71k
  }
cfl_subsample_lbd_420_32x8_avx2
Line
Count
Source
101
14.4k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
14.4k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
14.4k
                                               output_q3, width, height); \
104
14.4k
  }
cfl_subsample_lbd_422_32x32_avx2
Line
Count
Source
101
90
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
90
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
90
                                               output_q3, width, height); \
104
90
  }
cfl_subsample_lbd_422_32x16_avx2
Line
Count
Source
101
181
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
181
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
181
                                               output_q3, width, height); \
104
181
  }
cfl_subsample_lbd_422_32x8_avx2
Line
Count
Source
101
154
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
154
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
154
                                               output_q3, width, height); \
104
154
  }
cfl_subsample_lbd_444_32x32_avx2
Line
Count
Source
101
17.7k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
17.7k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
17.7k
                                               output_q3, width, height); \
104
17.7k
  }
cfl_subsample_lbd_444_32x16_avx2
Line
Count
Source
101
9.70k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
9.70k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
9.70k
                                               output_q3, width, height); \
104
9.70k
  }
cfl_subsample_lbd_444_32x8_avx2
Line
Count
Source
101
15.8k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
15.8k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
15.8k
                                               output_q3, width, height); \
104
15.8k
  }
cfl_subsample_hbd_420_32x32_avx2
Line
Count
Source
101
13.4k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
13.4k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
13.4k
                                               output_q3, width, height); \
104
13.4k
  }
cfl_subsample_hbd_420_32x16_avx2
Line
Count
Source
101
4.95k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
4.95k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
4.95k
                                               output_q3, width, height); \
104
4.95k
  }
cfl_subsample_hbd_420_32x8_avx2
Line
Count
Source
101
9.08k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
9.08k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
9.08k
                                               output_q3, width, height); \
104
9.08k
  }
cfl_subsample_hbd_422_32x32_avx2
Line
Count
Source
101
16
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
16
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
16
                                               output_q3, width, height); \
104
16
  }
cfl_subsample_hbd_422_32x16_avx2
Line
Count
Source
101
56
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
56
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
56
                                               output_q3, width, height); \
104
56
  }
cfl_subsample_hbd_422_32x8_avx2
Line
Count
Source
101
47
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
47
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
47
                                               output_q3, width, height); \
104
47
  }
cfl_subsample_hbd_444_32x32_avx2
Line
Count
Source
101
18.5k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
18.5k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
18.5k
                                               output_q3, width, height); \
104
18.5k
  }
cfl_subsample_hbd_444_32x16_avx2
Line
Count
Source
101
12.6k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
12.6k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
12.6k
                                               output_q3, width, height); \
104
12.6k
  }
cfl_subsample_hbd_444_32x8_avx2
Line
Count
Source
101
30.0k
      const CFL_##bd##_TYPE, int input_stride, uint16_t *output_q3) {     \
102
30.0k
    cfl_luma_subsampling_##sub##_##bd##_##arch(cfl_type, input_stride,    \
103
30.0k
                                               output_q3, width, height); \
104
30.0k
  }
105
106
// Declare size-specific wrappers for all valid CfL sizes.
107
#define CFL_SUBSAMPLE_FUNCTIONS(arch, sub, bd)                            \
108
  CFL_SUBSAMPLE(arch, sub, bd, 4, 4)                                      \
109
  CFL_SUBSAMPLE(arch, sub, bd, 8, 8)                                      \
110
  CFL_SUBSAMPLE(arch, sub, bd, 16, 16)                                    \
111
  CFL_SUBSAMPLE(arch, sub, bd, 32, 32)                                    \
112
  CFL_SUBSAMPLE(arch, sub, bd, 4, 8)                                      \
113
  CFL_SUBSAMPLE(arch, sub, bd, 8, 4)                                      \
114
  CFL_SUBSAMPLE(arch, sub, bd, 8, 16)                                     \
115
  CFL_SUBSAMPLE(arch, sub, bd, 16, 8)                                     \
116
  CFL_SUBSAMPLE(arch, sub, bd, 16, 32)                                    \
117
  CFL_SUBSAMPLE(arch, sub, bd, 32, 16)                                    \
118
  CFL_SUBSAMPLE(arch, sub, bd, 4, 16)                                     \
119
  CFL_SUBSAMPLE(arch, sub, bd, 16, 4)                                     \
120
  CFL_SUBSAMPLE(arch, sub, bd, 8, 32)                                     \
121
  CFL_SUBSAMPLE(arch, sub, bd, 32, 8)                                     \
122
  cfl_subsample_##bd##_fn cfl_get_luma_subsampling_##sub##_##bd##_##arch( \
123
0
      TX_SIZE tx_size) {                                                  \
124
0
    CFL_SUBSAMPLE_FUNCTION_ARRAY(arch, sub, bd)                           \
125
0
    return subfn_##sub[tx_size];                                          \
126
0
  }
Unexecuted instantiation: cfl_get_luma_subsampling_420_lbd_c
Unexecuted instantiation: cfl_get_luma_subsampling_422_lbd_c
Unexecuted instantiation: cfl_get_luma_subsampling_444_lbd_c
Unexecuted instantiation: cfl_get_luma_subsampling_420_hbd_c
Unexecuted instantiation: cfl_get_luma_subsampling_422_hbd_c
Unexecuted instantiation: cfl_get_luma_subsampling_444_hbd_c
Unexecuted instantiation: cfl_get_luma_subsampling_420_lbd_ssse3
Unexecuted instantiation: cfl_get_luma_subsampling_422_lbd_ssse3
Unexecuted instantiation: cfl_get_luma_subsampling_444_lbd_ssse3
Unexecuted instantiation: cfl_get_luma_subsampling_420_hbd_ssse3
Unexecuted instantiation: cfl_get_luma_subsampling_422_hbd_ssse3
Unexecuted instantiation: cfl_get_luma_subsampling_444_hbd_ssse3
127
128
// Declare an architecture-specific array of function pointers for size-specific
129
// wrappers.
130
#define CFL_SUBSAMPLE_FUNCTION_ARRAY(arch, sub, bd)                           \
131
0
  static const cfl_subsample_##bd##_fn subfn_##sub[TX_SIZES_ALL] = {          \
132
0
    cfl_subsample_##bd##_##sub##_4x4_##arch,   /* 4x4 */                      \
133
0
    cfl_subsample_##bd##_##sub##_8x8_##arch,   /* 8x8 */                      \
134
0
    cfl_subsample_##bd##_##sub##_16x16_##arch, /* 16x16 */                    \
135
0
    cfl_subsample_##bd##_##sub##_32x32_##arch, /* 32x32 */                    \
136
0
    NULL,                                      /* 64x64 (invalid CFL size) */ \
137
0
    cfl_subsample_##bd##_##sub##_4x8_##arch,   /* 4x8 */                      \
138
0
    cfl_subsample_##bd##_##sub##_8x4_##arch,   /* 8x4 */                      \
139
0
    cfl_subsample_##bd##_##sub##_8x16_##arch,  /* 8x16 */                     \
140
0
    cfl_subsample_##bd##_##sub##_16x8_##arch,  /* 16x8 */                     \
141
0
    cfl_subsample_##bd##_##sub##_16x32_##arch, /* 16x32 */                    \
142
0
    cfl_subsample_##bd##_##sub##_32x16_##arch, /* 32x16 */                    \
143
0
    NULL,                                      /* 32x64 (invalid CFL size) */ \
144
0
    NULL,                                      /* 64x32 (invalid CFL size) */ \
145
0
    cfl_subsample_##bd##_##sub##_4x16_##arch,  /* 4x16  */                    \
146
0
    cfl_subsample_##bd##_##sub##_16x4_##arch,  /* 16x4  */                    \
147
0
    cfl_subsample_##bd##_##sub##_8x32_##arch,  /* 8x32  */                    \
148
0
    cfl_subsample_##bd##_##sub##_32x8_##arch,  /* 32x8  */                    \
149
0
    NULL,                                      /* 16x64 (invalid CFL size) */ \
150
0
    NULL,                                      /* 64x16 (invalid CFL size) */ \
151
0
  };
152
153
// The RTCD script does not support passing in an array, so we wrap it in this
154
// function.
155
#if CONFIG_AV1_HIGHBITDEPTH
156
#define CFL_GET_SUBSAMPLE_FUNCTION(arch)  \
157
  CFL_SUBSAMPLE_FUNCTIONS(arch, 420, lbd) \
158
  CFL_SUBSAMPLE_FUNCTIONS(arch, 422, lbd) \
159
  CFL_SUBSAMPLE_FUNCTIONS(arch, 444, lbd) \
160
  CFL_SUBSAMPLE_FUNCTIONS(arch, 420, hbd) \
161
  CFL_SUBSAMPLE_FUNCTIONS(arch, 422, hbd) \
162
  CFL_SUBSAMPLE_FUNCTIONS(arch, 444, hbd)
163
#else
164
#define CFL_GET_SUBSAMPLE_FUNCTION(arch)  \
165
  CFL_SUBSAMPLE_FUNCTIONS(arch, 420, lbd) \
166
  CFL_SUBSAMPLE_FUNCTIONS(arch, 422, lbd) \
167
  CFL_SUBSAMPLE_FUNCTIONS(arch, 444, lbd)
168
#endif
169
170
// Declare a size-specific wrapper for the size-generic function. The compiler
171
// will inline the size generic function in here, the advantage is that the size
172
// will be constant allowing for loop unrolling and other constant propagated
173
// goodness.
174
#define CFL_SUB_AVG_X(arch, width, height, round_offset, num_pel_log2)       \
175
  void cfl_subtract_average_##width##x##height##_##arch(const uint16_t *src, \
176
                                                        int16_t *dst);       \
177
  void cfl_subtract_average_##width##x##height##_##arch(const uint16_t *src, \
178
1.48M
                                                        int16_t *dst) {      \
179
1.48M
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
1.48M
                            num_pel_log2);                                   \
181
1.48M
  }
Unexecuted instantiation: cfl_subtract_average_4x4_c
Unexecuted instantiation: cfl_subtract_average_4x8_c
Unexecuted instantiation: cfl_subtract_average_4x16_c
Unexecuted instantiation: cfl_subtract_average_8x4_c
Unexecuted instantiation: cfl_subtract_average_8x8_c
Unexecuted instantiation: cfl_subtract_average_8x16_c
Unexecuted instantiation: cfl_subtract_average_8x32_c
Unexecuted instantiation: cfl_subtract_average_16x4_c
Unexecuted instantiation: cfl_subtract_average_16x8_c
Unexecuted instantiation: cfl_subtract_average_16x16_c
Unexecuted instantiation: cfl_subtract_average_16x32_c
Unexecuted instantiation: cfl_subtract_average_32x8_c
Unexecuted instantiation: cfl_subtract_average_32x16_c
Unexecuted instantiation: cfl_subtract_average_32x32_c
cfl_subtract_average_4x4_sse2
Line
Count
Source
178
269k
                                                        int16_t *dst) {      \
179
269k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
269k
                            num_pel_log2);                                   \
181
269k
  }
cfl_subtract_average_4x8_sse2
Line
Count
Source
178
109k
                                                        int16_t *dst) {      \
179
109k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
109k
                            num_pel_log2);                                   \
181
109k
  }
cfl_subtract_average_4x16_sse2
Line
Count
Source
178
91.2k
                                                        int16_t *dst) {      \
179
91.2k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
91.2k
                            num_pel_log2);                                   \
181
91.2k
  }
cfl_subtract_average_8x4_sse2
Line
Count
Source
178
173k
                                                        int16_t *dst) {      \
179
173k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
173k
                            num_pel_log2);                                   \
181
173k
  }
cfl_subtract_average_8x8_sse2
Line
Count
Source
178
234k
                                                        int16_t *dst) {      \
179
234k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
234k
                            num_pel_log2);                                   \
181
234k
  }
cfl_subtract_average_8x16_sse2
Line
Count
Source
178
84.2k
                                                        int16_t *dst) {      \
179
84.2k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
84.2k
                            num_pel_log2);                                   \
181
84.2k
  }
cfl_subtract_average_8x32_sse2
Line
Count
Source
178
45.6k
                                                        int16_t *dst) {      \
179
45.6k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
45.6k
                            num_pel_log2);                                   \
181
45.6k
  }
Unexecuted instantiation: cfl_subtract_average_16x4_sse2
Unexecuted instantiation: cfl_subtract_average_16x8_sse2
Unexecuted instantiation: cfl_subtract_average_16x16_sse2
Unexecuted instantiation: cfl_subtract_average_16x32_sse2
Unexecuted instantiation: cfl_subtract_average_32x8_sse2
Unexecuted instantiation: cfl_subtract_average_32x16_sse2
Unexecuted instantiation: cfl_subtract_average_32x32_sse2
cfl_subtract_average_16x4_avx2
Line
Count
Source
178
118k
                                                        int16_t *dst) {      \
179
118k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
118k
                            num_pel_log2);                                   \
181
118k
  }
cfl_subtract_average_16x8_avx2
Line
Count
Source
178
103k
                                                        int16_t *dst) {      \
179
103k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
103k
                            num_pel_log2);                                   \
181
103k
  }
cfl_subtract_average_16x16_avx2
Line
Count
Source
178
131k
                                                        int16_t *dst) {      \
179
131k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
131k
                            num_pel_log2);                                   \
181
131k
  }
cfl_subtract_average_16x32_avx2
Line
Count
Source
178
20.2k
                                                        int16_t *dst) {      \
179
20.2k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
20.2k
                            num_pel_log2);                                   \
181
20.2k
  }
cfl_subtract_average_32x8_avx2
Line
Count
Source
178
47.0k
                                                        int16_t *dst) {      \
179
47.0k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
47.0k
                            num_pel_log2);                                   \
181
47.0k
  }
cfl_subtract_average_32x16_avx2
Line
Count
Source
178
22.6k
                                                        int16_t *dst) {      \
179
22.6k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
22.6k
                            num_pel_log2);                                   \
181
22.6k
  }
cfl_subtract_average_32x32_avx2
Line
Count
Source
178
37.4k
                                                        int16_t *dst) {      \
179
37.4k
    subtract_average_##arch(src, dst, width, height, round_offset,           \
180
37.4k
                            num_pel_log2);                                   \
181
37.4k
  }
182
183
// Declare size-specific wrappers for all valid CfL sizes.
184
#define CFL_SUB_AVG_FN(arch)                                              \
185
  CFL_SUB_AVG_X(arch, 4, 4, 8, 4)                                         \
186
  CFL_SUB_AVG_X(arch, 4, 8, 16, 5)                                        \
187
  CFL_SUB_AVG_X(arch, 4, 16, 32, 6)                                       \
188
  CFL_SUB_AVG_X(arch, 8, 4, 16, 5)                                        \
189
  CFL_SUB_AVG_X(arch, 8, 8, 32, 6)                                        \
190
  CFL_SUB_AVG_X(arch, 8, 16, 64, 7)                                       \
191
  CFL_SUB_AVG_X(arch, 8, 32, 128, 8)                                      \
192
  CFL_SUB_AVG_X(arch, 16, 4, 32, 6)                                       \
193
  CFL_SUB_AVG_X(arch, 16, 8, 64, 7)                                       \
194
  CFL_SUB_AVG_X(arch, 16, 16, 128, 8)                                     \
195
  CFL_SUB_AVG_X(arch, 16, 32, 256, 9)                                     \
196
  CFL_SUB_AVG_X(arch, 32, 8, 128, 8)                                      \
197
  CFL_SUB_AVG_X(arch, 32, 16, 256, 9)                                     \
198
  CFL_SUB_AVG_X(arch, 32, 32, 512, 10)                                    \
199
  cfl_subtract_average_fn cfl_get_subtract_average_fn_##arch(             \
200
0
      TX_SIZE tx_size) {                                                  \
201
0
    static const cfl_subtract_average_fn sub_avg[TX_SIZES_ALL] = {        \
202
0
      cfl_subtract_average_4x4_##arch,   /* 4x4 */                        \
203
0
      cfl_subtract_average_8x8_##arch,   /* 8x8 */                        \
204
0
      cfl_subtract_average_16x16_##arch, /* 16x16 */                      \
205
0
      cfl_subtract_average_32x32_##arch, /* 32x32 */                      \
206
0
      NULL,                              /* 64x64 (invalid CFL size) */   \
207
0
      cfl_subtract_average_4x8_##arch,   /* 4x8 */                        \
208
0
      cfl_subtract_average_8x4_##arch,   /* 8x4 */                        \
209
0
      cfl_subtract_average_8x16_##arch,  /* 8x16 */                       \
210
0
      cfl_subtract_average_16x8_##arch,  /* 16x8 */                       \
211
0
      cfl_subtract_average_16x32_##arch, /* 16x32 */                      \
212
0
      cfl_subtract_average_32x16_##arch, /* 32x16 */                      \
213
0
      NULL,                              /* 32x64 (invalid CFL size) */   \
214
0
      NULL,                              /* 64x32 (invalid CFL size) */   \
215
0
      cfl_subtract_average_4x16_##arch,  /* 4x16 (invalid CFL size) */    \
216
0
      cfl_subtract_average_16x4_##arch,  /* 16x4 (invalid CFL size) */    \
217
0
      cfl_subtract_average_8x32_##arch,  /* 8x32 (invalid CFL size) */    \
218
0
      cfl_subtract_average_32x8_##arch,  /* 32x8 (invalid CFL size) */    \
219
0
      NULL,                              /* 16x64 (invalid CFL size) */   \
220
0
      NULL,                              /* 64x16 (invalid CFL size) */   \
221
0
    };                                                                    \
222
0
    /* Modulo TX_SIZES_ALL to ensure that an attacker won't be able to */ \
223
0
    /* index the function pointer array out of bounds. */                 \
224
0
    return sub_avg[tx_size % TX_SIZES_ALL];                               \
225
0
  }
Unexecuted instantiation: cfl_get_subtract_average_fn_c
Unexecuted instantiation: cfl_get_subtract_average_fn_sse2
226
227
#define CFL_PREDICT_lbd(arch, width, height)                                   \
228
  void cfl_predict_lbd_##width##x##height##_##arch(                            \
229
      const int16_t *pred_buf_q3, uint8_t *dst, int dst_stride, int alpha_q3); \
230
  void cfl_predict_lbd_##width##x##height##_##arch(                            \
231
      const int16_t *pred_buf_q3, uint8_t *dst, int dst_stride,                \
232
1.40M
      int alpha_q3) {                                                          \
233
1.40M
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
1.40M
                           height);                                            \
235
1.40M
  }
Unexecuted instantiation: cfl_predict_lbd_4x4_c
Unexecuted instantiation: cfl_predict_lbd_4x8_c
Unexecuted instantiation: cfl_predict_lbd_4x16_c
Unexecuted instantiation: cfl_predict_lbd_8x4_c
Unexecuted instantiation: cfl_predict_lbd_8x8_c
Unexecuted instantiation: cfl_predict_lbd_8x16_c
Unexecuted instantiation: cfl_predict_lbd_8x32_c
Unexecuted instantiation: cfl_predict_lbd_16x4_c
Unexecuted instantiation: cfl_predict_lbd_16x8_c
Unexecuted instantiation: cfl_predict_lbd_16x16_c
Unexecuted instantiation: cfl_predict_lbd_16x32_c
Unexecuted instantiation: cfl_predict_lbd_32x8_c
Unexecuted instantiation: cfl_predict_lbd_32x16_c
Unexecuted instantiation: cfl_predict_lbd_32x32_c
cfl_predict_lbd_4x4_ssse3
Line
Count
Source
232
305k
      int alpha_q3) {                                                          \
233
305k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
305k
                           height);                                            \
235
305k
  }
cfl_predict_lbd_4x8_ssse3
Line
Count
Source
232
112k
      int alpha_q3) {                                                          \
233
112k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
112k
                           height);                                            \
235
112k
  }
cfl_predict_lbd_4x16_ssse3
Line
Count
Source
232
82.7k
      int alpha_q3) {                                                          \
233
82.7k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
82.7k
                           height);                                            \
235
82.7k
  }
cfl_predict_lbd_8x4_ssse3
Line
Count
Source
232
164k
      int alpha_q3) {                                                          \
233
164k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
164k
                           height);                                            \
235
164k
  }
cfl_predict_lbd_8x8_ssse3
Line
Count
Source
232
210k
      int alpha_q3) {                                                          \
233
210k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
210k
                           height);                                            \
235
210k
  }
cfl_predict_lbd_8x16_ssse3
Line
Count
Source
232
64.1k
      int alpha_q3) {                                                          \
233
64.1k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
64.1k
                           height);                                            \
235
64.1k
  }
cfl_predict_lbd_8x32_ssse3
Line
Count
Source
232
44.0k
      int alpha_q3) {                                                          \
233
44.0k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
44.0k
                           height);                                            \
235
44.0k
  }
cfl_predict_lbd_16x4_ssse3
Line
Count
Source
232
106k
      int alpha_q3) {                                                          \
233
106k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
106k
                           height);                                            \
235
106k
  }
cfl_predict_lbd_16x8_ssse3
Line
Count
Source
232
83.9k
      int alpha_q3) {                                                          \
233
83.9k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
83.9k
                           height);                                            \
235
83.9k
  }
cfl_predict_lbd_16x16_ssse3
Line
Count
Source
232
124k
      int alpha_q3) {                                                          \
233
124k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
124k
                           height);                                            \
235
124k
  }
cfl_predict_lbd_16x32_ssse3
Line
Count
Source
232
20.9k
      int alpha_q3) {                                                          \
233
20.9k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
20.9k
                           height);                                            \
235
20.9k
  }
Unexecuted instantiation: cfl_predict_lbd_32x8_ssse3
Unexecuted instantiation: cfl_predict_lbd_32x16_ssse3
Unexecuted instantiation: cfl_predict_lbd_32x32_ssse3
cfl_predict_lbd_32x8_avx2
Line
Count
Source
232
31.7k
      int alpha_q3) {                                                          \
233
31.7k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
31.7k
                           height);                                            \
235
31.7k
  }
cfl_predict_lbd_32x16_avx2
Line
Count
Source
232
19.6k
      int alpha_q3) {                                                          \
233
19.6k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
19.6k
                           height);                                            \
235
19.6k
  }
cfl_predict_lbd_32x32_avx2
Line
Count
Source
232
35.8k
      int alpha_q3) {                                                          \
233
35.8k
    cfl_predict_lbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, width,      \
234
35.8k
                           height);                                            \
235
35.8k
  }
236
237
#if CONFIG_AV1_HIGHBITDEPTH
238
#define CFL_PREDICT_hbd(arch, width, height)                                   \
239
  void cfl_predict_hbd_##width##x##height##_##arch(                            \
240
      const int16_t *pred_buf_q3, uint16_t *dst, int dst_stride, int alpha_q3, \
241
      int bd);                                                                 \
242
  void cfl_predict_hbd_##width##x##height##_##arch(                            \
243
      const int16_t *pred_buf_q3, uint16_t *dst, int dst_stride, int alpha_q3, \
244
1.57M
      int bd) {                                                                \
245
1.57M
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
1.57M
                           height);                                            \
247
1.57M
  }
Unexecuted instantiation: cfl_predict_hbd_4x4_c
Unexecuted instantiation: cfl_predict_hbd_4x8_c
Unexecuted instantiation: cfl_predict_hbd_4x16_c
Unexecuted instantiation: cfl_predict_hbd_8x4_c
Unexecuted instantiation: cfl_predict_hbd_8x8_c
Unexecuted instantiation: cfl_predict_hbd_8x16_c
Unexecuted instantiation: cfl_predict_hbd_8x32_c
Unexecuted instantiation: cfl_predict_hbd_16x4_c
Unexecuted instantiation: cfl_predict_hbd_16x8_c
Unexecuted instantiation: cfl_predict_hbd_16x16_c
Unexecuted instantiation: cfl_predict_hbd_16x32_c
Unexecuted instantiation: cfl_predict_hbd_32x8_c
Unexecuted instantiation: cfl_predict_hbd_32x16_c
Unexecuted instantiation: cfl_predict_hbd_32x32_c
cfl_predict_hbd_4x4_ssse3
Line
Count
Source
244
233k
      int bd) {                                                                \
245
233k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
233k
                           height);                                            \
247
233k
  }
cfl_predict_hbd_4x8_ssse3
Line
Count
Source
244
105k
      int bd) {                                                                \
245
105k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
105k
                           height);                                            \
247
105k
  }
cfl_predict_hbd_4x16_ssse3
Line
Count
Source
244
99.7k
      int bd) {                                                                \
245
99.7k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
99.7k
                           height);                                            \
247
99.7k
  }
cfl_predict_hbd_8x4_ssse3
Line
Count
Source
244
183k
      int bd) {                                                                \
245
183k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
183k
                           height);                                            \
247
183k
  }
cfl_predict_hbd_8x8_ssse3
Line
Count
Source
244
258k
      int bd) {                                                                \
245
258k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
258k
                           height);                                            \
247
258k
  }
cfl_predict_hbd_8x16_ssse3
Line
Count
Source
244
104k
      int bd) {                                                                \
245
104k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
104k
                           height);                                            \
247
104k
  }
cfl_predict_hbd_8x32_ssse3
Line
Count
Source
244
47.3k
      int bd) {                                                                \
245
47.3k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
47.3k
                           height);                                            \
247
47.3k
  }
Unexecuted instantiation: cfl_predict_hbd_16x4_ssse3
Unexecuted instantiation: cfl_predict_hbd_16x8_ssse3
Unexecuted instantiation: cfl_predict_hbd_16x16_ssse3
Unexecuted instantiation: cfl_predict_hbd_16x32_ssse3
Unexecuted instantiation: cfl_predict_hbd_32x8_ssse3
Unexecuted instantiation: cfl_predict_hbd_32x16_ssse3
Unexecuted instantiation: cfl_predict_hbd_32x32_ssse3
cfl_predict_hbd_16x4_avx2
Line
Count
Source
244
130k
      int bd) {                                                                \
245
130k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
130k
                           height);                                            \
247
130k
  }
cfl_predict_hbd_16x8_avx2
Line
Count
Source
244
122k
      int bd) {                                                                \
245
122k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
122k
                           height);                                            \
247
122k
  }
cfl_predict_hbd_16x16_avx2
Line
Count
Source
244
138k
      int bd) {                                                                \
245
138k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
138k
                           height);                                            \
247
138k
  }
cfl_predict_hbd_16x32_avx2
Line
Count
Source
244
19.5k
      int bd) {                                                                \
245
19.5k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
19.5k
                           height);                                            \
247
19.5k
  }
cfl_predict_hbd_32x8_avx2
Line
Count
Source
244
62.2k
      int bd) {                                                                \
245
62.2k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
62.2k
                           height);                                            \
247
62.2k
  }
cfl_predict_hbd_32x16_avx2
Line
Count
Source
244
25.7k
      int bd) {                                                                \
245
25.7k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
25.7k
                           height);                                            \
247
25.7k
  }
cfl_predict_hbd_32x32_avx2
Line
Count
Source
244
38.9k
      int bd) {                                                                \
245
38.9k
    cfl_predict_hbd_##arch(pred_buf_q3, dst, dst_stride, alpha_q3, bd, width,  \
246
38.9k
                           height);                                            \
247
38.9k
  }
248
#endif
249
250
// This wrapper exists because clang format does not like calling macros with
251
// lowercase letters.
252
#define CFL_PREDICT_X(arch, width, height, bd) \
253
  CFL_PREDICT_##bd(arch, width, height)
254
255
#define CFL_PREDICT_FN(arch, bd)                                            \
256
  CFL_PREDICT_X(arch, 4, 4, bd)                                             \
257
  CFL_PREDICT_X(arch, 4, 8, bd)                                             \
258
  CFL_PREDICT_X(arch, 4, 16, bd)                                            \
259
  CFL_PREDICT_X(arch, 8, 4, bd)                                             \
260
  CFL_PREDICT_X(arch, 8, 8, bd)                                             \
261
  CFL_PREDICT_X(arch, 8, 16, bd)                                            \
262
  CFL_PREDICT_X(arch, 8, 32, bd)                                            \
263
  CFL_PREDICT_X(arch, 16, 4, bd)                                            \
264
  CFL_PREDICT_X(arch, 16, 8, bd)                                            \
265
  CFL_PREDICT_X(arch, 16, 16, bd)                                           \
266
  CFL_PREDICT_X(arch, 16, 32, bd)                                           \
267
  CFL_PREDICT_X(arch, 32, 8, bd)                                            \
268
  CFL_PREDICT_X(arch, 32, 16, bd)                                           \
269
  CFL_PREDICT_X(arch, 32, 32, bd)                                           \
270
0
  cfl_predict_##bd##_fn cfl_get_predict_##bd##_fn_##arch(TX_SIZE tx_size) { \
271
0
    static const cfl_predict_##bd##_fn pred[TX_SIZES_ALL] = {               \
272
0
      cfl_predict_##bd##_4x4_##arch,   /* 4x4 */                            \
273
0
      cfl_predict_##bd##_8x8_##arch,   /* 8x8 */                            \
274
0
      cfl_predict_##bd##_16x16_##arch, /* 16x16 */                          \
275
0
      cfl_predict_##bd##_32x32_##arch, /* 32x32 */                          \
276
0
      NULL,                            /* 64x64 (invalid CFL size) */       \
277
0
      cfl_predict_##bd##_4x8_##arch,   /* 4x8 */                            \
278
0
      cfl_predict_##bd##_8x4_##arch,   /* 8x4 */                            \
279
0
      cfl_predict_##bd##_8x16_##arch,  /* 8x16 */                           \
280
0
      cfl_predict_##bd##_16x8_##arch,  /* 16x8 */                           \
281
0
      cfl_predict_##bd##_16x32_##arch, /* 16x32 */                          \
282
0
      cfl_predict_##bd##_32x16_##arch, /* 32x16 */                          \
283
0
      NULL,                            /* 32x64 (invalid CFL size) */       \
284
0
      NULL,                            /* 64x32 (invalid CFL size) */       \
285
0
      cfl_predict_##bd##_4x16_##arch,  /* 4x16  */                          \
286
0
      cfl_predict_##bd##_16x4_##arch,  /* 16x4  */                          \
287
0
      cfl_predict_##bd##_8x32_##arch,  /* 8x32  */                          \
288
0
      cfl_predict_##bd##_32x8_##arch,  /* 32x8  */                          \
289
0
      NULL,                            /* 16x64 (invalid CFL size) */       \
290
0
      NULL,                            /* 64x16 (invalid CFL size) */       \
291
0
    };                                                                      \
292
0
    /* Modulo TX_SIZES_ALL to ensure that an attacker won't be able to */   \
293
0
    /* index the function pointer array out of bounds. */                   \
294
0
    return pred[tx_size % TX_SIZES_ALL];                                    \
295
0
  }
Unexecuted instantiation: cfl_get_predict_lbd_fn_c
Unexecuted instantiation: cfl_get_predict_hbd_fn_c
Unexecuted instantiation: cfl_get_predict_lbd_fn_ssse3
Unexecuted instantiation: cfl_get_predict_hbd_fn_ssse3
296
297
#endif  // AOM_AV1_COMMON_CFL_H_