Coverage Report

Created: 2025-11-14 07:32

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjxl/third_party/brotli/c/enc/histogram.c
Line
Count
Source
1
/* Copyright 2013 Google Inc. All Rights Reserved.
2
3
   Distributed under MIT license.
4
   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5
*/
6
7
/* Build per-context histograms of literals, commands and distance codes. */
8
9
#include "histogram.h"
10
11
#include "../common/context.h"
12
#include "../common/platform.h"
13
#include "block_splitter.h"
14
#include "command.h"
15
16
#if defined(__cplusplus) || defined(c_plusplus)
17
extern "C" {
18
#endif
19
20
typedef struct BlockSplitIterator {
21
  const BlockSplit* split_;  /* Not owned. */
22
  size_t idx_;
23
  size_t type_;
24
  size_t length_;
25
} BlockSplitIterator;
26
27
static void InitBlockSplitIterator(BlockSplitIterator* self,
28
0
    const BlockSplit* split) {
29
0
  self->split_ = split;
30
0
  self->idx_ = 0;
31
0
  self->type_ = 0;
32
0
  self->length_ = split->lengths ? split->lengths[0] : 0;
33
0
}
34
35
0
static void BlockSplitIteratorNext(BlockSplitIterator* self) {
36
0
  if (self->length_ == 0) {
37
0
    ++self->idx_;
38
0
    self->type_ = self->split_->types[self->idx_];
39
0
    self->length_ = self->split_->lengths[self->idx_];
40
0
  }
41
0
  --self->length_;
42
0
}
43
44
void BrotliBuildHistogramsWithContext(
45
    const Command* cmds, const size_t num_commands,
46
    const BlockSplit* literal_split, const BlockSplit* insert_and_copy_split,
47
    const BlockSplit* dist_split, const uint8_t* ringbuffer, size_t start_pos,
48
    size_t mask, uint8_t prev_byte, uint8_t prev_byte2,
49
    const ContextType* context_modes, HistogramLiteral* literal_histograms,
50
    HistogramCommand* insert_and_copy_histograms,
51
0
    HistogramDistance* copy_dist_histograms) {
52
0
  size_t pos = start_pos;
53
0
  BlockSplitIterator literal_it;
54
0
  BlockSplitIterator insert_and_copy_it;
55
0
  BlockSplitIterator dist_it;
56
0
  size_t i;
57
58
0
  InitBlockSplitIterator(&literal_it, literal_split);
59
0
  InitBlockSplitIterator(&insert_and_copy_it, insert_and_copy_split);
60
0
  InitBlockSplitIterator(&dist_it, dist_split);
61
0
  for (i = 0; i < num_commands; ++i) {
62
0
    const Command* cmd = &cmds[i];
63
0
    size_t j;
64
0
    BlockSplitIteratorNext(&insert_and_copy_it);
65
0
    HistogramAddCommand(&insert_and_copy_histograms[insert_and_copy_it.type_],
66
0
        cmd->cmd_prefix_);
67
    /* TODO(eustas): unwrap iterator blocks. */
68
0
    for (j = cmd->insert_len_; j != 0; --j) {
69
0
      size_t context;
70
0
      BlockSplitIteratorNext(&literal_it);
71
0
      context = literal_it.type_;
72
0
      if (context_modes) {
73
0
        ContextLut lut = BROTLI_CONTEXT_LUT(context_modes[context]);
74
0
        context = (context << BROTLI_LITERAL_CONTEXT_BITS) +
75
0
            BROTLI_CONTEXT(prev_byte, prev_byte2, lut);
76
0
      }
77
0
      HistogramAddLiteral(&literal_histograms[context],
78
0
          ringbuffer[pos & mask]);
79
0
      prev_byte2 = prev_byte;
80
0
      prev_byte = ringbuffer[pos & mask];
81
0
      ++pos;
82
0
    }
83
0
    pos += CommandCopyLen(cmd);
84
0
    if (CommandCopyLen(cmd)) {
85
0
      prev_byte2 = ringbuffer[(pos - 2) & mask];
86
0
      prev_byte = ringbuffer[(pos - 1) & mask];
87
0
      if (cmd->cmd_prefix_ >= 128) {
88
0
        size_t context;
89
0
        BlockSplitIteratorNext(&dist_it);
90
0
        context = (dist_it.type_ << BROTLI_DISTANCE_CONTEXT_BITS) +
91
0
            CommandDistanceContext(cmd);
92
0
        HistogramAddDistance(&copy_dist_histograms[context],
93
0
            cmd->dist_prefix_ & 0x3FF);
94
0
      }
95
0
    }
96
0
  }
97
0
}
98
99
#if defined(__cplusplus) || defined(c_plusplus)
100
}  /* extern "C" */
101
#endif