Coverage Report

Created: 2025-06-24 07:53

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