blob: a05b8a47f14ea204183a3fd1d1aa7bd6b6d1f084 [file] [log] [blame]
khenaidooac637102019-01-14 15:44:34 -05001/*
2 * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
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"
12#include "zstd_fast.h"
13
14
15void ZSTD_fillHashTable(ZSTD_matchState_t* ms,
Scott Baker8461e152019-10-01 14:44:30 -070016 const void* const end,
17 ZSTD_dictTableLoadMethod_e dtlm)
khenaidooac637102019-01-14 15:44:34 -050018{
Scott Baker8461e152019-10-01 14:44:30 -070019 const ZSTD_compressionParameters* const cParams = &ms->cParams;
khenaidooac637102019-01-14 15:44:34 -050020 U32* const hashTable = ms->hashTable;
21 U32 const hBits = cParams->hashLog;
Scott Baker8461e152019-10-01 14:44:30 -070022 U32 const mls = cParams->minMatch;
khenaidooac637102019-01-14 15:44:34 -050023 const BYTE* const base = ms->window.base;
24 const BYTE* ip = base + ms->nextToUpdate;
25 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
26 const U32 fastHashFillStep = 3;
27
28 /* Always insert every fastHashFillStep position into the hash table.
29 * Insert the other positions if their hash entry is empty.
30 */
Scott Baker8461e152019-10-01 14:44:30 -070031 for ( ; ip + fastHashFillStep < iend + 2; ip += fastHashFillStep) {
khenaidooac637102019-01-14 15:44:34 -050032 U32 const current = (U32)(ip - base);
Scott Baker8461e152019-10-01 14:44:30 -070033 size_t const hash0 = ZSTD_hashPtr(ip, hBits, mls);
34 hashTable[hash0] = current;
35 if (dtlm == ZSTD_dtlm_fast) continue;
36 /* Only load extra positions for ZSTD_dtlm_full */
37 { U32 p;
38 for (p = 1; p < fastHashFillStep; ++p) {
39 size_t const hash = ZSTD_hashPtr(ip + p, hBits, mls);
40 if (hashTable[hash] == 0) { /* not yet filled */
41 hashTable[hash] = current + p;
42 } } } }
khenaidooac637102019-01-14 15:44:34 -050043}
44
Scott Baker8461e152019-10-01 14:44:30 -070045
khenaidooac637102019-01-14 15:44:34 -050046FORCE_INLINE_TEMPLATE
47size_t ZSTD_compressBlock_fast_generic(
48 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
49 void const* src, size_t srcSize,
Scott Baker8461e152019-10-01 14:44:30 -070050 U32 const mls)
khenaidooac637102019-01-14 15:44:34 -050051{
Scott Baker8461e152019-10-01 14:44:30 -070052 const ZSTD_compressionParameters* const cParams = &ms->cParams;
khenaidooac637102019-01-14 15:44:34 -050053 U32* const hashTable = ms->hashTable;
Scott Baker8461e152019-10-01 14:44:30 -070054 U32 const hlog = cParams->hashLog;
55 /* support stepSize of 0 */
56 size_t const stepSize = cParams->targetLength + !(cParams->targetLength) + 1;
khenaidooac637102019-01-14 15:44:34 -050057 const BYTE* const base = ms->window.base;
58 const BYTE* const istart = (const BYTE*)src;
Scott Baker8461e152019-10-01 14:44:30 -070059 /* We check ip0 (ip + 0) and ip1 (ip + 1) each loop */
60 const BYTE* ip0 = istart;
61 const BYTE* ip1;
khenaidooac637102019-01-14 15:44:34 -050062 const BYTE* anchor = istart;
Scott Baker8461e152019-10-01 14:44:30 -070063 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
64 const U32 maxDistance = 1U << cParams->windowLog;
65 const U32 validStartIndex = ms->window.dictLimit;
66 const U32 prefixStartIndex = (endIndex - validStartIndex > maxDistance) ? endIndex - maxDistance : validStartIndex;
67 const BYTE* const prefixStart = base + prefixStartIndex;
khenaidooac637102019-01-14 15:44:34 -050068 const BYTE* const iend = istart + srcSize;
69 const BYTE* const ilimit = iend - HASH_READ_SIZE;
70 U32 offset_1=rep[0], offset_2=rep[1];
71 U32 offsetSaved = 0;
72
73 /* init */
Scott Baker8461e152019-10-01 14:44:30 -070074 ip0 += (ip0 == prefixStart);
75 ip1 = ip0 + 1;
76 {
77 U32 const maxRep = (U32)(ip0 - prefixStart);
khenaidooac637102019-01-14 15:44:34 -050078 if (offset_2 > maxRep) offsetSaved = offset_2, offset_2 = 0;
79 if (offset_1 > maxRep) offsetSaved = offset_1, offset_1 = 0;
80 }
81
82 /* Main Search Loop */
Scott Baker8461e152019-10-01 14:44:30 -070083 while (ip1 < ilimit) { /* < instead of <=, because check at ip0+2 */
84 size_t mLength;
85 BYTE const* ip2 = ip0 + 2;
86 size_t const h0 = ZSTD_hashPtr(ip0, hlog, mls);
87 U32 const val0 = MEM_read32(ip0);
88 size_t const h1 = ZSTD_hashPtr(ip1, hlog, mls);
89 U32 const val1 = MEM_read32(ip1);
90 U32 const current0 = (U32)(ip0-base);
91 U32 const current1 = (U32)(ip1-base);
92 U32 const matchIndex0 = hashTable[h0];
93 U32 const matchIndex1 = hashTable[h1];
94 BYTE const* repMatch = ip2-offset_1;
95 const BYTE* match0 = base + matchIndex0;
96 const BYTE* match1 = base + matchIndex1;
97 U32 offcode;
98 hashTable[h0] = current0; /* update hash table */
99 hashTable[h1] = current1; /* update hash table */
100
101 assert(ip0 + 1 == ip1);
102
103 if ((offset_1 > 0) & (MEM_read32(repMatch) == MEM_read32(ip2))) {
104 mLength = ip2[-1] == repMatch[-1] ? 1 : 0;
105 ip0 = ip2 - mLength;
106 match0 = repMatch - mLength;
107 offcode = 0;
108 goto _match;
109 }
110 if ((matchIndex0 > prefixStartIndex) && MEM_read32(match0) == val0) {
111 /* found a regular match */
112 goto _offset;
113 }
114 if ((matchIndex1 > prefixStartIndex) && MEM_read32(match1) == val1) {
115 /* found a regular match after one literal */
116 ip0 = ip1;
117 match0 = match1;
118 goto _offset;
119 }
120 {
121 size_t const step = ((ip0-anchor) >> (kSearchStrength - 1)) + stepSize;
122 assert(step >= 2);
123 ip0 += step;
124 ip1 += step;
125 continue;
126 }
127_offset: /* Requires: ip0, match0 */
128 /* Compute the offset code */
129 offset_2 = offset_1;
130 offset_1 = (U32)(ip0-match0);
131 offcode = offset_1 + ZSTD_REP_MOVE;
132 mLength = 0;
133 /* Count the backwards match length */
134 while (((ip0>anchor) & (match0>prefixStart))
135 && (ip0[-1] == match0[-1])) { ip0--; match0--; mLength++; } /* catch up */
136
137_match: /* Requires: ip0, match0, offcode */
138 /* Count the forward length */
139 mLength += ZSTD_count(ip0+mLength+4, match0+mLength+4, iend) + 4;
140 ZSTD_storeSeq(seqStore, ip0-anchor, anchor, offcode, mLength-MINMATCH);
141 /* match found */
142 ip0 += mLength;
143 anchor = ip0;
144 ip1 = ip0 + 1;
145
146 if (ip0 <= ilimit) {
147 /* Fill Table */
148 assert(base+current0+2 > istart); /* check base overflow */
149 hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2; /* here because current+2 could be > iend-8 */
150 hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base);
151
152 while ( (ip0 <= ilimit)
153 && ( (offset_2>0)
154 & (MEM_read32(ip0) == MEM_read32(ip0 - offset_2)) )) {
155 /* store sequence */
156 size_t const rLength = ZSTD_count(ip0+4, ip0+4-offset_2, iend) + 4;
157 U32 const tmpOff = offset_2; offset_2 = offset_1; offset_1 = tmpOff; /* swap offset_2 <=> offset_1 */
158 hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = (U32)(ip0-base);
159 ip0 += rLength;
160 ip1 = ip0 + 1;
161 ZSTD_storeSeq(seqStore, 0, anchor, 0, rLength-MINMATCH);
162 anchor = ip0;
163 continue; /* faster when present (confirmed on gcc-8) ... (?) */
164 }
165 }
166 }
167
168 /* save reps for next block */
169 rep[0] = offset_1 ? offset_1 : offsetSaved;
170 rep[1] = offset_2 ? offset_2 : offsetSaved;
171
172 /* Return the last literals size */
173 return (size_t)(iend - anchor);
174}
175
176
177size_t ZSTD_compressBlock_fast(
178 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
179 void const* src, size_t srcSize)
180{
181 ZSTD_compressionParameters const* cParams = &ms->cParams;
182 U32 const mls = cParams->minMatch;
183 assert(ms->dictMatchState == NULL);
184 switch(mls)
185 {
186 default: /* includes case 3 */
187 case 4 :
188 return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 4);
189 case 5 :
190 return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 5);
191 case 6 :
192 return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 6);
193 case 7 :
194 return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 7);
195 }
196}
197
198FORCE_INLINE_TEMPLATE
199size_t ZSTD_compressBlock_fast_dictMatchState_generic(
200 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
201 void const* src, size_t srcSize, U32 const mls)
202{
203 const ZSTD_compressionParameters* const cParams = &ms->cParams;
204 U32* const hashTable = ms->hashTable;
205 U32 const hlog = cParams->hashLog;
206 /* support stepSize of 0 */
207 U32 const stepSize = cParams->targetLength + !(cParams->targetLength);
208 const BYTE* const base = ms->window.base;
209 const BYTE* const istart = (const BYTE*)src;
210 const BYTE* ip = istart;
211 const BYTE* anchor = istart;
212 const U32 prefixStartIndex = ms->window.dictLimit;
213 const BYTE* const prefixStart = base + prefixStartIndex;
214 const BYTE* const iend = istart + srcSize;
215 const BYTE* const ilimit = iend - HASH_READ_SIZE;
216 U32 offset_1=rep[0], offset_2=rep[1];
217 U32 offsetSaved = 0;
218
219 const ZSTD_matchState_t* const dms = ms->dictMatchState;
220 const ZSTD_compressionParameters* const dictCParams = &dms->cParams ;
221 const U32* const dictHashTable = dms->hashTable;
222 const U32 dictStartIndex = dms->window.dictLimit;
223 const BYTE* const dictBase = dms->window.base;
224 const BYTE* const dictStart = dictBase + dictStartIndex;
225 const BYTE* const dictEnd = dms->window.nextSrc;
226 const U32 dictIndexDelta = prefixStartIndex - (U32)(dictEnd - dictBase);
227 const U32 dictAndPrefixLength = (U32)(ip - prefixStart + dictEnd - dictStart);
228 const U32 dictHLog = dictCParams->hashLog;
229
230 /* if a dictionary is still attached, it necessarily means that
231 * it is within window size. So we just check it. */
232 const U32 maxDistance = 1U << cParams->windowLog;
233 const U32 endIndex = (U32)((size_t)(ip - base) + srcSize);
234 assert(endIndex - prefixStartIndex <= maxDistance);
235 (void)maxDistance; (void)endIndex; /* these variables are not used when assert() is disabled */
236
237 /* ensure there will be no no underflow
238 * when translating a dict index into a local index */
239 assert(prefixStartIndex >= (U32)(dictEnd - dictBase));
240
241 /* init */
242 ip += (dictAndPrefixLength == 0);
243 /* dictMatchState repCode checks don't currently handle repCode == 0
244 * disabling. */
245 assert(offset_1 <= dictAndPrefixLength);
246 assert(offset_2 <= dictAndPrefixLength);
247
248 /* Main Search Loop */
khenaidooac637102019-01-14 15:44:34 -0500249 while (ip < ilimit) { /* < instead of <=, because repcode check at (ip+1) */
250 size_t mLength;
251 size_t const h = ZSTD_hashPtr(ip, hlog, mls);
252 U32 const current = (U32)(ip-base);
253 U32 const matchIndex = hashTable[h];
254 const BYTE* match = base + matchIndex;
Scott Baker8461e152019-10-01 14:44:30 -0700255 const U32 repIndex = current + 1 - offset_1;
256 const BYTE* repMatch = (repIndex < prefixStartIndex) ?
257 dictBase + (repIndex - dictIndexDelta) :
258 base + repIndex;
khenaidooac637102019-01-14 15:44:34 -0500259 hashTable[h] = current; /* update hash table */
260
Scott Baker8461e152019-10-01 14:44:30 -0700261 if ( ((U32)((prefixStartIndex-1) - repIndex) >= 3) /* intentional underflow : ensure repIndex isn't overlapping dict + prefix */
262 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) {
263 const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
264 mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixStart) + 4;
khenaidooac637102019-01-14 15:44:34 -0500265 ip++;
Scott Baker8461e152019-10-01 14:44:30 -0700266 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, 0, mLength-MINMATCH);
267 } else if ( (matchIndex <= prefixStartIndex) ) {
268 size_t const dictHash = ZSTD_hashPtr(ip, dictHLog, mls);
269 U32 const dictMatchIndex = dictHashTable[dictHash];
270 const BYTE* dictMatch = dictBase + dictMatchIndex;
271 if (dictMatchIndex <= dictStartIndex ||
272 MEM_read32(dictMatch) != MEM_read32(ip)) {
khenaidooac637102019-01-14 15:44:34 -0500273 assert(stepSize >= 1);
274 ip += ((ip-anchor) >> kSearchStrength) + stepSize;
275 continue;
Scott Baker8461e152019-10-01 14:44:30 -0700276 } else {
277 /* found a dict match */
278 U32 const offset = (U32)(current-dictMatchIndex-dictIndexDelta);
279 mLength = ZSTD_count_2segments(ip+4, dictMatch+4, iend, dictEnd, prefixStart) + 4;
280 while (((ip>anchor) & (dictMatch>dictStart))
281 && (ip[-1] == dictMatch[-1])) {
282 ip--; dictMatch--; mLength++;
283 } /* catch up */
khenaidooac637102019-01-14 15:44:34 -0500284 offset_2 = offset_1;
285 offset_1 = offset;
Scott Baker8461e152019-10-01 14:44:30 -0700286 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
287 }
288 } else if (MEM_read32(match) != MEM_read32(ip)) {
289 /* it's not a match, and we're not going to check the dictionary */
290 assert(stepSize >= 1);
291 ip += ((ip-anchor) >> kSearchStrength) + stepSize;
292 continue;
293 } else {
294 /* found a regular match */
295 U32 const offset = (U32)(ip-match);
296 mLength = ZSTD_count(ip+4, match+4, iend) + 4;
297 while (((ip>anchor) & (match>prefixStart))
298 && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
299 offset_2 = offset_1;
300 offset_1 = offset;
301 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
302 }
khenaidooac637102019-01-14 15:44:34 -0500303
304 /* match found */
305 ip += mLength;
306 anchor = ip;
307
308 if (ip <= ilimit) {
309 /* Fill Table */
Scott Baker8461e152019-10-01 14:44:30 -0700310 assert(base+current+2 > istart); /* check base overflow */
khenaidooac637102019-01-14 15:44:34 -0500311 hashTable[ZSTD_hashPtr(base+current+2, hlog, mls)] = current+2; /* here because current+2 could be > iend-8 */
312 hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base);
Scott Baker8461e152019-10-01 14:44:30 -0700313
khenaidooac637102019-01-14 15:44:34 -0500314 /* check immediate repcode */
Scott Baker8461e152019-10-01 14:44:30 -0700315 while (ip <= ilimit) {
316 U32 const current2 = (U32)(ip-base);
317 U32 const repIndex2 = current2 - offset_2;
318 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ?
319 dictBase - dictIndexDelta + repIndex2 :
320 base + repIndex2;
321 if ( ((U32)((prefixStartIndex-1) - (U32)repIndex2) >= 3 /* intentional overflow */)
322 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) {
323 const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
324 size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4;
325 U32 tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; /* swap offset_2 <=> offset_1 */
326 ZSTD_storeSeq(seqStore, 0, anchor, 0, repLength2-MINMATCH);
327 hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2;
328 ip += repLength2;
329 anchor = ip;
330 continue;
331 }
332 break;
333 }
334 }
335 }
khenaidooac637102019-01-14 15:44:34 -0500336
337 /* save reps for next block */
338 rep[0] = offset_1 ? offset_1 : offsetSaved;
339 rep[1] = offset_2 ? offset_2 : offsetSaved;
340
341 /* Return the last literals size */
Scott Baker8461e152019-10-01 14:44:30 -0700342 return (size_t)(iend - anchor);
khenaidooac637102019-01-14 15:44:34 -0500343}
344
Scott Baker8461e152019-10-01 14:44:30 -0700345size_t ZSTD_compressBlock_fast_dictMatchState(
khenaidooac637102019-01-14 15:44:34 -0500346 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
Scott Baker8461e152019-10-01 14:44:30 -0700347 void const* src, size_t srcSize)
khenaidooac637102019-01-14 15:44:34 -0500348{
Scott Baker8461e152019-10-01 14:44:30 -0700349 ZSTD_compressionParameters const* cParams = &ms->cParams;
350 U32 const mls = cParams->minMatch;
351 assert(ms->dictMatchState != NULL);
khenaidooac637102019-01-14 15:44:34 -0500352 switch(mls)
353 {
354 default: /* includes case 3 */
355 case 4 :
Scott Baker8461e152019-10-01 14:44:30 -0700356 return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 4);
khenaidooac637102019-01-14 15:44:34 -0500357 case 5 :
Scott Baker8461e152019-10-01 14:44:30 -0700358 return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 5);
khenaidooac637102019-01-14 15:44:34 -0500359 case 6 :
Scott Baker8461e152019-10-01 14:44:30 -0700360 return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 6);
khenaidooac637102019-01-14 15:44:34 -0500361 case 7 :
Scott Baker8461e152019-10-01 14:44:30 -0700362 return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 7);
khenaidooac637102019-01-14 15:44:34 -0500363 }
364}
365
366
367static size_t ZSTD_compressBlock_fast_extDict_generic(
368 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
Scott Baker8461e152019-10-01 14:44:30 -0700369 void const* src, size_t srcSize, U32 const mls)
khenaidooac637102019-01-14 15:44:34 -0500370{
Scott Baker8461e152019-10-01 14:44:30 -0700371 const ZSTD_compressionParameters* const cParams = &ms->cParams;
372 U32* const hashTable = ms->hashTable;
373 U32 const hlog = cParams->hashLog;
374 /* support stepSize of 0 */
375 U32 const stepSize = cParams->targetLength + !(cParams->targetLength);
khenaidooac637102019-01-14 15:44:34 -0500376 const BYTE* const base = ms->window.base;
377 const BYTE* const dictBase = ms->window.dictBase;
378 const BYTE* const istart = (const BYTE*)src;
379 const BYTE* ip = istart;
380 const BYTE* anchor = istart;
Scott Baker8461e152019-10-01 14:44:30 -0700381 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
382 const U32 maxDistance = 1U << cParams->windowLog;
383 const U32 validLow = ms->window.lowLimit;
384 const U32 lowLimit = (endIndex - validLow > maxDistance) ? endIndex - maxDistance : validLow;
385 const U32 dictStartIndex = lowLimit;
386 const BYTE* const dictStart = dictBase + dictStartIndex;
khenaidooac637102019-01-14 15:44:34 -0500387 const U32 dictLimit = ms->window.dictLimit;
Scott Baker8461e152019-10-01 14:44:30 -0700388 const U32 prefixStartIndex = dictLimit < lowLimit ? lowLimit : dictLimit;
389 const BYTE* const prefixStart = base + prefixStartIndex;
390 const BYTE* const dictEnd = dictBase + prefixStartIndex;
khenaidooac637102019-01-14 15:44:34 -0500391 const BYTE* const iend = istart + srcSize;
392 const BYTE* const ilimit = iend - 8;
393 U32 offset_1=rep[0], offset_2=rep[1];
394
Scott Baker8461e152019-10-01 14:44:30 -0700395 /* switch to "regular" variant if extDict is invalidated due to maxDistance */
396 if (prefixStartIndex == dictStartIndex)
397 return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, mls);
398
khenaidooac637102019-01-14 15:44:34 -0500399 /* Search Loop */
400 while (ip < ilimit) { /* < instead of <=, because (ip+1) */
401 const size_t h = ZSTD_hashPtr(ip, hlog, mls);
Scott Baker8461e152019-10-01 14:44:30 -0700402 const U32 matchIndex = hashTable[h];
403 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base;
404 const BYTE* match = matchBase + matchIndex;
405 const U32 current = (U32)(ip-base);
406 const U32 repIndex = current + 1 - offset_1;
407 const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base;
408 const BYTE* const repMatch = repBase + repIndex;
khenaidooac637102019-01-14 15:44:34 -0500409 size_t mLength;
410 hashTable[h] = current; /* update hash table */
Scott Baker8461e152019-10-01 14:44:30 -0700411 assert(offset_1 <= current +1); /* check repIndex */
khenaidooac637102019-01-14 15:44:34 -0500412
Scott Baker8461e152019-10-01 14:44:30 -0700413 if ( (((U32)((prefixStartIndex-1) - repIndex) >= 3) /* intentional underflow */ & (repIndex > dictStartIndex))
khenaidooac637102019-01-14 15:44:34 -0500414 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) {
Scott Baker8461e152019-10-01 14:44:30 -0700415 const BYTE* repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
416 mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixStart) + 4;
khenaidooac637102019-01-14 15:44:34 -0500417 ip++;
Scott Baker8461e152019-10-01 14:44:30 -0700418 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, 0, mLength-MINMATCH);
khenaidooac637102019-01-14 15:44:34 -0500419 } else {
Scott Baker8461e152019-10-01 14:44:30 -0700420 if ( (matchIndex < dictStartIndex) ||
khenaidooac637102019-01-14 15:44:34 -0500421 (MEM_read32(match) != MEM_read32(ip)) ) {
422 assert(stepSize >= 1);
423 ip += ((ip-anchor) >> kSearchStrength) + stepSize;
424 continue;
425 }
Scott Baker8461e152019-10-01 14:44:30 -0700426 { const BYTE* matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend;
427 const BYTE* lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart;
khenaidooac637102019-01-14 15:44:34 -0500428 U32 offset;
Scott Baker8461e152019-10-01 14:44:30 -0700429 mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, prefixStart) + 4;
khenaidooac637102019-01-14 15:44:34 -0500430 while (((ip>anchor) & (match>lowMatchPtr)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
431 offset = current - matchIndex;
432 offset_2 = offset_1;
433 offset_1 = offset;
Scott Baker8461e152019-10-01 14:44:30 -0700434 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
khenaidooac637102019-01-14 15:44:34 -0500435 } }
436
437 /* found a match : store it */
438 ip += mLength;
439 anchor = ip;
440
441 if (ip <= ilimit) {
442 /* Fill Table */
443 hashTable[ZSTD_hashPtr(base+current+2, hlog, mls)] = current+2;
444 hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base);
445 /* check immediate repcode */
446 while (ip <= ilimit) {
447 U32 const current2 = (U32)(ip-base);
448 U32 const repIndex2 = current2 - offset_2;
Scott Baker8461e152019-10-01 14:44:30 -0700449 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2;
450 if ( (((U32)((prefixStartIndex-1) - repIndex2) >= 3) & (repIndex2 > dictStartIndex)) /* intentional overflow */
khenaidooac637102019-01-14 15:44:34 -0500451 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) {
Scott Baker8461e152019-10-01 14:44:30 -0700452 const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
453 size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4;
khenaidooac637102019-01-14 15:44:34 -0500454 U32 tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; /* swap offset_2 <=> offset_1 */
455 ZSTD_storeSeq(seqStore, 0, anchor, 0, repLength2-MINMATCH);
456 hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2;
457 ip += repLength2;
458 anchor = ip;
459 continue;
460 }
461 break;
462 } } }
463
464 /* save reps for next block */
465 rep[0] = offset_1;
466 rep[1] = offset_2;
467
468 /* Return the last literals size */
Scott Baker8461e152019-10-01 14:44:30 -0700469 return (size_t)(iend - anchor);
khenaidooac637102019-01-14 15:44:34 -0500470}
471
472
473size_t ZSTD_compressBlock_fast_extDict(
474 ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
Scott Baker8461e152019-10-01 14:44:30 -0700475 void const* src, size_t srcSize)
khenaidooac637102019-01-14 15:44:34 -0500476{
Scott Baker8461e152019-10-01 14:44:30 -0700477 ZSTD_compressionParameters const* cParams = &ms->cParams;
478 U32 const mls = cParams->minMatch;
khenaidooac637102019-01-14 15:44:34 -0500479 switch(mls)
480 {
481 default: /* includes case 3 */
482 case 4 :
Scott Baker8461e152019-10-01 14:44:30 -0700483 return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 4);
khenaidooac637102019-01-14 15:44:34 -0500484 case 5 :
Scott Baker8461e152019-10-01 14:44:30 -0700485 return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 5);
khenaidooac637102019-01-14 15:44:34 -0500486 case 6 :
Scott Baker8461e152019-10-01 14:44:30 -0700487 return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 6);
khenaidooac637102019-01-14 15:44:34 -0500488 case 7 :
Scott Baker8461e152019-10-01 14:44:30 -0700489 return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 7);
khenaidooac637102019-01-14 15:44:34 -0500490 }
491}