Coverage Report

Created: 2026-09-14 07:37

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/zstd/lib/compress/zstd_compress_internal.h
Line
Count
Source
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
/* This header contains definitions
12
 * that shall **only** be used by modules within lib/compress.
13
 */
14
15
#ifndef ZSTD_COMPRESS_H
16
#define ZSTD_COMPRESS_H
17
18
/*-*************************************
19
*  Dependencies
20
***************************************/
21
#include "../common/zstd_internal.h"
22
#include "zstd_cwksp.h"
23
#ifdef ZSTD_MULTITHREAD
24
#  include "zstdmt_compress.h"
25
#endif
26
#include "../common/bits.h" /* ZSTD_highbit32, ZSTD_NbCommonBytes */
27
#include "zstd_preSplit.h" /* ZSTD_SLIPBLOCK_WORKSPACESIZE */
28
29
/*-*************************************
30
*  Constants
31
***************************************/
32
2.38M
#define kSearchStrength      8
33
5.08k
#define HASH_READ_SIZE       8
34
0
#define ZSTD_DUBT_UNSORTED_MARK 1   /* For btlazy2 strategy, index ZSTD_DUBT_UNSORTED_MARK==1 means "unsorted".
35
                                       It could be confused for a real successor at index "1", if sorted as larger than its predecessor.
36
                                       It's not a big deal though : candidate will just be sorted again.
37
                                       Additionally, candidate position 1 will be lost.
38
                                       But candidate 1 cannot hide a large tree of candidates, so it's a minimal loss.
39
                                       The benefit is that ZSTD_DUBT_UNSORTED_MARK cannot be mishandled after table reuse with a different strategy.
40
                                       This constant is required by ZSTD_compressBlock_btlazy2() and ZSTD_reduceTable_internal() */
41
42
43
/*-*************************************
44
*  Context memory management
45
***************************************/
46
typedef enum { ZSTDcs_created=0, ZSTDcs_init, ZSTDcs_ongoing, ZSTDcs_ending } ZSTD_compressionStage_e;
47
typedef enum { zcss_init=0, zcss_load, zcss_flush } ZSTD_cStreamStage;
48
49
typedef struct ZSTD_prefixDict_s {
50
    const void* dict;
51
    size_t dictSize;
52
    ZSTD_dictContentType_e dictContentType;
53
} ZSTD_prefixDict;
54
55
typedef struct {
56
    void* dictBuffer;
57
    void const* dict;
58
    size_t dictSize;
59
    ZSTD_dictContentType_e dictContentType;
60
    ZSTD_CDict* cdict;
61
} ZSTD_localDict;
62
63
typedef struct {
64
    HUF_CElt CTable[HUF_CTABLE_SIZE_ST(255)];
65
    HUF_repeat repeatMode;
66
} ZSTD_hufCTables_t;
67
68
typedef struct {
69
    FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)];
70
    FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)];
71
    FSE_CTable litlengthCTable[FSE_CTABLE_SIZE_U32(LLFSELog, MaxLL)];
72
    FSE_repeat offcode_repeatMode;
73
    FSE_repeat matchlength_repeatMode;
74
    FSE_repeat litlength_repeatMode;
75
} ZSTD_fseCTables_t;
76
77
typedef struct {
78
    ZSTD_hufCTables_t huf;
79
    ZSTD_fseCTables_t fse;
80
} ZSTD_entropyCTables_t;
81
82
/***********************************************
83
*  Sequences *
84
***********************************************/
85
typedef struct SeqDef_s {
86
    U32 offBase;   /* offBase == Offset + ZSTD_REP_NUM, or repcode 1,2,3 */
87
    U16 litLength;
88
    U16 mlBase;    /* mlBase == matchLength - MINMATCH */
89
} SeqDef;
90
91
/* Controls whether seqStore has a single "long" litLength or matchLength. See SeqStore_t. */
92
typedef enum {
93
    ZSTD_llt_none = 0,             /* no longLengthType */
94
    ZSTD_llt_literalLength = 1,    /* represents a long literal */
95
    ZSTD_llt_matchLength = 2       /* represents a long match */
96
} ZSTD_longLengthType_e;
97
98
typedef struct {
99
    SeqDef* sequencesStart;
100
    SeqDef* sequences;      /* ptr to end of sequences */
101
    BYTE*  litStart;
102
    BYTE*  lit;             /* ptr to end of literals */
103
    BYTE*  llCode;
104
    BYTE*  mlCode;
105
    BYTE*  ofCode;
106
    size_t maxNbSeq;
107
    size_t maxNbLit;
108
109
    /* longLengthPos and longLengthType to allow us to represent either a single litLength or matchLength
110
     * in the seqStore that has a value larger than U16 (if it exists). To do so, we increment
111
     * the existing value of the litLength or matchLength by 0x10000.
112
     */
113
    ZSTD_longLengthType_e longLengthType;
114
    U32                   longLengthPos;  /* Index of the sequence to apply long length modification to */
115
} SeqStore_t;
116
117
typedef struct {
118
    U32 litLength;
119
    U32 matchLength;
120
} ZSTD_SequenceLength;
121
122
/**
123
 * Returns the ZSTD_SequenceLength for the given sequences. It handles the decoding of long sequences
124
 * indicated by longLengthPos and longLengthType, and adds MINMATCH back to matchLength.
125
 */
126
MEM_STATIC ZSTD_SequenceLength ZSTD_getSequenceLength(SeqStore_t const* seqStore, SeqDef const* seq)
127
0
{
128
0
    ZSTD_SequenceLength seqLen;
129
0
    seqLen.litLength = seq->litLength;
130
0
    seqLen.matchLength = seq->mlBase + MINMATCH;
131
0
    if (seqStore->longLengthPos == (U32)(seq - seqStore->sequencesStart)) {
132
0
        if (seqStore->longLengthType == ZSTD_llt_literalLength) {
133
0
            seqLen.litLength += 0x10000;
134
0
        }
135
0
        if (seqStore->longLengthType == ZSTD_llt_matchLength) {
136
0
            seqLen.matchLength += 0x10000;
137
0
        }
138
0
    }
139
0
    return seqLen;
140
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstd_double_fast.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstd_fast.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstd_lazy.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstd_ldm.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstd_opt.c:ZSTD_getSequenceLength
Unexecuted instantiation: zstdmt_compress.c:ZSTD_getSequenceLength
141
142
const SeqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx);   /* compress & dictBuilder */
143
int ZSTD_seqToCodes(const SeqStore_t* seqStorePtr);   /* compress, dictBuilder, decodeCorpus (shouldn't get its definition from here) */
144
145
146
/***********************************************
147
*  Entropy buffer statistics structs and funcs *
148
***********************************************/
149
/** ZSTD_hufCTablesMetadata_t :
150
 *  Stores Literals Block Type for a super-block in hType, and
151
 *  huffman tree description in hufDesBuffer.
152
 *  hufDesSize refers to the size of huffman tree description in bytes.
153
 *  This metadata is populated in ZSTD_buildBlockEntropyStats_literals() */
154
typedef struct {
155
    SymbolEncodingType_e hType;
156
    BYTE hufDesBuffer[ZSTD_MAX_HUF_HEADER_SIZE];
157
    size_t hufDesSize;
158
} ZSTD_hufCTablesMetadata_t;
159
160
/** ZSTD_fseCTablesMetadata_t :
161
 *  Stores symbol compression modes for a super-block in {ll, ol, ml}Type, and
162
 *  fse tables in fseTablesBuffer.
163
 *  fseTablesSize refers to the size of fse tables in bytes.
164
 *  This metadata is populated in ZSTD_buildBlockEntropyStats_sequences() */
165
typedef struct {
166
    SymbolEncodingType_e llType;
167
    SymbolEncodingType_e ofType;
168
    SymbolEncodingType_e mlType;
169
    BYTE fseTablesBuffer[ZSTD_MAX_FSE_HEADERS_SIZE];
170
    size_t fseTablesSize;
171
    size_t lastCountSize; /* This is to account for bug in 1.3.4. More detail in ZSTD_entropyCompressSeqStore_internal() */
172
} ZSTD_fseCTablesMetadata_t;
173
174
typedef struct {
175
    ZSTD_hufCTablesMetadata_t hufMetadata;
176
    ZSTD_fseCTablesMetadata_t fseMetadata;
177
} ZSTD_entropyCTablesMetadata_t;
178
179
/** ZSTD_buildBlockEntropyStats() :
180
 *  Builds entropy for the block.
181
 *  @return : 0 on success or error code */
182
size_t ZSTD_buildBlockEntropyStats(
183
                    const SeqStore_t* seqStorePtr,
184
                    const ZSTD_entropyCTables_t* prevEntropy,
185
                          ZSTD_entropyCTables_t* nextEntropy,
186
                    const ZSTD_CCtx_params* cctxParams,
187
                          ZSTD_entropyCTablesMetadata_t* entropyMetadata,
188
                          void* workspace, size_t wkspSize);
189
190
/*********************************
191
*  Compression internals structs *
192
*********************************/
193
194
typedef struct {
195
    U32 off;            /* Offset sumtype code for the match, using ZSTD_storeSeq() format */
196
    U32 len;            /* Raw length of match */
197
} ZSTD_match_t;
198
199
typedef struct {
200
    U32 offset;         /* Offset of sequence */
201
    U32 litLength;      /* Length of literals prior to match */
202
    U32 matchLength;    /* Raw length of match */
203
} rawSeq;
204
205
typedef struct {
206
  rawSeq* seq;          /* The start of the sequences */
207
  size_t pos;           /* The index in seq where reading stopped. pos <= size. */
208
  size_t posInSequence; /* The position within the sequence at seq[pos] where reading
209
                           stopped. posInSequence <= seq[pos].litLength + seq[pos].matchLength */
210
  size_t size;          /* The number of sequences. <= capacity. */
211
  size_t capacity;      /* The capacity starting from `seq` pointer */
212
} RawSeqStore_t;
213
214
UNUSED_ATTR static const RawSeqStore_t kNullRawSeqStore = {NULL, 0, 0, 0, 0};
215
216
typedef struct {
217
    int price;  /* price from beginning of segment to this position */
218
    U32 off;    /* offset of previous match */
219
    U32 mlen;   /* length of previous match */
220
    U32 litlen; /* nb of literals since previous match */
221
    U32 rep[ZSTD_REP_NUM];  /* offset history after previous match */
222
} ZSTD_optimal_t;
223
224
typedef enum { zop_dynamic=0, zop_predef } ZSTD_OptPrice_e;
225
226
10.1k
#define ZSTD_OPT_SIZE (ZSTD_OPT_NUM+3)
227
typedef struct {
228
    /* All tables are allocated inside cctx->workspace by ZSTD_resetCCtx_internal() */
229
    unsigned* litFreq;           /* table of literals statistics, of size 256 */
230
    unsigned* litLengthFreq;     /* table of litLength statistics, of size (MaxLL+1) */
231
    unsigned* matchLengthFreq;   /* table of matchLength statistics, of size (MaxML+1) */
232
    unsigned* offCodeFreq;       /* table of offCode statistics, of size (MaxOff+1) */
233
    ZSTD_match_t* matchTable;    /* list of found matches, of size ZSTD_OPT_SIZE */
234
    ZSTD_optimal_t* priceTable;  /* All positions tracked by optimal parser, of size ZSTD_OPT_SIZE */
235
236
    U32  litSum;                 /* nb of literals */
237
    U32  litLengthSum;           /* nb of litLength codes */
238
    U32  matchLengthSum;         /* nb of matchLength codes */
239
    U32  offCodeSum;             /* nb of offset codes */
240
    U32  litSumBasePrice;        /* to compare to log2(litfreq) */
241
    U32  litLengthSumBasePrice;  /* to compare to log2(llfreq)  */
242
    U32  matchLengthSumBasePrice;/* to compare to log2(mlfreq)  */
243
    U32  offCodeSumBasePrice;    /* to compare to log2(offreq)  */
244
    ZSTD_OptPrice_e priceType;   /* prices can be determined dynamically, or follow a pre-defined cost structure */
245
    const ZSTD_entropyCTables_t* symbolCosts;  /* pre-calculated dictionary statistics */
246
    ZSTD_ParamSwitch_e literalCompressionMode;
247
} optState_t;
248
249
typedef struct {
250
  ZSTD_entropyCTables_t entropy;
251
  U32 rep[ZSTD_REP_NUM];
252
} ZSTD_compressedBlockState_t;
253
254
typedef struct {
255
    BYTE const* nextSrc;       /* next block here to continue on current prefix */
256
    BYTE const* base;          /* All regular indexes relative to this position */
257
    BYTE const* dictBase;      /* extDict indexes relative to this position */
258
    U32 dictLimit;             /* below that point, need extDict */
259
    U32 lowLimit;              /* below that point, no more valid data */
260
    U32 nbOverflowCorrections; /* Number of times overflow correction has run since
261
                                * ZSTD_window_init(). Useful for debugging coredumps
262
                                * and for ZSTD_WINDOW_OVERFLOW_CORRECT_FREQUENTLY.
263
                                */
264
} ZSTD_window_t;
265
266
23.7k
#define ZSTD_WINDOW_START_INDEX 2
267
268
typedef struct ZSTD_MatchState_t ZSTD_MatchState_t;
269
270
284M
#define ZSTD_ROW_HASH_CACHE_SIZE 8       /* Size of prefetching hash cache for row-based matchfinder */
271
272
struct ZSTD_MatchState_t {
273
    ZSTD_window_t window;   /* State for window round buffer management */
274
    U32 loadedDictEnd;      /* index of end of dictionary, within context's referential.
275
                             * When loadedDictEnd != 0, a dictionary is in use, and still valid.
276
                             * This relies on a mechanism to set loadedDictEnd=0 when dictionary is no longer within distance.
277
                             * Such mechanism is provided within ZSTD_window_enforceMaxDist() and ZSTD_checkDictValidity().
278
                             * When dict referential is copied into active context (i.e. not attached),
279
                             * loadedDictEnd == dictSize, since referential starts from zero.
280
                             */
281
    U32 nextToUpdate;       /* index from which to continue table update */
282
    U32 hashLog3;           /* dispatch table for matches of len==3 : larger == faster, more memory */
283
284
    U32 rowHashLog;                          /* For row-based matchfinder: Hashlog based on nb of rows in the hashTable.*/
285
    BYTE* tagTable;                          /* For row-based matchFinder: A row-based table containing the hashes and head index. */
286
    U32 hashCache[ZSTD_ROW_HASH_CACHE_SIZE]; /* For row-based matchFinder: a cache of hashes to improve speed */
287
    U64 hashSalt;                            /* For row-based matchFinder: salts the hash for reuse of tag table */
288
    U32 hashSaltEntropy;                     /* For row-based matchFinder: collects entropy for salt generation */
289
290
    U32* hashTable;
291
    U32* hashTable3;
292
    U32* chainTable;
293
294
    int forceNonContiguous; /* Non-zero if we should force non-contiguous load for the next window update. */
295
296
    int dedicatedDictSearch;  /* Indicates whether this matchState is using the
297
                               * dedicated dictionary search structure.
298
                               */
299
    optState_t opt;         /* optimal parser state */
300
    const ZSTD_MatchState_t* dictMatchState;
301
    ZSTD_compressionParameters cParams;
302
    const RawSeqStore_t* ldmSeqStore;
303
304
    /* Controls prefetching in some dictMatchState matchfinders.
305
     * This behavior is controlled from the cctx ms.
306
     * This parameter has no effect in the cdict ms. */
307
    int prefetchCDictTables;
308
309
    /* When == 0, lazy match finders insert every position.
310
     * When != 0, lazy match finders only insert positions they search.
311
     * This allows them to skip much faster over incompressible data,
312
     * at a small cost to compression ratio.
313
     */
314
    int lazySkipping;
315
};
316
317
typedef struct {
318
    ZSTD_compressedBlockState_t* prevCBlock;
319
    ZSTD_compressedBlockState_t* nextCBlock;
320
    ZSTD_MatchState_t matchState;
321
} ZSTD_blockState_t;
322
323
typedef struct {
324
    U32 offset;
325
    U32 checksum;
326
} ldmEntry_t;
327
328
typedef struct {
329
    BYTE const* split;
330
    U32 hash;
331
    U32 checksum;
332
    ldmEntry_t* bucket;
333
} ldmMatchCandidate_t;
334
335
0
#define LDM_BATCH_SIZE 64
336
337
typedef struct {
338
    ZSTD_window_t window;   /* State for the window round buffer management */
339
    ldmEntry_t* hashTable;
340
    U32 loadedDictEnd;
341
    BYTE* bucketOffsets;    /* Next position in bucket to insert entry */
342
    size_t splitIndices[LDM_BATCH_SIZE];
343
    ldmMatchCandidate_t matchCandidates[LDM_BATCH_SIZE];
344
} ldmState_t;
345
346
typedef struct {
347
    ZSTD_ParamSwitch_e enableLdm; /* ZSTD_ps_enable to enable LDM. ZSTD_ps_auto by default */
348
    U32 hashLog;            /* Log size of hashTable */
349
    U32 bucketSizeLog;      /* Log bucket size for collision resolution, at most 8 */
350
    U32 minMatchLength;     /* Minimum match length */
351
    U32 hashRateLog;       /* Log number of entries to skip */
352
    U32 windowLog;          /* Window log for the LDM */
353
} ldmParams_t;
354
355
typedef struct {
356
    int collectSequences;
357
    ZSTD_Sequence* seqStart;
358
    size_t seqIndex;
359
    size_t maxSequences;
360
} SeqCollector;
361
362
struct ZSTD_CCtx_params_s {
363
    ZSTD_format_e format;
364
    ZSTD_compressionParameters cParams;
365
    ZSTD_frameParameters fParams;
366
367
    int compressionLevel;
368
    int forceWindow;           /* force back-references to respect limit of
369
                                * 1<<wLog, even for dictionary */
370
    size_t targetCBlockSize;   /* Tries to fit compressed block size to be around targetCBlockSize.
371
                                * No target when targetCBlockSize == 0.
372
                                * There is no guarantee on compressed block size */
373
    int srcSizeHint;           /* User's best guess of source size.
374
                                * Hint is not valid when srcSizeHint == 0.
375
                                * There is no guarantee that hint is close to actual source size */
376
377
    ZSTD_dictAttachPref_e attachDictPref;
378
    ZSTD_ParamSwitch_e literalCompressionMode;
379
380
    /* Multithreading: used to pass parameters to mtctx */
381
    int nbWorkers;
382
    size_t jobSize;
383
    int overlapLog;
384
    int rsyncable;
385
386
    /* Long distance matching parameters */
387
    ldmParams_t ldmParams;
388
389
    /* Dedicated dict search algorithm trigger */
390
    int enableDedicatedDictSearch;
391
392
    /* Input/output buffer modes */
393
    ZSTD_bufferMode_e inBufferMode;
394
    ZSTD_bufferMode_e outBufferMode;
395
396
    /* Sequence compression API */
397
    ZSTD_SequenceFormat_e blockDelimiters;
398
    int validateSequences;
399
400
    /* Block splitting
401
     * @postBlockSplitter executes split analysis after sequences are produced,
402
     * it's more accurate but consumes more resources.
403
     * @preBlockSplitter_level splits before knowing sequences,
404
     * it's more approximative but also cheaper.
405
     * Valid @preBlockSplitter_level values range from 0 to 6 (included).
406
     * 0 means auto, 1 means do not split,
407
     * then levels are sorted in increasing cpu budget, from 2 (fastest) to 6 (slowest).
408
     * Highest @preBlockSplitter_level combines well with @postBlockSplitter.
409
     */
410
    ZSTD_ParamSwitch_e postBlockSplitter;
411
    int preBlockSplitter_level;
412
413
    /* Adjust the max block size*/
414
    size_t maxBlockSize;
415
416
    /* Param for deciding whether to use row-based matchfinder */
417
    ZSTD_ParamSwitch_e useRowMatchFinder;
418
419
    /* Always load a dictionary in ext-dict mode (not prefix mode)? */
420
    int deterministicRefPrefix;
421
422
    /* Internal use, for createCCtxParams() and freeCCtxParams() only */
423
    ZSTD_customMem customMem;
424
425
    /* Controls prefetching in some dictMatchState matchfinders */
426
    ZSTD_ParamSwitch_e prefetchCDictTables;
427
428
    /* Controls whether zstd will fall back to an internal matchfinder
429
     * if the external matchfinder returns an error code. */
430
    int enableMatchFinderFallback;
431
432
    /* Parameters for the external sequence producer API.
433
     * Users set these parameters through ZSTD_registerSequenceProducer().
434
     * It is not possible to set these parameters individually through the public API. */
435
    void* extSeqProdState;
436
    ZSTD_sequenceProducer_F extSeqProdFunc;
437
438
    /* Controls repcode search in external sequence parsing */
439
    ZSTD_ParamSwitch_e searchForExternalRepcodes;
440
};  /* typedef'd to ZSTD_CCtx_params within "zstd.h" */
441
442
#define COMPRESS_SEQUENCES_WORKSPACE_SIZE (sizeof(unsigned) * (MaxSeq + 2))
443
#define ENTROPY_WORKSPACE_SIZE (HUF_WORKSPACE_SIZE + COMPRESS_SEQUENCES_WORKSPACE_SIZE)
444
10.4k
#define TMP_WORKSPACE_SIZE (MAX(ENTROPY_WORKSPACE_SIZE, ZSTD_SLIPBLOCK_WORKSPACESIZE))
445
446
/**
447
 * Indicates whether this compression proceeds directly from user-provided
448
 * source buffer to user-provided destination buffer (ZSTDb_not_buffered), or
449
 * whether the context needs to buffer the input/output (ZSTDb_buffered).
450
 */
451
typedef enum {
452
    ZSTDb_not_buffered,
453
    ZSTDb_buffered
454
} ZSTD_buffered_policy_e;
455
456
/**
457
 * Struct that contains all elements of block splitter that should be allocated
458
 * in a wksp.
459
 */
460
0
#define ZSTD_MAX_NB_BLOCK_SPLITS 196
461
typedef struct {
462
    SeqStore_t fullSeqStoreChunk;
463
    SeqStore_t firstHalfSeqStore;
464
    SeqStore_t secondHalfSeqStore;
465
    SeqStore_t currSeqStore;
466
    SeqStore_t nextSeqStore;
467
468
    U32 partitions[ZSTD_MAX_NB_BLOCK_SPLITS];
469
    ZSTD_entropyCTablesMetadata_t entropyMetadata;
470
} ZSTD_blockSplitCtx;
471
472
struct ZSTD_CCtx_s {
473
    ZSTD_compressionStage_e stage;
474
    int cParamsChanged;                  /* == 1 if cParams(except wlog) or compression level are changed in requestedParams. Triggers transmission of new params to ZSTDMT (if available) then reset to 0. */
475
#if DYNAMIC_BMI2
476
    int bmi2;                            /* == 1 if the CPU supports BMI1 & BMI2, determined once per context lifetime.
477
                                          * Never read this directly: use ZSTD_CCtx_get_bmi2(), which also handles builds
478
                                          * where BMI2 is enabled at compile time and this field does not exist. */
479
#endif
480
    ZSTD_CCtx_params requestedParams;
481
    ZSTD_CCtx_params appliedParams;
482
    ZSTD_CCtx_params simpleApiParams;    /* Param storage used by the simple API - not sticky. Must only be used in top-level simple API functions for storage. */
483
    U32   dictID;
484
    size_t dictContentSize;
485
486
    ZSTD_cwksp workspace; /* manages buffer for dynamic allocations */
487
    size_t blockSizeMax;
488
    unsigned long long pledgedSrcSizePlusOne;  /* this way, 0 (default) == unknown */
489
    unsigned long long consumedSrcSize;
490
    unsigned long long producedCSize;
491
    XXH64_state_t xxhState;
492
    ZSTD_customMem customMem;
493
    ZSTD_threadPool* pool;
494
    size_t staticSize;
495
    SeqCollector seqCollector;
496
    int isFirstBlock;
497
    int initialized;
498
499
    SeqStore_t seqStore;      /* sequences storage ptrs */
500
    ldmState_t ldmState;      /* long distance matching state */
501
    rawSeq* ldmSequences;     /* Storage for the ldm output sequences */
502
    size_t maxNbLdmSequences;
503
    RawSeqStore_t externSeqStore; /* Mutable reference to external sequences */
504
    ZSTD_blockState_t blockState;
505
    void* tmpWorkspace;  /* used as substitute of stack space - must be aligned for S64 type */
506
    size_t tmpWkspSize;
507
508
    /* Whether we are streaming or not */
509
    ZSTD_buffered_policy_e bufferedPolicy;
510
511
    /* streaming */
512
    char*  inBuff;
513
    size_t inBuffSize;
514
    size_t inToCompress;
515
    size_t inBuffPos;
516
    size_t inBuffTarget;
517
    char*  outBuff;
518
    size_t outBuffSize;
519
    size_t outBuffContentSize;
520
    size_t outBuffFlushedSize;
521
    ZSTD_cStreamStage streamStage;
522
    U32    frameEnded;
523
524
    /* Stable in/out buffer verification */
525
    ZSTD_inBuffer expectedInBuffer;
526
    size_t stableIn_notConsumed; /* nb bytes within stable input buffer that are said to be consumed but are not */
527
    size_t expectedOutBufferSize;
528
529
    /* Dictionary */
530
    ZSTD_localDict localDict;
531
    const ZSTD_CDict* cdict;
532
    ZSTD_prefixDict prefixDict;   /* single-usage dictionary */
533
534
    /* Multi-threading */
535
#ifdef ZSTD_MULTITHREAD
536
    ZSTDMT_CCtx* mtctx;
537
#endif
538
539
    /* Tracing */
540
#if ZSTD_TRACE
541
    ZSTD_TraceCtx traceCtx;
542
#endif
543
544
    /* Workspace for block splitter */
545
    ZSTD_blockSplitCtx blockSplitCtx;
546
547
    /* Buffer for output from external sequence producer */
548
    ZSTD_Sequence* extSeqBuf;
549
    size_t extSeqBufCapacity;
550
};
551
552
/**
553
 * @returns 1 if calls should be dispatched to the BMI2_TARGET_ATTRIBUTE variant
554
 *          of a function, rather than to its default variant.
555
 *
556
 * Beware: this is *not* a "does the CPU support BMI2" test. When BMI2 is enabled
557
 * at compile time, DYNAMIC_BMI2 is 0: the whole library is already compiled with
558
 * BMI2, no separate variant exists, and this returns 0 even though the CPU does
559
 * support BMI2. Only ever use it to select between the two variants of a function.
560
 */
561
15.3k
MEM_STATIC int ZSTD_CCtx_get_bmi2(const struct ZSTD_CCtx_s* cctx) {
562
15.3k
#if DYNAMIC_BMI2
563
15.3k
    return cctx->bmi2;
564
#else
565
    (void)cctx;
566
    return 0;
567
#endif
568
15.3k
}
zstd_compress.c:ZSTD_CCtx_get_bmi2
Line
Count
Source
561
15.3k
MEM_STATIC int ZSTD_CCtx_get_bmi2(const struct ZSTD_CCtx_s* cctx) {
562
15.3k
#if DYNAMIC_BMI2
563
15.3k
    return cctx->bmi2;
564
#else
565
    (void)cctx;
566
    return 0;
567
#endif
568
15.3k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_CCtx_get_bmi2
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_CCtx_get_bmi2
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_CCtx_get_bmi2
Unexecuted instantiation: zstd_double_fast.c:ZSTD_CCtx_get_bmi2
Unexecuted instantiation: zstd_fast.c:ZSTD_CCtx_get_bmi2
Unexecuted instantiation: zstd_lazy.c:ZSTD_CCtx_get_bmi2
Unexecuted instantiation: zstd_ldm.c:ZSTD_CCtx_get_bmi2
Unexecuted instantiation: zstd_opt.c:ZSTD_CCtx_get_bmi2
Unexecuted instantiation: zstdmt_compress.c:ZSTD_CCtx_get_bmi2
569
570
typedef enum { ZSTD_dtlm_fast, ZSTD_dtlm_full } ZSTD_dictTableLoadMethod_e;
571
typedef enum { ZSTD_tfp_forCCtx, ZSTD_tfp_forCDict } ZSTD_tableFillPurpose_e;
572
573
typedef enum {
574
    ZSTD_noDict = 0,
575
    ZSTD_extDict = 1,
576
    ZSTD_dictMatchState = 2,
577
    ZSTD_dedicatedDictSearch = 3
578
} ZSTD_dictMode_e;
579
580
typedef enum {
581
    ZSTD_cpm_noAttachDict = 0,  /* Compression with ZSTD_noDict or ZSTD_extDict.
582
                                 * In this mode we use both the srcSize and the dictSize
583
                                 * when selecting and adjusting parameters.
584
                                 */
585
    ZSTD_cpm_attachDict = 1,    /* Compression with ZSTD_dictMatchState or ZSTD_dedicatedDictSearch.
586
                                 * In this mode we only take the srcSize into account when selecting
587
                                 * and adjusting parameters.
588
                                 */
589
    ZSTD_cpm_createCDict = 2,   /* Creating a CDict.
590
                                 * In this mode we take both the source size and the dictionary size
591
                                 * into account when selecting and adjusting the parameters.
592
                                 */
593
    ZSTD_cpm_unknown = 3        /* ZSTD_getCParams, ZSTD_getParams, ZSTD_adjustParams.
594
                                 * We don't know what these parameters are for. We default to the legacy
595
                                 * behavior of taking both the source size and the dict size into account
596
                                 * when selecting and adjusting parameters.
597
                                 */
598
} ZSTD_CParamMode_e;
599
600
typedef size_t (*ZSTD_BlockCompressor_f) (
601
        ZSTD_MatchState_t* bs, SeqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
602
        void const* src, size_t srcSize);
603
ZSTD_BlockCompressor_f ZSTD_selectBlockCompressor(ZSTD_strategy strat, ZSTD_ParamSwitch_e rowMatchfinderMode, ZSTD_dictMode_e dictMode);
604
605
606
MEM_STATIC U32 ZSTD_LLcode(U32 litLength)
607
3.89M
{
608
3.89M
    static const BYTE LL_Code[64] = {  0,  1,  2,  3,  4,  5,  6,  7,
609
3.89M
                                       8,  9, 10, 11, 12, 13, 14, 15,
610
3.89M
                                      16, 16, 17, 17, 18, 18, 19, 19,
611
3.89M
                                      20, 20, 20, 20, 21, 21, 21, 21,
612
3.89M
                                      22, 22, 22, 22, 22, 22, 22, 22,
613
3.89M
                                      23, 23, 23, 23, 23, 23, 23, 23,
614
3.89M
                                      24, 24, 24, 24, 24, 24, 24, 24,
615
3.89M
                                      24, 24, 24, 24, 24, 24, 24, 24 };
616
3.89M
    static const U32 LL_deltaCode = 19;
617
3.89M
    return (litLength > 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength];
618
3.89M
}
zstd_compress.c:ZSTD_LLcode
Line
Count
Source
607
3.89M
{
608
3.89M
    static const BYTE LL_Code[64] = {  0,  1,  2,  3,  4,  5,  6,  7,
609
3.89M
                                       8,  9, 10, 11, 12, 13, 14, 15,
610
3.89M
                                      16, 16, 17, 17, 18, 18, 19, 19,
611
3.89M
                                      20, 20, 20, 20, 21, 21, 21, 21,
612
3.89M
                                      22, 22, 22, 22, 22, 22, 22, 22,
613
3.89M
                                      23, 23, 23, 23, 23, 23, 23, 23,
614
3.89M
                                      24, 24, 24, 24, 24, 24, 24, 24,
615
3.89M
                                      24, 24, 24, 24, 24, 24, 24, 24 };
616
3.89M
    static const U32 LL_deltaCode = 19;
617
3.89M
    return (litLength > 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength];
618
3.89M
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_LLcode
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_LLcode
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_LLcode
Unexecuted instantiation: zstd_double_fast.c:ZSTD_LLcode
Unexecuted instantiation: zstd_fast.c:ZSTD_LLcode
Unexecuted instantiation: zstd_lazy.c:ZSTD_LLcode
Unexecuted instantiation: zstd_ldm.c:ZSTD_LLcode
Unexecuted instantiation: zstd_opt.c:ZSTD_LLcode
Unexecuted instantiation: zstdmt_compress.c:ZSTD_LLcode
619
620
/* ZSTD_MLcode() :
621
 * note : mlBase = matchLength - MINMATCH;
622
 *        because it's the format it's stored in seqStore->sequences */
623
MEM_STATIC U32 ZSTD_MLcode(U32 mlBase)
624
3.89M
{
625
3.89M
    static const BYTE ML_Code[128] = { 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15,
626
3.89M
                                      16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
627
3.89M
                                      32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 36, 36, 37, 37, 37, 37,
628
3.89M
                                      38, 38, 38, 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, 39, 39, 39,
629
3.89M
                                      40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40,
630
3.89M
                                      41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
631
3.89M
                                      42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
632
3.89M
                                      42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42 };
633
3.89M
    static const U32 ML_deltaCode = 36;
634
3.89M
    return (mlBase > 127) ? ZSTD_highbit32(mlBase) + ML_deltaCode : ML_Code[mlBase];
635
3.89M
}
zstd_compress.c:ZSTD_MLcode
Line
Count
Source
624
3.89M
{
625
3.89M
    static const BYTE ML_Code[128] = { 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15,
626
3.89M
                                      16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
627
3.89M
                                      32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 36, 36, 37, 37, 37, 37,
628
3.89M
                                      38, 38, 38, 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, 39, 39, 39,
629
3.89M
                                      40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40,
630
3.89M
                                      41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
631
3.89M
                                      42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
632
3.89M
                                      42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42 };
633
3.89M
    static const U32 ML_deltaCode = 36;
634
3.89M
    return (mlBase > 127) ? ZSTD_highbit32(mlBase) + ML_deltaCode : ML_Code[mlBase];
635
3.89M
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_MLcode
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_MLcode
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_MLcode
Unexecuted instantiation: zstd_double_fast.c:ZSTD_MLcode
Unexecuted instantiation: zstd_fast.c:ZSTD_MLcode
Unexecuted instantiation: zstd_lazy.c:ZSTD_MLcode
Unexecuted instantiation: zstd_ldm.c:ZSTD_MLcode
Unexecuted instantiation: zstd_opt.c:ZSTD_MLcode
Unexecuted instantiation: zstdmt_compress.c:ZSTD_MLcode
636
637
/* ZSTD_cParam_withinBounds:
638
 * @return 1 if value is within cParam bounds,
639
 * 0 otherwise */
640
MEM_STATIC int ZSTD_cParam_withinBounds(ZSTD_cParameter cParam, int value)
641
0
{
642
0
    ZSTD_bounds const bounds = ZSTD_cParam_getBounds(cParam);
643
0
    if (ZSTD_isError(bounds.error)) return 0;
644
0
    if (value < bounds.lowerBound) return 0;
645
0
    if (value > bounds.upperBound) return 0;
646
0
    return 1;
647
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstd_double_fast.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstd_fast.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstd_lazy.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstd_ldm.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstd_opt.c:ZSTD_cParam_withinBounds
Unexecuted instantiation: zstdmt_compress.c:ZSTD_cParam_withinBounds
648
649
/* ZSTD_selectAddr:
650
 * @return index >= lowLimit ? candidate : backup,
651
 * tries to force branchless codegen. */
652
MEM_STATIC const BYTE*
653
ZSTD_selectAddr(U32 index, U32 lowLimit, const BYTE* candidate, const BYTE* backup)
654
0
{
655
0
#if defined(__GNUC__) && defined(__x86_64__)
656
0
    __asm__ (
657
0
        "cmp %1, %2\n"
658
0
        "cmova %3, %0\n"
659
0
        : "+r"(candidate)
660
0
        : "r"(index), "r"(lowLimit), "r"(backup)
661
0
        );
662
0
    return candidate;
663
#else
664
    return index >= lowLimit ? candidate : backup;
665
#endif
666
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_selectAddr
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_selectAddr
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_selectAddr
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_selectAddr
Unexecuted instantiation: zstd_double_fast.c:ZSTD_selectAddr
Unexecuted instantiation: zstd_fast.c:ZSTD_selectAddr
Unexecuted instantiation: zstd_lazy.c:ZSTD_selectAddr
Unexecuted instantiation: zstd_ldm.c:ZSTD_selectAddr
Unexecuted instantiation: zstd_opt.c:ZSTD_selectAddr
Unexecuted instantiation: zstdmt_compress.c:ZSTD_selectAddr
667
668
/* ZSTD_noCompressBlock() :
669
 * Writes uncompressed block to dst buffer from given src.
670
 * Returns the size of the block */
671
MEM_STATIC size_t
672
ZSTD_noCompressBlock(void* dst, size_t dstCapacity, const void* src, size_t srcSize, U32 lastBlock)
673
98
{
674
98
    U32 const cBlockHeader24 = lastBlock + (((U32)bt_raw)<<1) + (U32)(srcSize << 3);
675
98
    DEBUGLOG(5, "ZSTD_noCompressBlock (srcSize=%zu, dstCapacity=%zu)", srcSize, dstCapacity);
676
98
    RETURN_ERROR_IF(srcSize + ZSTD_blockHeaderSize > dstCapacity,
677
98
                    dstSize_tooSmall, "dst buf too small for uncompressed block");
678
98
    MEM_writeLE24(dst, cBlockHeader24);
679
98
    ZSTD_memcpy((BYTE*)dst + ZSTD_blockHeaderSize, src, srcSize);
680
98
    return ZSTD_blockHeaderSize + srcSize;
681
98
}
zstd_compress.c:ZSTD_noCompressBlock
Line
Count
Source
673
98
{
674
98
    U32 const cBlockHeader24 = lastBlock + (((U32)bt_raw)<<1) + (U32)(srcSize << 3);
675
98
    DEBUGLOG(5, "ZSTD_noCompressBlock (srcSize=%zu, dstCapacity=%zu)", srcSize, dstCapacity);
676
98
    RETURN_ERROR_IF(srcSize + ZSTD_blockHeaderSize > dstCapacity,
677
98
                    dstSize_tooSmall, "dst buf too small for uncompressed block");
678
98
    MEM_writeLE24(dst, cBlockHeader24);
679
98
    ZSTD_memcpy((BYTE*)dst + ZSTD_blockHeaderSize, src, srcSize);
680
98
    return ZSTD_blockHeaderSize + srcSize;
681
98
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_noCompressBlock
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_noCompressBlock
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_noCompressBlock
Unexecuted instantiation: zstd_double_fast.c:ZSTD_noCompressBlock
Unexecuted instantiation: zstd_fast.c:ZSTD_noCompressBlock
Unexecuted instantiation: zstd_lazy.c:ZSTD_noCompressBlock
Unexecuted instantiation: zstd_ldm.c:ZSTD_noCompressBlock
Unexecuted instantiation: zstd_opt.c:ZSTD_noCompressBlock
Unexecuted instantiation: zstdmt_compress.c:ZSTD_noCompressBlock
682
683
MEM_STATIC size_t
684
ZSTD_rleCompressBlock(void* dst, size_t dstCapacity, BYTE src, size_t srcSize, U32 lastBlock)
685
0
{
686
0
    BYTE* const op = (BYTE*)dst;
687
0
    U32 const cBlockHeader = lastBlock + (((U32)bt_rle)<<1) + (U32)(srcSize << 3);
688
0
    RETURN_ERROR_IF(dstCapacity < 4, dstSize_tooSmall, "");
689
0
    MEM_writeLE24(op, cBlockHeader);
690
0
    op[3] = src;
691
0
    return 4;
692
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstd_double_fast.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstd_fast.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstd_lazy.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstd_ldm.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstd_opt.c:ZSTD_rleCompressBlock
Unexecuted instantiation: zstdmt_compress.c:ZSTD_rleCompressBlock
693
694
695
/* ZSTD_minGain() :
696
 * minimum compression required
697
 * to generate a compress block or a compressed literals section.
698
 * note : use same formula for both situations */
699
MEM_STATIC size_t ZSTD_minGain(size_t srcSize, ZSTD_strategy strat)
700
18.9k
{
701
18.9k
    U32 const minlog = (strat>=ZSTD_btultra) ? (U32)(strat) - 1 : 6;
702
18.9k
    ZSTD_STATIC_ASSERT(ZSTD_btultra == 8);
703
18.9k
    assert(ZSTD_cParam_withinBounds(ZSTD_c_strategy, (int)strat));
704
18.9k
    return (srcSize >> minlog) + 2;
705
18.9k
}
zstd_compress.c:ZSTD_minGain
Line
Count
Source
700
15.3k
{
701
15.3k
    U32 const minlog = (strat>=ZSTD_btultra) ? (U32)(strat) - 1 : 6;
702
15.3k
    ZSTD_STATIC_ASSERT(ZSTD_btultra == 8);
703
15.3k
    assert(ZSTD_cParam_withinBounds(ZSTD_c_strategy, (int)strat));
704
15.3k
    return (srcSize >> minlog) + 2;
705
15.3k
}
zstd_compress_literals.c:ZSTD_minGain
Line
Count
Source
700
3.64k
{
701
3.64k
    U32 const minlog = (strat>=ZSTD_btultra) ? (U32)(strat) - 1 : 6;
702
3.64k
    ZSTD_STATIC_ASSERT(ZSTD_btultra == 8);
703
3.64k
    assert(ZSTD_cParam_withinBounds(ZSTD_c_strategy, (int)strat));
704
3.64k
    return (srcSize >> minlog) + 2;
705
3.64k
}
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_minGain
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_minGain
Unexecuted instantiation: zstd_double_fast.c:ZSTD_minGain
Unexecuted instantiation: zstd_fast.c:ZSTD_minGain
Unexecuted instantiation: zstd_lazy.c:ZSTD_minGain
Unexecuted instantiation: zstd_ldm.c:ZSTD_minGain
Unexecuted instantiation: zstd_opt.c:ZSTD_minGain
Unexecuted instantiation: zstdmt_compress.c:ZSTD_minGain
706
707
MEM_STATIC int ZSTD_literalsCompressionIsDisabled(const ZSTD_CCtx_params* cctxParams)
708
15.3k
{
709
15.3k
    switch (cctxParams->literalCompressionMode) {
710
0
    case ZSTD_ps_enable:
711
0
        return 0;
712
0
    case ZSTD_ps_disable:
713
0
        return 1;
714
0
    default:
715
0
        assert(0 /* impossible: pre-validated */);
716
0
        ZSTD_FALLTHROUGH;
717
15.3k
    case ZSTD_ps_auto:
718
15.3k
        return (cctxParams->cParams.strategy == ZSTD_fast) && (cctxParams->cParams.targetLength > 0);
719
15.3k
    }
720
15.3k
}
zstd_compress.c:ZSTD_literalsCompressionIsDisabled
Line
Count
Source
708
15.3k
{
709
15.3k
    switch (cctxParams->literalCompressionMode) {
710
0
    case ZSTD_ps_enable:
711
0
        return 0;
712
0
    case ZSTD_ps_disable:
713
0
        return 1;
714
0
    default:
715
0
        assert(0 /* impossible: pre-validated */);
716
0
        ZSTD_FALLTHROUGH;
717
15.3k
    case ZSTD_ps_auto:
718
15.3k
        return (cctxParams->cParams.strategy == ZSTD_fast) && (cctxParams->cParams.targetLength > 0);
719
15.3k
    }
720
15.3k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_literalsCompressionIsDisabled
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_literalsCompressionIsDisabled
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_literalsCompressionIsDisabled
Unexecuted instantiation: zstd_double_fast.c:ZSTD_literalsCompressionIsDisabled
Unexecuted instantiation: zstd_fast.c:ZSTD_literalsCompressionIsDisabled
Unexecuted instantiation: zstd_lazy.c:ZSTD_literalsCompressionIsDisabled
Unexecuted instantiation: zstd_ldm.c:ZSTD_literalsCompressionIsDisabled
Unexecuted instantiation: zstd_opt.c:ZSTD_literalsCompressionIsDisabled
Unexecuted instantiation: zstdmt_compress.c:ZSTD_literalsCompressionIsDisabled
721
722
/*! ZSTD_safecopyLiterals() :
723
 *  memcpy() function that won't read beyond more than WILDCOPY_OVERLENGTH bytes past ilimit_w.
724
 *  Only called when the sequence ends past ilimit_w, so it only needs to be optimized for single
725
 *  large copies.
726
 */
727
static void
728
ZSTD_safecopyLiterals(BYTE* op, BYTE const* ip, BYTE const* const iend, BYTE const* ilimit_w)
729
2.21k
{
730
2.21k
    assert(iend > ilimit_w);
731
2.21k
    if (ip <= ilimit_w) {
732
389
        ZSTD_wildcopy(op, ip, (size_t)(ilimit_w - ip), ZSTD_no_overlap);
733
389
        op += ilimit_w - ip;
734
389
        ip = ilimit_w;
735
389
    }
736
6.01k
    while (ip < iend) *op++ = *ip++;
737
2.21k
}
Unexecuted instantiation: zstd_compress.c:ZSTD_safecopyLiterals
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_safecopyLiterals
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_safecopyLiterals
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_safecopyLiterals
Unexecuted instantiation: zstd_double_fast.c:ZSTD_safecopyLiterals
Unexecuted instantiation: zstd_fast.c:ZSTD_safecopyLiterals
zstd_lazy.c:ZSTD_safecopyLiterals
Line
Count
Source
729
2.21k
{
730
2.21k
    assert(iend > ilimit_w);
731
2.21k
    if (ip <= ilimit_w) {
732
389
        ZSTD_wildcopy(op, ip, (size_t)(ilimit_w - ip), ZSTD_no_overlap);
733
389
        op += ilimit_w - ip;
734
389
        ip = ilimit_w;
735
389
    }
736
6.01k
    while (ip < iend) *op++ = *ip++;
737
2.21k
}
Unexecuted instantiation: zstd_ldm.c:ZSTD_safecopyLiterals
Unexecuted instantiation: zstd_opt.c:ZSTD_safecopyLiterals
Unexecuted instantiation: zstdmt_compress.c:ZSTD_safecopyLiterals
738
739
740
6.34M
#define REPCODE1_TO_OFFBASE REPCODE_TO_OFFBASE(1)
741
#define REPCODE2_TO_OFFBASE REPCODE_TO_OFFBASE(2)
742
0
#define REPCODE3_TO_OFFBASE REPCODE_TO_OFFBASE(3)
743
6.34M
#define REPCODE_TO_OFFBASE(r) (assert((r)>=1), assert((r)<=ZSTD_REP_NUM), (r)) /* accepts IDs 1,2,3 */
744
25.7M
#define OFFSET_TO_OFFBASE(o)  (assert((o)>0), o + ZSTD_REP_NUM)
745
2.80M
#define OFFBASE_IS_OFFSET(o)  ((o) > ZSTD_REP_NUM)
746
0
#define OFFBASE_IS_REPCODE(o) ( 1 <= (o) && (o) <= ZSTD_REP_NUM)
747
6.70M
#define OFFBASE_TO_OFFSET(o)  (assert(OFFBASE_IS_OFFSET(o)), (o) - ZSTD_REP_NUM)
748
0
#define OFFBASE_TO_REPCODE(o) (assert(OFFBASE_IS_REPCODE(o)), (o))  /* returns ID 1,2,3 */
749
750
/*! ZSTD_storeSeqOnly() :
751
 *  Store a sequence (litlen, litPtr, offBase and matchLength) into SeqStore_t.
752
 *  Literals themselves are not copied, but @litPtr is updated.
753
 *  @offBase : Users should employ macros REPCODE_TO_OFFBASE() and OFFSET_TO_OFFBASE().
754
 *  @matchLength : must be >= MINMATCH
755
*/
756
HINT_INLINE UNUSED_ATTR void
757
ZSTD_storeSeqOnly(SeqStore_t* seqStorePtr,
758
              size_t litLength,
759
              U32 offBase,
760
              size_t matchLength)
761
3.89M
{
762
3.89M
    assert((size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart) < seqStorePtr->maxNbSeq);
763
764
    /* literal Length */
765
3.89M
    assert(litLength <= ZSTD_BLOCKSIZE_MAX);
766
3.89M
    if (UNLIKELY(litLength>0xFFFF)) {
767
0
        assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */
768
0
        seqStorePtr->longLengthType = ZSTD_llt_literalLength;
769
0
        seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
770
0
    }
771
3.89M
    seqStorePtr->sequences[0].litLength = (U16)litLength;
772
773
    /* match offset */
774
3.89M
    seqStorePtr->sequences[0].offBase = offBase;
775
776
    /* match Length */
777
3.89M
    assert(matchLength <= ZSTD_BLOCKSIZE_MAX);
778
3.89M
    assert(matchLength >= MINMATCH);
779
3.89M
    {   size_t const mlBase = matchLength - MINMATCH;
780
3.89M
        if (UNLIKELY(mlBase>0xFFFF)) {
781
7.65k
            assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */
782
7.65k
            seqStorePtr->longLengthType = ZSTD_llt_matchLength;
783
7.65k
            seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
784
7.65k
        }
785
3.89M
        seqStorePtr->sequences[0].mlBase = (U16)mlBase;
786
3.89M
    }
787
788
3.89M
    seqStorePtr->sequences++;
789
3.89M
}
Unexecuted instantiation: zstd_compress.c:ZSTD_storeSeqOnly
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_storeSeqOnly
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_storeSeqOnly
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_storeSeqOnly
Unexecuted instantiation: zstd_double_fast.c:ZSTD_storeSeqOnly
Unexecuted instantiation: zstd_fast.c:ZSTD_storeSeqOnly
zstd_lazy.c:ZSTD_storeSeqOnly
Line
Count
Source
761
3.89M
{
762
3.89M
    assert((size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart) < seqStorePtr->maxNbSeq);
763
764
    /* literal Length */
765
3.89M
    assert(litLength <= ZSTD_BLOCKSIZE_MAX);
766
3.89M
    if (UNLIKELY(litLength>0xFFFF)) {
767
0
        assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */
768
0
        seqStorePtr->longLengthType = ZSTD_llt_literalLength;
769
0
        seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
770
0
    }
771
3.89M
    seqStorePtr->sequences[0].litLength = (U16)litLength;
772
773
    /* match offset */
774
3.89M
    seqStorePtr->sequences[0].offBase = offBase;
775
776
    /* match Length */
777
3.89M
    assert(matchLength <= ZSTD_BLOCKSIZE_MAX);
778
3.89M
    assert(matchLength >= MINMATCH);
779
3.89M
    {   size_t const mlBase = matchLength - MINMATCH;
780
3.89M
        if (UNLIKELY(mlBase>0xFFFF)) {
781
7.65k
            assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */
782
7.65k
            seqStorePtr->longLengthType = ZSTD_llt_matchLength;
783
7.65k
            seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
784
7.65k
        }
785
3.89M
        seqStorePtr->sequences[0].mlBase = (U16)mlBase;
786
3.89M
    }
787
788
3.89M
    seqStorePtr->sequences++;
789
3.89M
}
Unexecuted instantiation: zstd_ldm.c:ZSTD_storeSeqOnly
Unexecuted instantiation: zstd_opt.c:ZSTD_storeSeqOnly
Unexecuted instantiation: zstdmt_compress.c:ZSTD_storeSeqOnly
790
791
/*! ZSTD_storeSeq() :
792
 *  Store a sequence (litlen, litPtr, offBase and matchLength) into SeqStore_t.
793
 *  @offBase : Users should employ macros REPCODE_TO_OFFBASE() and OFFSET_TO_OFFBASE().
794
 *  @matchLength : must be >= MINMATCH
795
 *  Allowed to over-read literals up to litLimit.
796
*/
797
HINT_INLINE UNUSED_ATTR void
798
ZSTD_storeSeq(SeqStore_t* seqStorePtr,
799
              size_t litLength, const BYTE* literals, const BYTE* litLimit,
800
              U32 offBase,
801
              size_t matchLength)
802
3.89M
{
803
3.89M
    BYTE const* const litLimit_w = litLimit - WILDCOPY_OVERLENGTH;
804
3.89M
    BYTE const* const litEnd = literals + litLength;
805
#if defined(DEBUGLEVEL) && (DEBUGLEVEL >= 6)
806
    static const BYTE* g_start = NULL;
807
    if (g_start==NULL) g_start = (const BYTE*)literals;  /* note : index only works for compression within a single segment */
808
    {   U32 const pos = (U32)((const BYTE*)literals - g_start);
809
        DEBUGLOG(6, "Cpos%7u :%3u literals, match%4u bytes at offBase%7u",
810
               pos, (U32)litLength, (U32)matchLength, (U32)offBase);
811
    }
812
#endif
813
3.89M
    assert((size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart) < seqStorePtr->maxNbSeq);
814
    /* copy Literals */
815
3.89M
    assert(seqStorePtr->maxNbLit <= 128 KB);
816
3.89M
    assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit);
817
3.89M
    assert(literals + litLength <= litLimit);
818
3.89M
    if (litEnd <= litLimit_w) {
819
        /* Common case we can use wildcopy.
820
         * First copy 16 bytes, because literals are likely short.
821
         */
822
3.88M
        ZSTD_STATIC_ASSERT(WILDCOPY_OVERLENGTH >= 16);
823
3.88M
        ZSTD_copy16(seqStorePtr->lit, literals);
824
3.88M
        if (litLength > 16) {
825
25.6k
            ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, litLength-16, ZSTD_no_overlap);
826
25.6k
        }
827
3.88M
    } else {
828
2.21k
        ZSTD_safecopyLiterals(seqStorePtr->lit, literals, litEnd, litLimit_w);
829
2.21k
    }
830
3.89M
    seqStorePtr->lit += litLength;
831
832
3.89M
    ZSTD_storeSeqOnly(seqStorePtr, litLength, offBase, matchLength);
833
3.89M
}
Unexecuted instantiation: zstd_compress.c:ZSTD_storeSeq
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_storeSeq
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_storeSeq
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_storeSeq
Unexecuted instantiation: zstd_double_fast.c:ZSTD_storeSeq
Unexecuted instantiation: zstd_fast.c:ZSTD_storeSeq
zstd_lazy.c:ZSTD_storeSeq
Line
Count
Source
802
3.89M
{
803
3.89M
    BYTE const* const litLimit_w = litLimit - WILDCOPY_OVERLENGTH;
804
3.89M
    BYTE const* const litEnd = literals + litLength;
805
#if defined(DEBUGLEVEL) && (DEBUGLEVEL >= 6)
806
    static const BYTE* g_start = NULL;
807
    if (g_start==NULL) g_start = (const BYTE*)literals;  /* note : index only works for compression within a single segment */
808
    {   U32 const pos = (U32)((const BYTE*)literals - g_start);
809
        DEBUGLOG(6, "Cpos%7u :%3u literals, match%4u bytes at offBase%7u",
810
               pos, (U32)litLength, (U32)matchLength, (U32)offBase);
811
    }
812
#endif
813
3.89M
    assert((size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart) < seqStorePtr->maxNbSeq);
814
    /* copy Literals */
815
3.89M
    assert(seqStorePtr->maxNbLit <= 128 KB);
816
3.89M
    assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit);
817
3.89M
    assert(literals + litLength <= litLimit);
818
3.89M
    if (litEnd <= litLimit_w) {
819
        /* Common case we can use wildcopy.
820
         * First copy 16 bytes, because literals are likely short.
821
         */
822
3.88M
        ZSTD_STATIC_ASSERT(WILDCOPY_OVERLENGTH >= 16);
823
3.88M
        ZSTD_copy16(seqStorePtr->lit, literals);
824
3.88M
        if (litLength > 16) {
825
25.6k
            ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, litLength-16, ZSTD_no_overlap);
826
25.6k
        }
827
3.88M
    } else {
828
2.21k
        ZSTD_safecopyLiterals(seqStorePtr->lit, literals, litEnd, litLimit_w);
829
2.21k
    }
830
3.89M
    seqStorePtr->lit += litLength;
831
832
3.89M
    ZSTD_storeSeqOnly(seqStorePtr, litLength, offBase, matchLength);
833
3.89M
}
Unexecuted instantiation: zstd_ldm.c:ZSTD_storeSeq
Unexecuted instantiation: zstd_opt.c:ZSTD_storeSeq
Unexecuted instantiation: zstdmt_compress.c:ZSTD_storeSeq
834
835
/* ZSTD_updateRep() :
836
 * updates in-place @rep (array of repeat offsets)
837
 * @offBase : sum-type, using numeric representation of ZSTD_storeSeq()
838
 */
839
MEM_STATIC void
840
ZSTD_updateRep(U32 rep[ZSTD_REP_NUM], U32 const offBase, U32 const ll0)
841
0
{
842
0
    if (OFFBASE_IS_OFFSET(offBase)) {  /* full offset */
843
0
        rep[2] = rep[1];
844
0
        rep[1] = rep[0];
845
0
        rep[0] = OFFBASE_TO_OFFSET(offBase);
846
0
    } else {   /* repcode */
847
0
        U32 const repCode = OFFBASE_TO_REPCODE(offBase) - 1 + ll0;
848
0
        if (repCode > 0) {  /* note : if repCode==0, no change */
849
0
            U32 const currentOffset = (repCode==ZSTD_REP_NUM) ? (rep[0] - 1) : rep[repCode];
850
0
            rep[2] = (repCode >= 2) ? rep[1] : rep[2];
851
0
            rep[1] = rep[0];
852
0
            rep[0] = currentOffset;
853
0
        } else {   /* repCode == 0 */
854
            /* nothing to do */
855
0
        }
856
0
    }
857
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_updateRep
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_updateRep
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_updateRep
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_updateRep
Unexecuted instantiation: zstd_double_fast.c:ZSTD_updateRep
Unexecuted instantiation: zstd_fast.c:ZSTD_updateRep
Unexecuted instantiation: zstd_lazy.c:ZSTD_updateRep
Unexecuted instantiation: zstd_ldm.c:ZSTD_updateRep
Unexecuted instantiation: zstd_opt.c:ZSTD_updateRep
Unexecuted instantiation: zstdmt_compress.c:ZSTD_updateRep
858
859
typedef struct repcodes_s {
860
    U32 rep[3];
861
} Repcodes_t;
862
863
MEM_STATIC Repcodes_t
864
ZSTD_newRep(U32 const rep[ZSTD_REP_NUM], U32 const offBase, U32 const ll0)
865
0
{
866
0
    Repcodes_t newReps;
867
0
    ZSTD_memcpy(&newReps, rep, sizeof(newReps));
868
0
    ZSTD_updateRep(newReps.rep, offBase, ll0);
869
0
    return newReps;
870
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_newRep
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_newRep
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_newRep
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_newRep
Unexecuted instantiation: zstd_double_fast.c:ZSTD_newRep
Unexecuted instantiation: zstd_fast.c:ZSTD_newRep
Unexecuted instantiation: zstd_lazy.c:ZSTD_newRep
Unexecuted instantiation: zstd_ldm.c:ZSTD_newRep
Unexecuted instantiation: zstd_opt.c:ZSTD_newRep
Unexecuted instantiation: zstdmt_compress.c:ZSTD_newRep
871
872
873
/*-*************************************
874
*  Match length counter
875
***************************************/
876
MEM_STATIC size_t ZSTD_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* const pInLimit)
877
33.6M
{
878
33.6M
    const BYTE* const pStart = pIn;
879
33.6M
    const BYTE* const pInLoopLimit = pInLimit - (sizeof(size_t)-1);
880
881
33.6M
    if (pIn < pInLoopLimit) {
882
33.6M
        { size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn);
883
33.6M
          if (diff) return ZSTD_NbCommonBytes(diff); }
884
20.2M
        pIn+=sizeof(size_t); pMatch+=sizeof(size_t);
885
657M
        while (pIn < pInLoopLimit) {
886
657M
            size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn);
887
657M
            if (!diff) { pIn+=sizeof(size_t); pMatch+=sizeof(size_t); continue; }
888
20.1M
            pIn += ZSTD_NbCommonBytes(diff);
889
20.1M
            return (size_t)(pIn - pStart);
890
657M
    }   }
891
33.1k
    if (MEM_64bits() && (pIn<(pInLimit-3)) && (MEM_read32(pMatch) == MEM_read32(pIn))) { pIn+=4; pMatch+=4; }
892
33.1k
    if ((pIn<(pInLimit-1)) && (MEM_read16(pMatch) == MEM_read16(pIn))) { pIn+=2; pMatch+=2; }
893
33.1k
    if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++;
894
33.1k
    return (size_t)(pIn - pStart);
895
33.6M
}
zstd_compress.c:ZSTD_count
Line
Count
Source
877
1.17k
{
878
1.17k
    const BYTE* const pStart = pIn;
879
1.17k
    const BYTE* const pInLoopLimit = pInLimit - (sizeof(size_t)-1);
880
881
1.17k
    if (pIn < pInLoopLimit) {
882
708
        { size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn);
883
708
          if (diff) return ZSTD_NbCommonBytes(diff); }
884
225
        pIn+=sizeof(size_t); pMatch+=sizeof(size_t);
885
356
        while (pIn < pInLoopLimit) {
886
183
            size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn);
887
183
            if (!diff) { pIn+=sizeof(size_t); pMatch+=sizeof(size_t); continue; }
888
52
            pIn += ZSTD_NbCommonBytes(diff);
889
52
            return (size_t)(pIn - pStart);
890
183
    }   }
891
640
    if (MEM_64bits() && (pIn<(pInLimit-3)) && (MEM_read32(pMatch) == MEM_read32(pIn))) { pIn+=4; pMatch+=4; }
892
640
    if ((pIn<(pInLimit-1)) && (MEM_read16(pMatch) == MEM_read16(pIn))) { pIn+=2; pMatch+=2; }
893
640
    if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++;
894
640
    return (size_t)(pIn - pStart);
895
1.17k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_count
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_count
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_count
Unexecuted instantiation: zstd_double_fast.c:ZSTD_count
Unexecuted instantiation: zstd_fast.c:ZSTD_count
zstd_lazy.c:ZSTD_count
Line
Count
Source
877
33.6M
{
878
33.6M
    const BYTE* const pStart = pIn;
879
33.6M
    const BYTE* const pInLoopLimit = pInLimit - (sizeof(size_t)-1);
880
881
33.6M
    if (pIn < pInLoopLimit) {
882
33.6M
        { size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn);
883
33.6M
          if (diff) return ZSTD_NbCommonBytes(diff); }
884
20.2M
        pIn+=sizeof(size_t); pMatch+=sizeof(size_t);
885
657M
        while (pIn < pInLoopLimit) {
886
657M
            size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn);
887
657M
            if (!diff) { pIn+=sizeof(size_t); pMatch+=sizeof(size_t); continue; }
888
20.1M
            pIn += ZSTD_NbCommonBytes(diff);
889
20.1M
            return (size_t)(pIn - pStart);
890
657M
    }   }
891
32.4k
    if (MEM_64bits() && (pIn<(pInLimit-3)) && (MEM_read32(pMatch) == MEM_read32(pIn))) { pIn+=4; pMatch+=4; }
892
32.4k
    if ((pIn<(pInLimit-1)) && (MEM_read16(pMatch) == MEM_read16(pIn))) { pIn+=2; pMatch+=2; }
893
32.4k
    if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++;
894
32.4k
    return (size_t)(pIn - pStart);
895
33.6M
}
Unexecuted instantiation: zstd_ldm.c:ZSTD_count
Unexecuted instantiation: zstd_opt.c:ZSTD_count
Unexecuted instantiation: zstdmt_compress.c:ZSTD_count
896
897
/** ZSTD_count_2segments() :
898
 *  can count match length with `ip` & `match` in 2 different segments.
899
 *  convention : on reaching mEnd, match count continue starting from iStart
900
 */
901
MEM_STATIC size_t
902
ZSTD_count_2segments(const BYTE* ip, const BYTE* match,
903
                     const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart)
904
0
{
905
0
    const BYTE* const vEnd = MIN( ip + (mEnd - match), iEnd);
906
0
    size_t const matchLength = ZSTD_count(ip, match, vEnd);
907
0
    if (match + matchLength != mEnd) return matchLength;
908
0
    DEBUGLOG(7, "ZSTD_count_2segments: found a 2-parts match (current length==%zu)", matchLength);
909
0
    DEBUGLOG(7, "distance from match beginning to end dictionary = %i", (int)(mEnd - match));
910
0
    DEBUGLOG(7, "distance from current pos to end buffer = %i", (int)(iEnd - ip));
911
0
    DEBUGLOG(7, "next byte : ip==%02X, istart==%02X", ip[matchLength], *iStart);
912
0
    DEBUGLOG(7, "final match length = %zu", matchLength + ZSTD_count(ip+matchLength, iStart, iEnd));
913
0
    return matchLength + ZSTD_count(ip+matchLength, iStart, iEnd);
914
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_count_2segments
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_count_2segments
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_count_2segments
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_count_2segments
Unexecuted instantiation: zstd_double_fast.c:ZSTD_count_2segments
Unexecuted instantiation: zstd_fast.c:ZSTD_count_2segments
Unexecuted instantiation: zstd_lazy.c:ZSTD_count_2segments
Unexecuted instantiation: zstd_ldm.c:ZSTD_count_2segments
Unexecuted instantiation: zstd_opt.c:ZSTD_count_2segments
Unexecuted instantiation: zstdmt_compress.c:ZSTD_count_2segments
915
916
917
/*-*************************************
918
 *  Hashes
919
 ***************************************/
920
static const U32 prime3bytes = 506832829U;
921
0
static U32    ZSTD_hash3(U32 u, U32 h, U32 s) { assert(h <= 32); return (((u << (32-24)) * prime3bytes) ^ s)  >> (32-h) ; }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash3
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash3
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash3
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash3
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash3
Unexecuted instantiation: zstd_fast.c:ZSTD_hash3
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash3
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash3
Unexecuted instantiation: zstd_opt.c:ZSTD_hash3
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash3
922
0
MEM_STATIC size_t ZSTD_hash3Ptr(const void* ptr, U32 h) { return ZSTD_hash3(MEM_readLE32(ptr), h, 0); } /* only in zstd_opt.h */
Unexecuted instantiation: zstd_compress.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstd_fast.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstd_opt.c:ZSTD_hash3Ptr
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash3Ptr
923
0
MEM_STATIC size_t ZSTD_hash3PtrS(const void* ptr, U32 h, U32 s) { return ZSTD_hash3(MEM_readLE32(ptr), h, s); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstd_fast.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstd_opt.c:ZSTD_hash3PtrS
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash3PtrS
924
925
static const U32 prime4bytes = 2654435761U;
926
0
static U32    ZSTD_hash4(U32 u, U32 h, U32 s) { assert(h <= 32); return ((u * prime4bytes) ^ s) >> (32-h) ; }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash4
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash4
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash4
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash4
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash4
Unexecuted instantiation: zstd_fast.c:ZSTD_hash4
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash4
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash4
Unexecuted instantiation: zstd_opt.c:ZSTD_hash4
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash4
927
0
static size_t ZSTD_hash4Ptr(const void* ptr, U32 h) { return ZSTD_hash4(MEM_readLE32(ptr), h, 0); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstd_fast.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstd_opt.c:ZSTD_hash4Ptr
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash4Ptr
928
0
static size_t ZSTD_hash4PtrS(const void* ptr, U32 h, U32 s) { return ZSTD_hash4(MEM_readLE32(ptr), h, s); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstd_fast.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstd_opt.c:ZSTD_hash4PtrS
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash4PtrS
929
930
static const U64 prime5bytes = 889523592379ULL;
931
95.3M
static size_t ZSTD_hash5(U64 u, U32 h, U64 s) { assert(h <= 64); return (size_t)((((u  << (64-40)) * prime5bytes) ^ s) >> (64-h)) ; }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash5
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash5
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash5
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash5
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash5
Unexecuted instantiation: zstd_fast.c:ZSTD_hash5
zstd_lazy.c:ZSTD_hash5
Line
Count
Source
931
95.3M
static size_t ZSTD_hash5(U64 u, U32 h, U64 s) { assert(h <= 64); return (size_t)((((u  << (64-40)) * prime5bytes) ^ s) >> (64-h)) ; }
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash5
Unexecuted instantiation: zstd_opt.c:ZSTD_hash5
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash5
932
0
static size_t ZSTD_hash5Ptr(const void* p, U32 h) { return ZSTD_hash5(MEM_readLE64(p), h, 0); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstd_fast.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstd_opt.c:ZSTD_hash5Ptr
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash5Ptr
933
95.3M
static size_t ZSTD_hash5PtrS(const void* p, U32 h, U64 s) { return ZSTD_hash5(MEM_readLE64(p), h, s); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash5PtrS
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash5PtrS
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash5PtrS
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash5PtrS
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash5PtrS
Unexecuted instantiation: zstd_fast.c:ZSTD_hash5PtrS
zstd_lazy.c:ZSTD_hash5PtrS
Line
Count
Source
933
95.3M
static size_t ZSTD_hash5PtrS(const void* p, U32 h, U64 s) { return ZSTD_hash5(MEM_readLE64(p), h, s); }
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash5PtrS
Unexecuted instantiation: zstd_opt.c:ZSTD_hash5PtrS
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash5PtrS
934
935
static const U64 prime6bytes = 227718039650203ULL;
936
0
static size_t ZSTD_hash6(U64 u, U32 h, U64 s) { assert(h <= 64); return (size_t)((((u  << (64-48)) * prime6bytes) ^ s) >> (64-h)) ; }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash6
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash6
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash6
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash6
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash6
Unexecuted instantiation: zstd_fast.c:ZSTD_hash6
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash6
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash6
Unexecuted instantiation: zstd_opt.c:ZSTD_hash6
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash6
937
0
static size_t ZSTD_hash6Ptr(const void* p, U32 h) { return ZSTD_hash6(MEM_readLE64(p), h, 0); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstd_fast.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstd_opt.c:ZSTD_hash6Ptr
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash6Ptr
938
0
static size_t ZSTD_hash6PtrS(const void* p, U32 h, U64 s) { return ZSTD_hash6(MEM_readLE64(p), h, s); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstd_fast.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstd_opt.c:ZSTD_hash6PtrS
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash6PtrS
939
940
static const U64 prime7bytes = 58295818150454627ULL;
941
0
static size_t ZSTD_hash7(U64 u, U32 h, U64 s) { assert(h <= 64); return (size_t)((((u  << (64-56)) * prime7bytes) ^ s) >> (64-h)) ; }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash7
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash7
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash7
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash7
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash7
Unexecuted instantiation: zstd_fast.c:ZSTD_hash7
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash7
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash7
Unexecuted instantiation: zstd_opt.c:ZSTD_hash7
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash7
942
0
static size_t ZSTD_hash7Ptr(const void* p, U32 h) { return ZSTD_hash7(MEM_readLE64(p), h, 0); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstd_fast.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstd_opt.c:ZSTD_hash7Ptr
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash7Ptr
943
0
static size_t ZSTD_hash7PtrS(const void* p, U32 h, U64 s) { return ZSTD_hash7(MEM_readLE64(p), h, s); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstd_fast.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstd_opt.c:ZSTD_hash7PtrS
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash7PtrS
944
945
static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL;
946
0
static size_t ZSTD_hash8(U64 u, U32 h, U64 s) { assert(h <= 64); return (size_t)((((u) * prime8bytes)  ^ s) >> (64-h)) ; }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash8
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash8
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash8
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash8
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash8
Unexecuted instantiation: zstd_fast.c:ZSTD_hash8
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash8
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash8
Unexecuted instantiation: zstd_opt.c:ZSTD_hash8
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash8
947
0
static size_t ZSTD_hash8Ptr(const void* p, U32 h) { return ZSTD_hash8(MEM_readLE64(p), h, 0); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstd_fast.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstd_opt.c:ZSTD_hash8Ptr
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash8Ptr
948
0
static size_t ZSTD_hash8PtrS(const void* p, U32 h, U64 s) { return ZSTD_hash8(MEM_readLE64(p), h, s); }
Unexecuted instantiation: zstd_compress.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstd_fast.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstd_lazy.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstd_ldm.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstd_opt.c:ZSTD_hash8PtrS
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hash8PtrS
949
950
951
MEM_STATIC FORCE_INLINE_ATTR
952
size_t ZSTD_hashPtr(const void* p, U32 hBits, U32 mls)
953
0
{
954
    /* Although some of these hashes do support hBits up to 64, some do not.
955
     * To be on the safe side, always avoid hBits > 32. */
956
0
    assert(hBits <= 32);
957
958
0
    switch(mls)
959
0
    {
960
0
    default:
961
0
    case 4: return ZSTD_hash4Ptr(p, hBits);
962
0
    case 5: return ZSTD_hash5Ptr(p, hBits);
963
0
    case 6: return ZSTD_hash6Ptr(p, hBits);
964
0
    case 7: return ZSTD_hash7Ptr(p, hBits);
965
0
    case 8: return ZSTD_hash8Ptr(p, hBits);
966
0
    }
967
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_hashPtr
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hashPtr
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hashPtr
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hashPtr
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hashPtr
Unexecuted instantiation: zstd_fast.c:ZSTD_hashPtr
Unexecuted instantiation: zstd_lazy.c:ZSTD_hashPtr
Unexecuted instantiation: zstd_ldm.c:ZSTD_hashPtr
Unexecuted instantiation: zstd_opt.c:ZSTD_hashPtr
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hashPtr
968
969
MEM_STATIC FORCE_INLINE_ATTR
970
95.3M
size_t ZSTD_hashPtrSalted(const void* p, U32 hBits, U32 mls, const U64 hashSalt) {
971
    /* Although some of these hashes do support hBits up to 64, some do not.
972
     * To be on the safe side, always avoid hBits > 32. */
973
95.3M
    assert(hBits <= 32);
974
975
95.3M
    switch(mls)
976
95.3M
    {
977
0
        default:
978
0
        case 4: return ZSTD_hash4PtrS(p, hBits, (U32)hashSalt);
979
95.3M
        case 5: return ZSTD_hash5PtrS(p, hBits, hashSalt);
980
0
        case 6: return ZSTD_hash6PtrS(p, hBits, hashSalt);
981
0
        case 7: return ZSTD_hash7PtrS(p, hBits, hashSalt);
982
0
        case 8: return ZSTD_hash8PtrS(p, hBits, hashSalt);
983
95.3M
    }
984
95.3M
}
Unexecuted instantiation: zstd_compress.c:ZSTD_hashPtrSalted
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hashPtrSalted
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hashPtrSalted
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hashPtrSalted
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hashPtrSalted
Unexecuted instantiation: zstd_fast.c:ZSTD_hashPtrSalted
zstd_lazy.c:ZSTD_hashPtrSalted
Line
Count
Source
970
95.3M
size_t ZSTD_hashPtrSalted(const void* p, U32 hBits, U32 mls, const U64 hashSalt) {
971
    /* Although some of these hashes do support hBits up to 64, some do not.
972
     * To be on the safe side, always avoid hBits > 32. */
973
95.3M
    assert(hBits <= 32);
974
975
95.3M
    switch(mls)
976
95.3M
    {
977
0
        default:
978
0
        case 4: return ZSTD_hash4PtrS(p, hBits, (U32)hashSalt);
979
95.3M
        case 5: return ZSTD_hash5PtrS(p, hBits, hashSalt);
980
0
        case 6: return ZSTD_hash6PtrS(p, hBits, hashSalt);
981
0
        case 7: return ZSTD_hash7PtrS(p, hBits, hashSalt);
982
0
        case 8: return ZSTD_hash8PtrS(p, hBits, hashSalt);
983
95.3M
    }
984
95.3M
}
Unexecuted instantiation: zstd_ldm.c:ZSTD_hashPtrSalted
Unexecuted instantiation: zstd_opt.c:ZSTD_hashPtrSalted
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hashPtrSalted
985
986
987
/** ZSTD_ipow() :
988
 * Return base^exponent.
989
 */
990
static U64 ZSTD_ipow(U64 base, U64 exponent)
991
0
{
992
0
    U64 power = 1;
993
0
    while (exponent) {
994
0
      if (exponent & 1) power *= base;
995
0
      exponent >>= 1;
996
0
      base *= base;
997
0
    }
998
0
    return power;
999
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_ipow
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_ipow
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_ipow
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_ipow
Unexecuted instantiation: zstd_double_fast.c:ZSTD_ipow
Unexecuted instantiation: zstd_fast.c:ZSTD_ipow
Unexecuted instantiation: zstd_lazy.c:ZSTD_ipow
Unexecuted instantiation: zstd_ldm.c:ZSTD_ipow
Unexecuted instantiation: zstd_opt.c:ZSTD_ipow
Unexecuted instantiation: zstdmt_compress.c:ZSTD_ipow
1000
1001
0
#define ZSTD_ROLL_HASH_CHAR_OFFSET 10
1002
1003
/** ZSTD_rollingHash_append() :
1004
 * Add the buffer to the hash value.
1005
 */
1006
static U64 ZSTD_rollingHash_append(U64 hash, void const* buf, size_t size)
1007
0
{
1008
0
    BYTE const* istart = (BYTE const*)buf;
1009
0
    size_t pos;
1010
0
    for (pos = 0; pos < size; ++pos) {
1011
0
        hash *= prime8bytes;
1012
0
        hash += istart[pos] + ZSTD_ROLL_HASH_CHAR_OFFSET;
1013
0
    }
1014
0
    return hash;
1015
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstd_double_fast.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstd_fast.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstd_lazy.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstd_ldm.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstd_opt.c:ZSTD_rollingHash_append
Unexecuted instantiation: zstdmt_compress.c:ZSTD_rollingHash_append
1016
1017
/** ZSTD_rollingHash_compute() :
1018
 * Compute the rolling hash value of the buffer.
1019
 */
1020
MEM_STATIC U64 ZSTD_rollingHash_compute(void const* buf, size_t size)
1021
0
{
1022
0
    return ZSTD_rollingHash_append(0, buf, size);
1023
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstd_double_fast.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstd_fast.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstd_lazy.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstd_ldm.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstd_opt.c:ZSTD_rollingHash_compute
Unexecuted instantiation: zstdmt_compress.c:ZSTD_rollingHash_compute
1024
1025
/** ZSTD_rollingHash_primePower() :
1026
 * Compute the primePower to be passed to ZSTD_rollingHash_rotate() for a hash
1027
 * over a window of length bytes.
1028
 */
1029
MEM_STATIC U64 ZSTD_rollingHash_primePower(U32 length)
1030
0
{
1031
0
    return ZSTD_ipow(prime8bytes, length - 1);
1032
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstd_double_fast.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstd_fast.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstd_lazy.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstd_ldm.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstd_opt.c:ZSTD_rollingHash_primePower
Unexecuted instantiation: zstdmt_compress.c:ZSTD_rollingHash_primePower
1033
1034
/** ZSTD_rollingHash_rotate() :
1035
 * Rotate the rolling hash by one byte.
1036
 */
1037
MEM_STATIC U64 ZSTD_rollingHash_rotate(U64 hash, BYTE toRemove, BYTE toAdd, U64 primePower)
1038
0
{
1039
0
    hash -= (toRemove + ZSTD_ROLL_HASH_CHAR_OFFSET) * primePower;
1040
0
    hash *= prime8bytes;
1041
0
    hash += toAdd + ZSTD_ROLL_HASH_CHAR_OFFSET;
1042
0
    return hash;
1043
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstd_double_fast.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstd_fast.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstd_lazy.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstd_ldm.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstd_opt.c:ZSTD_rollingHash_rotate
Unexecuted instantiation: zstdmt_compress.c:ZSTD_rollingHash_rotate
1044
1045
/*-*************************************
1046
*  Round buffer management
1047
***************************************/
1048
/* Max @current value allowed:
1049
 * In 32-bit mode: we want to avoid crossing the 2 GB limit,
1050
 *                 reducing risks of side effects in case of signed operations on indexes.
1051
 * In 64-bit mode: we want to ensure that adding the maximum job size (512 MB)
1052
 *                 doesn't overflow U32 index capacity (4 GB) */
1053
25.4k
#define ZSTD_CURRENT_MAX (MEM_64bits() ? 3500U MB : 2000U MB)
1054
/* Maximum chunk size before overflow correction needs to be called again */
1055
#define ZSTD_CHUNKSIZE_MAX                                                     \
1056
5.08k
    ( ((U32)-1)                  /* Maximum ending current index */            \
1057
5.08k
    - ZSTD_CURRENT_MAX)          /* Maximum beginning lowLimit */
1058
1059
/**
1060
 * ZSTD_window_clear():
1061
 * Clears the window containing the history by simply setting it to empty.
1062
 */
1063
MEM_STATIC void ZSTD_window_clear(ZSTD_window_t* window)
1064
5.08k
{
1065
5.08k
    size_t const endT = (size_t)(window->nextSrc - window->base);
1066
5.08k
    U32 const end = (U32)endT;
1067
1068
5.08k
    window->lowLimit = end;
1069
5.08k
    window->dictLimit = end;
1070
5.08k
}
zstd_compress.c:ZSTD_window_clear
Line
Count
Source
1064
5.08k
{
1065
5.08k
    size_t const endT = (size_t)(window->nextSrc - window->base);
1066
5.08k
    U32 const end = (U32)endT;
1067
1068
5.08k
    window->lowLimit = end;
1069
5.08k
    window->dictLimit = end;
1070
5.08k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_clear
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_clear
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_clear
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_clear
Unexecuted instantiation: zstd_fast.c:ZSTD_window_clear
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_clear
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_clear
Unexecuted instantiation: zstd_opt.c:ZSTD_window_clear
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_clear
1071
1072
MEM_STATIC U32 ZSTD_window_isEmpty(ZSTD_window_t const window)
1073
0
{
1074
0
    return window.dictLimit == ZSTD_WINDOW_START_INDEX &&
1075
0
           window.lowLimit == ZSTD_WINDOW_START_INDEX &&
1076
0
           (window.nextSrc - window.base) == ZSTD_WINDOW_START_INDEX;
1077
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstd_fast.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstd_opt.c:ZSTD_window_isEmpty
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_isEmpty
1078
1079
/**
1080
 * ZSTD_window_hasExtDict():
1081
 * Returns non-zero if the window has a non-empty extDict.
1082
 */
1083
MEM_STATIC U32 ZSTD_window_hasExtDict(ZSTD_window_t const window)
1084
15.3k
{
1085
15.3k
    return window.lowLimit < window.dictLimit;
1086
15.3k
}
zstd_compress.c:ZSTD_window_hasExtDict
Line
Count
Source
1084
15.3k
{
1085
15.3k
    return window.lowLimit < window.dictLimit;
1086
15.3k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_hasExtDict
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_hasExtDict
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_hasExtDict
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_hasExtDict
Unexecuted instantiation: zstd_fast.c:ZSTD_window_hasExtDict
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_hasExtDict
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_hasExtDict
Unexecuted instantiation: zstd_opt.c:ZSTD_window_hasExtDict
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_hasExtDict
1087
1088
/**
1089
 * ZSTD_matchState_dictMode():
1090
 * Inspects the provided matchState and figures out what dictMode should be
1091
 * passed to the compressor.
1092
 */
1093
MEM_STATIC ZSTD_dictMode_e ZSTD_matchState_dictMode(const ZSTD_MatchState_t *ms)
1094
15.3k
{
1095
15.3k
    return ZSTD_window_hasExtDict(ms->window) ?
1096
0
        ZSTD_extDict :
1097
15.3k
        ms->dictMatchState != NULL ?
1098
0
            (ms->dictMatchState->dedicatedDictSearch ? ZSTD_dedicatedDictSearch : ZSTD_dictMatchState) :
1099
15.3k
            ZSTD_noDict;
1100
15.3k
}
zstd_compress.c:ZSTD_matchState_dictMode
Line
Count
Source
1094
15.3k
{
1095
15.3k
    return ZSTD_window_hasExtDict(ms->window) ?
1096
0
        ZSTD_extDict :
1097
15.3k
        ms->dictMatchState != NULL ?
1098
0
            (ms->dictMatchState->dedicatedDictSearch ? ZSTD_dedicatedDictSearch : ZSTD_dictMatchState) :
1099
15.3k
            ZSTD_noDict;
1100
15.3k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_matchState_dictMode
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_matchState_dictMode
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_matchState_dictMode
Unexecuted instantiation: zstd_double_fast.c:ZSTD_matchState_dictMode
Unexecuted instantiation: zstd_fast.c:ZSTD_matchState_dictMode
Unexecuted instantiation: zstd_lazy.c:ZSTD_matchState_dictMode
Unexecuted instantiation: zstd_ldm.c:ZSTD_matchState_dictMode
Unexecuted instantiation: zstd_opt.c:ZSTD_matchState_dictMode
Unexecuted instantiation: zstdmt_compress.c:ZSTD_matchState_dictMode
1101
1102
/* Defining this macro to non-zero tells zstd to run the overflow correction
1103
 * code much more frequently. This is very inefficient, and should only be
1104
 * used for tests and fuzzers.
1105
 */
1106
#ifndef ZSTD_WINDOW_OVERFLOW_CORRECT_FREQUENTLY
1107
#  ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
1108
15.4k
#    define ZSTD_WINDOW_OVERFLOW_CORRECT_FREQUENTLY 1
1109
#  else
1110
#    define ZSTD_WINDOW_OVERFLOW_CORRECT_FREQUENTLY 0
1111
#  endif
1112
#endif
1113
1114
/**
1115
 * ZSTD_window_canOverflowCorrect():
1116
 * Returns non-zero if the indices are large enough for overflow correction
1117
 * to work correctly without impacting compression ratio.
1118
 */
1119
MEM_STATIC U32 ZSTD_window_canOverflowCorrect(ZSTD_window_t const window,
1120
                                              U32 cycleLog,
1121
                                              U32 maxDist,
1122
                                              U32 loadedDictEnd,
1123
                                              void const* src)
1124
15.3k
{
1125
15.3k
    U32 const cycleSize = 1u << cycleLog;
1126
15.3k
    U32 const curr = (U32)((BYTE const*)src - window.base);
1127
15.3k
    U32 const minIndexToOverflowCorrect = cycleSize
1128
15.3k
                                        + MAX(maxDist, cycleSize)
1129
15.3k
                                        + ZSTD_WINDOW_START_INDEX;
1130
1131
    /* Adjust the min index to backoff the overflow correction frequency,
1132
     * so we don't waste too much CPU in overflow correction. If this
1133
     * computation overflows we don't really care, we just need to make
1134
     * sure it is at least minIndexToOverflowCorrect.
1135
     */
1136
15.3k
    U32 const adjustment = window.nbOverflowCorrections + 1;
1137
15.3k
    U32 const adjustedIndex = MAX(minIndexToOverflowCorrect * adjustment,
1138
15.3k
                                  minIndexToOverflowCorrect);
1139
15.3k
    U32 const indexLargeEnough = curr > adjustedIndex;
1140
1141
    /* Only overflow correct early if the dictionary is invalidated already,
1142
     * so we don't hurt compression ratio.
1143
     */
1144
15.3k
    U32 const dictionaryInvalidated = curr > maxDist + loadedDictEnd;
1145
1146
15.3k
    return indexLargeEnough && dictionaryInvalidated;
1147
15.3k
}
zstd_compress.c:ZSTD_window_canOverflowCorrect
Line
Count
Source
1124
15.3k
{
1125
15.3k
    U32 const cycleSize = 1u << cycleLog;
1126
15.3k
    U32 const curr = (U32)((BYTE const*)src - window.base);
1127
15.3k
    U32 const minIndexToOverflowCorrect = cycleSize
1128
15.3k
                                        + MAX(maxDist, cycleSize)
1129
15.3k
                                        + ZSTD_WINDOW_START_INDEX;
1130
1131
    /* Adjust the min index to backoff the overflow correction frequency,
1132
     * so we don't waste too much CPU in overflow correction. If this
1133
     * computation overflows we don't really care, we just need to make
1134
     * sure it is at least minIndexToOverflowCorrect.
1135
     */
1136
15.3k
    U32 const adjustment = window.nbOverflowCorrections + 1;
1137
15.3k
    U32 const adjustedIndex = MAX(minIndexToOverflowCorrect * adjustment,
1138
15.3k
                                  minIndexToOverflowCorrect);
1139
15.3k
    U32 const indexLargeEnough = curr > adjustedIndex;
1140
1141
    /* Only overflow correct early if the dictionary is invalidated already,
1142
     * so we don't hurt compression ratio.
1143
     */
1144
15.3k
    U32 const dictionaryInvalidated = curr > maxDist + loadedDictEnd;
1145
1146
15.3k
    return indexLargeEnough && dictionaryInvalidated;
1147
15.3k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_canOverflowCorrect
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_canOverflowCorrect
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_canOverflowCorrect
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_canOverflowCorrect
Unexecuted instantiation: zstd_fast.c:ZSTD_window_canOverflowCorrect
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_canOverflowCorrect
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_canOverflowCorrect
Unexecuted instantiation: zstd_opt.c:ZSTD_window_canOverflowCorrect
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_canOverflowCorrect
1148
1149
/**
1150
 * ZSTD_window_needOverflowCorrection():
1151
 * Returns non-zero if the indices are getting too large and need overflow
1152
 * protection.
1153
 */
1154
MEM_STATIC U32 ZSTD_window_needOverflowCorrection(ZSTD_window_t const window,
1155
                                                  U32 cycleLog,
1156
                                                  U32 maxDist,
1157
                                                  U32 loadedDictEnd,
1158
                                                  void const* src,
1159
                                                  void const* srcEnd)
1160
15.3k
{
1161
15.3k
    U32 const curr = (U32)((BYTE const*)srcEnd - window.base);
1162
15.3k
    if (ZSTD_WINDOW_OVERFLOW_CORRECT_FREQUENTLY) {
1163
15.3k
        if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) {
1164
92
            return 1;
1165
92
        }
1166
15.3k
    }
1167
15.2k
    return curr > ZSTD_CURRENT_MAX;
1168
15.3k
}
zstd_compress.c:ZSTD_window_needOverflowCorrection
Line
Count
Source
1160
15.3k
{
1161
15.3k
    U32 const curr = (U32)((BYTE const*)srcEnd - window.base);
1162
15.3k
    if (ZSTD_WINDOW_OVERFLOW_CORRECT_FREQUENTLY) {
1163
15.3k
        if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) {
1164
92
            return 1;
1165
92
        }
1166
15.3k
    }
1167
15.2k
    return curr > ZSTD_CURRENT_MAX;
1168
15.3k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_needOverflowCorrection
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_needOverflowCorrection
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_needOverflowCorrection
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_needOverflowCorrection
Unexecuted instantiation: zstd_fast.c:ZSTD_window_needOverflowCorrection
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_needOverflowCorrection
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_needOverflowCorrection
Unexecuted instantiation: zstd_opt.c:ZSTD_window_needOverflowCorrection
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_needOverflowCorrection
1169
1170
/**
1171
 * ZSTD_window_correctOverflow():
1172
 * Reduces the indices to protect from index overflow.
1173
 * Returns the correction made to the indices, which must be applied to every
1174
 * stored index.
1175
 *
1176
 * The least significant cycleLog bits of the indices must remain the same,
1177
 * which may be 0. Every index up to maxDist in the past must be valid.
1178
 */
1179
MEM_STATIC
1180
ZSTD_ALLOW_POINTER_OVERFLOW_ATTR
1181
U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog,
1182
                                           U32 maxDist, void const* src)
1183
92
{
1184
    /* preemptive overflow correction:
1185
     * 1. correction is large enough:
1186
     *    lowLimit > (3<<29) ==> current > 3<<29 + 1<<windowLog
1187
     *    1<<windowLog <= newCurrent < 1<<chainLog + 1<<windowLog
1188
     *
1189
     *    current - newCurrent
1190
     *    > (3<<29 + 1<<windowLog) - (1<<windowLog + 1<<chainLog)
1191
     *    > (3<<29) - (1<<chainLog)
1192
     *    > (3<<29) - (1<<30)             (NOTE: chainLog <= 30)
1193
     *    > 1<<29
1194
     *
1195
     * 2. (ip+ZSTD_CHUNKSIZE_MAX - cctx->base) doesn't overflow:
1196
     *    After correction, current is less than (1<<chainLog + 1<<windowLog).
1197
     *    In 64-bit mode we are safe, because we have 64-bit ptrdiff_t.
1198
     *    In 32-bit mode we are safe, because (chainLog <= 29), so
1199
     *    ip+ZSTD_CHUNKSIZE_MAX - cctx->base < 1<<32.
1200
     * 3. (cctx->lowLimit + 1<<windowLog) < 1<<32:
1201
     *    windowLog <= 31 ==> 3<<29 + 1<<windowLog < 7<<29 < 1<<32.
1202
     */
1203
92
    U32 const cycleSize = 1u << cycleLog;
1204
92
    U32 const cycleMask = cycleSize - 1;
1205
92
    U32 const curr = (U32)((BYTE const*)src - window->base);
1206
92
    U32 const currentCycle = curr & cycleMask;
1207
    /* Ensure newCurrent - maxDist >= ZSTD_WINDOW_START_INDEX. */
1208
92
    U32 const currentCycleCorrection = currentCycle < ZSTD_WINDOW_START_INDEX
1209
92
                                     ? MAX(cycleSize, ZSTD_WINDOW_START_INDEX)
1210
92
                                     : 0;
1211
92
    U32 const newCurrent = currentCycle
1212
92
                         + currentCycleCorrection
1213
92
                         + MAX(maxDist, cycleSize);
1214
92
    U32 const correction = curr - newCurrent;
1215
    /* maxDist must be a power of two so that:
1216
     *   (newCurrent & cycleMask) == (curr & cycleMask)
1217
     * This is required to not corrupt the chains / binary tree.
1218
     */
1219
92
    assert((maxDist & (maxDist - 1)) == 0);
1220
92
    assert((curr & cycleMask) == (newCurrent & cycleMask));
1221
92
    assert(curr > newCurrent);
1222
92
    if (!ZSTD_WINDOW_OVERFLOW_CORRECT_FREQUENTLY) {
1223
        /* Loose bound, should be around 1<<29 (see above) */
1224
0
        assert(correction > 1<<28);
1225
0
    }
1226
1227
92
    window->base += correction;
1228
92
    window->dictBase += correction;
1229
92
    if (window->lowLimit < correction + ZSTD_WINDOW_START_INDEX) {
1230
0
        window->lowLimit = ZSTD_WINDOW_START_INDEX;
1231
92
    } else {
1232
92
        window->lowLimit -= correction;
1233
92
    }
1234
92
    if (window->dictLimit < correction + ZSTD_WINDOW_START_INDEX) {
1235
0
        window->dictLimit = ZSTD_WINDOW_START_INDEX;
1236
92
    } else {
1237
92
        window->dictLimit -= correction;
1238
92
    }
1239
1240
    /* Ensure we can still reference the full window. */
1241
92
    assert(newCurrent >= maxDist);
1242
92
    assert(newCurrent - maxDist >= ZSTD_WINDOW_START_INDEX);
1243
    /* Ensure that lowLimit and dictLimit didn't underflow. */
1244
92
    assert(window->lowLimit <= newCurrent);
1245
92
    assert(window->dictLimit <= newCurrent);
1246
1247
92
    ++window->nbOverflowCorrections;
1248
1249
92
    DEBUGLOG(4, "Correction of 0x%x bytes to lowLimit=0x%x", correction,
1250
92
             window->lowLimit);
1251
92
    return correction;
1252
92
}
zstd_compress.c:ZSTD_window_correctOverflow
Line
Count
Source
1183
92
{
1184
    /* preemptive overflow correction:
1185
     * 1. correction is large enough:
1186
     *    lowLimit > (3<<29) ==> current > 3<<29 + 1<<windowLog
1187
     *    1<<windowLog <= newCurrent < 1<<chainLog + 1<<windowLog
1188
     *
1189
     *    current - newCurrent
1190
     *    > (3<<29 + 1<<windowLog) - (1<<windowLog + 1<<chainLog)
1191
     *    > (3<<29) - (1<<chainLog)
1192
     *    > (3<<29) - (1<<30)             (NOTE: chainLog <= 30)
1193
     *    > 1<<29
1194
     *
1195
     * 2. (ip+ZSTD_CHUNKSIZE_MAX - cctx->base) doesn't overflow:
1196
     *    After correction, current is less than (1<<chainLog + 1<<windowLog).
1197
     *    In 64-bit mode we are safe, because we have 64-bit ptrdiff_t.
1198
     *    In 32-bit mode we are safe, because (chainLog <= 29), so
1199
     *    ip+ZSTD_CHUNKSIZE_MAX - cctx->base < 1<<32.
1200
     * 3. (cctx->lowLimit + 1<<windowLog) < 1<<32:
1201
     *    windowLog <= 31 ==> 3<<29 + 1<<windowLog < 7<<29 < 1<<32.
1202
     */
1203
92
    U32 const cycleSize = 1u << cycleLog;
1204
92
    U32 const cycleMask = cycleSize - 1;
1205
92
    U32 const curr = (U32)((BYTE const*)src - window->base);
1206
92
    U32 const currentCycle = curr & cycleMask;
1207
    /* Ensure newCurrent - maxDist >= ZSTD_WINDOW_START_INDEX. */
1208
92
    U32 const currentCycleCorrection = currentCycle < ZSTD_WINDOW_START_INDEX
1209
92
                                     ? MAX(cycleSize, ZSTD_WINDOW_START_INDEX)
1210
92
                                     : 0;
1211
92
    U32 const newCurrent = currentCycle
1212
92
                         + currentCycleCorrection
1213
92
                         + MAX(maxDist, cycleSize);
1214
92
    U32 const correction = curr - newCurrent;
1215
    /* maxDist must be a power of two so that:
1216
     *   (newCurrent & cycleMask) == (curr & cycleMask)
1217
     * This is required to not corrupt the chains / binary tree.
1218
     */
1219
92
    assert((maxDist & (maxDist - 1)) == 0);
1220
92
    assert((curr & cycleMask) == (newCurrent & cycleMask));
1221
92
    assert(curr > newCurrent);
1222
92
    if (!ZSTD_WINDOW_OVERFLOW_CORRECT_FREQUENTLY) {
1223
        /* Loose bound, should be around 1<<29 (see above) */
1224
0
        assert(correction > 1<<28);
1225
0
    }
1226
1227
92
    window->base += correction;
1228
92
    window->dictBase += correction;
1229
92
    if (window->lowLimit < correction + ZSTD_WINDOW_START_INDEX) {
1230
0
        window->lowLimit = ZSTD_WINDOW_START_INDEX;
1231
92
    } else {
1232
92
        window->lowLimit -= correction;
1233
92
    }
1234
92
    if (window->dictLimit < correction + ZSTD_WINDOW_START_INDEX) {
1235
0
        window->dictLimit = ZSTD_WINDOW_START_INDEX;
1236
92
    } else {
1237
92
        window->dictLimit -= correction;
1238
92
    }
1239
1240
    /* Ensure we can still reference the full window. */
1241
92
    assert(newCurrent >= maxDist);
1242
92
    assert(newCurrent - maxDist >= ZSTD_WINDOW_START_INDEX);
1243
    /* Ensure that lowLimit and dictLimit didn't underflow. */
1244
92
    assert(window->lowLimit <= newCurrent);
1245
92
    assert(window->dictLimit <= newCurrent);
1246
1247
92
    ++window->nbOverflowCorrections;
1248
1249
92
    DEBUGLOG(4, "Correction of 0x%x bytes to lowLimit=0x%x", correction,
1250
92
             window->lowLimit);
1251
92
    return correction;
1252
92
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_correctOverflow
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_correctOverflow
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_correctOverflow
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_correctOverflow
Unexecuted instantiation: zstd_fast.c:ZSTD_window_correctOverflow
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_correctOverflow
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_correctOverflow
Unexecuted instantiation: zstd_opt.c:ZSTD_window_correctOverflow
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_correctOverflow
1253
1254
/**
1255
 * ZSTD_window_enforceMaxDist():
1256
 * Updates lowLimit so that:
1257
 *    (srcEnd - base) - lowLimit == maxDist + loadedDictEnd
1258
 *
1259
 * It ensures index is valid as long as index >= lowLimit.
1260
 * This must be called before a block compression call.
1261
 *
1262
 * loadedDictEnd is only defined if a dictionary is in use for current compression.
1263
 * As the name implies, loadedDictEnd represents the index at end of dictionary.
1264
 * The value lies within context's referential, it can be directly compared to blockEndIdx.
1265
 *
1266
 * If loadedDictEndPtr is NULL, no dictionary is in use, and we use loadedDictEnd == 0.
1267
 * If loadedDictEndPtr is not NULL, we set it to zero after updating lowLimit.
1268
 * This is because dictionaries are allowed to be referenced fully
1269
 * as long as the last byte of the dictionary is in the window.
1270
 * Once input has progressed beyond window size, dictionary cannot be referenced anymore.
1271
 *
1272
 * In normal dict mode, the dictionary lies between lowLimit and dictLimit.
1273
 * In dictMatchState mode, lowLimit and dictLimit are the same,
1274
 * and the dictionary is below them.
1275
 * forceWindow and dictMatchState are therefore incompatible.
1276
 */
1277
MEM_STATIC void
1278
ZSTD_window_enforceMaxDist(ZSTD_window_t* window,
1279
                     const void* blockEnd,
1280
                           U32   maxDist,
1281
                           U32*  loadedDictEndPtr,
1282
                     const ZSTD_MatchState_t** dictMatchStatePtr)
1283
15.3k
{
1284
15.3k
    U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base);
1285
15.3k
    U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0;
1286
15.3k
    DEBUGLOG(5, "ZSTD_window_enforceMaxDist: blockEndIdx=%u, maxDist=%u, loadedDictEnd=%u",
1287
15.3k
                (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd);
1288
1289
    /* - When there is no dictionary : loadedDictEnd == 0.
1290
         In which case, the test (blockEndIdx > maxDist) is merely to avoid
1291
         overflowing next operation `newLowLimit = blockEndIdx - maxDist`.
1292
       - When there is a standard dictionary :
1293
         Index referential is copied from the dictionary,
1294
         which means it starts from 0.
1295
         In which case, loadedDictEnd == dictSize,
1296
         and it makes sense to compare `blockEndIdx > maxDist + dictSize`
1297
         since `blockEndIdx` also starts from zero.
1298
       - When there is an attached dictionary :
1299
         loadedDictEnd is expressed within the referential of the context,
1300
         so it can be directly compared against blockEndIdx.
1301
    */
1302
15.3k
    if (blockEndIdx > maxDist + loadedDictEnd) {
1303
1.78k
        U32 const newLowLimit = blockEndIdx - maxDist;
1304
1.78k
        if (window->lowLimit < newLowLimit) window->lowLimit = newLowLimit;
1305
1.78k
        if (window->dictLimit < window->lowLimit) {
1306
0
            DEBUGLOG(5, "Update dictLimit to match lowLimit, from %u to %u",
1307
0
                        (unsigned)window->dictLimit, (unsigned)window->lowLimit);
1308
0
            window->dictLimit = window->lowLimit;
1309
0
        }
1310
        /* On reaching window size, dictionaries are invalidated */
1311
1.78k
        if (loadedDictEndPtr) *loadedDictEndPtr = 0;
1312
1.78k
        if (dictMatchStatePtr) *dictMatchStatePtr = NULL;
1313
1.78k
    }
1314
15.3k
}
zstd_compress.c:ZSTD_window_enforceMaxDist
Line
Count
Source
1283
15.3k
{
1284
15.3k
    U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base);
1285
15.3k
    U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0;
1286
15.3k
    DEBUGLOG(5, "ZSTD_window_enforceMaxDist: blockEndIdx=%u, maxDist=%u, loadedDictEnd=%u",
1287
15.3k
                (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd);
1288
1289
    /* - When there is no dictionary : loadedDictEnd == 0.
1290
         In which case, the test (blockEndIdx > maxDist) is merely to avoid
1291
         overflowing next operation `newLowLimit = blockEndIdx - maxDist`.
1292
       - When there is a standard dictionary :
1293
         Index referential is copied from the dictionary,
1294
         which means it starts from 0.
1295
         In which case, loadedDictEnd == dictSize,
1296
         and it makes sense to compare `blockEndIdx > maxDist + dictSize`
1297
         since `blockEndIdx` also starts from zero.
1298
       - When there is an attached dictionary :
1299
         loadedDictEnd is expressed within the referential of the context,
1300
         so it can be directly compared against blockEndIdx.
1301
    */
1302
15.3k
    if (blockEndIdx > maxDist + loadedDictEnd) {
1303
1.78k
        U32 const newLowLimit = blockEndIdx - maxDist;
1304
1.78k
        if (window->lowLimit < newLowLimit) window->lowLimit = newLowLimit;
1305
1.78k
        if (window->dictLimit < window->lowLimit) {
1306
0
            DEBUGLOG(5, "Update dictLimit to match lowLimit, from %u to %u",
1307
0
                        (unsigned)window->dictLimit, (unsigned)window->lowLimit);
1308
0
            window->dictLimit = window->lowLimit;
1309
0
        }
1310
        /* On reaching window size, dictionaries are invalidated */
1311
1.78k
        if (loadedDictEndPtr) *loadedDictEndPtr = 0;
1312
1.78k
        if (dictMatchStatePtr) *dictMatchStatePtr = NULL;
1313
1.78k
    }
1314
15.3k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_enforceMaxDist
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_enforceMaxDist
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_enforceMaxDist
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_enforceMaxDist
Unexecuted instantiation: zstd_fast.c:ZSTD_window_enforceMaxDist
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_enforceMaxDist
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_enforceMaxDist
Unexecuted instantiation: zstd_opt.c:ZSTD_window_enforceMaxDist
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_enforceMaxDist
1315
1316
/* Similar to ZSTD_window_enforceMaxDist(),
1317
 * but only invalidates dictionary
1318
 * when input progresses beyond window size.
1319
 * assumption : loadedDictEndPtr and dictMatchStatePtr are valid (non NULL)
1320
 *              loadedDictEnd uses same referential as window->base
1321
 *              maxDist is the window size */
1322
MEM_STATIC void
1323
ZSTD_checkDictValidity(const ZSTD_window_t* window,
1324
                       const void* blockEnd,
1325
                             U32   maxDist,
1326
                             U32*  loadedDictEndPtr,
1327
                       const ZSTD_MatchState_t** dictMatchStatePtr)
1328
15.3k
{
1329
15.3k
    assert(loadedDictEndPtr != NULL);
1330
15.3k
    assert(dictMatchStatePtr != NULL);
1331
15.3k
    {   U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base);
1332
15.3k
        U32 const loadedDictEnd = *loadedDictEndPtr;
1333
15.3k
        DEBUGLOG(5, "ZSTD_checkDictValidity: blockEndIdx=%u, maxDist=%u, loadedDictEnd=%u",
1334
15.3k
                    (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd);
1335
15.3k
        assert(blockEndIdx >= loadedDictEnd);
1336
1337
15.3k
        if (blockEndIdx > loadedDictEnd + maxDist || loadedDictEnd != window->dictLimit) {
1338
            /* On reaching window size, dictionaries are invalidated.
1339
             * For simplification, if window size is reached anywhere within next block,
1340
             * the dictionary is invalidated for the full block.
1341
             *
1342
             * We also have to invalidate the dictionary if ZSTD_window_update() has detected
1343
             * non-contiguous segments, which means that loadedDictEnd != window->dictLimit.
1344
             * loadedDictEnd may be 0, if forceWindow is true, but in that case we never use
1345
             * dictMatchState, so setting it to NULL is not a problem.
1346
             */
1347
15.3k
            DEBUGLOG(6, "invalidating dictionary for current block (distance > windowSize)");
1348
15.3k
            *loadedDictEndPtr = 0;
1349
15.3k
            *dictMatchStatePtr = NULL;
1350
15.3k
        } else {
1351
0
            if (*loadedDictEndPtr != 0) {
1352
0
                DEBUGLOG(6, "dictionary considered valid for current block");
1353
0
    }   }   }
1354
15.3k
}
zstd_compress.c:ZSTD_checkDictValidity
Line
Count
Source
1328
15.3k
{
1329
15.3k
    assert(loadedDictEndPtr != NULL);
1330
15.3k
    assert(dictMatchStatePtr != NULL);
1331
15.3k
    {   U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base);
1332
15.3k
        U32 const loadedDictEnd = *loadedDictEndPtr;
1333
15.3k
        DEBUGLOG(5, "ZSTD_checkDictValidity: blockEndIdx=%u, maxDist=%u, loadedDictEnd=%u",
1334
15.3k
                    (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd);
1335
15.3k
        assert(blockEndIdx >= loadedDictEnd);
1336
1337
15.3k
        if (blockEndIdx > loadedDictEnd + maxDist || loadedDictEnd != window->dictLimit) {
1338
            /* On reaching window size, dictionaries are invalidated.
1339
             * For simplification, if window size is reached anywhere within next block,
1340
             * the dictionary is invalidated for the full block.
1341
             *
1342
             * We also have to invalidate the dictionary if ZSTD_window_update() has detected
1343
             * non-contiguous segments, which means that loadedDictEnd != window->dictLimit.
1344
             * loadedDictEnd may be 0, if forceWindow is true, but in that case we never use
1345
             * dictMatchState, so setting it to NULL is not a problem.
1346
             */
1347
15.3k
            DEBUGLOG(6, "invalidating dictionary for current block (distance > windowSize)");
1348
15.3k
            *loadedDictEndPtr = 0;
1349
15.3k
            *dictMatchStatePtr = NULL;
1350
15.3k
        } else {
1351
0
            if (*loadedDictEndPtr != 0) {
1352
0
                DEBUGLOG(6, "dictionary considered valid for current block");
1353
0
    }   }   }
1354
15.3k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_checkDictValidity
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_checkDictValidity
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_checkDictValidity
Unexecuted instantiation: zstd_double_fast.c:ZSTD_checkDictValidity
Unexecuted instantiation: zstd_fast.c:ZSTD_checkDictValidity
Unexecuted instantiation: zstd_lazy.c:ZSTD_checkDictValidity
Unexecuted instantiation: zstd_ldm.c:ZSTD_checkDictValidity
Unexecuted instantiation: zstd_opt.c:ZSTD_checkDictValidity
Unexecuted instantiation: zstdmt_compress.c:ZSTD_checkDictValidity
1355
1356
2.67k
MEM_STATIC void ZSTD_window_init(ZSTD_window_t* window) {
1357
2.67k
    ZSTD_memset(window, 0, sizeof(*window));
1358
2.67k
    window->base = (BYTE const*)" ";
1359
2.67k
    window->dictBase = (BYTE const*)" ";
1360
2.67k
    ZSTD_STATIC_ASSERT(ZSTD_DUBT_UNSORTED_MARK < ZSTD_WINDOW_START_INDEX); /* Start above ZSTD_DUBT_UNSORTED_MARK */
1361
2.67k
    window->dictLimit = ZSTD_WINDOW_START_INDEX;    /* start from >0, so that 1st position is valid */
1362
2.67k
    window->lowLimit = ZSTD_WINDOW_START_INDEX;     /* it ensures first and later CCtx usages compress the same */
1363
2.67k
    window->nextSrc = window->base + ZSTD_WINDOW_START_INDEX;   /* see issue #1241 */
1364
2.67k
    window->nbOverflowCorrections = 0;
1365
2.67k
}
zstd_compress.c:ZSTD_window_init
Line
Count
Source
1356
2.67k
MEM_STATIC void ZSTD_window_init(ZSTD_window_t* window) {
1357
2.67k
    ZSTD_memset(window, 0, sizeof(*window));
1358
2.67k
    window->base = (BYTE const*)" ";
1359
2.67k
    window->dictBase = (BYTE const*)" ";
1360
2.67k
    ZSTD_STATIC_ASSERT(ZSTD_DUBT_UNSORTED_MARK < ZSTD_WINDOW_START_INDEX); /* Start above ZSTD_DUBT_UNSORTED_MARK */
1361
2.67k
    window->dictLimit = ZSTD_WINDOW_START_INDEX;    /* start from >0, so that 1st position is valid */
1362
2.67k
    window->lowLimit = ZSTD_WINDOW_START_INDEX;     /* it ensures first and later CCtx usages compress the same */
1363
2.67k
    window->nextSrc = window->base + ZSTD_WINDOW_START_INDEX;   /* see issue #1241 */
1364
2.67k
    window->nbOverflowCorrections = 0;
1365
2.67k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_init
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_init
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_init
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_init
Unexecuted instantiation: zstd_fast.c:ZSTD_window_init
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_init
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_init
Unexecuted instantiation: zstd_opt.c:ZSTD_window_init
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_init
1366
1367
/**
1368
 * ZSTD_window_update():
1369
 * Updates the window by appending [src, src + srcSize) to the window.
1370
 * If it is not contiguous, the current prefix becomes the extDict, and we
1371
 * forget about the extDict. Handles overlap of the prefix and extDict.
1372
 * Returns non-zero if the segment is contiguous.
1373
 */
1374
MEM_STATIC
1375
ZSTD_ALLOW_POINTER_OVERFLOW_ATTR
1376
U32 ZSTD_window_update(ZSTD_window_t* window,
1377
                 const void* src, size_t srcSize,
1378
                       int forceNonContiguous)
1379
14.7k
{
1380
14.7k
    BYTE const* const ip = (BYTE const*)src;
1381
14.7k
    U32 contiguous = 1;
1382
14.7k
    DEBUGLOG(5, "ZSTD_window_update");
1383
14.7k
    if (srcSize == 0)
1384
0
        return contiguous;
1385
14.7k
    assert(window->base != NULL);
1386
14.7k
    assert(window->dictBase != NULL);
1387
    /* Check if blocks follow each other */
1388
14.7k
    if (src != window->nextSrc || forceNonContiguous) {
1389
        /* not contiguous */
1390
5.08k
        size_t const distanceFromBase = (size_t)(window->nextSrc - window->base);
1391
5.08k
        DEBUGLOG(5, "Non contiguous blocks, new segment starts at %u", window->dictLimit);
1392
5.08k
        window->lowLimit = window->dictLimit;
1393
5.08k
        assert(distanceFromBase == (size_t)(U32)distanceFromBase);  /* should never overflow */
1394
5.08k
        window->dictLimit = (U32)distanceFromBase;
1395
5.08k
        window->dictBase = window->base;
1396
5.08k
        window->base = ip - distanceFromBase;
1397
        /* ms->nextToUpdate = window->dictLimit; */
1398
5.08k
        if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit;   /* too small extDict */
1399
5.08k
        contiguous = 0;
1400
5.08k
    }
1401
14.7k
    window->nextSrc = ip + srcSize;
1402
    /* if input and dictionary overlap : reduce dictionary (area presumed modified by input) */
1403
14.7k
    if ( (ip+srcSize > window->dictBase + window->lowLimit)
1404
14.7k
       & (ip < window->dictBase + window->dictLimit)) {
1405
158
        size_t const highInputIdx = (size_t)((ip + srcSize) - window->dictBase);
1406
158
        U32 const lowLimitMax = (highInputIdx > (size_t)window->dictLimit) ? window->dictLimit : (U32)highInputIdx;
1407
158
        assert(highInputIdx < UINT_MAX);
1408
158
        window->lowLimit = lowLimitMax;
1409
158
        DEBUGLOG(5, "Overlapping extDict and input : new lowLimit = %u", window->lowLimit);
1410
158
    }
1411
14.7k
    return contiguous;
1412
14.7k
}
zstd_compress.c:ZSTD_window_update
Line
Count
Source
1379
14.7k
{
1380
14.7k
    BYTE const* const ip = (BYTE const*)src;
1381
14.7k
    U32 contiguous = 1;
1382
14.7k
    DEBUGLOG(5, "ZSTD_window_update");
1383
14.7k
    if (srcSize == 0)
1384
0
        return contiguous;
1385
14.7k
    assert(window->base != NULL);
1386
14.7k
    assert(window->dictBase != NULL);
1387
    /* Check if blocks follow each other */
1388
14.7k
    if (src != window->nextSrc || forceNonContiguous) {
1389
        /* not contiguous */
1390
5.08k
        size_t const distanceFromBase = (size_t)(window->nextSrc - window->base);
1391
5.08k
        DEBUGLOG(5, "Non contiguous blocks, new segment starts at %u", window->dictLimit);
1392
5.08k
        window->lowLimit = window->dictLimit;
1393
5.08k
        assert(distanceFromBase == (size_t)(U32)distanceFromBase);  /* should never overflow */
1394
5.08k
        window->dictLimit = (U32)distanceFromBase;
1395
5.08k
        window->dictBase = window->base;
1396
5.08k
        window->base = ip - distanceFromBase;
1397
        /* ms->nextToUpdate = window->dictLimit; */
1398
5.08k
        if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit;   /* too small extDict */
1399
5.08k
        contiguous = 0;
1400
5.08k
    }
1401
14.7k
    window->nextSrc = ip + srcSize;
1402
    /* if input and dictionary overlap : reduce dictionary (area presumed modified by input) */
1403
14.7k
    if ( (ip+srcSize > window->dictBase + window->lowLimit)
1404
14.7k
       & (ip < window->dictBase + window->dictLimit)) {
1405
158
        size_t const highInputIdx = (size_t)((ip + srcSize) - window->dictBase);
1406
158
        U32 const lowLimitMax = (highInputIdx > (size_t)window->dictLimit) ? window->dictLimit : (U32)highInputIdx;
1407
158
        assert(highInputIdx < UINT_MAX);
1408
158
        window->lowLimit = lowLimitMax;
1409
158
        DEBUGLOG(5, "Overlapping extDict and input : new lowLimit = %u", window->lowLimit);
1410
158
    }
1411
14.7k
    return contiguous;
1412
14.7k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_window_update
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_window_update
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_window_update
Unexecuted instantiation: zstd_double_fast.c:ZSTD_window_update
Unexecuted instantiation: zstd_fast.c:ZSTD_window_update
Unexecuted instantiation: zstd_lazy.c:ZSTD_window_update
Unexecuted instantiation: zstd_ldm.c:ZSTD_window_update
Unexecuted instantiation: zstd_opt.c:ZSTD_window_update
Unexecuted instantiation: zstdmt_compress.c:ZSTD_window_update
1413
1414
/**
1415
 * Returns the lowest allowed match index. It may either be in the ext-dict or the prefix.
1416
 */
1417
MEM_STATIC U32 ZSTD_getLowestMatchIndex(const ZSTD_MatchState_t* ms, U32 curr, unsigned windowLog)
1418
0
{
1419
0
    U32 const maxDistance = 1U << windowLog;
1420
0
    U32 const lowestValid = ms->window.lowLimit;
1421
0
    U32 const withinWindow = (curr - lowestValid > maxDistance) ? curr - maxDistance : lowestValid;
1422
0
    U32 const isDictionary = (ms->loadedDictEnd != 0);
1423
    /* When using a dictionary the entire dictionary is valid if a single byte of the dictionary
1424
     * is within the window. We invalidate the dictionary (and set loadedDictEnd to 0) when it isn't
1425
     * valid for the entire block. So this check is sufficient to find the lowest valid match index.
1426
     */
1427
0
    U32 const matchLowest = isDictionary ? lowestValid : withinWindow;
1428
0
    return matchLowest;
1429
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstd_double_fast.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstd_fast.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstd_lazy.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstd_ldm.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstd_opt.c:ZSTD_getLowestMatchIndex
Unexecuted instantiation: zstdmt_compress.c:ZSTD_getLowestMatchIndex
1430
1431
/**
1432
 * Returns the lowest allowed match index in the prefix.
1433
 */
1434
MEM_STATIC U32 ZSTD_getLowestPrefixIndex(const ZSTD_MatchState_t* ms, U32 curr, unsigned windowLog)
1435
15.3k
{
1436
15.3k
    U32    const maxDistance = 1U << windowLog;
1437
15.3k
    U32    const lowestValid = ms->window.dictLimit;
1438
15.3k
    U32    const withinWindow = (curr - lowestValid > maxDistance) ? curr - maxDistance : lowestValid;
1439
15.3k
    U32    const isDictionary = (ms->loadedDictEnd != 0);
1440
    /* When computing the lowest prefix index we need to take the dictionary into account to handle
1441
     * the edge case where the dictionary and the source are contiguous in memory.
1442
     */
1443
15.3k
    U32    const matchLowest = isDictionary ? lowestValid : withinWindow;
1444
15.3k
    return matchLowest;
1445
15.3k
}
Unexecuted instantiation: zstd_compress.c:ZSTD_getLowestPrefixIndex
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_getLowestPrefixIndex
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_getLowestPrefixIndex
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_getLowestPrefixIndex
Unexecuted instantiation: zstd_double_fast.c:ZSTD_getLowestPrefixIndex
Unexecuted instantiation: zstd_fast.c:ZSTD_getLowestPrefixIndex
zstd_lazy.c:ZSTD_getLowestPrefixIndex
Line
Count
Source
1435
15.3k
{
1436
15.3k
    U32    const maxDistance = 1U << windowLog;
1437
15.3k
    U32    const lowestValid = ms->window.dictLimit;
1438
15.3k
    U32    const withinWindow = (curr - lowestValid > maxDistance) ? curr - maxDistance : lowestValid;
1439
15.3k
    U32    const isDictionary = (ms->loadedDictEnd != 0);
1440
    /* When computing the lowest prefix index we need to take the dictionary into account to handle
1441
     * the edge case where the dictionary and the source are contiguous in memory.
1442
     */
1443
15.3k
    U32    const matchLowest = isDictionary ? lowestValid : withinWindow;
1444
15.3k
    return matchLowest;
1445
15.3k
}
Unexecuted instantiation: zstd_ldm.c:ZSTD_getLowestPrefixIndex
Unexecuted instantiation: zstd_opt.c:ZSTD_getLowestPrefixIndex
Unexecuted instantiation: zstdmt_compress.c:ZSTD_getLowestPrefixIndex
1446
1447
/* index_safety_check:
1448
 * intentional underflow : ensure repIndex isn't overlapping dict + prefix
1449
 * @return 1 if values are not overlapping,
1450
 * 0 otherwise */
1451
0
MEM_STATIC int ZSTD_index_overlap_check(const U32 prefixLowestIndex, const U32 repIndex) {
1452
0
    return ((U32)((prefixLowestIndex-1)  - repIndex) >= 3);
1453
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstd_double_fast.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstd_fast.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstd_lazy.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstd_ldm.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstd_opt.c:ZSTD_index_overlap_check
Unexecuted instantiation: zstdmt_compress.c:ZSTD_index_overlap_check
1454
1455
1456
/* debug functions */
1457
#if (DEBUGLEVEL>=2)
1458
1459
MEM_STATIC double ZSTD_fWeight(U32 rawStat)
1460
{
1461
    U32 const fp_accuracy = 8;
1462
    U32 const fp_multiplier = (1 << fp_accuracy);
1463
    U32 const newStat = rawStat + 1;
1464
    U32 const hb = ZSTD_highbit32(newStat);
1465
    U32 const BWeight = hb * fp_multiplier;
1466
    U32 const FWeight = (newStat << fp_accuracy) >> hb;
1467
    U32 const weight = BWeight + FWeight;
1468
    assert(hb + fp_accuracy < 31);
1469
    return (double)weight / fp_multiplier;
1470
}
1471
1472
/* display a table content,
1473
 * listing each element, its frequency, and its predicted bit cost */
1474
MEM_STATIC void ZSTD_debugTable(const U32* table, U32 max)
1475
{
1476
    unsigned u, sum;
1477
    for (u=0, sum=0; u<=max; u++) sum += table[u];
1478
    DEBUGLOG(2, "total nb elts: %u", sum);
1479
    for (u=0; u<=max; u++) {
1480
        DEBUGLOG(2, "%2u: %5u  (%.2f)",
1481
                u, table[u], ZSTD_fWeight(sum) - ZSTD_fWeight(table[u]) );
1482
    }
1483
}
1484
1485
#endif
1486
1487
/* Short Cache */
1488
1489
/* Normally, zstd matchfinders follow this flow:
1490
 *     1. Compute hash at ip
1491
 *     2. Load index from hashTable[hash]
1492
 *     3. Check if *ip == *(base + index)
1493
 * In dictionary compression, loading *(base + index) is often an L2 or even L3 miss.
1494
 *
1495
 * Short cache is an optimization which allows us to avoid step 3 most of the time
1496
 * when the data doesn't actually match. With short cache, the flow becomes:
1497
 *     1. Compute (hash, currentTag) at ip. currentTag is an 8-bit independent hash at ip.
1498
 *     2. Load (index, matchTag) from hashTable[hash]. See ZSTD_writeTaggedIndex to understand how this works.
1499
 *     3. Only if currentTag == matchTag, check *ip == *(base + index). Otherwise, continue.
1500
 *
1501
 * Currently, short cache is only implemented in CDict hashtables. Thus, its use is limited to
1502
 * dictMatchState matchfinders.
1503
 */
1504
0
#define ZSTD_SHORT_CACHE_TAG_BITS 8
1505
0
#define ZSTD_SHORT_CACHE_TAG_MASK ((1u << ZSTD_SHORT_CACHE_TAG_BITS) - 1)
1506
1507
/* Helper function for ZSTD_fillHashTable and ZSTD_fillDoubleHashTable.
1508
 * Unpacks hashAndTag into (hash, tag), then packs (index, tag) into hashTable[hash]. */
1509
0
MEM_STATIC void ZSTD_writeTaggedIndex(U32* const hashTable, size_t hashAndTag, U32 index) {
1510
0
    size_t const hash = hashAndTag >> ZSTD_SHORT_CACHE_TAG_BITS;
1511
0
    U32 const tag = (U32)(hashAndTag & ZSTD_SHORT_CACHE_TAG_MASK);
1512
0
    assert(index >> (32 - ZSTD_SHORT_CACHE_TAG_BITS) == 0);
1513
0
    hashTable[hash] = (index << ZSTD_SHORT_CACHE_TAG_BITS) | tag;
1514
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstd_double_fast.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstd_fast.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstd_lazy.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstd_ldm.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstd_opt.c:ZSTD_writeTaggedIndex
Unexecuted instantiation: zstdmt_compress.c:ZSTD_writeTaggedIndex
1515
1516
/* Helper function for short cache matchfinders.
1517
 * Unpacks tag1 and tag2 from lower bits of packedTag1 and packedTag2, then checks if the tags match. */
1518
0
MEM_STATIC int ZSTD_comparePackedTags(size_t packedTag1, size_t packedTag2) {
1519
0
    U32 const tag1 = packedTag1 & ZSTD_SHORT_CACHE_TAG_MASK;
1520
0
    U32 const tag2 = packedTag2 & ZSTD_SHORT_CACHE_TAG_MASK;
1521
0
    return tag1 == tag2;
1522
0
}
Unexecuted instantiation: zstd_compress.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstd_double_fast.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstd_fast.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstd_lazy.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstd_ldm.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstd_opt.c:ZSTD_comparePackedTags
Unexecuted instantiation: zstdmt_compress.c:ZSTD_comparePackedTags
1523
1524
/* ===============================================================
1525
 * Shared internal declarations
1526
 * These prototypes may be called from sources not in lib/compress
1527
 * =============================================================== */
1528
1529
/* ZSTD_loadCEntropy() :
1530
 * dict : must point at beginning of a valid zstd dictionary.
1531
 * return : size of dictionary header (size of magic number + dict ID + entropy tables)
1532
 * assumptions : magic number supposed already checked
1533
 *               and dictSize >= 8 */
1534
size_t ZSTD_loadCEntropy(ZSTD_compressedBlockState_t* bs, void* workspace,
1535
                         const void* const dict, size_t dictSize);
1536
1537
void ZSTD_reset_compressedBlockState(ZSTD_compressedBlockState_t* bs);
1538
1539
typedef struct {
1540
    U32 idx;            /* Index in array of ZSTD_Sequence */
1541
    U32 posInSequence;  /* Position within sequence at idx */
1542
    size_t posInSrc;    /* Number of bytes given by sequences provided so far */
1543
} ZSTD_SequencePosition;
1544
1545
/* for benchmark */
1546
size_t ZSTD_convertBlockSequences(ZSTD_CCtx* cctx,
1547
                        const ZSTD_Sequence* const inSeqs, size_t nbSequences,
1548
                        int repcodeResolution);
1549
1550
typedef struct {
1551
    size_t nbSequences;
1552
    size_t blockSize;
1553
    size_t litSize;
1554
} BlockSummary;
1555
1556
BlockSummary ZSTD_get1BlockSummary(const ZSTD_Sequence* seqs, size_t nbSeqs);
1557
1558
/* ==============================================================
1559
 * Private declarations
1560
 * These prototypes shall only be called from within lib/compress
1561
 * ============================================================== */
1562
1563
/* ZSTD_getCParamsFromCCtxParams() :
1564
 * cParams are built depending on compressionLevel, src size hints,
1565
 * LDM and manually set compression parameters.
1566
 * Note: srcSizeHint == 0 means 0!
1567
 */
1568
ZSTD_compressionParameters ZSTD_getCParamsFromCCtxParams(
1569
        const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize, ZSTD_CParamMode_e mode);
1570
1571
/*! ZSTD_initCStream_internal() :
1572
 *  Private use only. Init streaming operation.
1573
 *  expects params to be valid.
1574
 *  must receive dict, or cdict, or none, but not both.
1575
 *  @return : 0, or an error code */
1576
size_t ZSTD_initCStream_internal(ZSTD_CStream* zcs,
1577
                     const void* dict, size_t dictSize,
1578
                     const ZSTD_CDict* cdict,
1579
                     const ZSTD_CCtx_params* params, unsigned long long pledgedSrcSize);
1580
1581
void ZSTD_resetSeqStore(SeqStore_t* ssPtr);
1582
1583
/*! ZSTD_getCParamsFromCDict() :
1584
 *  as the name implies */
1585
ZSTD_compressionParameters ZSTD_getCParamsFromCDict(const ZSTD_CDict* cdict);
1586
1587
/* ZSTD_compressBegin_advanced_internal() :
1588
 * Private use only. To be called from zstdmt_compress.c. */
1589
size_t ZSTD_compressBegin_advanced_internal(ZSTD_CCtx* cctx,
1590
                                    const void* dict, size_t dictSize,
1591
                                    ZSTD_dictContentType_e dictContentType,
1592
                                    ZSTD_dictTableLoadMethod_e dtlm,
1593
                                    const ZSTD_CDict* cdict,
1594
                                    const ZSTD_CCtx_params* params,
1595
                                    unsigned long long pledgedSrcSize);
1596
1597
/* ZSTD_compress_advanced_internal() :
1598
 * Private use only. To be called from zstdmt_compress.c. */
1599
size_t ZSTD_compress_advanced_internal(ZSTD_CCtx* cctx,
1600
                                       void* dst, size_t dstCapacity,
1601
                                 const void* src, size_t srcSize,
1602
                                 const void* dict,size_t dictSize,
1603
                                 const ZSTD_CCtx_params* params);
1604
1605
1606
/* ZSTD_writeLastEmptyBlock() :
1607
 * output an empty Block with end-of-frame mark to complete a frame
1608
 * @return : size of data written into `dst` (== ZSTD_blockHeaderSize (defined in zstd_internal.h))
1609
 *           or an error code if `dstCapacity` is too small (<ZSTD_blockHeaderSize)
1610
 */
1611
size_t ZSTD_writeLastEmptyBlock(void* dst, size_t dstCapacity);
1612
1613
1614
/* ZSTD_referenceExternalSequences() :
1615
 * Must be called before starting a compression operation.
1616
 * seqs must parse a prefix of the source.
1617
 * This cannot be used when long range matching is enabled.
1618
 * Zstd will use these sequences, and pass the literals to a secondary block
1619
 * compressor.
1620
 * NOTE: seqs are not verified! Invalid sequences can cause out-of-bounds memory
1621
 * access and data corruption.
1622
 */
1623
void ZSTD_referenceExternalSequences(ZSTD_CCtx* cctx, rawSeq* seq, size_t nbSeq);
1624
1625
/** ZSTD_cycleLog() :
1626
 *  condition for correct operation : hashLog > 1 */
1627
U32 ZSTD_cycleLog(U32 hashLog, ZSTD_strategy strat);
1628
1629
/** ZSTD_CCtx_trace() :
1630
 *  Trace the end of a compression call.
1631
 */
1632
void ZSTD_CCtx_trace(ZSTD_CCtx* cctx, size_t extraCSize);
1633
1634
/* Returns 1 if an external sequence producer is registered, otherwise returns 0. */
1635
35.6k
MEM_STATIC int ZSTD_hasExtSeqProd(const ZSTD_CCtx_params* params) {
1636
    return params->extSeqProdFunc != NULL;
1637
35.6k
}
zstd_compress.c:ZSTD_hasExtSeqProd
Line
Count
Source
1635
35.6k
MEM_STATIC int ZSTD_hasExtSeqProd(const ZSTD_CCtx_params* params) {
1636
    return params->extSeqProdFunc != NULL;
1637
35.6k
}
Unexecuted instantiation: zstd_compress_literals.c:ZSTD_hasExtSeqProd
Unexecuted instantiation: zstd_compress_sequences.c:ZSTD_hasExtSeqProd
Unexecuted instantiation: zstd_compress_superblock.c:ZSTD_hasExtSeqProd
Unexecuted instantiation: zstd_double_fast.c:ZSTD_hasExtSeqProd
Unexecuted instantiation: zstd_fast.c:ZSTD_hasExtSeqProd
Unexecuted instantiation: zstd_lazy.c:ZSTD_hasExtSeqProd
Unexecuted instantiation: zstd_ldm.c:ZSTD_hasExtSeqProd
Unexecuted instantiation: zstd_opt.c:ZSTD_hasExtSeqProd
Unexecuted instantiation: zstdmt_compress.c:ZSTD_hasExtSeqProd
1638
1639
/* ===============================================================
1640
 * Deprecated definitions that are still used internally to avoid
1641
 * deprecation warnings. These functions are exactly equivalent to
1642
 * their public variants, but avoid the deprecation warnings.
1643
 * =============================================================== */
1644
1645
size_t ZSTD_compressBegin_usingCDict_deprecated(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict);
1646
1647
size_t ZSTD_compressContinue_public(ZSTD_CCtx* cctx,
1648
                                    void* dst, size_t dstCapacity,
1649
                              const void* src, size_t srcSize);
1650
1651
size_t ZSTD_compressEnd_public(ZSTD_CCtx* cctx,
1652
                               void* dst, size_t dstCapacity,
1653
                         const void* src, size_t srcSize);
1654
1655
size_t ZSTD_compressBlock_deprecated(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
1656
1657
1658
#endif /* ZSTD_COMPRESS_H */