/src/perfetto/buildtools/zstd/lib/compress/zstd_ldm.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_ldm.h" |
12 | | |
13 | | #include "../common/debug.h" |
14 | | #include "../common/xxhash.h" |
15 | | #include "zstd_fast.h" /* ZSTD_fillHashTable() */ |
16 | | #include "zstd_double_fast.h" /* ZSTD_fillDoubleHashTable() */ |
17 | | #include "zstd_ldm_geartab.h" |
18 | | |
19 | 0 | #define LDM_BUCKET_SIZE_LOG 3 |
20 | 0 | #define LDM_MIN_MATCH_LENGTH 64 |
21 | | #define LDM_HASH_RLOG 7 |
22 | | |
23 | | typedef struct { |
24 | | U64 rolling; |
25 | | U64 stopMask; |
26 | | } ldmRollingHashState_t; |
27 | | |
28 | | /** ZSTD_ldm_gear_init(): |
29 | | * |
30 | | * Initializes the rolling hash state such that it will honor the |
31 | | * settings in params. */ |
32 | | static void ZSTD_ldm_gear_init(ldmRollingHashState_t* state, ldmParams_t const* params) |
33 | 0 | { |
34 | 0 | unsigned maxBitsInMask = MIN(params->minMatchLength, 64); |
35 | 0 | unsigned hashRateLog = params->hashRateLog; |
36 | |
|
37 | 0 | state->rolling = ~(U32)0; |
38 | | |
39 | | /* The choice of the splitting criterion is subject to two conditions: |
40 | | * 1. it has to trigger on average every 2^(hashRateLog) bytes; |
41 | | * 2. ideally, it has to depend on a window of minMatchLength bytes. |
42 | | * |
43 | | * In the gear hash algorithm, bit n depends on the last n bytes; |
44 | | * so in order to obtain a good quality splitting criterion it is |
45 | | * preferable to use bits with high weight. |
46 | | * |
47 | | * To match condition 1 we use a mask with hashRateLog bits set |
48 | | * and, because of the previous remark, we make sure these bits |
49 | | * have the highest possible weight while still respecting |
50 | | * condition 2. |
51 | | */ |
52 | 0 | if (hashRateLog > 0 && hashRateLog <= maxBitsInMask) { |
53 | 0 | state->stopMask = (((U64)1 << hashRateLog) - 1) << (maxBitsInMask - hashRateLog); |
54 | 0 | } else { |
55 | | /* In this degenerate case we simply honor the hash rate. */ |
56 | 0 | state->stopMask = ((U64)1 << hashRateLog) - 1; |
57 | 0 | } |
58 | 0 | } |
59 | | |
60 | | /** ZSTD_ldm_gear_reset() |
61 | | * Feeds [data, data + minMatchLength) into the hash without registering any |
62 | | * splits. This effectively resets the hash state. This is used when skipping |
63 | | * over data, either at the beginning of a block, or skipping sections. |
64 | | */ |
65 | | static void ZSTD_ldm_gear_reset(ldmRollingHashState_t* state, |
66 | | BYTE const* data, size_t minMatchLength) |
67 | 0 | { |
68 | 0 | U64 hash = state->rolling; |
69 | 0 | size_t n = 0; |
70 | |
|
71 | 0 | #define GEAR_ITER_ONCE() do { \ |
72 | 0 | hash = (hash << 1) + ZSTD_ldm_gearTab[data[n] & 0xff]; \ |
73 | 0 | n += 1; \ |
74 | 0 | } while (0) |
75 | 0 | while (n + 3 < minMatchLength) { |
76 | 0 | GEAR_ITER_ONCE(); |
77 | 0 | GEAR_ITER_ONCE(); |
78 | 0 | GEAR_ITER_ONCE(); |
79 | 0 | GEAR_ITER_ONCE(); |
80 | 0 | } |
81 | 0 | while (n < minMatchLength) { |
82 | 0 | GEAR_ITER_ONCE(); |
83 | 0 | } |
84 | 0 | #undef GEAR_ITER_ONCE |
85 | 0 | } |
86 | | |
87 | | /** ZSTD_ldm_gear_feed(): |
88 | | * |
89 | | * Registers in the splits array all the split points found in the first |
90 | | * size bytes following the data pointer. This function terminates when |
91 | | * either all the data has been processed or LDM_BATCH_SIZE splits are |
92 | | * present in the splits array. |
93 | | * |
94 | | * Precondition: The splits array must not be full. |
95 | | * Returns: The number of bytes processed. */ |
96 | | static size_t ZSTD_ldm_gear_feed(ldmRollingHashState_t* state, |
97 | | BYTE const* data, size_t size, |
98 | | size_t* splits, unsigned* numSplits) |
99 | 0 | { |
100 | 0 | size_t n; |
101 | 0 | U64 hash, mask; |
102 | |
|
103 | 0 | hash = state->rolling; |
104 | 0 | mask = state->stopMask; |
105 | 0 | n = 0; |
106 | |
|
107 | 0 | #define GEAR_ITER_ONCE() do { \ |
108 | 0 | hash = (hash << 1) + ZSTD_ldm_gearTab[data[n] & 0xff]; \ |
109 | 0 | n += 1; \ |
110 | 0 | if (UNLIKELY((hash & mask) == 0)) { \ |
111 | 0 | splits[*numSplits] = n; \ |
112 | 0 | *numSplits += 1; \ |
113 | 0 | if (*numSplits == LDM_BATCH_SIZE) \ |
114 | 0 | goto done; \ |
115 | 0 | } \ |
116 | 0 | } while (0) |
117 | |
|
118 | 0 | while (n + 3 < size) { |
119 | 0 | GEAR_ITER_ONCE(); |
120 | 0 | GEAR_ITER_ONCE(); |
121 | 0 | GEAR_ITER_ONCE(); |
122 | 0 | GEAR_ITER_ONCE(); |
123 | 0 | } |
124 | 0 | while (n < size) { |
125 | 0 | GEAR_ITER_ONCE(); |
126 | 0 | } |
127 | | |
128 | 0 | #undef GEAR_ITER_ONCE |
129 | | |
130 | 0 | done: |
131 | 0 | state->rolling = hash; |
132 | 0 | return n; |
133 | 0 | } |
134 | | |
135 | | void ZSTD_ldm_adjustParameters(ldmParams_t* params, |
136 | | ZSTD_compressionParameters const* cParams) |
137 | 0 | { |
138 | 0 | params->windowLog = cParams->windowLog; |
139 | 0 | ZSTD_STATIC_ASSERT(LDM_BUCKET_SIZE_LOG <= ZSTD_LDM_BUCKETSIZELOG_MAX); |
140 | 0 | DEBUGLOG(4, "ZSTD_ldm_adjustParameters"); |
141 | 0 | if (!params->bucketSizeLog) params->bucketSizeLog = LDM_BUCKET_SIZE_LOG; |
142 | 0 | if (!params->minMatchLength) params->minMatchLength = LDM_MIN_MATCH_LENGTH; |
143 | 0 | if (params->hashLog == 0) { |
144 | 0 | params->hashLog = MAX(ZSTD_HASHLOG_MIN, params->windowLog - LDM_HASH_RLOG); |
145 | 0 | assert(params->hashLog <= ZSTD_HASHLOG_MAX); |
146 | 0 | } |
147 | 0 | if (params->hashRateLog == 0) { |
148 | 0 | params->hashRateLog = params->windowLog < params->hashLog |
149 | 0 | ? 0 |
150 | 0 | : params->windowLog - params->hashLog; |
151 | 0 | } |
152 | 0 | params->bucketSizeLog = MIN(params->bucketSizeLog, params->hashLog); |
153 | 0 | } |
154 | | |
155 | | size_t ZSTD_ldm_getTableSize(ldmParams_t params) |
156 | 0 | { |
157 | 0 | size_t const ldmHSize = ((size_t)1) << params.hashLog; |
158 | 0 | size_t const ldmBucketSizeLog = MIN(params.bucketSizeLog, params.hashLog); |
159 | 0 | size_t const ldmBucketSize = ((size_t)1) << (params.hashLog - ldmBucketSizeLog); |
160 | 0 | size_t const totalSize = ZSTD_cwksp_alloc_size(ldmBucketSize) |
161 | 0 | + ZSTD_cwksp_alloc_size(ldmHSize * sizeof(ldmEntry_t)); |
162 | 0 | return params.enableLdm == ZSTD_ps_enable ? totalSize : 0; |
163 | 0 | } |
164 | | |
165 | | size_t ZSTD_ldm_getMaxNbSeq(ldmParams_t params, size_t maxChunkSize) |
166 | 0 | { |
167 | 0 | return params.enableLdm == ZSTD_ps_enable ? (maxChunkSize / params.minMatchLength) : 0; |
168 | 0 | } |
169 | | |
170 | | /** ZSTD_ldm_getBucket() : |
171 | | * Returns a pointer to the start of the bucket associated with hash. */ |
172 | | static ldmEntry_t* ZSTD_ldm_getBucket( |
173 | | ldmState_t* ldmState, size_t hash, ldmParams_t const ldmParams) |
174 | 0 | { |
175 | 0 | return ldmState->hashTable + (hash << ldmParams.bucketSizeLog); |
176 | 0 | } |
177 | | |
178 | | /** ZSTD_ldm_insertEntry() : |
179 | | * Insert the entry with corresponding hash into the hash table */ |
180 | | static void ZSTD_ldm_insertEntry(ldmState_t* ldmState, |
181 | | size_t const hash, const ldmEntry_t entry, |
182 | | ldmParams_t const ldmParams) |
183 | 0 | { |
184 | 0 | BYTE* const pOffset = ldmState->bucketOffsets + hash; |
185 | 0 | unsigned const offset = *pOffset; |
186 | |
|
187 | 0 | *(ZSTD_ldm_getBucket(ldmState, hash, ldmParams) + offset) = entry; |
188 | 0 | *pOffset = (BYTE)((offset + 1) & ((1u << ldmParams.bucketSizeLog) - 1)); |
189 | |
|
190 | 0 | } |
191 | | |
192 | | /** ZSTD_ldm_countBackwardsMatch() : |
193 | | * Returns the number of bytes that match backwards before pIn and pMatch. |
194 | | * |
195 | | * We count only bytes where pMatch >= pBase and pIn >= pAnchor. */ |
196 | | static size_t ZSTD_ldm_countBackwardsMatch( |
197 | | const BYTE* pIn, const BYTE* pAnchor, |
198 | | const BYTE* pMatch, const BYTE* pMatchBase) |
199 | 0 | { |
200 | 0 | size_t matchLength = 0; |
201 | 0 | while (pIn > pAnchor && pMatch > pMatchBase && pIn[-1] == pMatch[-1]) { |
202 | 0 | pIn--; |
203 | 0 | pMatch--; |
204 | 0 | matchLength++; |
205 | 0 | } |
206 | 0 | return matchLength; |
207 | 0 | } |
208 | | |
209 | | /** ZSTD_ldm_countBackwardsMatch_2segments() : |
210 | | * Returns the number of bytes that match backwards from pMatch, |
211 | | * even with the backwards match spanning 2 different segments. |
212 | | * |
213 | | * On reaching `pMatchBase`, start counting from mEnd */ |
214 | | static size_t ZSTD_ldm_countBackwardsMatch_2segments( |
215 | | const BYTE* pIn, const BYTE* pAnchor, |
216 | | const BYTE* pMatch, const BYTE* pMatchBase, |
217 | | const BYTE* pExtDictStart, const BYTE* pExtDictEnd) |
218 | 0 | { |
219 | 0 | size_t matchLength = ZSTD_ldm_countBackwardsMatch(pIn, pAnchor, pMatch, pMatchBase); |
220 | 0 | if (pMatch - matchLength != pMatchBase || pMatchBase == pExtDictStart) { |
221 | | /* If backwards match is entirely in the extDict or prefix, immediately return */ |
222 | 0 | return matchLength; |
223 | 0 | } |
224 | 0 | DEBUGLOG(7, "ZSTD_ldm_countBackwardsMatch_2segments: found 2-parts backwards match (length in prefix==%zu)", matchLength); |
225 | 0 | matchLength += ZSTD_ldm_countBackwardsMatch(pIn - matchLength, pAnchor, pExtDictEnd, pExtDictStart); |
226 | 0 | DEBUGLOG(7, "final backwards match length = %zu", matchLength); |
227 | 0 | return matchLength; |
228 | 0 | } |
229 | | |
230 | | /** ZSTD_ldm_fillFastTables() : |
231 | | * |
232 | | * Fills the relevant tables for the ZSTD_fast and ZSTD_dfast strategies. |
233 | | * This is similar to ZSTD_loadDictionaryContent. |
234 | | * |
235 | | * The tables for the other strategies are filled within their |
236 | | * block compressors. */ |
237 | | static size_t ZSTD_ldm_fillFastTables(ZSTD_matchState_t* ms, |
238 | | void const* end) |
239 | 0 | { |
240 | 0 | const BYTE* const iend = (const BYTE*)end; |
241 | |
|
242 | 0 | switch(ms->cParams.strategy) |
243 | 0 | { |
244 | 0 | case ZSTD_fast: |
245 | 0 | ZSTD_fillHashTable(ms, iend, ZSTD_dtlm_fast, ZSTD_tfp_forCCtx); |
246 | 0 | break; |
247 | | |
248 | 0 | case ZSTD_dfast: |
249 | 0 | ZSTD_fillDoubleHashTable(ms, iend, ZSTD_dtlm_fast, ZSTD_tfp_forCCtx); |
250 | 0 | break; |
251 | | |
252 | 0 | case ZSTD_greedy: |
253 | 0 | case ZSTD_lazy: |
254 | 0 | case ZSTD_lazy2: |
255 | 0 | case ZSTD_btlazy2: |
256 | 0 | case ZSTD_btopt: |
257 | 0 | case ZSTD_btultra: |
258 | 0 | case ZSTD_btultra2: |
259 | 0 | break; |
260 | 0 | default: |
261 | 0 | assert(0); /* not possible : not a valid strategy id */ |
262 | 0 | } |
263 | | |
264 | 0 | return 0; |
265 | 0 | } |
266 | | |
267 | | void ZSTD_ldm_fillHashTable( |
268 | | ldmState_t* ldmState, const BYTE* ip, |
269 | | const BYTE* iend, ldmParams_t const* params) |
270 | 0 | { |
271 | 0 | U32 const minMatchLength = params->minMatchLength; |
272 | 0 | U32 const hBits = params->hashLog - params->bucketSizeLog; |
273 | 0 | BYTE const* const base = ldmState->window.base; |
274 | 0 | BYTE const* const istart = ip; |
275 | 0 | ldmRollingHashState_t hashState; |
276 | 0 | size_t* const splits = ldmState->splitIndices; |
277 | 0 | unsigned numSplits; |
278 | |
|
279 | 0 | DEBUGLOG(5, "ZSTD_ldm_fillHashTable"); |
280 | |
|
281 | 0 | ZSTD_ldm_gear_init(&hashState, params); |
282 | 0 | while (ip < iend) { |
283 | 0 | size_t hashed; |
284 | 0 | unsigned n; |
285 | |
|
286 | 0 | numSplits = 0; |
287 | 0 | hashed = ZSTD_ldm_gear_feed(&hashState, ip, iend - ip, splits, &numSplits); |
288 | |
|
289 | 0 | for (n = 0; n < numSplits; n++) { |
290 | 0 | if (ip + splits[n] >= istart + minMatchLength) { |
291 | 0 | BYTE const* const split = ip + splits[n] - minMatchLength; |
292 | 0 | U64 const xxhash = XXH64(split, minMatchLength, 0); |
293 | 0 | U32 const hash = (U32)(xxhash & (((U32)1 << hBits) - 1)); |
294 | 0 | ldmEntry_t entry; |
295 | |
|
296 | 0 | entry.offset = (U32)(split - base); |
297 | 0 | entry.checksum = (U32)(xxhash >> 32); |
298 | 0 | ZSTD_ldm_insertEntry(ldmState, hash, entry, *params); |
299 | 0 | } |
300 | 0 | } |
301 | |
|
302 | 0 | ip += hashed; |
303 | 0 | } |
304 | 0 | } |
305 | | |
306 | | |
307 | | /** ZSTD_ldm_limitTableUpdate() : |
308 | | * |
309 | | * Sets cctx->nextToUpdate to a position corresponding closer to anchor |
310 | | * if it is far way |
311 | | * (after a long match, only update tables a limited amount). */ |
312 | | static void ZSTD_ldm_limitTableUpdate(ZSTD_matchState_t* ms, const BYTE* anchor) |
313 | 0 | { |
314 | 0 | U32 const curr = (U32)(anchor - ms->window.base); |
315 | 0 | if (curr > ms->nextToUpdate + 1024) { |
316 | 0 | ms->nextToUpdate = |
317 | 0 | curr - MIN(512, curr - ms->nextToUpdate - 1024); |
318 | 0 | } |
319 | 0 | } |
320 | | |
321 | | static size_t ZSTD_ldm_generateSequences_internal( |
322 | | ldmState_t* ldmState, rawSeqStore_t* rawSeqStore, |
323 | | ldmParams_t const* params, void const* src, size_t srcSize) |
324 | 0 | { |
325 | | /* LDM parameters */ |
326 | 0 | int const extDict = ZSTD_window_hasExtDict(ldmState->window); |
327 | 0 | U32 const minMatchLength = params->minMatchLength; |
328 | 0 | U32 const entsPerBucket = 1U << params->bucketSizeLog; |
329 | 0 | U32 const hBits = params->hashLog - params->bucketSizeLog; |
330 | | /* Prefix and extDict parameters */ |
331 | 0 | U32 const dictLimit = ldmState->window.dictLimit; |
332 | 0 | U32 const lowestIndex = extDict ? ldmState->window.lowLimit : dictLimit; |
333 | 0 | BYTE const* const base = ldmState->window.base; |
334 | 0 | BYTE const* const dictBase = extDict ? ldmState->window.dictBase : NULL; |
335 | 0 | BYTE const* const dictStart = extDict ? dictBase + lowestIndex : NULL; |
336 | 0 | BYTE const* const dictEnd = extDict ? dictBase + dictLimit : NULL; |
337 | 0 | BYTE const* const lowPrefixPtr = base + dictLimit; |
338 | | /* Input bounds */ |
339 | 0 | BYTE const* const istart = (BYTE const*)src; |
340 | 0 | BYTE const* const iend = istart + srcSize; |
341 | 0 | BYTE const* const ilimit = iend - HASH_READ_SIZE; |
342 | | /* Input positions */ |
343 | 0 | BYTE const* anchor = istart; |
344 | 0 | BYTE const* ip = istart; |
345 | | /* Rolling hash state */ |
346 | 0 | ldmRollingHashState_t hashState; |
347 | | /* Arrays for staged-processing */ |
348 | 0 | size_t* const splits = ldmState->splitIndices; |
349 | 0 | ldmMatchCandidate_t* const candidates = ldmState->matchCandidates; |
350 | 0 | unsigned numSplits; |
351 | |
|
352 | 0 | if (srcSize < minMatchLength) |
353 | 0 | return iend - anchor; |
354 | | |
355 | | /* Initialize the rolling hash state with the first minMatchLength bytes */ |
356 | 0 | ZSTD_ldm_gear_init(&hashState, params); |
357 | 0 | ZSTD_ldm_gear_reset(&hashState, ip, minMatchLength); |
358 | 0 | ip += minMatchLength; |
359 | |
|
360 | 0 | while (ip < ilimit) { |
361 | 0 | size_t hashed; |
362 | 0 | unsigned n; |
363 | |
|
364 | 0 | numSplits = 0; |
365 | 0 | hashed = ZSTD_ldm_gear_feed(&hashState, ip, ilimit - ip, |
366 | 0 | splits, &numSplits); |
367 | |
|
368 | 0 | for (n = 0; n < numSplits; n++) { |
369 | 0 | BYTE const* const split = ip + splits[n] - minMatchLength; |
370 | 0 | U64 const xxhash = XXH64(split, minMatchLength, 0); |
371 | 0 | U32 const hash = (U32)(xxhash & (((U32)1 << hBits) - 1)); |
372 | |
|
373 | 0 | candidates[n].split = split; |
374 | 0 | candidates[n].hash = hash; |
375 | 0 | candidates[n].checksum = (U32)(xxhash >> 32); |
376 | 0 | candidates[n].bucket = ZSTD_ldm_getBucket(ldmState, hash, *params); |
377 | 0 | PREFETCH_L1(candidates[n].bucket); |
378 | 0 | } |
379 | |
|
380 | 0 | for (n = 0; n < numSplits; n++) { |
381 | 0 | size_t forwardMatchLength = 0, backwardMatchLength = 0, |
382 | 0 | bestMatchLength = 0, mLength; |
383 | 0 | U32 offset; |
384 | 0 | BYTE const* const split = candidates[n].split; |
385 | 0 | U32 const checksum = candidates[n].checksum; |
386 | 0 | U32 const hash = candidates[n].hash; |
387 | 0 | ldmEntry_t* const bucket = candidates[n].bucket; |
388 | 0 | ldmEntry_t const* cur; |
389 | 0 | ldmEntry_t const* bestEntry = NULL; |
390 | 0 | ldmEntry_t newEntry; |
391 | |
|
392 | 0 | newEntry.offset = (U32)(split - base); |
393 | 0 | newEntry.checksum = checksum; |
394 | | |
395 | | /* If a split point would generate a sequence overlapping with |
396 | | * the previous one, we merely register it in the hash table and |
397 | | * move on */ |
398 | 0 | if (split < anchor) { |
399 | 0 | ZSTD_ldm_insertEntry(ldmState, hash, newEntry, *params); |
400 | 0 | continue; |
401 | 0 | } |
402 | | |
403 | 0 | for (cur = bucket; cur < bucket + entsPerBucket; cur++) { |
404 | 0 | size_t curForwardMatchLength, curBackwardMatchLength, |
405 | 0 | curTotalMatchLength; |
406 | 0 | if (cur->checksum != checksum || cur->offset <= lowestIndex) { |
407 | 0 | continue; |
408 | 0 | } |
409 | 0 | if (extDict) { |
410 | 0 | BYTE const* const curMatchBase = |
411 | 0 | cur->offset < dictLimit ? dictBase : base; |
412 | 0 | BYTE const* const pMatch = curMatchBase + cur->offset; |
413 | 0 | BYTE const* const matchEnd = |
414 | 0 | cur->offset < dictLimit ? dictEnd : iend; |
415 | 0 | BYTE const* const lowMatchPtr = |
416 | 0 | cur->offset < dictLimit ? dictStart : lowPrefixPtr; |
417 | 0 | curForwardMatchLength = |
418 | 0 | ZSTD_count_2segments(split, pMatch, iend, matchEnd, lowPrefixPtr); |
419 | 0 | if (curForwardMatchLength < minMatchLength) { |
420 | 0 | continue; |
421 | 0 | } |
422 | 0 | curBackwardMatchLength = ZSTD_ldm_countBackwardsMatch_2segments( |
423 | 0 | split, anchor, pMatch, lowMatchPtr, dictStart, dictEnd); |
424 | 0 | } else { /* !extDict */ |
425 | 0 | BYTE const* const pMatch = base + cur->offset; |
426 | 0 | curForwardMatchLength = ZSTD_count(split, pMatch, iend); |
427 | 0 | if (curForwardMatchLength < minMatchLength) { |
428 | 0 | continue; |
429 | 0 | } |
430 | 0 | curBackwardMatchLength = |
431 | 0 | ZSTD_ldm_countBackwardsMatch(split, anchor, pMatch, lowPrefixPtr); |
432 | 0 | } |
433 | 0 | curTotalMatchLength = curForwardMatchLength + curBackwardMatchLength; |
434 | |
|
435 | 0 | if (curTotalMatchLength > bestMatchLength) { |
436 | 0 | bestMatchLength = curTotalMatchLength; |
437 | 0 | forwardMatchLength = curForwardMatchLength; |
438 | 0 | backwardMatchLength = curBackwardMatchLength; |
439 | 0 | bestEntry = cur; |
440 | 0 | } |
441 | 0 | } |
442 | | |
443 | | /* No match found -- insert an entry into the hash table |
444 | | * and process the next candidate match */ |
445 | 0 | if (bestEntry == NULL) { |
446 | 0 | ZSTD_ldm_insertEntry(ldmState, hash, newEntry, *params); |
447 | 0 | continue; |
448 | 0 | } |
449 | | |
450 | | /* Match found */ |
451 | 0 | offset = (U32)(split - base) - bestEntry->offset; |
452 | 0 | mLength = forwardMatchLength + backwardMatchLength; |
453 | 0 | { |
454 | 0 | rawSeq* const seq = rawSeqStore->seq + rawSeqStore->size; |
455 | | |
456 | | /* Out of sequence storage */ |
457 | 0 | if (rawSeqStore->size == rawSeqStore->capacity) |
458 | 0 | return ERROR(dstSize_tooSmall); |
459 | 0 | seq->litLength = (U32)(split - backwardMatchLength - anchor); |
460 | 0 | seq->matchLength = (U32)mLength; |
461 | 0 | seq->offset = offset; |
462 | 0 | rawSeqStore->size++; |
463 | 0 | } |
464 | | |
465 | | /* Insert the current entry into the hash table --- it must be |
466 | | * done after the previous block to avoid clobbering bestEntry */ |
467 | 0 | ZSTD_ldm_insertEntry(ldmState, hash, newEntry, *params); |
468 | |
|
469 | 0 | anchor = split + forwardMatchLength; |
470 | | |
471 | | /* If we find a match that ends after the data that we've hashed |
472 | | * then we have a repeating, overlapping, pattern. E.g. all zeros. |
473 | | * If one repetition of the pattern matches our `stopMask` then all |
474 | | * repetitions will. We don't need to insert them all into out table, |
475 | | * only the first one. So skip over overlapping matches. |
476 | | * This is a major speed boost (20x) for compressing a single byte |
477 | | * repeated, when that byte ends up in the table. |
478 | | */ |
479 | 0 | if (anchor > ip + hashed) { |
480 | 0 | ZSTD_ldm_gear_reset(&hashState, anchor - minMatchLength, minMatchLength); |
481 | | /* Continue the outer loop at anchor (ip + hashed == anchor). */ |
482 | 0 | ip = anchor - hashed; |
483 | 0 | break; |
484 | 0 | } |
485 | 0 | } |
486 | | |
487 | 0 | ip += hashed; |
488 | 0 | } |
489 | | |
490 | 0 | return iend - anchor; |
491 | 0 | } |
492 | | |
493 | | /*! ZSTD_ldm_reduceTable() : |
494 | | * reduce table indexes by `reducerValue` */ |
495 | | static void ZSTD_ldm_reduceTable(ldmEntry_t* const table, U32 const size, |
496 | | U32 const reducerValue) |
497 | 0 | { |
498 | 0 | U32 u; |
499 | 0 | for (u = 0; u < size; u++) { |
500 | 0 | if (table[u].offset < reducerValue) table[u].offset = 0; |
501 | 0 | else table[u].offset -= reducerValue; |
502 | 0 | } |
503 | 0 | } |
504 | | |
505 | | size_t ZSTD_ldm_generateSequences( |
506 | | ldmState_t* ldmState, rawSeqStore_t* sequences, |
507 | | ldmParams_t const* params, void const* src, size_t srcSize) |
508 | 0 | { |
509 | 0 | U32 const maxDist = 1U << params->windowLog; |
510 | 0 | BYTE const* const istart = (BYTE const*)src; |
511 | 0 | BYTE const* const iend = istart + srcSize; |
512 | 0 | size_t const kMaxChunkSize = 1 << 20; |
513 | 0 | size_t const nbChunks = (srcSize / kMaxChunkSize) + ((srcSize % kMaxChunkSize) != 0); |
514 | 0 | size_t chunk; |
515 | 0 | size_t leftoverSize = 0; |
516 | |
|
517 | 0 | assert(ZSTD_CHUNKSIZE_MAX >= kMaxChunkSize); |
518 | | /* Check that ZSTD_window_update() has been called for this chunk prior |
519 | | * to passing it to this function. |
520 | | */ |
521 | 0 | assert(ldmState->window.nextSrc >= (BYTE const*)src + srcSize); |
522 | | /* The input could be very large (in zstdmt), so it must be broken up into |
523 | | * chunks to enforce the maximum distance and handle overflow correction. |
524 | | */ |
525 | 0 | assert(sequences->pos <= sequences->size); |
526 | 0 | assert(sequences->size <= sequences->capacity); |
527 | 0 | for (chunk = 0; chunk < nbChunks && sequences->size < sequences->capacity; ++chunk) { |
528 | 0 | BYTE const* const chunkStart = istart + chunk * kMaxChunkSize; |
529 | 0 | size_t const remaining = (size_t)(iend - chunkStart); |
530 | 0 | BYTE const *const chunkEnd = |
531 | 0 | (remaining < kMaxChunkSize) ? iend : chunkStart + kMaxChunkSize; |
532 | 0 | size_t const chunkSize = chunkEnd - chunkStart; |
533 | 0 | size_t newLeftoverSize; |
534 | 0 | size_t const prevSize = sequences->size; |
535 | |
|
536 | 0 | assert(chunkStart < iend); |
537 | | /* 1. Perform overflow correction if necessary. */ |
538 | 0 | if (ZSTD_window_needOverflowCorrection(ldmState->window, 0, maxDist, ldmState->loadedDictEnd, chunkStart, chunkEnd)) { |
539 | 0 | U32 const ldmHSize = 1U << params->hashLog; |
540 | 0 | U32 const correction = ZSTD_window_correctOverflow( |
541 | 0 | &ldmState->window, /* cycleLog */ 0, maxDist, chunkStart); |
542 | 0 | ZSTD_ldm_reduceTable(ldmState->hashTable, ldmHSize, correction); |
543 | | /* invalidate dictionaries on overflow correction */ |
544 | 0 | ldmState->loadedDictEnd = 0; |
545 | 0 | } |
546 | | /* 2. We enforce the maximum offset allowed. |
547 | | * |
548 | | * kMaxChunkSize should be small enough that we don't lose too much of |
549 | | * the window through early invalidation. |
550 | | * TODO: * Test the chunk size. |
551 | | * * Try invalidation after the sequence generation and test the |
552 | | * offset against maxDist directly. |
553 | | * |
554 | | * NOTE: Because of dictionaries + sequence splitting we MUST make sure |
555 | | * that any offset used is valid at the END of the sequence, since it may |
556 | | * be split into two sequences. This condition holds when using |
557 | | * ZSTD_window_enforceMaxDist(), but if we move to checking offsets |
558 | | * against maxDist directly, we'll have to carefully handle that case. |
559 | | */ |
560 | 0 | ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->loadedDictEnd, NULL); |
561 | | /* 3. Generate the sequences for the chunk, and get newLeftoverSize. */ |
562 | 0 | newLeftoverSize = ZSTD_ldm_generateSequences_internal( |
563 | 0 | ldmState, sequences, params, chunkStart, chunkSize); |
564 | 0 | if (ZSTD_isError(newLeftoverSize)) |
565 | 0 | return newLeftoverSize; |
566 | | /* 4. We add the leftover literals from previous iterations to the first |
567 | | * newly generated sequence, or add the `newLeftoverSize` if none are |
568 | | * generated. |
569 | | */ |
570 | | /* Prepend the leftover literals from the last call */ |
571 | 0 | if (prevSize < sequences->size) { |
572 | 0 | sequences->seq[prevSize].litLength += (U32)leftoverSize; |
573 | 0 | leftoverSize = newLeftoverSize; |
574 | 0 | } else { |
575 | 0 | assert(newLeftoverSize == chunkSize); |
576 | 0 | leftoverSize += chunkSize; |
577 | 0 | } |
578 | 0 | } |
579 | 0 | return 0; |
580 | 0 | } |
581 | | |
582 | | void |
583 | | ZSTD_ldm_skipSequences(rawSeqStore_t* rawSeqStore, size_t srcSize, U32 const minMatch) |
584 | 0 | { |
585 | 0 | while (srcSize > 0 && rawSeqStore->pos < rawSeqStore->size) { |
586 | 0 | rawSeq* seq = rawSeqStore->seq + rawSeqStore->pos; |
587 | 0 | if (srcSize <= seq->litLength) { |
588 | | /* Skip past srcSize literals */ |
589 | 0 | seq->litLength -= (U32)srcSize; |
590 | 0 | return; |
591 | 0 | } |
592 | 0 | srcSize -= seq->litLength; |
593 | 0 | seq->litLength = 0; |
594 | 0 | if (srcSize < seq->matchLength) { |
595 | | /* Skip past the first srcSize of the match */ |
596 | 0 | seq->matchLength -= (U32)srcSize; |
597 | 0 | if (seq->matchLength < minMatch) { |
598 | | /* The match is too short, omit it */ |
599 | 0 | if (rawSeqStore->pos + 1 < rawSeqStore->size) { |
600 | 0 | seq[1].litLength += seq[0].matchLength; |
601 | 0 | } |
602 | 0 | rawSeqStore->pos++; |
603 | 0 | } |
604 | 0 | return; |
605 | 0 | } |
606 | 0 | srcSize -= seq->matchLength; |
607 | 0 | seq->matchLength = 0; |
608 | 0 | rawSeqStore->pos++; |
609 | 0 | } |
610 | 0 | } |
611 | | |
612 | | /** |
613 | | * If the sequence length is longer than remaining then the sequence is split |
614 | | * between this block and the next. |
615 | | * |
616 | | * Returns the current sequence to handle, or if the rest of the block should |
617 | | * be literals, it returns a sequence with offset == 0. |
618 | | */ |
619 | | static rawSeq maybeSplitSequence(rawSeqStore_t* rawSeqStore, |
620 | | U32 const remaining, U32 const minMatch) |
621 | 0 | { |
622 | 0 | rawSeq sequence = rawSeqStore->seq[rawSeqStore->pos]; |
623 | 0 | assert(sequence.offset > 0); |
624 | | /* Likely: No partial sequence */ |
625 | 0 | if (remaining >= sequence.litLength + sequence.matchLength) { |
626 | 0 | rawSeqStore->pos++; |
627 | 0 | return sequence; |
628 | 0 | } |
629 | | /* Cut the sequence short (offset == 0 ==> rest is literals). */ |
630 | 0 | if (remaining <= sequence.litLength) { |
631 | 0 | sequence.offset = 0; |
632 | 0 | } else if (remaining < sequence.litLength + sequence.matchLength) { |
633 | 0 | sequence.matchLength = remaining - sequence.litLength; |
634 | 0 | if (sequence.matchLength < minMatch) { |
635 | 0 | sequence.offset = 0; |
636 | 0 | } |
637 | 0 | } |
638 | | /* Skip past `remaining` bytes for the future sequences. */ |
639 | 0 | ZSTD_ldm_skipSequences(rawSeqStore, remaining, minMatch); |
640 | 0 | return sequence; |
641 | 0 | } |
642 | | |
643 | 0 | void ZSTD_ldm_skipRawSeqStoreBytes(rawSeqStore_t* rawSeqStore, size_t nbBytes) { |
644 | 0 | U32 currPos = (U32)(rawSeqStore->posInSequence + nbBytes); |
645 | 0 | while (currPos && rawSeqStore->pos < rawSeqStore->size) { |
646 | 0 | rawSeq currSeq = rawSeqStore->seq[rawSeqStore->pos]; |
647 | 0 | if (currPos >= currSeq.litLength + currSeq.matchLength) { |
648 | 0 | currPos -= currSeq.litLength + currSeq.matchLength; |
649 | 0 | rawSeqStore->pos++; |
650 | 0 | } else { |
651 | 0 | rawSeqStore->posInSequence = currPos; |
652 | 0 | break; |
653 | 0 | } |
654 | 0 | } |
655 | 0 | if (currPos == 0 || rawSeqStore->pos == rawSeqStore->size) { |
656 | 0 | rawSeqStore->posInSequence = 0; |
657 | 0 | } |
658 | 0 | } |
659 | | |
660 | | size_t ZSTD_ldm_blockCompress(rawSeqStore_t* rawSeqStore, |
661 | | ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], |
662 | | ZSTD_paramSwitch_e useRowMatchFinder, |
663 | | void const* src, size_t srcSize) |
664 | 0 | { |
665 | 0 | const ZSTD_compressionParameters* const cParams = &ms->cParams; |
666 | 0 | unsigned const minMatch = cParams->minMatch; |
667 | 0 | ZSTD_blockCompressor const blockCompressor = |
668 | 0 | ZSTD_selectBlockCompressor(cParams->strategy, useRowMatchFinder, ZSTD_matchState_dictMode(ms)); |
669 | | /* Input bounds */ |
670 | 0 | BYTE const* const istart = (BYTE const*)src; |
671 | 0 | BYTE const* const iend = istart + srcSize; |
672 | | /* Input positions */ |
673 | 0 | BYTE const* ip = istart; |
674 | |
|
675 | 0 | DEBUGLOG(5, "ZSTD_ldm_blockCompress: srcSize=%zu", srcSize); |
676 | | /* If using opt parser, use LDMs only as candidates rather than always accepting them */ |
677 | 0 | if (cParams->strategy >= ZSTD_btopt) { |
678 | 0 | size_t lastLLSize; |
679 | 0 | ms->ldmSeqStore = rawSeqStore; |
680 | 0 | lastLLSize = blockCompressor(ms, seqStore, rep, src, srcSize); |
681 | 0 | ZSTD_ldm_skipRawSeqStoreBytes(rawSeqStore, srcSize); |
682 | 0 | return lastLLSize; |
683 | 0 | } |
684 | | |
685 | 0 | assert(rawSeqStore->pos <= rawSeqStore->size); |
686 | 0 | assert(rawSeqStore->size <= rawSeqStore->capacity); |
687 | | /* Loop through each sequence and apply the block compressor to the literals */ |
688 | 0 | while (rawSeqStore->pos < rawSeqStore->size && ip < iend) { |
689 | | /* maybeSplitSequence updates rawSeqStore->pos */ |
690 | 0 | rawSeq const sequence = maybeSplitSequence(rawSeqStore, |
691 | 0 | (U32)(iend - ip), minMatch); |
692 | 0 | int i; |
693 | | /* End signal */ |
694 | 0 | if (sequence.offset == 0) |
695 | 0 | break; |
696 | | |
697 | 0 | assert(ip + sequence.litLength + sequence.matchLength <= iend); |
698 | | |
699 | | /* Fill tables for block compressor */ |
700 | 0 | ZSTD_ldm_limitTableUpdate(ms, ip); |
701 | 0 | ZSTD_ldm_fillFastTables(ms, ip); |
702 | | /* Run the block compressor */ |
703 | 0 | DEBUGLOG(5, "pos %u : calling block compressor on segment of size %u", (unsigned)(ip-istart), sequence.litLength); |
704 | 0 | { |
705 | 0 | size_t const newLitLength = |
706 | 0 | blockCompressor(ms, seqStore, rep, ip, sequence.litLength); |
707 | 0 | ip += sequence.litLength; |
708 | | /* Update the repcodes */ |
709 | 0 | for (i = ZSTD_REP_NUM - 1; i > 0; i--) |
710 | 0 | rep[i] = rep[i-1]; |
711 | 0 | rep[0] = sequence.offset; |
712 | | /* Store the sequence */ |
713 | 0 | ZSTD_storeSeq(seqStore, newLitLength, ip - newLitLength, iend, |
714 | 0 | OFFSET_TO_OFFBASE(sequence.offset), |
715 | 0 | sequence.matchLength); |
716 | 0 | ip += sequence.matchLength; |
717 | 0 | } |
718 | 0 | } |
719 | | /* Fill the tables for the block compressor */ |
720 | 0 | ZSTD_ldm_limitTableUpdate(ms, ip); |
721 | 0 | ZSTD_ldm_fillFastTables(ms, ip); |
722 | | /* Compress the last literals */ |
723 | 0 | return blockCompressor(ms, seqStore, rep, ip, iend - ip); |
724 | 0 | } |