Coverage Report

Created: 2025-12-14 06:59

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/c-blosc/internal-complibs/zstd-1.5.6/compress/zstd_fast.c
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
#include "zstd_compress_internal.h"  /* ZSTD_hashPtr, ZSTD_count, ZSTD_storeSeq */
12
#include "zstd_fast.h"
13
14
static
15
ZSTD_ALLOW_POINTER_OVERFLOW_ATTR
16
void ZSTD_fillHashTableForCDict(ZSTD_matchState_t* ms,
17
                        const void* const end,
18
                        ZSTD_dictTableLoadMethod_e dtlm)
19
0
{
20
0
    const ZSTD_compressionParameters* const cParams = &ms->cParams;
21
0
    U32* const hashTable = ms->hashTable;
22
0
    U32  const hBits = cParams->hashLog + ZSTD_SHORT_CACHE_TAG_BITS;
23
0
    U32  const mls = cParams->minMatch;
24
0
    const BYTE* const base = ms->window.base;
25
0
    const BYTE* ip = base + ms->nextToUpdate;
26
0
    const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
27
0
    const U32 fastHashFillStep = 3;
28
29
    /* Currently, we always use ZSTD_dtlm_full for filling CDict tables.
30
     * Feel free to remove this assert if there's a good reason! */
31
0
    assert(dtlm == ZSTD_dtlm_full);
32
33
    /* Always insert every fastHashFillStep position into the hash table.
34
     * Insert the other positions if their hash entry is empty.
35
     */
36
0
    for ( ; ip + fastHashFillStep < iend + 2; ip += fastHashFillStep) {
37
0
        U32 const curr = (U32)(ip - base);
38
0
        {   size_t const hashAndTag = ZSTD_hashPtr(ip, hBits, mls);
39
0
            ZSTD_writeTaggedIndex(hashTable, hashAndTag, curr);   }
40
41
0
        if (dtlm == ZSTD_dtlm_fast) continue;
42
        /* Only load extra positions for ZSTD_dtlm_full */
43
0
        {   U32 p;
44
0
            for (p = 1; p < fastHashFillStep; ++p) {
45
0
                size_t const hashAndTag = ZSTD_hashPtr(ip + p, hBits, mls);
46
0
                if (hashTable[hashAndTag >> ZSTD_SHORT_CACHE_TAG_BITS] == 0) {  /* not yet filled */
47
0
                    ZSTD_writeTaggedIndex(hashTable, hashAndTag, curr + p);
48
0
                }   }   }   }
49
0
}
50
51
static
52
ZSTD_ALLOW_POINTER_OVERFLOW_ATTR
53
void ZSTD_fillHashTableForCCtx(ZSTD_matchState_t* ms,
54
                        const void* const end,
55
                        ZSTD_dictTableLoadMethod_e dtlm)
56
0
{
57
0
    const ZSTD_compressionParameters* const cParams = &ms->cParams;
58
0
    U32* const hashTable = ms->hashTable;
59
0
    U32  const hBits = cParams->hashLog;
60
0
    U32  const mls = cParams->minMatch;
61
0
    const BYTE* const base = ms->window.base;
62
0
    const BYTE* ip = base + ms->nextToUpdate;
63
0
    const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
64
0
    const U32 fastHashFillStep = 3;
65
66
    /* Currently, we always use ZSTD_dtlm_fast for filling CCtx tables.
67
     * Feel free to remove this assert if there's a good reason! */
68
0
    assert(dtlm == ZSTD_dtlm_fast);
69
70
    /* Always insert every fastHashFillStep position into the hash table.
71
     * Insert the other positions if their hash entry is empty.
72
     */
73
0
    for ( ; ip + fastHashFillStep < iend + 2; ip += fastHashFillStep) {
74
0
        U32 const curr = (U32)(ip - base);
75
0
        size_t const hash0 = ZSTD_hashPtr(ip, hBits, mls);
76
0
        hashTable[hash0] = curr;
77
0
        if (dtlm == ZSTD_dtlm_fast) continue;
78
        /* Only load extra positions for ZSTD_dtlm_full */
79
0
        {   U32 p;
80
0
            for (p = 1; p < fastHashFillStep; ++p) {
81
0
                size_t const hash = ZSTD_hashPtr(ip + p, hBits, mls);
82
0
                if (hashTable[hash] == 0) {  /* not yet filled */
83
0
                    hashTable[hash] = curr + p;
84
0
    }   }   }   }
85
0
}
86
87
void ZSTD_fillHashTable(ZSTD_matchState_t* ms,
88
                        const void* const end,
89
                        ZSTD_dictTableLoadMethod_e dtlm,
90
                        ZSTD_tableFillPurpose_e tfp)
91
0
{
92
0
    if (tfp == ZSTD_tfp_forCDict) {
93
0
        ZSTD_fillHashTableForCDict(ms, end, dtlm);
94
0
    } else {
95
0
        ZSTD_fillHashTableForCCtx(ms, end, dtlm);
96
0
    }
97
0
}
98
99
100
/**
101
 * If you squint hard enough (and ignore repcodes), the search operation at any
102
 * given position is broken into 4 stages:
103
 *
104
 * 1. Hash   (map position to hash value via input read)
105
 * 2. Lookup (map hash val to index via hashtable read)
106
 * 3. Load   (map index to value at that position via input read)
107
 * 4. Compare
108
 *
109
 * Each of these steps involves a memory read at an address which is computed
110
 * from the previous step. This means these steps must be sequenced and their
111
 * latencies are cumulative.
112
 *
113
 * Rather than do 1->2->3->4 sequentially for a single position before moving
114
 * onto the next, this implementation interleaves these operations across the
115
 * next few positions:
116
 *
117
 * R = Repcode Read & Compare
118
 * H = Hash
119
 * T = Table Lookup
120
 * M = Match Read & Compare
121
 *
122
 * Pos | Time -->
123
 * ----+-------------------
124
 * N   | ... M
125
 * N+1 | ...   TM
126
 * N+2 |    R H   T M
127
 * N+3 |         H    TM
128
 * N+4 |           R H   T M
129
 * N+5 |                H   ...
130
 * N+6 |                  R ...
131
 *
132
 * This is very much analogous to the pipelining of execution in a CPU. And just
133
 * like a CPU, we have to dump the pipeline when we find a match (i.e., take a
134
 * branch).
135
 *
136
 * When this happens, we throw away our current state, and do the following prep
137
 * to re-enter the loop:
138
 *
139
 * Pos | Time -->
140
 * ----+-------------------
141
 * N   | H T
142
 * N+1 |  H
143
 *
144
 * This is also the work we do at the beginning to enter the loop initially.
145
 */
146
FORCE_INLINE_TEMPLATE
147
ZSTD_ALLOW_POINTER_OVERFLOW_ATTR
148
size_t ZSTD_compressBlock_fast_noDict_generic(
149
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
150
        void const* src, size_t srcSize,
151
        U32 const mls, U32 const hasStep)
152
10.6k
{
153
10.6k
    const ZSTD_compressionParameters* const cParams = &ms->cParams;
154
10.6k
    U32* const hashTable = ms->hashTable;
155
10.6k
    U32 const hlog = cParams->hashLog;
156
    /* support stepSize of 0 */
157
10.6k
    size_t const stepSize = hasStep ? (cParams->targetLength + !(cParams->targetLength) + 1) : 2;
158
10.6k
    const BYTE* const base = ms->window.base;
159
10.6k
    const BYTE* const istart = (const BYTE*)src;
160
10.6k
    const U32   endIndex = (U32)((size_t)(istart - base) + srcSize);
161
10.6k
    const U32   prefixStartIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
162
10.6k
    const BYTE* const prefixStart = base + prefixStartIndex;
163
10.6k
    const BYTE* const iend = istart + srcSize;
164
10.6k
    const BYTE* const ilimit = iend - HASH_READ_SIZE;
165
166
10.6k
    const BYTE* anchor = istart;
167
10.6k
    const BYTE* ip0 = istart;
168
10.6k
    const BYTE* ip1;
169
10.6k
    const BYTE* ip2;
170
10.6k
    const BYTE* ip3;
171
10.6k
    U32 current0;
172
173
10.6k
    U32 rep_offset1 = rep[0];
174
10.6k
    U32 rep_offset2 = rep[1];
175
10.6k
    U32 offsetSaved1 = 0, offsetSaved2 = 0;
176
177
10.6k
    size_t hash0; /* hash for ip0 */
178
10.6k
    size_t hash1; /* hash for ip1 */
179
10.6k
    U32 idx; /* match idx for ip0 */
180
10.6k
    U32 mval; /* src value at match idx */
181
182
10.6k
    U32 offcode;
183
10.6k
    const BYTE* match0;
184
10.6k
    size_t mLength;
185
186
    /* ip0 and ip1 are always adjacent. The targetLength skipping and
187
     * uncompressibility acceleration is applied to every other position,
188
     * matching the behavior of #1562. step therefore represents the gap
189
     * between pairs of positions, from ip0 to ip2 or ip1 to ip3. */
190
10.6k
    size_t step;
191
10.6k
    const BYTE* nextStep;
192
10.6k
    const size_t kStepIncr = (1 << (kSearchStrength - 1));
193
194
10.6k
    DEBUGLOG(5, "ZSTD_compressBlock_fast_generic");
195
10.6k
    ip0 += (ip0 == prefixStart);
196
10.6k
    {   U32 const curr = (U32)(ip0 - base);
197
10.6k
        U32 const windowLow = ZSTD_getLowestPrefixIndex(ms, curr, cParams->windowLog);
198
10.6k
        U32 const maxRep = curr - windowLow;
199
10.6k
        if (rep_offset2 > maxRep) offsetSaved2 = rep_offset2, rep_offset2 = 0;
200
10.6k
        if (rep_offset1 > maxRep) offsetSaved1 = rep_offset1, rep_offset1 = 0;
201
10.6k
    }
202
203
    /* start each op */
204
1.98M
_start: /* Requires: ip0 */
205
206
1.98M
    step = stepSize;
207
1.98M
    nextStep = ip0 + kStepIncr;
208
209
    /* calculate positions, ip0 - anchor == 0, so we skip step calc */
210
1.98M
    ip1 = ip0 + 1;
211
1.98M
    ip2 = ip0 + step;
212
1.98M
    ip3 = ip2 + 1;
213
214
1.98M
    if (ip3 >= ilimit) {
215
8.15k
        goto _cleanup;
216
8.15k
    }
217
218
1.97M
    hash0 = ZSTD_hashPtr(ip0, hlog, mls);
219
1.97M
    hash1 = ZSTD_hashPtr(ip1, hlog, mls);
220
221
1.97M
    idx = hashTable[hash0];
222
223
9.81M
    do {
224
        /* load repcode match for ip[2]*/
225
9.81M
        const U32 rval = MEM_read32(ip2 - rep_offset1);
226
227
        /* write back hash table entry */
228
9.81M
        current0 = (U32)(ip0 - base);
229
9.81M
        hashTable[hash0] = current0;
230
231
        /* check repcode at ip[2] */
232
9.81M
        if ((MEM_read32(ip2) == rval) & (rep_offset1 > 0)) {
233
1.07M
            ip0 = ip2;
234
1.07M
            match0 = ip0 - rep_offset1;
235
1.07M
            mLength = ip0[-1] == match0[-1];
236
1.07M
            ip0 -= mLength;
237
1.07M
            match0 -= mLength;
238
1.07M
            offcode = REPCODE1_TO_OFFBASE;
239
1.07M
            mLength += 4;
240
241
            /* First write next hash table entry; we've already calculated it.
242
             * This write is known to be safe because the ip1 is before the
243
             * repcode (ip2). */
244
1.07M
            hashTable[hash1] = (U32)(ip1 - base);
245
246
1.07M
            goto _match;
247
1.07M
        }
248
249
        /* load match for ip[0] */
250
8.73M
        if (idx >= prefixStartIndex) {
251
3.19M
            mval = MEM_read32(base + idx);
252
5.53M
        } else {
253
5.53M
            mval = MEM_read32(ip0) ^ 1; /* guaranteed to not match. */
254
5.53M
        }
255
256
        /* check match at ip[0] */
257
8.73M
        if (MEM_read32(ip0) == mval) {
258
            /* found a match! */
259
260
            /* First write next hash table entry; we've already calculated it.
261
             * This write is known to be safe because the ip1 == ip0 + 1, so
262
             * we know we will resume searching after ip1 */
263
559k
            hashTable[hash1] = (U32)(ip1 - base);
264
265
559k
            goto _offset;
266
559k
        }
267
268
        /* lookup ip[1] */
269
8.17M
        idx = hashTable[hash1];
270
271
        /* hash ip[2] */
272
8.17M
        hash0 = hash1;
273
8.17M
        hash1 = ZSTD_hashPtr(ip2, hlog, mls);
274
275
        /* advance to next positions */
276
8.17M
        ip0 = ip1;
277
8.17M
        ip1 = ip2;
278
8.17M
        ip2 = ip3;
279
280
        /* write back hash table entry */
281
8.17M
        current0 = (U32)(ip0 - base);
282
8.17M
        hashTable[hash0] = current0;
283
284
        /* load match for ip[0] */
285
8.17M
        if (idx >= prefixStartIndex) {
286
2.85M
            mval = MEM_read32(base + idx);
287
5.31M
        } else {
288
5.31M
            mval = MEM_read32(ip0) ^ 1; /* guaranteed to not match. */
289
5.31M
        }
290
291
        /* check match at ip[0] */
292
8.17M
        if (MEM_read32(ip0) == mval) {
293
            /* found a match! */
294
295
            /* first write next hash table entry; we've already calculated it */
296
330k
            if (step <= 4) {
297
                /* We need to avoid writing an index into the hash table >= the
298
                 * position at which we will pick up our searching after we've
299
                 * taken this match.
300
                 *
301
                 * The minimum possible match has length 4, so the earliest ip0
302
                 * can be after we take this match will be the current ip0 + 4.
303
                 * ip1 is ip0 + step - 1. If ip1 is >= ip0 + 4, we can't safely
304
                 * write this position.
305
                 */
306
328k
                hashTable[hash1] = (U32)(ip1 - base);
307
328k
            }
308
309
330k
            goto _offset;
310
330k
        }
311
312
        /* lookup ip[1] */
313
7.84M
        idx = hashTable[hash1];
314
315
        /* hash ip[2] */
316
7.84M
        hash0 = hash1;
317
7.84M
        hash1 = ZSTD_hashPtr(ip2, hlog, mls);
318
319
        /* advance to next positions */
320
7.84M
        ip0 = ip1;
321
7.84M
        ip1 = ip2;
322
7.84M
        ip2 = ip0 + step;
323
7.84M
        ip3 = ip1 + step;
324
325
        /* calculate step */
326
7.84M
        if (ip2 >= nextStep) {
327
100k
            step++;
328
100k
            PREFETCH_L1(ip1 + 64);
329
100k
            PREFETCH_L1(ip1 + 128);
330
100k
            nextStep += kStepIncr;
331
100k
        }
332
7.84M
    } while (ip3 < ilimit);
333
334
10.6k
_cleanup:
335
    /* Note that there are probably still a couple positions we could search.
336
     * However, it seems to be a meaningful performance hit to try to search
337
     * them. So let's not. */
338
339
    /* When the repcodes are outside of the prefix, we set them to zero before the loop.
340
     * When the offsets are still zero, we need to restore them after the block to have a correct
341
     * repcode history. If only one offset was invalid, it is easy. The tricky case is when both
342
     * offsets were invalid. We need to figure out which offset to refill with.
343
     *     - If both offsets are zero they are in the same order.
344
     *     - If both offsets are non-zero, we won't restore the offsets from `offsetSaved[12]`.
345
     *     - If only one is zero, we need to decide which offset to restore.
346
     *         - If rep_offset1 is non-zero, then rep_offset2 must be offsetSaved1.
347
     *         - It is impossible for rep_offset2 to be non-zero.
348
     *
349
     * So if rep_offset1 started invalid (offsetSaved1 != 0) and became valid (rep_offset1 != 0), then
350
     * set rep[0] = rep_offset1 and rep[1] = offsetSaved1.
351
     */
352
10.6k
    offsetSaved2 = ((offsetSaved1 != 0) && (rep_offset1 != 0)) ? offsetSaved1 : offsetSaved2;
353
354
    /* save reps for next block */
355
10.6k
    rep[0] = rep_offset1 ? rep_offset1 : offsetSaved1;
356
10.6k
    rep[1] = rep_offset2 ? rep_offset2 : offsetSaved2;
357
358
    /* Return the last literals size */
359
10.6k
    return (size_t)(iend - anchor);
360
361
890k
_offset: /* Requires: ip0, idx */
362
363
    /* Compute the offset code. */
364
890k
    match0 = base + idx;
365
890k
    rep_offset2 = rep_offset1;
366
890k
    rep_offset1 = (U32)(ip0-match0);
367
890k
    offcode = OFFSET_TO_OFFBASE(rep_offset1);
368
890k
    mLength = 4;
369
370
    /* Count the backwards match length. */
371
985k
    while (((ip0>anchor) & (match0>prefixStart)) && (ip0[-1] == match0[-1])) {
372
95.2k
        ip0--;
373
95.2k
        match0--;
374
95.2k
        mLength++;
375
95.2k
    }
376
377
1.96M
_match: /* Requires: ip0, match0, offcode */
378
379
    /* Count the forward length. */
380
1.96M
    mLength += ZSTD_count(ip0 + mLength, match0 + mLength, iend);
381
382
1.96M
    ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength);
383
384
1.96M
    ip0 += mLength;
385
1.96M
    anchor = ip0;
386
387
    /* Fill table and check for immediate repcode. */
388
1.96M
    if (ip0 <= ilimit) {
389
        /* Fill Table */
390
1.96M
        assert(base+current0+2 > istart);  /* check base overflow */
391
1.96M
        hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2;  /* here because current+2 could be > iend-8 */
392
1.96M
        hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base);
393
394
1.96M
        if (rep_offset2 > 0) { /* rep_offset2==0 means rep_offset2 is invalidated */
395
1.81M
            while ( (ip0 <= ilimit) && (MEM_read32(ip0) == MEM_read32(ip0 - rep_offset2)) ) {
396
                /* store sequence */
397
219k
                size_t const rLength = ZSTD_count(ip0+4, ip0+4-rep_offset2, iend) + 4;
398
219k
                { U32 const tmpOff = rep_offset2; rep_offset2 = rep_offset1; rep_offset1 = tmpOff; } /* swap rep_offset2 <=> rep_offset1 */
399
219k
                hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = (U32)(ip0-base);
400
219k
                ip0 += rLength;
401
219k
                ZSTD_storeSeq(seqStore, 0 /*litLen*/, anchor, iend, REPCODE1_TO_OFFBASE, rLength);
402
219k
                anchor = ip0;
403
219k
                continue;   /* faster when present (confirmed on gcc-8) ... (?) */
404
219k
    }   }   }
405
406
1.96M
    goto _start;
407
890k
}
408
409
#define ZSTD_GEN_FAST_FN(dictMode, mls, step)                                                            \
410
    static size_t ZSTD_compressBlock_fast_##dictMode##_##mls##_##step(                                      \
411
            ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],                    \
412
            void const* src, size_t srcSize)                                                       \
413
10.6k
    {                                                                                              \
414
10.6k
        return ZSTD_compressBlock_fast_##dictMode##_generic(ms, seqStore, rep, src, srcSize, mls, step); \
415
10.6k
    }
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_noDict_4_1
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_noDict_5_1
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_noDict_6_1
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_noDict_7_1
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_noDict_4_0
zstd_fast.c:ZSTD_compressBlock_fast_noDict_5_0
Line
Count
Source
413
9.81k
    {                                                                                              \
414
9.81k
        return ZSTD_compressBlock_fast_##dictMode##_generic(ms, seqStore, rep, src, srcSize, mls, step); \
415
9.81k
    }
zstd_fast.c:ZSTD_compressBlock_fast_noDict_6_0
Line
Count
Source
413
805
    {                                                                                              \
414
805
        return ZSTD_compressBlock_fast_##dictMode##_generic(ms, seqStore, rep, src, srcSize, mls, step); \
415
805
    }
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_noDict_7_0
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_dictMatchState_4_0
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_dictMatchState_5_0
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_dictMatchState_6_0
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_dictMatchState_7_0
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_extDict_4_0
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_extDict_5_0
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_extDict_6_0
Unexecuted instantiation: zstd_fast.c:ZSTD_compressBlock_fast_extDict_7_0
416
417
ZSTD_GEN_FAST_FN(noDict, 4, 1)
418
ZSTD_GEN_FAST_FN(noDict, 5, 1)
419
ZSTD_GEN_FAST_FN(noDict, 6, 1)
420
ZSTD_GEN_FAST_FN(noDict, 7, 1)
421
422
ZSTD_GEN_FAST_FN(noDict, 4, 0)
423
ZSTD_GEN_FAST_FN(noDict, 5, 0)
424
ZSTD_GEN_FAST_FN(noDict, 6, 0)
425
ZSTD_GEN_FAST_FN(noDict, 7, 0)
426
427
size_t ZSTD_compressBlock_fast(
428
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
429
        void const* src, size_t srcSize)
430
10.6k
{
431
10.6k
    U32 const mls = ms->cParams.minMatch;
432
10.6k
    assert(ms->dictMatchState == NULL);
433
10.6k
    if (ms->cParams.targetLength > 1) {
434
0
        switch(mls)
435
0
        {
436
0
        default: /* includes case 3 */
437
0
        case 4 :
438
0
            return ZSTD_compressBlock_fast_noDict_4_1(ms, seqStore, rep, src, srcSize);
439
0
        case 5 :
440
0
            return ZSTD_compressBlock_fast_noDict_5_1(ms, seqStore, rep, src, srcSize);
441
0
        case 6 :
442
0
            return ZSTD_compressBlock_fast_noDict_6_1(ms, seqStore, rep, src, srcSize);
443
0
        case 7 :
444
0
            return ZSTD_compressBlock_fast_noDict_7_1(ms, seqStore, rep, src, srcSize);
445
0
        }
446
10.6k
    } else {
447
10.6k
        switch(mls)
448
10.6k
        {
449
0
        default: /* includes case 3 */
450
0
        case 4 :
451
0
            return ZSTD_compressBlock_fast_noDict_4_0(ms, seqStore, rep, src, srcSize);
452
9.81k
        case 5 :
453
9.81k
            return ZSTD_compressBlock_fast_noDict_5_0(ms, seqStore, rep, src, srcSize);
454
805
        case 6 :
455
805
            return ZSTD_compressBlock_fast_noDict_6_0(ms, seqStore, rep, src, srcSize);
456
0
        case 7 :
457
0
            return ZSTD_compressBlock_fast_noDict_7_0(ms, seqStore, rep, src, srcSize);
458
10.6k
        }
459
460
10.6k
    }
461
10.6k
}
462
463
FORCE_INLINE_TEMPLATE
464
ZSTD_ALLOW_POINTER_OVERFLOW_ATTR
465
size_t ZSTD_compressBlock_fast_dictMatchState_generic(
466
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
467
        void const* src, size_t srcSize, U32 const mls, U32 const hasStep)
468
0
{
469
0
    const ZSTD_compressionParameters* const cParams = &ms->cParams;
470
0
    U32* const hashTable = ms->hashTable;
471
0
    U32 const hlog = cParams->hashLog;
472
    /* support stepSize of 0 */
473
0
    U32 const stepSize = cParams->targetLength + !(cParams->targetLength);
474
0
    const BYTE* const base = ms->window.base;
475
0
    const BYTE* const istart = (const BYTE*)src;
476
0
    const BYTE* ip0 = istart;
477
0
    const BYTE* ip1 = ip0 + stepSize; /* we assert below that stepSize >= 1 */
478
0
    const BYTE* anchor = istart;
479
0
    const U32   prefixStartIndex = ms->window.dictLimit;
480
0
    const BYTE* const prefixStart = base + prefixStartIndex;
481
0
    const BYTE* const iend = istart + srcSize;
482
0
    const BYTE* const ilimit = iend - HASH_READ_SIZE;
483
0
    U32 offset_1=rep[0], offset_2=rep[1];
484
485
0
    const ZSTD_matchState_t* const dms = ms->dictMatchState;
486
0
    const ZSTD_compressionParameters* const dictCParams = &dms->cParams ;
487
0
    const U32* const dictHashTable = dms->hashTable;
488
0
    const U32 dictStartIndex       = dms->window.dictLimit;
489
0
    const BYTE* const dictBase     = dms->window.base;
490
0
    const BYTE* const dictStart    = dictBase + dictStartIndex;
491
0
    const BYTE* const dictEnd      = dms->window.nextSrc;
492
0
    const U32 dictIndexDelta       = prefixStartIndex - (U32)(dictEnd - dictBase);
493
0
    const U32 dictAndPrefixLength  = (U32)(istart - prefixStart + dictEnd - dictStart);
494
0
    const U32 dictHBits            = dictCParams->hashLog + ZSTD_SHORT_CACHE_TAG_BITS;
495
496
    /* if a dictionary is still attached, it necessarily means that
497
     * it is within window size. So we just check it. */
498
0
    const U32 maxDistance = 1U << cParams->windowLog;
499
0
    const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
500
0
    assert(endIndex - prefixStartIndex <= maxDistance);
501
0
    (void)maxDistance; (void)endIndex;   /* these variables are not used when assert() is disabled */
502
503
0
    (void)hasStep; /* not currently specialized on whether it's accelerated */
504
505
    /* ensure there will be no underflow
506
     * when translating a dict index into a local index */
507
0
    assert(prefixStartIndex >= (U32)(dictEnd - dictBase));
508
509
0
    if (ms->prefetchCDictTables) {
510
0
        size_t const hashTableBytes = (((size_t)1) << dictCParams->hashLog) * sizeof(U32);
511
0
        PREFETCH_AREA(dictHashTable, hashTableBytes);
512
0
    }
513
514
    /* init */
515
0
    DEBUGLOG(5, "ZSTD_compressBlock_fast_dictMatchState_generic");
516
0
    ip0 += (dictAndPrefixLength == 0);
517
    /* dictMatchState repCode checks don't currently handle repCode == 0
518
     * disabling. */
519
0
    assert(offset_1 <= dictAndPrefixLength);
520
0
    assert(offset_2 <= dictAndPrefixLength);
521
522
    /* Outer search loop */
523
0
    assert(stepSize >= 1);
524
0
    while (ip1 <= ilimit) {   /* repcode check at (ip0 + 1) is safe because ip0 < ip1 */
525
0
        size_t mLength;
526
0
        size_t hash0 = ZSTD_hashPtr(ip0, hlog, mls);
527
528
0
        size_t const dictHashAndTag0 = ZSTD_hashPtr(ip0, dictHBits, mls);
529
0
        U32 dictMatchIndexAndTag = dictHashTable[dictHashAndTag0 >> ZSTD_SHORT_CACHE_TAG_BITS];
530
0
        int dictTagsMatch = ZSTD_comparePackedTags(dictMatchIndexAndTag, dictHashAndTag0);
531
532
0
        U32 matchIndex = hashTable[hash0];
533
0
        U32 curr = (U32)(ip0 - base);
534
0
        size_t step = stepSize;
535
0
        const size_t kStepIncr = 1 << kSearchStrength;
536
0
        const BYTE* nextStep = ip0 + kStepIncr;
537
538
        /* Inner search loop */
539
0
        while (1) {
540
0
            const BYTE* match = base + matchIndex;
541
0
            const U32 repIndex = curr + 1 - offset_1;
542
0
            const BYTE* repMatch = (repIndex < prefixStartIndex) ?
543
0
                                   dictBase + (repIndex - dictIndexDelta) :
544
0
                                   base + repIndex;
545
0
            const size_t hash1 = ZSTD_hashPtr(ip1, hlog, mls);
546
0
            size_t const dictHashAndTag1 = ZSTD_hashPtr(ip1, dictHBits, mls);
547
0
            hashTable[hash0] = curr;   /* update hash table */
548
549
0
            if (((U32) ((prefixStartIndex - 1) - repIndex) >=
550
0
                 3) /* intentional underflow : ensure repIndex isn't overlapping dict + prefix */
551
0
                && (MEM_read32(repMatch) == MEM_read32(ip0 + 1))) {
552
0
                const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
553
0
                mLength = ZSTD_count_2segments(ip0 + 1 + 4, repMatch + 4, iend, repMatchEnd, prefixStart) + 4;
554
0
                ip0++;
555
0
                ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, REPCODE1_TO_OFFBASE, mLength);
556
0
                break;
557
0
            }
558
559
0
            if (dictTagsMatch) {
560
                /* Found a possible dict match */
561
0
                const U32 dictMatchIndex = dictMatchIndexAndTag >> ZSTD_SHORT_CACHE_TAG_BITS;
562
0
                const BYTE* dictMatch = dictBase + dictMatchIndex;
563
0
                if (dictMatchIndex > dictStartIndex &&
564
0
                    MEM_read32(dictMatch) == MEM_read32(ip0)) {
565
                    /* To replicate extDict parse behavior, we only use dict matches when the normal matchIndex is invalid */
566
0
                    if (matchIndex <= prefixStartIndex) {
567
0
                        U32 const offset = (U32) (curr - dictMatchIndex - dictIndexDelta);
568
0
                        mLength = ZSTD_count_2segments(ip0 + 4, dictMatch + 4, iend, dictEnd, prefixStart) + 4;
569
0
                        while (((ip0 > anchor) & (dictMatch > dictStart))
570
0
                            && (ip0[-1] == dictMatch[-1])) {
571
0
                            ip0--;
572
0
                            dictMatch--;
573
0
                            mLength++;
574
0
                        } /* catch up */
575
0
                        offset_2 = offset_1;
576
0
                        offset_1 = offset;
577
0
                        ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, OFFSET_TO_OFFBASE(offset), mLength);
578
0
                        break;
579
0
                    }
580
0
                }
581
0
            }
582
583
0
            if (matchIndex > prefixStartIndex && MEM_read32(match) == MEM_read32(ip0)) {
584
                /* found a regular match */
585
0
                U32 const offset = (U32) (ip0 - match);
586
0
                mLength = ZSTD_count(ip0 + 4, match + 4, iend) + 4;
587
0
                while (((ip0 > anchor) & (match > prefixStart))
588
0
                       && (ip0[-1] == match[-1])) {
589
0
                    ip0--;
590
0
                    match--;
591
0
                    mLength++;
592
0
                } /* catch up */
593
0
                offset_2 = offset_1;
594
0
                offset_1 = offset;
595
0
                ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, OFFSET_TO_OFFBASE(offset), mLength);
596
0
                break;
597
0
            }
598
599
            /* Prepare for next iteration */
600
0
            dictMatchIndexAndTag = dictHashTable[dictHashAndTag1 >> ZSTD_SHORT_CACHE_TAG_BITS];
601
0
            dictTagsMatch = ZSTD_comparePackedTags(dictMatchIndexAndTag, dictHashAndTag1);
602
0
            matchIndex = hashTable[hash1];
603
604
0
            if (ip1 >= nextStep) {
605
0
                step++;
606
0
                nextStep += kStepIncr;
607
0
            }
608
0
            ip0 = ip1;
609
0
            ip1 = ip1 + step;
610
0
            if (ip1 > ilimit) goto _cleanup;
611
612
0
            curr = (U32)(ip0 - base);
613
0
            hash0 = hash1;
614
0
        }   /* end inner search loop */
615
616
        /* match found */
617
0
        assert(mLength);
618
0
        ip0 += mLength;
619
0
        anchor = ip0;
620
621
0
        if (ip0 <= ilimit) {
622
            /* Fill Table */
623
0
            assert(base+curr+2 > istart);  /* check base overflow */
624
0
            hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2;  /* here because curr+2 could be > iend-8 */
625
0
            hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base);
626
627
            /* check immediate repcode */
628
0
            while (ip0 <= ilimit) {
629
0
                U32 const current2 = (U32)(ip0-base);
630
0
                U32 const repIndex2 = current2 - offset_2;
631
0
                const BYTE* repMatch2 = repIndex2 < prefixStartIndex ?
632
0
                        dictBase - dictIndexDelta + repIndex2 :
633
0
                        base + repIndex2;
634
0
                if ( ((U32)((prefixStartIndex-1) - (U32)repIndex2) >= 3 /* intentional overflow */)
635
0
                   && (MEM_read32(repMatch2) == MEM_read32(ip0))) {
636
0
                    const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
637
0
                    size_t const repLength2 = ZSTD_count_2segments(ip0+4, repMatch2+4, iend, repEnd2, prefixStart) + 4;
638
0
                    U32 tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset;   /* swap offset_2 <=> offset_1 */
639
0
                    ZSTD_storeSeq(seqStore, 0, anchor, iend, REPCODE1_TO_OFFBASE, repLength2);
640
0
                    hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = current2;
641
0
                    ip0 += repLength2;
642
0
                    anchor = ip0;
643
0
                    continue;
644
0
                }
645
0
                break;
646
0
            }
647
0
        }
648
649
        /* Prepare for next iteration */
650
0
        assert(ip0 == anchor);
651
0
        ip1 = ip0 + stepSize;
652
0
    }
653
654
0
_cleanup:
655
    /* save reps for next block */
656
0
    rep[0] = offset_1;
657
0
    rep[1] = offset_2;
658
659
    /* Return the last literals size */
660
0
    return (size_t)(iend - anchor);
661
0
}
662
663
664
ZSTD_GEN_FAST_FN(dictMatchState, 4, 0)
665
ZSTD_GEN_FAST_FN(dictMatchState, 5, 0)
666
ZSTD_GEN_FAST_FN(dictMatchState, 6, 0)
667
ZSTD_GEN_FAST_FN(dictMatchState, 7, 0)
668
669
size_t ZSTD_compressBlock_fast_dictMatchState(
670
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
671
        void const* src, size_t srcSize)
672
0
{
673
0
    U32 const mls = ms->cParams.minMatch;
674
0
    assert(ms->dictMatchState != NULL);
675
0
    switch(mls)
676
0
    {
677
0
    default: /* includes case 3 */
678
0
    case 4 :
679
0
        return ZSTD_compressBlock_fast_dictMatchState_4_0(ms, seqStore, rep, src, srcSize);
680
0
    case 5 :
681
0
        return ZSTD_compressBlock_fast_dictMatchState_5_0(ms, seqStore, rep, src, srcSize);
682
0
    case 6 :
683
0
        return ZSTD_compressBlock_fast_dictMatchState_6_0(ms, seqStore, rep, src, srcSize);
684
0
    case 7 :
685
0
        return ZSTD_compressBlock_fast_dictMatchState_7_0(ms, seqStore, rep, src, srcSize);
686
0
    }
687
0
}
688
689
690
static
691
ZSTD_ALLOW_POINTER_OVERFLOW_ATTR
692
size_t ZSTD_compressBlock_fast_extDict_generic(
693
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
694
        void const* src, size_t srcSize, U32 const mls, U32 const hasStep)
695
0
{
696
0
    const ZSTD_compressionParameters* const cParams = &ms->cParams;
697
0
    U32* const hashTable = ms->hashTable;
698
0
    U32 const hlog = cParams->hashLog;
699
    /* support stepSize of 0 */
700
0
    size_t const stepSize = cParams->targetLength + !(cParams->targetLength) + 1;
701
0
    const BYTE* const base = ms->window.base;
702
0
    const BYTE* const dictBase = ms->window.dictBase;
703
0
    const BYTE* const istart = (const BYTE*)src;
704
0
    const BYTE* anchor = istart;
705
0
    const U32   endIndex = (U32)((size_t)(istart - base) + srcSize);
706
0
    const U32   lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog);
707
0
    const U32   dictStartIndex = lowLimit;
708
0
    const BYTE* const dictStart = dictBase + dictStartIndex;
709
0
    const U32   dictLimit = ms->window.dictLimit;
710
0
    const U32   prefixStartIndex = dictLimit < lowLimit ? lowLimit : dictLimit;
711
0
    const BYTE* const prefixStart = base + prefixStartIndex;
712
0
    const BYTE* const dictEnd = dictBase + prefixStartIndex;
713
0
    const BYTE* const iend = istart + srcSize;
714
0
    const BYTE* const ilimit = iend - 8;
715
0
    U32 offset_1=rep[0], offset_2=rep[1];
716
0
    U32 offsetSaved1 = 0, offsetSaved2 = 0;
717
718
0
    const BYTE* ip0 = istart;
719
0
    const BYTE* ip1;
720
0
    const BYTE* ip2;
721
0
    const BYTE* ip3;
722
0
    U32 current0;
723
724
725
0
    size_t hash0; /* hash for ip0 */
726
0
    size_t hash1; /* hash for ip1 */
727
0
    U32 idx; /* match idx for ip0 */
728
0
    const BYTE* idxBase; /* base pointer for idx */
729
730
0
    U32 offcode;
731
0
    const BYTE* match0;
732
0
    size_t mLength;
733
0
    const BYTE* matchEnd = 0; /* initialize to avoid warning, assert != 0 later */
734
735
0
    size_t step;
736
0
    const BYTE* nextStep;
737
0
    const size_t kStepIncr = (1 << (kSearchStrength - 1));
738
739
0
    (void)hasStep; /* not currently specialized on whether it's accelerated */
740
741
0
    DEBUGLOG(5, "ZSTD_compressBlock_fast_extDict_generic (offset_1=%u)", offset_1);
742
743
    /* switch to "regular" variant if extDict is invalidated due to maxDistance */
744
0
    if (prefixStartIndex == dictStartIndex)
745
0
        return ZSTD_compressBlock_fast(ms, seqStore, rep, src, srcSize);
746
747
0
    {   U32 const curr = (U32)(ip0 - base);
748
0
        U32 const maxRep = curr - dictStartIndex;
749
0
        if (offset_2 >= maxRep) offsetSaved2 = offset_2, offset_2 = 0;
750
0
        if (offset_1 >= maxRep) offsetSaved1 = offset_1, offset_1 = 0;
751
0
    }
752
753
    /* start each op */
754
0
_start: /* Requires: ip0 */
755
756
0
    step = stepSize;
757
0
    nextStep = ip0 + kStepIncr;
758
759
    /* calculate positions, ip0 - anchor == 0, so we skip step calc */
760
0
    ip1 = ip0 + 1;
761
0
    ip2 = ip0 + step;
762
0
    ip3 = ip2 + 1;
763
764
0
    if (ip3 >= ilimit) {
765
0
        goto _cleanup;
766
0
    }
767
768
0
    hash0 = ZSTD_hashPtr(ip0, hlog, mls);
769
0
    hash1 = ZSTD_hashPtr(ip1, hlog, mls);
770
771
0
    idx = hashTable[hash0];
772
0
    idxBase = idx < prefixStartIndex ? dictBase : base;
773
774
0
    do {
775
0
        {   /* load repcode match for ip[2] */
776
0
            U32 const current2 = (U32)(ip2 - base);
777
0
            U32 const repIndex = current2 - offset_1;
778
0
            const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base;
779
0
            U32 rval;
780
0
            if ( ((U32)(prefixStartIndex - repIndex) >= 4) /* intentional underflow */
781
0
                 & (offset_1 > 0) ) {
782
0
                rval = MEM_read32(repBase + repIndex);
783
0
            } else {
784
0
                rval = MEM_read32(ip2) ^ 1; /* guaranteed to not match. */
785
0
            }
786
787
            /* write back hash table entry */
788
0
            current0 = (U32)(ip0 - base);
789
0
            hashTable[hash0] = current0;
790
791
            /* check repcode at ip[2] */
792
0
            if (MEM_read32(ip2) == rval) {
793
0
                ip0 = ip2;
794
0
                match0 = repBase + repIndex;
795
0
                matchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
796
0
                assert((match0 != prefixStart) & (match0 != dictStart));
797
0
                mLength = ip0[-1] == match0[-1];
798
0
                ip0 -= mLength;
799
0
                match0 -= mLength;
800
0
                offcode = REPCODE1_TO_OFFBASE;
801
0
                mLength += 4;
802
0
                goto _match;
803
0
        }   }
804
805
0
        {   /* load match for ip[0] */
806
0
            U32 const mval = idx >= dictStartIndex ?
807
0
                    MEM_read32(idxBase + idx) :
808
0
                    MEM_read32(ip0) ^ 1; /* guaranteed not to match */
809
810
            /* check match at ip[0] */
811
0
            if (MEM_read32(ip0) == mval) {
812
                /* found a match! */
813
0
                goto _offset;
814
0
        }   }
815
816
        /* lookup ip[1] */
817
0
        idx = hashTable[hash1];
818
0
        idxBase = idx < prefixStartIndex ? dictBase : base;
819
820
        /* hash ip[2] */
821
0
        hash0 = hash1;
822
0
        hash1 = ZSTD_hashPtr(ip2, hlog, mls);
823
824
        /* advance to next positions */
825
0
        ip0 = ip1;
826
0
        ip1 = ip2;
827
0
        ip2 = ip3;
828
829
        /* write back hash table entry */
830
0
        current0 = (U32)(ip0 - base);
831
0
        hashTable[hash0] = current0;
832
833
0
        {   /* load match for ip[0] */
834
0
            U32 const mval = idx >= dictStartIndex ?
835
0
                    MEM_read32(idxBase + idx) :
836
0
                    MEM_read32(ip0) ^ 1; /* guaranteed not to match */
837
838
            /* check match at ip[0] */
839
0
            if (MEM_read32(ip0) == mval) {
840
                /* found a match! */
841
0
                goto _offset;
842
0
        }   }
843
844
        /* lookup ip[1] */
845
0
        idx = hashTable[hash1];
846
0
        idxBase = idx < prefixStartIndex ? dictBase : base;
847
848
        /* hash ip[2] */
849
0
        hash0 = hash1;
850
0
        hash1 = ZSTD_hashPtr(ip2, hlog, mls);
851
852
        /* advance to next positions */
853
0
        ip0 = ip1;
854
0
        ip1 = ip2;
855
0
        ip2 = ip0 + step;
856
0
        ip3 = ip1 + step;
857
858
        /* calculate step */
859
0
        if (ip2 >= nextStep) {
860
0
            step++;
861
0
            PREFETCH_L1(ip1 + 64);
862
0
            PREFETCH_L1(ip1 + 128);
863
0
            nextStep += kStepIncr;
864
0
        }
865
0
    } while (ip3 < ilimit);
866
867
0
_cleanup:
868
    /* Note that there are probably still a couple positions we could search.
869
     * However, it seems to be a meaningful performance hit to try to search
870
     * them. So let's not. */
871
872
    /* If offset_1 started invalid (offsetSaved1 != 0) and became valid (offset_1 != 0),
873
     * rotate saved offsets. See comment in ZSTD_compressBlock_fast_noDict for more context. */
874
0
    offsetSaved2 = ((offsetSaved1 != 0) && (offset_1 != 0)) ? offsetSaved1 : offsetSaved2;
875
876
    /* save reps for next block */
877
0
    rep[0] = offset_1 ? offset_1 : offsetSaved1;
878
0
    rep[1] = offset_2 ? offset_2 : offsetSaved2;
879
880
    /* Return the last literals size */
881
0
    return (size_t)(iend - anchor);
882
883
0
_offset: /* Requires: ip0, idx, idxBase */
884
885
    /* Compute the offset code. */
886
0
    {   U32 const offset = current0 - idx;
887
0
        const BYTE* const lowMatchPtr = idx < prefixStartIndex ? dictStart : prefixStart;
888
0
        matchEnd = idx < prefixStartIndex ? dictEnd : iend;
889
0
        match0 = idxBase + idx;
890
0
        offset_2 = offset_1;
891
0
        offset_1 = offset;
892
0
        offcode = OFFSET_TO_OFFBASE(offset);
893
0
        mLength = 4;
894
895
        /* Count the backwards match length. */
896
0
        while (((ip0>anchor) & (match0>lowMatchPtr)) && (ip0[-1] == match0[-1])) {
897
0
            ip0--;
898
0
            match0--;
899
0
            mLength++;
900
0
    }   }
901
902
0
_match: /* Requires: ip0, match0, offcode, matchEnd */
903
904
    /* Count the forward length. */
905
0
    assert(matchEnd != 0);
906
0
    mLength += ZSTD_count_2segments(ip0 + mLength, match0 + mLength, iend, matchEnd, prefixStart);
907
908
0
    ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength);
909
910
0
    ip0 += mLength;
911
0
    anchor = ip0;
912
913
    /* write next hash table entry */
914
0
    if (ip1 < ip0) {
915
0
        hashTable[hash1] = (U32)(ip1 - base);
916
0
    }
917
918
    /* Fill table and check for immediate repcode. */
919
0
    if (ip0 <= ilimit) {
920
        /* Fill Table */
921
0
        assert(base+current0+2 > istart);  /* check base overflow */
922
0
        hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2;  /* here because current+2 could be > iend-8 */
923
0
        hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base);
924
925
0
        while (ip0 <= ilimit) {
926
0
            U32 const repIndex2 = (U32)(ip0-base) - offset_2;
927
0
            const BYTE* const repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2;
928
0
            if ( (((U32)((prefixStartIndex-1) - repIndex2) >= 3) & (offset_2 > 0))  /* intentional underflow */
929
0
                 && (MEM_read32(repMatch2) == MEM_read32(ip0)) ) {
930
0
                const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
931
0
                size_t const repLength2 = ZSTD_count_2segments(ip0+4, repMatch2+4, iend, repEnd2, prefixStart) + 4;
932
0
                { U32 const tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; }  /* swap offset_2 <=> offset_1 */
933
0
                ZSTD_storeSeq(seqStore, 0 /*litlen*/, anchor, iend, REPCODE1_TO_OFFBASE, repLength2);
934
0
                hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = (U32)(ip0-base);
935
0
                ip0 += repLength2;
936
0
                anchor = ip0;
937
0
                continue;
938
0
            }
939
0
            break;
940
0
    }   }
941
942
0
    goto _start;
943
0
}
944
945
ZSTD_GEN_FAST_FN(extDict, 4, 0)
946
ZSTD_GEN_FAST_FN(extDict, 5, 0)
947
ZSTD_GEN_FAST_FN(extDict, 6, 0)
948
ZSTD_GEN_FAST_FN(extDict, 7, 0)
949
950
size_t ZSTD_compressBlock_fast_extDict(
951
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
952
        void const* src, size_t srcSize)
953
0
{
954
0
    U32 const mls = ms->cParams.minMatch;
955
0
    assert(ms->dictMatchState == NULL);
956
0
    switch(mls)
957
0
    {
958
0
    default: /* includes case 3 */
959
0
    case 4 :
960
0
        return ZSTD_compressBlock_fast_extDict_4_0(ms, seqStore, rep, src, srcSize);
961
0
    case 5 :
962
0
        return ZSTD_compressBlock_fast_extDict_5_0(ms, seqStore, rep, src, srcSize);
963
0
    case 6 :
964
0
        return ZSTD_compressBlock_fast_extDict_6_0(ms, seqStore, rep, src, srcSize);
965
0
    case 7 :
966
0
        return ZSTD_compressBlock_fast_extDict_7_0(ms, seqStore, rep, src, srcSize);
967
0
    }
968
0
}