Coverage Report

Created: 2026-06-19 06:17

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/brotli/c/dec/huffman.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
/* Utilities for building Huffman decoding tables. */
8
9
#include "huffman.h"
10
11
#include "../common/constants.h"
12
#include "../common/platform.h"
13
14
#if defined(__cplusplus) || defined(c_plusplus)
15
extern "C" {
16
#endif
17
18
146k
#define BROTLI_REVERSE_BITS_MAX 8
19
20
#if defined(BROTLI_RBIT)
21
#define BROTLI_REVERSE_BITS_BASE \
22
  ((sizeof(brotli_reg_t) << 3) - BROTLI_REVERSE_BITS_MAX)
23
#else
24
146k
#define BROTLI_REVERSE_BITS_BASE 0
25
static BROTLI_MODEL("small")
26
uint8_t kReverseBits[1 << BROTLI_REVERSE_BITS_MAX] = {
27
  0x00, 0x80, 0x40, 0xC0, 0x20, 0xA0, 0x60, 0xE0,
28
  0x10, 0x90, 0x50, 0xD0, 0x30, 0xB0, 0x70, 0xF0,
29
  0x08, 0x88, 0x48, 0xC8, 0x28, 0xA8, 0x68, 0xE8,
30
  0x18, 0x98, 0x58, 0xD8, 0x38, 0xB8, 0x78, 0xF8,
31
  0x04, 0x84, 0x44, 0xC4, 0x24, 0xA4, 0x64, 0xE4,
32
  0x14, 0x94, 0x54, 0xD4, 0x34, 0xB4, 0x74, 0xF4,
33
  0x0C, 0x8C, 0x4C, 0xCC, 0x2C, 0xAC, 0x6C, 0xEC,
34
  0x1C, 0x9C, 0x5C, 0xDC, 0x3C, 0xBC, 0x7C, 0xFC,
35
  0x02, 0x82, 0x42, 0xC2, 0x22, 0xA2, 0x62, 0xE2,
36
  0x12, 0x92, 0x52, 0xD2, 0x32, 0xB2, 0x72, 0xF2,
37
  0x0A, 0x8A, 0x4A, 0xCA, 0x2A, 0xAA, 0x6A, 0xEA,
38
  0x1A, 0x9A, 0x5A, 0xDA, 0x3A, 0xBA, 0x7A, 0xFA,
39
  0x06, 0x86, 0x46, 0xC6, 0x26, 0xA6, 0x66, 0xE6,
40
  0x16, 0x96, 0x56, 0xD6, 0x36, 0xB6, 0x76, 0xF6,
41
  0x0E, 0x8E, 0x4E, 0xCE, 0x2E, 0xAE, 0x6E, 0xEE,
42
  0x1E, 0x9E, 0x5E, 0xDE, 0x3E, 0xBE, 0x7E, 0xFE,
43
  0x01, 0x81, 0x41, 0xC1, 0x21, 0xA1, 0x61, 0xE1,
44
  0x11, 0x91, 0x51, 0xD1, 0x31, 0xB1, 0x71, 0xF1,
45
  0x09, 0x89, 0x49, 0xC9, 0x29, 0xA9, 0x69, 0xE9,
46
  0x19, 0x99, 0x59, 0xD9, 0x39, 0xB9, 0x79, 0xF9,
47
  0x05, 0x85, 0x45, 0xC5, 0x25, 0xA5, 0x65, 0xE5,
48
  0x15, 0x95, 0x55, 0xD5, 0x35, 0xB5, 0x75, 0xF5,
49
  0x0D, 0x8D, 0x4D, 0xCD, 0x2D, 0xAD, 0x6D, 0xED,
50
  0x1D, 0x9D, 0x5D, 0xDD, 0x3D, 0xBD, 0x7D, 0xFD,
51
  0x03, 0x83, 0x43, 0xC3, 0x23, 0xA3, 0x63, 0xE3,
52
  0x13, 0x93, 0x53, 0xD3, 0x33, 0xB3, 0x73, 0xF3,
53
  0x0B, 0x8B, 0x4B, 0xCB, 0x2B, 0xAB, 0x6B, 0xEB,
54
  0x1B, 0x9B, 0x5B, 0xDB, 0x3B, 0xBB, 0x7B, 0xFB,
55
  0x07, 0x87, 0x47, 0xC7, 0x27, 0xA7, 0x67, 0xE7,
56
  0x17, 0x97, 0x57, 0xD7, 0x37, 0xB7, 0x77, 0xF7,
57
  0x0F, 0x8F, 0x4F, 0xCF, 0x2F, 0xAF, 0x6F, 0xEF,
58
  0x1F, 0x9F, 0x5F, 0xDF, 0x3F, 0xBF, 0x7F, 0xFF
59
};
60
#endif  /* BROTLI_RBIT */
61
62
#define BROTLI_REVERSE_BITS_LOWEST \
63
146k
  ((brotli_reg_t)1 << (BROTLI_REVERSE_BITS_MAX - 1 + BROTLI_REVERSE_BITS_BASE))
64
65
/* Returns reverse(num >> BROTLI_REVERSE_BITS_BASE, BROTLI_REVERSE_BITS_MAX),
66
   where reverse(value, len) is the bit-wise reversal of the len least
67
   significant bits of value. */
68
356k
static BROTLI_INLINE brotli_reg_t BrotliReverseBits(brotli_reg_t num) {
69
#if defined(BROTLI_RBIT)
70
  return BROTLI_RBIT(num);
71
#else
72
356k
  return kReverseBits[num];
73
356k
#endif
74
356k
}
75
76
/* Stores code in table[0], table[step], table[2*step], ..., table[end] */
77
/* Assumes that end is an integer multiple of step */
78
static BROTLI_INLINE void ReplicateValue(HuffmanCode* table,
79
                                         int step, int end,
80
321k
                                         HuffmanCode code) {
81
913k
  do {
82
913k
    end -= step;
83
913k
    table[end] = code;
84
913k
  } while (end > 0);
85
321k
}
86
87
/* Returns the table width of the next 2nd level table. |count| is the histogram
88
   of bit lengths for the remaining symbols, |len| is the code length of the
89
   next processed symbol. */
90
static BROTLI_INLINE int NextTableBitSize(const uint16_t* const count,
91
34.8k
                                          int len, int root_bits) {
92
34.8k
  int left = 1 << (len - root_bits);
93
36.2k
  while (len < BROTLI_HUFFMAN_MAX_CODE_LENGTH) {
94
35.8k
    left -= count[len];
95
35.8k
    if (left <= 0) break;
96
1.47k
    ++len;
97
1.47k
    left <<= 1;
98
1.47k
  }
99
34.8k
  return len - root_bits;
100
34.8k
}
101
102
void BrotliBuildCodeLengthsHuffmanTable(HuffmanCode* table,
103
                                        const uint8_t* const code_lengths,
104
10.9k
                                        uint16_t* count) {
105
10.9k
  HuffmanCode code;       /* current table entry */
106
10.9k
  int symbol;             /* symbol index in original or sorted table */
107
10.9k
  brotli_reg_t key;       /* prefix code */
108
10.9k
  brotli_reg_t key_step;  /* prefix code addend */
109
10.9k
  int step;               /* step size to replicate values in current table */
110
10.9k
  int table_size;         /* size of current table */
111
10.9k
  int sorted[BROTLI_CODE_LENGTH_CODES];  /* symbols sorted by code length */
112
  /* offsets in sorted table for each length */
113
10.9k
  int offset[BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH + 1];
114
10.9k
  int bits;
115
10.9k
  int bits_count;
116
10.9k
  BROTLI_DCHECK(BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH <=
117
10.9k
                BROTLI_REVERSE_BITS_MAX);
118
10.9k
  BROTLI_DCHECK(BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH == 5);
119
120
  /* Generate offsets into sorted symbol table by code length. */
121
10.9k
  symbol = -1;
122
10.9k
  bits = 1;
123
  /* BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH == 5 */
124
10.9k
  BROTLI_REPEAT_5({
125
10.9k
    symbol += count[bits];
126
10.9k
    offset[bits] = symbol;
127
10.9k
    bits++;
128
10.9k
  });
129
  /* Symbols with code length 0 are placed after all other symbols. */
130
10.9k
  offset[0] = BROTLI_CODE_LENGTH_CODES - 1;
131
132
  /* Sort symbols by length, by symbol order within each length. */
133
10.9k
  symbol = BROTLI_CODE_LENGTH_CODES;
134
32.8k
  do {
135
32.8k
    BROTLI_REPEAT_6({
136
32.8k
      symbol--;
137
32.8k
      sorted[offset[code_lengths[symbol]]--] = symbol;
138
32.8k
    });
139
32.8k
  } while (symbol != 0);
140
141
10.9k
  table_size = 1 << BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH;
142
143
  /* Special case: all symbols but one have 0 code length. */
144
10.9k
  if (offset[0] == 0) {
145
690
    code = ConstructHuffmanCode(0, (uint16_t)sorted[0]);
146
22.7k
    for (key = 0; key < (brotli_reg_t)table_size; ++key) {
147
22.0k
      table[key] = code;
148
22.0k
    }
149
690
    return;
150
690
  }
151
152
  /* Fill in table. */
153
10.2k
  key = 0;
154
10.2k
  key_step = BROTLI_REVERSE_BITS_LOWEST;
155
10.2k
  symbol = 0;
156
10.2k
  bits = 1;
157
10.2k
  step = 2;
158
51.3k
  do {
159
91.2k
    for (bits_count = count[bits]; bits_count != 0; --bits_count) {
160
39.9k
      code = ConstructHuffmanCode((uint8_t)bits, (uint16_t)sorted[symbol++]);
161
39.9k
      ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code);
162
39.9k
      key += key_step;
163
39.9k
    }
164
51.3k
    step <<= 1;
165
51.3k
    key_step >>= 1;
166
51.3k
  } while (++bits <= BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH);
167
10.2k
}
168
169
uint32_t BrotliBuildHuffmanTable(HuffmanCode* root_table,
170
                                 int root_bits,
171
                                 const uint16_t* const symbol_lists,
172
10.5k
                                 uint16_t* count) {
173
10.5k
  HuffmanCode code;       /* current table entry */
174
10.5k
  HuffmanCode* table;     /* next available space in table */
175
10.5k
  int len;                /* current code length */
176
10.5k
  int symbol;             /* symbol index in original or sorted table */
177
10.5k
  brotli_reg_t key;       /* prefix code */
178
10.5k
  brotli_reg_t key_step;  /* prefix code addend */
179
10.5k
  brotli_reg_t sub_key;   /* 2nd level table prefix code */
180
10.5k
  brotli_reg_t sub_key_step;  /* 2nd level table prefix code addend */
181
10.5k
  int step;               /* step size to replicate values in current table */
182
10.5k
  int table_bits;         /* key length of current table */
183
10.5k
  int table_size;         /* size of current table */
184
10.5k
  int total_size;         /* sum of root table size and 2nd level table sizes */
185
10.5k
  int max_length = -1;
186
10.5k
  int bits;
187
10.5k
  int bits_count;
188
189
10.5k
  BROTLI_DCHECK(root_bits <= BROTLI_REVERSE_BITS_MAX);
190
10.5k
  BROTLI_DCHECK(BROTLI_HUFFMAN_MAX_CODE_LENGTH - root_bits <=
191
10.5k
                BROTLI_REVERSE_BITS_MAX);
192
193
137k
  while (symbol_lists[max_length] == 0xFFFF) max_length--;
194
10.5k
  max_length += BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1;
195
196
10.5k
  table = root_table;
197
10.5k
  table_bits = root_bits;
198
10.5k
  table_size = 1 << table_bits;
199
10.5k
  total_size = table_size;
200
201
  /* Fill in the root table. Reduce the table size to if possible,
202
     and create the repetitions by memcpy. */
203
10.5k
  if (table_bits > max_length) {
204
8.84k
    table_bits = max_length;
205
8.84k
    table_size = 1 << table_bits;
206
8.84k
  }
207
10.5k
  key = 0;
208
10.5k
  key_step = BROTLI_REVERSE_BITS_LOWEST;
209
10.5k
  bits = 1;
210
10.5k
  step = 2;
211
27.2k
  do {
212
27.2k
    symbol = bits - (BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1);
213
214k
    for (bits_count = count[bits]; bits_count != 0; --bits_count) {
214
187k
      symbol = symbol_lists[symbol];
215
187k
      code = ConstructHuffmanCode((uint8_t)bits, (uint16_t)symbol);
216
187k
      ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code);
217
187k
      key += key_step;
218
187k
    }
219
27.2k
    step <<= 1;
220
27.2k
    key_step >>= 1;
221
27.2k
  } while (++bits <= table_bits);
222
223
  /* If root_bits != table_bits then replicate to fill the remaining slots. */
224
67.3k
  while (total_size != table_size) {
225
56.8k
    memcpy(&table[table_size], &table[0],
226
56.8k
           (size_t)table_size * sizeof(table[0]));
227
56.8k
    table_size <<= 1;
228
56.8k
  }
229
230
  /* Fill in 2nd level tables and add pointers to root table. */
231
10.5k
  key_step = BROTLI_REVERSE_BITS_LOWEST >> (root_bits - 1);
232
10.5k
  sub_key = (BROTLI_REVERSE_BITS_LOWEST << 1);
233
10.5k
  sub_key_step = BROTLI_REVERSE_BITS_LOWEST;
234
14.0k
  for (len = root_bits + 1, step = 2; len <= max_length; ++len) {
235
3.49k
    symbol = len - (BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1);
236
97.6k
    for (; count[len] != 0; --count[len]) {
237
94.1k
      if (sub_key == (BROTLI_REVERSE_BITS_LOWEST << 1U)) {
238
34.8k
        table += table_size;
239
34.8k
        table_bits = NextTableBitSize(count, len, root_bits);
240
34.8k
        table_size = 1 << table_bits;
241
34.8k
        total_size += table_size;
242
34.8k
        sub_key = BrotliReverseBits(key);
243
34.8k
        key += key_step;
244
34.8k
        root_table[sub_key] = ConstructHuffmanCode(
245
34.8k
            (uint8_t)(table_bits + root_bits),
246
34.8k
            (uint16_t)(((size_t)(table - root_table)) - sub_key));
247
34.8k
        sub_key = 0;
248
34.8k
      }
249
94.1k
      symbol = symbol_lists[symbol];
250
94.1k
      code = ConstructHuffmanCode((uint8_t)(len - root_bits), (uint16_t)symbol);
251
94.1k
      ReplicateValue(
252
94.1k
          &table[BrotliReverseBits(sub_key)], step, table_size, code);
253
94.1k
      sub_key += sub_key_step;
254
94.1k
    }
255
3.49k
    step <<= 1;
256
3.49k
    sub_key_step >>= 1;
257
3.49k
  }
258
10.5k
  return (uint32_t)total_size;
259
10.5k
}
260
261
uint32_t BrotliBuildSimpleHuffmanTable(HuffmanCode* table,
262
                                       int root_bits,
263
                                       uint16_t* val,
264
50.2k
                                       uint32_t num_symbols) {
265
50.2k
  uint32_t table_size = 1;
266
50.2k
  const uint32_t goal_size = 1U << root_bits;
267
50.2k
  switch (num_symbols) {
268
39.0k
    case 0:
269
39.0k
      table[0] = ConstructHuffmanCode(0, val[0]);
270
39.0k
      break;
271
6.25k
    case 1:
272
6.25k
      if (val[1] > val[0]) {
273
1.76k
        table[0] = ConstructHuffmanCode(1, val[0]);
274
1.76k
        table[1] = ConstructHuffmanCode(1, val[1]);
275
4.49k
      } else {
276
4.49k
        table[0] = ConstructHuffmanCode(1, val[1]);
277
4.49k
        table[1] = ConstructHuffmanCode(1, val[0]);
278
4.49k
      }
279
6.25k
      table_size = 2;
280
6.25k
      break;
281
1.84k
    case 2:
282
1.84k
      table[0] = ConstructHuffmanCode(1, val[0]);
283
1.84k
      table[2] = ConstructHuffmanCode(1, val[0]);
284
1.84k
      if (val[2] > val[1]) {
285
851
        table[1] = ConstructHuffmanCode(2, val[1]);
286
851
        table[3] = ConstructHuffmanCode(2, val[2]);
287
989
      } else {
288
989
        table[1] = ConstructHuffmanCode(2, val[2]);
289
989
        table[3] = ConstructHuffmanCode(2, val[1]);
290
989
      }
291
1.84k
      table_size = 4;
292
1.84k
      break;
293
2.56k
    case 3: {
294
2.56k
      int i, k;
295
10.2k
      for (i = 0; i < 3; ++i) {
296
23.0k
        for (k = i + 1; k < 4; ++k) {
297
15.3k
          if (val[k] < val[i]) {
298
8.51k
            uint16_t t = val[k];
299
8.51k
            val[k] = val[i];
300
8.51k
            val[i] = t;
301
8.51k
          }
302
15.3k
        }
303
7.69k
      }
304
2.56k
      table[0] = ConstructHuffmanCode(2, val[0]);
305
2.56k
      table[2] = ConstructHuffmanCode(2, val[1]);
306
2.56k
      table[1] = ConstructHuffmanCode(2, val[2]);
307
2.56k
      table[3] = ConstructHuffmanCode(2, val[3]);
308
2.56k
      table_size = 4;
309
2.56k
      break;
310
0
    }
311
580
    case 4: {
312
580
      if (val[3] < val[2]) {
313
252
        uint16_t t = val[3];
314
252
        val[3] = val[2];
315
252
        val[2] = t;
316
252
      }
317
580
      table[0] = ConstructHuffmanCode(1, val[0]);
318
580
      table[1] = ConstructHuffmanCode(2, val[1]);
319
580
      table[2] = ConstructHuffmanCode(1, val[0]);
320
580
      table[3] = ConstructHuffmanCode(3, val[2]);
321
580
      table[4] = ConstructHuffmanCode(1, val[0]);
322
580
      table[5] = ConstructHuffmanCode(2, val[1]);
323
580
      table[6] = ConstructHuffmanCode(1, val[0]);
324
580
      table[7] = ConstructHuffmanCode(3, val[3]);
325
580
      table_size = 8;
326
580
      break;
327
0
    }
328
50.2k
  }
329
435k
  while (table_size != goal_size) {
330
385k
    memcpy(&table[table_size], &table[0],
331
385k
           (size_t)table_size * sizeof(table[0]));
332
385k
    table_size <<= 1;
333
385k
  }
334
50.2k
  return goal_size;
335
50.2k
}
336
337
#if defined(__cplusplus) || defined(c_plusplus)
338
}  /* extern "C" */
339
#endif