Coverage Report

Created: 2025-07-23 08:18

/src/zstd/lib/compress/zstd_compress_sequences.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) Meta Platforms, Inc. and affiliates.
3
 * All rights reserved.
4
 *
5
 * This source code is licensed under both the BSD-style license (found in the
6
 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7
 * in the COPYING file in the root directory of this source tree).
8
 * You may select, at your option, one of the above-listed licenses.
9
 */
10
11
 /*-*************************************
12
 *  Dependencies
13
 ***************************************/
14
#include "zstd_compress_sequences.h"
15
16
/**
17
 * -log2(x / 256) lookup table for x in [0, 256).
18
 * If x == 0: Return 0
19
 * Else: Return floor(-log2(x / 256) * 256)
20
 */
21
static unsigned const kInverseProbabilityLog256[256] = {
22
    0,    2048, 1792, 1642, 1536, 1453, 1386, 1329, 1280, 1236, 1197, 1162,
23
    1130, 1100, 1073, 1047, 1024, 1001, 980,  960,  941,  923,  906,  889,
24
    874,  859,  844,  830,  817,  804,  791,  779,  768,  756,  745,  734,
25
    724,  714,  704,  694,  685,  676,  667,  658,  650,  642,  633,  626,
26
    618,  610,  603,  595,  588,  581,  574,  567,  561,  554,  548,  542,
27
    535,  529,  523,  517,  512,  506,  500,  495,  489,  484,  478,  473,
28
    468,  463,  458,  453,  448,  443,  438,  434,  429,  424,  420,  415,
29
    411,  407,  402,  398,  394,  390,  386,  382,  377,  373,  370,  366,
30
    362,  358,  354,  350,  347,  343,  339,  336,  332,  329,  325,  322,
31
    318,  315,  311,  308,  305,  302,  298,  295,  292,  289,  286,  282,
32
    279,  276,  273,  270,  267,  264,  261,  258,  256,  253,  250,  247,
33
    244,  241,  239,  236,  233,  230,  228,  225,  222,  220,  217,  215,
34
    212,  209,  207,  204,  202,  199,  197,  194,  192,  190,  187,  185,
35
    182,  180,  178,  175,  173,  171,  168,  166,  164,  162,  159,  157,
36
    155,  153,  151,  149,  146,  144,  142,  140,  138,  136,  134,  132,
37
    130,  128,  126,  123,  121,  119,  117,  115,  114,  112,  110,  108,
38
    106,  104,  102,  100,  98,   96,   94,   93,   91,   89,   87,   85,
39
    83,   82,   80,   78,   76,   74,   73,   71,   69,   67,   66,   64,
40
    62,   61,   59,   57,   55,   54,   52,   50,   49,   47,   46,   44,
41
    42,   41,   39,   37,   36,   34,   33,   31,   30,   28,   26,   25,
42
    23,   22,   20,   19,   17,   16,   14,   13,   11,   10,   8,    7,
43
    5,    4,    2,    1,
44
};
45
46
49.9k
static unsigned ZSTD_getFSEMaxSymbolValue(FSE_CTable const* ctable) {
47
49.9k
  void const* ptr = ctable;
48
49.9k
  U16 const* u16ptr = (U16 const*)ptr;
49
49.9k
  U32 const maxSymbolValue = MEM_read16(u16ptr + 1);
50
49.9k
  return maxSymbolValue;
51
49.9k
}
52
53
/**
54
 * Returns true if we should use ncount=-1 else we should
55
 * use ncount=1 for low probability symbols instead.
56
 */
57
static unsigned ZSTD_useLowProbCount(size_t const nbSeq)
58
178k
{
59
    /* Heuristic: This should cover most blocks <= 16K and
60
     * start to fade out after 16K to about 32K depending on
61
     * compressibility.
62
     */
63
178k
    return nbSeq >= 2048;
64
178k
}
65
66
/**
67
 * Returns the cost in bytes of encoding the normalized count header.
68
 * Returns an error if any of the helper functions return an error.
69
 */
70
static size_t ZSTD_NCountCost(unsigned const* count, unsigned const max,
71
                              size_t const nbSeq, unsigned const FSELog)
72
111k
{
73
111k
    BYTE wksp[FSE_NCOUNTBOUND];
74
111k
    S16 norm[MaxSeq + 1];
75
111k
    const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max);
76
111k
    FORWARD_IF_ERROR(FSE_normalizeCount(norm, tableLog, count, nbSeq, max, ZSTD_useLowProbCount(nbSeq)), "");
77
111k
    return FSE_writeNCount(wksp, sizeof(wksp), norm, max, tableLog);
78
111k
}
79
80
/**
81
 * Returns the cost in bits of encoding the distribution described by count
82
 * using the entropy bound.
83
 */
84
static size_t ZSTD_entropyCost(unsigned const* count, unsigned const max, size_t const total)
85
111k
{
86
111k
    unsigned cost = 0;
87
111k
    unsigned s;
88
89
111k
    assert(total > 0);
90
2.86M
    for (s = 0; s <= max; ++s) {
91
2.75M
        unsigned norm = (unsigned)((256 * count[s]) / total);
92
2.75M
        if (count[s] != 0 && norm == 0)
93
229k
            norm = 1;
94
2.75M
        assert(count[s] < total);
95
2.75M
        cost += count[s] * kInverseProbabilityLog256[norm];
96
2.75M
    }
97
111k
    return cost >> 8;
98
111k
}
99
100
/**
101
 * Returns the cost in bits of encoding the distribution in count using ctable.
102
 * Returns an error if ctable cannot represent all the symbols in count.
103
 */
104
size_t ZSTD_fseBitCost(
105
    FSE_CTable const* ctable,
106
    unsigned const* count,
107
    unsigned const max)
108
49.9k
{
109
49.9k
    unsigned const kAccuracyLog = 8;
110
49.9k
    size_t cost = 0;
111
49.9k
    unsigned s;
112
49.9k
    FSE_CState_t cstate;
113
49.9k
    FSE_initCState(&cstate, ctable);
114
49.9k
    if (ZSTD_getFSEMaxSymbolValue(ctable) < max) {
115
15.0k
        DEBUGLOG(5, "Repeat FSE_CTable has maxSymbolValue %u < %u",
116
15.0k
                    ZSTD_getFSEMaxSymbolValue(ctable), max);
117
15.0k
        return ERROR(GENERIC);
118
15.0k
    }
119
701k
    for (s = 0; s <= max; ++s) {
120
679k
        unsigned const tableLog = cstate.stateLog;
121
679k
        unsigned const badCost = (tableLog + 1) << kAccuracyLog;
122
679k
        unsigned const bitCost = FSE_bitCost(cstate.symbolTT, tableLog, s, kAccuracyLog);
123
679k
        if (count[s] == 0)
124
348k
            continue;
125
330k
        if (bitCost >= badCost) {
126
12.6k
            DEBUGLOG(5, "Repeat FSE_CTable has Prob[%u] == 0", s);
127
12.6k
            return ERROR(GENERIC);
128
12.6k
        }
129
317k
        cost += (size_t)count[s] * bitCost;
130
317k
    }
131
22.1k
    return cost >> kAccuracyLog;
132
34.8k
}
133
134
/**
135
 * Returns the cost in bits of encoding the distribution in count using the
136
 * table described by norm. The max symbol support by norm is assumed >= max.
137
 * norm must be valid for every symbol with non-zero probability in count.
138
 */
139
size_t ZSTD_crossEntropyCost(short const* norm, unsigned accuracyLog,
140
                             unsigned const* count, unsigned const max)
141
111k
{
142
111k
    unsigned const shift = 8 - accuracyLog;
143
111k
    size_t cost = 0;
144
111k
    unsigned s;
145
111k
    assert(accuracyLog <= 8);
146
2.86M
    for (s = 0; s <= max; ++s) {
147
2.75M
        unsigned const normAcc = (norm[s] != -1) ? (unsigned)norm[s] : 1;
148
2.75M
        unsigned const norm256 = normAcc << shift;
149
2.75M
        assert(norm256 > 0);
150
2.75M
        assert(norm256 < 256);
151
2.75M
        cost += count[s] * kInverseProbabilityLog256[norm256];
152
2.75M
    }
153
111k
    return cost >> 8;
154
111k
}
155
156
SymbolEncodingType_e
157
ZSTD_selectEncodingType(
158
        FSE_repeat* repeatMode, unsigned const* count, unsigned const max,
159
        size_t const mostFrequent, size_t nbSeq, unsigned const FSELog,
160
        FSE_CTable const* prevCTable,
161
        short const* defaultNorm, U32 defaultNormLog,
162
        ZSTD_DefaultPolicy_e const isDefaultAllowed,
163
        ZSTD_strategy const strategy)
164
160k
{
165
160k
    ZSTD_STATIC_ASSERT(ZSTD_defaultDisallowed == 0 && ZSTD_defaultAllowed != 0);
166
160k
    if (mostFrequent == nbSeq) {
167
48.7k
        *repeatMode = FSE_repeat_none;
168
48.7k
        if (isDefaultAllowed && nbSeq <= 2) {
169
            /* Prefer set_basic over set_rle when there are 2 or fewer symbols,
170
             * since RLE uses 1 byte, but set_basic uses 5-6 bits per symbol.
171
             * If basic encoding isn't possible, always choose RLE.
172
             */
173
42.6k
            DEBUGLOG(5, "Selected set_basic");
174
42.6k
            return set_basic;
175
42.6k
        }
176
6.12k
        DEBUGLOG(5, "Selected set_rle");
177
6.12k
        return set_rle;
178
48.7k
    }
179
111k
    if (strategy < ZSTD_lazy) {
180
0
        if (isDefaultAllowed) {
181
0
            size_t const staticFse_nbSeq_max = 1000;
182
0
            size_t const mult = 10 - strategy;
183
0
            size_t const baseLog = 3;
184
0
            size_t const dynamicFse_nbSeq_min = (((size_t)1 << defaultNormLog) * mult) >> baseLog;  /* 28-36 for offset, 56-72 for lengths */
185
0
            assert(defaultNormLog >= 5 && defaultNormLog <= 6);  /* xx_DEFAULTNORMLOG */
186
0
            assert(mult <= 9 && mult >= 7);
187
0
            if ( (*repeatMode == FSE_repeat_valid)
188
0
              && (nbSeq < staticFse_nbSeq_max) ) {
189
0
                DEBUGLOG(5, "Selected set_repeat");
190
0
                return set_repeat;
191
0
            }
192
0
            if ( (nbSeq < dynamicFse_nbSeq_min)
193
0
              || (mostFrequent < (nbSeq >> (defaultNormLog-1))) ) {
194
0
                DEBUGLOG(5, "Selected set_basic");
195
                /* The format allows default tables to be repeated, but it isn't useful.
196
                 * When using simple heuristics to select encoding type, we don't want
197
                 * to confuse these tables with dictionaries. When running more careful
198
                 * analysis, we don't need to waste time checking both repeating tables
199
                 * and default tables.
200
                 */
201
0
                *repeatMode = FSE_repeat_none;
202
0
                return set_basic;
203
0
            }
204
0
        }
205
111k
    } else {
206
111k
        size_t const basicCost = isDefaultAllowed ? ZSTD_crossEntropyCost(defaultNorm, defaultNormLog, count, max) : ERROR(GENERIC);
207
111k
        size_t const repeatCost = *repeatMode != FSE_repeat_none ? ZSTD_fseBitCost(prevCTable, count, max) : ERROR(GENERIC);
208
111k
        size_t const NCountCost = ZSTD_NCountCost(count, max, nbSeq, FSELog);
209
111k
        size_t const compressedCost = (NCountCost << 3) + ZSTD_entropyCost(count, max, nbSeq);
210
211
111k
        if (isDefaultAllowed) {
212
111k
            assert(!ZSTD_isError(basicCost));
213
111k
            assert(!(*repeatMode == FSE_repeat_valid && ZSTD_isError(repeatCost)));
214
111k
        }
215
111k
        assert(!ZSTD_isError(NCountCost));
216
111k
        assert(compressedCost < ERROR(maxCode));
217
111k
        DEBUGLOG(5, "Estimated bit costs: basic=%u\trepeat=%u\tcompressed=%u",
218
111k
                    (unsigned)basicCost, (unsigned)repeatCost, (unsigned)compressedCost);
219
111k
        if (basicCost <= repeatCost && basicCost <= compressedCost) {
220
35.0k
            DEBUGLOG(5, "Selected set_basic");
221
35.0k
            assert(isDefaultAllowed);
222
35.0k
            *repeatMode = FSE_repeat_none;
223
35.0k
            return set_basic;
224
35.0k
        }
225
76.7k
        if (repeatCost <= compressedCost) {
226
9.96k
            DEBUGLOG(5, "Selected set_repeat");
227
9.96k
            assert(!ZSTD_isError(repeatCost));
228
9.96k
            return set_repeat;
229
9.96k
        }
230
66.8k
        assert(compressedCost < basicCost && compressedCost < repeatCost);
231
66.8k
    }
232
66.8k
    DEBUGLOG(5, "Selected set_compressed");
233
66.8k
    *repeatMode = FSE_repeat_check;
234
66.8k
    return set_compressed;
235
111k
}
236
237
typedef struct {
238
    S16 norm[MaxSeq + 1];
239
    U32 wksp[FSE_BUILD_CTABLE_WORKSPACE_SIZE_U32(MaxSeq, MaxFSELog)];
240
} ZSTD_BuildCTableWksp;
241
242
size_t
243
ZSTD_buildCTable(void* dst, size_t dstCapacity,
244
                FSE_CTable* nextCTable, U32 FSELog, SymbolEncodingType_e type,
245
                unsigned* count, U32 max,
246
                const BYTE* codeTable, size_t nbSeq,
247
                const S16* defaultNorm, U32 defaultNormLog, U32 defaultMax,
248
                const FSE_CTable* prevCTable, size_t prevCTableSize,
249
                void* entropyWorkspace, size_t entropyWorkspaceSize)
250
160k
{
251
160k
    BYTE* op = (BYTE*)dst;
252
160k
    const BYTE* const oend = op + dstCapacity;
253
160k
    DEBUGLOG(6, "ZSTD_buildCTable (dstCapacity=%u)", (unsigned)dstCapacity);
254
255
160k
    switch (type) {
256
6.12k
    case set_rle:
257
6.12k
        FORWARD_IF_ERROR(FSE_buildCTable_rle(nextCTable, (BYTE)max), "");
258
6.12k
        RETURN_ERROR_IF(dstCapacity==0, dstSize_tooSmall, "not enough space");
259
6.12k
        *op = codeTable[0];
260
6.12k
        return 1;
261
9.96k
    case set_repeat:
262
9.96k
        ZSTD_memcpy(nextCTable, prevCTable, prevCTableSize);
263
9.96k
        return 0;
264
77.6k
    case set_basic:
265
77.6k
        FORWARD_IF_ERROR(FSE_buildCTable_wksp(nextCTable, defaultNorm, defaultMax, defaultNormLog, entropyWorkspace, entropyWorkspaceSize), "");  /* note : could be pre-calculated */
266
77.6k
        return 0;
267
66.8k
    case set_compressed: {
268
66.8k
        ZSTD_BuildCTableWksp* wksp = (ZSTD_BuildCTableWksp*)entropyWorkspace;
269
66.8k
        size_t nbSeq_1 = nbSeq;
270
66.8k
        const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max);
271
66.8k
        if (count[codeTable[nbSeq-1]] > 1) {
272
58.4k
            count[codeTable[nbSeq-1]]--;
273
58.4k
            nbSeq_1--;
274
58.4k
        }
275
66.8k
        assert(nbSeq_1 > 1);
276
66.8k
        assert(entropyWorkspaceSize >= sizeof(ZSTD_BuildCTableWksp));
277
66.8k
        (void)entropyWorkspaceSize;
278
66.8k
        FORWARD_IF_ERROR(FSE_normalizeCount(wksp->norm, tableLog, count, nbSeq_1, max, ZSTD_useLowProbCount(nbSeq_1)), "FSE_normalizeCount failed");
279
66.8k
        assert(oend >= op);
280
66.8k
        {   size_t const NCountSize = FSE_writeNCount(op, (size_t)(oend - op), wksp->norm, max, tableLog);   /* overflow protected */
281
66.8k
            FORWARD_IF_ERROR(NCountSize, "FSE_writeNCount failed");
282
66.8k
            FORWARD_IF_ERROR(FSE_buildCTable_wksp(nextCTable, wksp->norm, max, tableLog, wksp->wksp, sizeof(wksp->wksp)), "FSE_buildCTable_wksp failed");
283
66.8k
            return NCountSize;
284
66.8k
        }
285
66.8k
    }
286
0
    default: assert(0); RETURN_ERROR(GENERIC, "impossible to reach");
287
160k
    }
288
160k
}
289
290
FORCE_INLINE_TEMPLATE size_t
291
ZSTD_encodeSequences_body(
292
            void* dst, size_t dstCapacity,
293
            FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable,
294
            FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable,
295
            FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable,
296
            SeqDef const* sequences, size_t nbSeq, int longOffsets)
297
53.5k
{
298
53.5k
    BIT_CStream_t blockStream;
299
53.5k
    FSE_CState_t  stateMatchLength;
300
53.5k
    FSE_CState_t  stateOffsetBits;
301
53.5k
    FSE_CState_t  stateLitLength;
302
303
53.5k
    RETURN_ERROR_IF(
304
53.5k
        ERR_isError(BIT_initCStream(&blockStream, dst, dstCapacity)),
305
53.5k
        dstSize_tooSmall, "not enough space remaining");
306
53.5k
    DEBUGLOG(6, "available space for bitstream : %i  (dstCapacity=%u)",
307
53.5k
                (int)(blockStream.endPtr - blockStream.startPtr),
308
53.5k
                (unsigned)dstCapacity);
309
310
    /* first symbols */
311
53.5k
    FSE_initCState2(&stateMatchLength, CTable_MatchLength, mlCodeTable[nbSeq-1]);
312
53.5k
    FSE_initCState2(&stateOffsetBits,  CTable_OffsetBits,  ofCodeTable[nbSeq-1]);
313
53.5k
    FSE_initCState2(&stateLitLength,   CTable_LitLength,   llCodeTable[nbSeq-1]);
314
53.5k
    BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]);
315
53.5k
    if (MEM_32bits()) BIT_flushBits(&blockStream);
316
53.5k
    BIT_addBits(&blockStream, sequences[nbSeq-1].mlBase, ML_bits[mlCodeTable[nbSeq-1]]);
317
53.5k
    if (MEM_32bits()) BIT_flushBits(&blockStream);
318
53.5k
    if (longOffsets) {
319
0
        U32 const ofBits = ofCodeTable[nbSeq-1];
320
0
        unsigned const extraBits = ofBits - MIN(ofBits, STREAM_ACCUMULATOR_MIN-1);
321
0
        if (extraBits) {
322
0
            BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, extraBits);
323
0
            BIT_flushBits(&blockStream);
324
0
        }
325
0
        BIT_addBits(&blockStream, sequences[nbSeq-1].offBase >> extraBits,
326
0
                    ofBits - extraBits);
327
53.5k
    } else {
328
53.5k
        BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, ofCodeTable[nbSeq-1]);
329
53.5k
    }
330
53.5k
    BIT_flushBits(&blockStream);
331
332
53.5k
    {   size_t n;
333
33.2M
        for (n=nbSeq-2 ; n<nbSeq ; n--) {      /* intentional underflow */
334
33.2M
            BYTE const llCode = llCodeTable[n];
335
33.2M
            BYTE const ofCode = ofCodeTable[n];
336
33.2M
            BYTE const mlCode = mlCodeTable[n];
337
33.2M
            U32  const llBits = LL_bits[llCode];
338
33.2M
            U32  const ofBits = ofCode;
339
33.2M
            U32  const mlBits = ML_bits[mlCode];
340
33.2M
            DEBUGLOG(6, "encoding: litlen:%2u - matchlen:%2u - offCode:%7u",
341
33.2M
                        (unsigned)sequences[n].litLength,
342
33.2M
                        (unsigned)sequences[n].mlBase + MINMATCH,
343
33.2M
                        (unsigned)sequences[n].offBase);
344
                                                                            /* 32b*/  /* 64b*/
345
                                                                            /* (7)*/  /* (7)*/
346
33.2M
            FSE_encodeSymbol(&blockStream, &stateOffsetBits, ofCode);       /* 15 */  /* 15 */
347
33.2M
            FSE_encodeSymbol(&blockStream, &stateMatchLength, mlCode);      /* 24 */  /* 24 */
348
33.2M
            if (MEM_32bits()) BIT_flushBits(&blockStream);                  /* (7)*/
349
33.2M
            FSE_encodeSymbol(&blockStream, &stateLitLength, llCode);        /* 16 */  /* 33 */
350
33.2M
            if (MEM_32bits() || (ofBits+mlBits+llBits >= 64-7-(LLFSELog+MLFSELog+OffFSELog)))
351
1.76k
                BIT_flushBits(&blockStream);                                /* (7)*/
352
33.2M
            BIT_addBits(&blockStream, sequences[n].litLength, llBits);
353
33.2M
            if (MEM_32bits() && ((llBits+mlBits)>24)) BIT_flushBits(&blockStream);
354
33.2M
            BIT_addBits(&blockStream, sequences[n].mlBase, mlBits);
355
33.2M
            if (MEM_32bits() || (ofBits+mlBits+llBits > 56)) BIT_flushBits(&blockStream);
356
33.2M
            if (longOffsets) {
357
0
                unsigned const extraBits = ofBits - MIN(ofBits, STREAM_ACCUMULATOR_MIN-1);
358
0
                if (extraBits) {
359
0
                    BIT_addBits(&blockStream, sequences[n].offBase, extraBits);
360
0
                    BIT_flushBits(&blockStream);                            /* (7)*/
361
0
                }
362
0
                BIT_addBits(&blockStream, sequences[n].offBase >> extraBits,
363
0
                            ofBits - extraBits);                            /* 31 */
364
33.2M
            } else {
365
33.2M
                BIT_addBits(&blockStream, sequences[n].offBase, ofBits);     /* 31 */
366
33.2M
            }
367
33.2M
            BIT_flushBits(&blockStream);                                    /* (7)*/
368
33.2M
            DEBUGLOG(7, "remaining space : %i", (int)(blockStream.endPtr - blockStream.ptr));
369
33.2M
    }   }
370
371
53.5k
    DEBUGLOG(6, "ZSTD_encodeSequences: flushing ML state with %u bits", stateMatchLength.stateLog);
372
53.5k
    FSE_flushCState(&blockStream, &stateMatchLength);
373
53.5k
    DEBUGLOG(6, "ZSTD_encodeSequences: flushing Off state with %u bits", stateOffsetBits.stateLog);
374
53.5k
    FSE_flushCState(&blockStream, &stateOffsetBits);
375
53.5k
    DEBUGLOG(6, "ZSTD_encodeSequences: flushing LL state with %u bits", stateLitLength.stateLog);
376
53.5k
    FSE_flushCState(&blockStream, &stateLitLength);
377
378
53.5k
    {   size_t const streamSize = BIT_closeCStream(&blockStream);
379
53.5k
        RETURN_ERROR_IF(streamSize==0, dstSize_tooSmall, "not enough space");
380
53.5k
        return streamSize;
381
53.5k
    }
382
53.5k
}
383
384
static size_t
385
ZSTD_encodeSequences_default(
386
            void* dst, size_t dstCapacity,
387
            FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable,
388
            FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable,
389
            FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable,
390
            SeqDef const* sequences, size_t nbSeq, int longOffsets)
391
0
{
392
0
    return ZSTD_encodeSequences_body(dst, dstCapacity,
393
0
                                    CTable_MatchLength, mlCodeTable,
394
0
                                    CTable_OffsetBits, ofCodeTable,
395
0
                                    CTable_LitLength, llCodeTable,
396
0
                                    sequences, nbSeq, longOffsets);
397
0
}
398
399
400
#if DYNAMIC_BMI2
401
402
static BMI2_TARGET_ATTRIBUTE size_t
403
ZSTD_encodeSequences_bmi2(
404
            void* dst, size_t dstCapacity,
405
            FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable,
406
            FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable,
407
            FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable,
408
            SeqDef const* sequences, size_t nbSeq, int longOffsets)
409
53.5k
{
410
53.5k
    return ZSTD_encodeSequences_body(dst, dstCapacity,
411
53.5k
                                    CTable_MatchLength, mlCodeTable,
412
53.5k
                                    CTable_OffsetBits, ofCodeTable,
413
53.5k
                                    CTable_LitLength, llCodeTable,
414
53.5k
                                    sequences, nbSeq, longOffsets);
415
53.5k
}
416
417
#endif
418
419
size_t ZSTD_encodeSequences(
420
            void* dst, size_t dstCapacity,
421
            FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable,
422
            FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable,
423
            FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable,
424
            SeqDef const* sequences, size_t nbSeq, int longOffsets, int bmi2)
425
53.5k
{
426
53.5k
    DEBUGLOG(5, "ZSTD_encodeSequences: dstCapacity = %u", (unsigned)dstCapacity);
427
53.5k
#if DYNAMIC_BMI2
428
53.5k
    if (bmi2) {
429
53.5k
        return ZSTD_encodeSequences_bmi2(dst, dstCapacity,
430
53.5k
                                         CTable_MatchLength, mlCodeTable,
431
53.5k
                                         CTable_OffsetBits, ofCodeTable,
432
53.5k
                                         CTable_LitLength, llCodeTable,
433
53.5k
                                         sequences, nbSeq, longOffsets);
434
53.5k
    }
435
0
#endif
436
0
    (void)bmi2;
437
0
    return ZSTD_encodeSequences_default(dst, dstCapacity,
438
0
                                        CTable_MatchLength, mlCodeTable,
439
0
                                        CTable_OffsetBits, ofCodeTable,
440
0
                                        CTable_LitLength, llCodeTable,
441
0
                                        sequences, nbSeq, longOffsets);
442
53.5k
}