extzstd 0.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +5 -5
  2. data/HISTORY.ja.md +39 -0
  3. data/README.md +38 -56
  4. data/contrib/zstd/CHANGELOG +613 -0
  5. data/contrib/zstd/CODE_OF_CONDUCT.md +5 -0
  6. data/contrib/zstd/CONTRIBUTING.md +406 -0
  7. data/contrib/zstd/COPYING +339 -0
  8. data/contrib/zstd/Makefile +420 -0
  9. data/contrib/zstd/README.md +179 -41
  10. data/contrib/zstd/TESTING.md +44 -0
  11. data/contrib/zstd/appveyor.yml +292 -0
  12. data/contrib/zstd/lib/BUCK +234 -0
  13. data/contrib/zstd/lib/Makefile +451 -0
  14. data/contrib/zstd/lib/README.md +207 -0
  15. data/contrib/zstd/{common → lib/common}/bitstream.h +187 -138
  16. data/contrib/zstd/lib/common/compiler.h +288 -0
  17. data/contrib/zstd/lib/common/cpu.h +213 -0
  18. data/contrib/zstd/lib/common/debug.c +24 -0
  19. data/contrib/zstd/lib/common/debug.h +107 -0
  20. data/contrib/zstd/lib/common/entropy_common.c +362 -0
  21. data/contrib/zstd/{common → lib/common}/error_private.c +25 -12
  22. data/contrib/zstd/{common → lib/common}/error_private.h +14 -10
  23. data/contrib/zstd/{common → lib/common}/fse.h +173 -92
  24. data/contrib/zstd/{common → lib/common}/fse_decompress.c +149 -85
  25. data/contrib/zstd/lib/common/huf.h +361 -0
  26. data/contrib/zstd/{common → lib/common}/mem.h +115 -59
  27. data/contrib/zstd/lib/common/pool.c +350 -0
  28. data/contrib/zstd/lib/common/pool.h +84 -0
  29. data/contrib/zstd/lib/common/threading.c +122 -0
  30. data/contrib/zstd/lib/common/threading.h +155 -0
  31. data/contrib/zstd/{common → lib/common}/xxhash.c +55 -96
  32. data/contrib/zstd/{common → lib/common}/xxhash.h +23 -47
  33. data/contrib/zstd/lib/common/zstd_common.c +83 -0
  34. data/contrib/zstd/lib/common/zstd_deps.h +111 -0
  35. data/contrib/zstd/lib/common/zstd_errors.h +95 -0
  36. data/contrib/zstd/lib/common/zstd_internal.h +478 -0
  37. data/contrib/zstd/{compress → lib/compress}/fse_compress.c +214 -319
  38. data/contrib/zstd/lib/compress/hist.c +181 -0
  39. data/contrib/zstd/lib/compress/hist.h +75 -0
  40. data/contrib/zstd/lib/compress/huf_compress.c +913 -0
  41. data/contrib/zstd/lib/compress/zstd_compress.c +5208 -0
  42. data/contrib/zstd/lib/compress/zstd_compress_internal.h +1203 -0
  43. data/contrib/zstd/lib/compress/zstd_compress_literals.c +158 -0
  44. data/contrib/zstd/lib/compress/zstd_compress_literals.h +29 -0
  45. data/contrib/zstd/lib/compress/zstd_compress_sequences.c +433 -0
  46. data/contrib/zstd/lib/compress/zstd_compress_sequences.h +54 -0
  47. data/contrib/zstd/lib/compress/zstd_compress_superblock.c +849 -0
  48. data/contrib/zstd/lib/compress/zstd_compress_superblock.h +32 -0
  49. data/contrib/zstd/lib/compress/zstd_cwksp.h +561 -0
  50. data/contrib/zstd/lib/compress/zstd_double_fast.c +521 -0
  51. data/contrib/zstd/lib/compress/zstd_double_fast.h +38 -0
  52. data/contrib/zstd/lib/compress/zstd_fast.c +496 -0
  53. data/contrib/zstd/lib/compress/zstd_fast.h +37 -0
  54. data/contrib/zstd/lib/compress/zstd_lazy.c +1412 -0
  55. data/contrib/zstd/lib/compress/zstd_lazy.h +87 -0
  56. data/contrib/zstd/lib/compress/zstd_ldm.c +660 -0
  57. data/contrib/zstd/lib/compress/zstd_ldm.h +116 -0
  58. data/contrib/zstd/lib/compress/zstd_opt.c +1345 -0
  59. data/contrib/zstd/lib/compress/zstd_opt.h +56 -0
  60. data/contrib/zstd/lib/compress/zstdmt_compress.c +1811 -0
  61. data/contrib/zstd/lib/compress/zstdmt_compress.h +110 -0
  62. data/contrib/zstd/lib/decompress/huf_decompress.c +1350 -0
  63. data/contrib/zstd/lib/decompress/zstd_ddict.c +244 -0
  64. data/contrib/zstd/lib/decompress/zstd_ddict.h +44 -0
  65. data/contrib/zstd/lib/decompress/zstd_decompress.c +1930 -0
  66. data/contrib/zstd/lib/decompress/zstd_decompress_block.c +1540 -0
  67. data/contrib/zstd/lib/decompress/zstd_decompress_block.h +62 -0
  68. data/contrib/zstd/lib/decompress/zstd_decompress_internal.h +190 -0
  69. data/contrib/zstd/{common → lib/deprecated}/zbuff.h +68 -45
  70. data/contrib/zstd/lib/deprecated/zbuff_common.c +26 -0
  71. data/contrib/zstd/lib/deprecated/zbuff_compress.c +147 -0
  72. data/contrib/zstd/lib/deprecated/zbuff_decompress.c +75 -0
  73. data/contrib/zstd/lib/dictBuilder/cover.c +1245 -0
  74. data/contrib/zstd/lib/dictBuilder/cover.h +157 -0
  75. data/contrib/zstd/{dictBuilder → lib/dictBuilder}/divsufsort.c +3 -3
  76. data/contrib/zstd/{dictBuilder → lib/dictBuilder}/divsufsort.h +0 -0
  77. data/contrib/zstd/lib/dictBuilder/fastcover.c +758 -0
  78. data/contrib/zstd/{dictBuilder → lib/dictBuilder}/zdict.c +318 -194
  79. data/contrib/zstd/lib/dictBuilder/zdict.h +305 -0
  80. data/contrib/zstd/{legacy → lib/legacy}/zstd_legacy.h +171 -15
  81. data/contrib/zstd/{legacy → lib/legacy}/zstd_v01.c +191 -124
  82. data/contrib/zstd/{legacy → lib/legacy}/zstd_v01.h +19 -5
  83. data/contrib/zstd/{legacy → lib/legacy}/zstd_v02.c +125 -125
  84. data/contrib/zstd/{legacy → lib/legacy}/zstd_v02.h +19 -5
  85. data/contrib/zstd/{legacy → lib/legacy}/zstd_v03.c +125 -124
  86. data/contrib/zstd/{legacy → lib/legacy}/zstd_v03.h +20 -6
  87. data/contrib/zstd/{legacy → lib/legacy}/zstd_v04.c +151 -299
  88. data/contrib/zstd/{legacy → lib/legacy}/zstd_v04.h +19 -5
  89. data/contrib/zstd/{legacy → lib/legacy}/zstd_v05.c +237 -243
  90. data/contrib/zstd/{legacy → lib/legacy}/zstd_v05.h +19 -6
  91. data/contrib/zstd/{legacy → lib/legacy}/zstd_v06.c +130 -143
  92. data/contrib/zstd/{legacy → lib/legacy}/zstd_v06.h +18 -5
  93. data/contrib/zstd/{legacy → lib/legacy}/zstd_v07.c +158 -157
  94. data/contrib/zstd/{legacy → lib/legacy}/zstd_v07.h +19 -5
  95. data/contrib/zstd/lib/libzstd.pc.in +15 -0
  96. data/contrib/zstd/lib/zstd.h +2391 -0
  97. data/ext/depend +2 -0
  98. data/ext/extconf.rb +15 -6
  99. data/ext/extzstd.c +76 -145
  100. data/ext/extzstd.h +80 -31
  101. data/ext/extzstd_stream.c +417 -142
  102. data/ext/libzstd_conf.h +8 -0
  103. data/ext/zstd_common.c +10 -7
  104. data/ext/zstd_compress.c +14 -5
  105. data/ext/zstd_decompress.c +5 -4
  106. data/ext/zstd_dictbuilder.c +9 -4
  107. data/ext/zstd_dictbuilder_fastcover.c +3 -0
  108. data/ext/zstd_legacy_v01.c +3 -1
  109. data/ext/zstd_legacy_v02.c +3 -1
  110. data/ext/zstd_legacy_v03.c +3 -1
  111. data/ext/zstd_legacy_v04.c +3 -1
  112. data/ext/zstd_legacy_v05.c +3 -1
  113. data/ext/zstd_legacy_v06.c +3 -1
  114. data/ext/zstd_legacy_v07.c +3 -1
  115. data/gemstub.rb +10 -24
  116. data/lib/extzstd.rb +64 -179
  117. data/lib/extzstd/version.rb +6 -1
  118. data/test/test_basic.rb +9 -6
  119. metadata +113 -57
  120. data/HISTORY.ja +0 -5
  121. data/contrib/zstd/common/entropy_common.c +0 -225
  122. data/contrib/zstd/common/huf.h +0 -228
  123. data/contrib/zstd/common/zstd_common.c +0 -83
  124. data/contrib/zstd/common/zstd_errors.h +0 -60
  125. data/contrib/zstd/common/zstd_internal.h +0 -267
  126. data/contrib/zstd/compress/huf_compress.c +0 -533
  127. data/contrib/zstd/compress/zbuff_compress.c +0 -319
  128. data/contrib/zstd/compress/zstd_compress.c +0 -3264
  129. data/contrib/zstd/compress/zstd_opt.h +0 -900
  130. data/contrib/zstd/decompress/huf_decompress.c +0 -883
  131. data/contrib/zstd/decompress/zbuff_decompress.c +0 -252
  132. data/contrib/zstd/decompress/zstd_decompress.c +0 -1842
  133. data/contrib/zstd/dictBuilder/zdict.h +0 -111
  134. data/contrib/zstd/zstd.h +0 -640
@@ -0,0 +1,38 @@
1
+ /*
2
+ * Copyright (c) 2016-2020, 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
+ #ifndef ZSTD_DOUBLE_FAST_H
12
+ #define ZSTD_DOUBLE_FAST_H
13
+
14
+ #if defined (__cplusplus)
15
+ extern "C" {
16
+ #endif
17
+
18
+ #include "../common/mem.h" /* U32 */
19
+ #include "zstd_compress_internal.h" /* ZSTD_CCtx, size_t */
20
+
21
+ void ZSTD_fillDoubleHashTable(ZSTD_matchState_t* ms,
22
+ void const* end, ZSTD_dictTableLoadMethod_e dtlm);
23
+ size_t ZSTD_compressBlock_doubleFast(
24
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
25
+ void const* src, size_t srcSize);
26
+ size_t ZSTD_compressBlock_doubleFast_dictMatchState(
27
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
28
+ void const* src, size_t srcSize);
29
+ size_t ZSTD_compressBlock_doubleFast_extDict(
30
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
31
+ void const* src, size_t srcSize);
32
+
33
+
34
+ #if defined (__cplusplus)
35
+ }
36
+ #endif
37
+
38
+ #endif /* ZSTD_DOUBLE_FAST_H */
@@ -0,0 +1,496 @@
1
+ /*
2
+ * Copyright (c) 2016-2020, 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" /* ZSTD_hashPtr, ZSTD_count, ZSTD_storeSeq */
12
+ #include "zstd_fast.h"
13
+
14
+
15
+ void ZSTD_fillHashTable(ZSTD_matchState_t* ms,
16
+ const void* const end,
17
+ ZSTD_dictTableLoadMethod_e dtlm)
18
+ {
19
+ const ZSTD_compressionParameters* const cParams = &ms->cParams;
20
+ U32* const hashTable = ms->hashTable;
21
+ U32 const hBits = cParams->hashLog;
22
+ U32 const mls = cParams->minMatch;
23
+ 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
+ */
31
+ for ( ; ip + fastHashFillStep < iend + 2; ip += fastHashFillStep) {
32
+ U32 const curr = (U32)(ip - base);
33
+ size_t const hash0 = ZSTD_hashPtr(ip, hBits, mls);
34
+ hashTable[hash0] = curr;
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] = curr + p;
42
+ } } } }
43
+ }
44
+
45
+
46
+ FORCE_INLINE_TEMPLATE size_t
47
+ ZSTD_compressBlock_fast_generic(
48
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
49
+ void const* src, size_t srcSize,
50
+ U32 const mls)
51
+ {
52
+ const ZSTD_compressionParameters* const cParams = &ms->cParams;
53
+ U32* const hashTable = ms->hashTable;
54
+ U32 const hlog = cParams->hashLog;
55
+ /* support stepSize of 0 */
56
+ size_t const stepSize = cParams->targetLength + !(cParams->targetLength) + 1;
57
+ const BYTE* const base = ms->window.base;
58
+ const BYTE* const istart = (const BYTE*)src;
59
+ /* We check ip0 (ip + 0) and ip1 (ip + 1) each loop */
60
+ const BYTE* ip0 = istart;
61
+ const BYTE* ip1;
62
+ const BYTE* anchor = istart;
63
+ const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
64
+ const U32 prefixStartIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
65
+ const BYTE* const prefixStart = base + prefixStartIndex;
66
+ const BYTE* const iend = istart + srcSize;
67
+ const BYTE* const ilimit = iend - HASH_READ_SIZE;
68
+ U32 offset_1=rep[0], offset_2=rep[1];
69
+ U32 offsetSaved = 0;
70
+
71
+ /* init */
72
+ DEBUGLOG(5, "ZSTD_compressBlock_fast_generic");
73
+ ip0 += (ip0 == prefixStart);
74
+ ip1 = ip0 + 1;
75
+ { U32 const curr = (U32)(ip0 - base);
76
+ U32 const windowLow = ZSTD_getLowestPrefixIndex(ms, curr, cParams->windowLog);
77
+ U32 const maxRep = curr - windowLow;
78
+ 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 */
83
+ #ifdef __INTEL_COMPILER
84
+ /* From intel 'The vector pragma indicates that the loop should be
85
+ * vectorized if it is legal to do so'. Can be used together with
86
+ * #pragma ivdep (but have opted to exclude that because intel
87
+ * warns against using it).*/
88
+ #pragma vector always
89
+ #endif
90
+ while (ip1 < ilimit) { /* < instead of <=, because check at ip0+2 */
91
+ size_t mLength;
92
+ BYTE const* ip2 = ip0 + 2;
93
+ size_t const h0 = ZSTD_hashPtr(ip0, hlog, mls);
94
+ U32 const val0 = MEM_read32(ip0);
95
+ size_t const h1 = ZSTD_hashPtr(ip1, hlog, mls);
96
+ U32 const val1 = MEM_read32(ip1);
97
+ U32 const current0 = (U32)(ip0-base);
98
+ U32 const current1 = (U32)(ip1-base);
99
+ U32 const matchIndex0 = hashTable[h0];
100
+ U32 const matchIndex1 = hashTable[h1];
101
+ BYTE const* repMatch = ip2 - offset_1;
102
+ const BYTE* match0 = base + matchIndex0;
103
+ const BYTE* match1 = base + matchIndex1;
104
+ U32 offcode;
105
+
106
+ #if defined(__aarch64__)
107
+ PREFETCH_L1(ip0+256);
108
+ #endif
109
+
110
+ hashTable[h0] = current0; /* update hash table */
111
+ hashTable[h1] = current1; /* update hash table */
112
+
113
+ assert(ip0 + 1 == ip1);
114
+
115
+ if ((offset_1 > 0) & (MEM_read32(repMatch) == MEM_read32(ip2))) {
116
+ mLength = (ip2[-1] == repMatch[-1]) ? 1 : 0;
117
+ ip0 = ip2 - mLength;
118
+ match0 = repMatch - mLength;
119
+ mLength += 4;
120
+ offcode = 0;
121
+ goto _match;
122
+ }
123
+ if ((matchIndex0 > prefixStartIndex) && MEM_read32(match0) == val0) {
124
+ /* found a regular match */
125
+ goto _offset;
126
+ }
127
+ if ((matchIndex1 > prefixStartIndex) && MEM_read32(match1) == val1) {
128
+ /* found a regular match after one literal */
129
+ ip0 = ip1;
130
+ match0 = match1;
131
+ goto _offset;
132
+ }
133
+ { size_t const step = ((size_t)(ip0-anchor) >> (kSearchStrength - 1)) + stepSize;
134
+ assert(step >= 2);
135
+ ip0 += step;
136
+ ip1 += step;
137
+ continue;
138
+ }
139
+ _offset: /* Requires: ip0, match0 */
140
+ /* Compute the offset code */
141
+ offset_2 = offset_1;
142
+ offset_1 = (U32)(ip0-match0);
143
+ offcode = offset_1 + ZSTD_REP_MOVE;
144
+ mLength = 4;
145
+ /* Count the backwards match length */
146
+ while (((ip0>anchor) & (match0>prefixStart))
147
+ && (ip0[-1] == match0[-1])) { ip0--; match0--; mLength++; } /* catch up */
148
+
149
+ _match: /* Requires: ip0, match0, offcode */
150
+ /* Count the forward length */
151
+ mLength += ZSTD_count(ip0+mLength, match0+mLength, iend);
152
+ ZSTD_storeSeq(seqStore, (size_t)(ip0-anchor), anchor, iend, offcode, mLength-MINMATCH);
153
+ /* match found */
154
+ ip0 += mLength;
155
+ anchor = ip0;
156
+
157
+ if (ip0 <= ilimit) {
158
+ /* Fill Table */
159
+ assert(base+current0+2 > istart); /* check base overflow */
160
+ hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2; /* here because current+2 could be > iend-8 */
161
+ hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base);
162
+
163
+ if (offset_2 > 0) { /* offset_2==0 means offset_2 is invalidated */
164
+ while ( (ip0 <= ilimit) && (MEM_read32(ip0) == MEM_read32(ip0 - offset_2)) ) {
165
+ /* store sequence */
166
+ size_t const rLength = ZSTD_count(ip0+4, ip0+4-offset_2, iend) + 4;
167
+ { U32 const tmpOff = offset_2; offset_2 = offset_1; offset_1 = tmpOff; } /* swap offset_2 <=> offset_1 */
168
+ hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = (U32)(ip0-base);
169
+ ip0 += rLength;
170
+ ZSTD_storeSeq(seqStore, 0 /*litLen*/, anchor, iend, 0 /*offCode*/, rLength-MINMATCH);
171
+ anchor = ip0;
172
+ continue; /* faster when present (confirmed on gcc-8) ... (?) */
173
+ } } }
174
+ ip1 = ip0 + 1;
175
+ }
176
+
177
+ /* save reps for next block */
178
+ rep[0] = offset_1 ? offset_1 : offsetSaved;
179
+ rep[1] = offset_2 ? offset_2 : offsetSaved;
180
+
181
+ /* Return the last literals size */
182
+ return (size_t)(iend - anchor);
183
+ }
184
+
185
+
186
+ size_t ZSTD_compressBlock_fast(
187
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
188
+ void const* src, size_t srcSize)
189
+ {
190
+ U32 const mls = ms->cParams.minMatch;
191
+ assert(ms->dictMatchState == NULL);
192
+ switch(mls)
193
+ {
194
+ default: /* includes case 3 */
195
+ case 4 :
196
+ return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 4);
197
+ case 5 :
198
+ return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 5);
199
+ case 6 :
200
+ return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 6);
201
+ case 7 :
202
+ return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 7);
203
+ }
204
+ }
205
+
206
+ FORCE_INLINE_TEMPLATE
207
+ size_t ZSTD_compressBlock_fast_dictMatchState_generic(
208
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
209
+ void const* src, size_t srcSize, U32 const mls)
210
+ {
211
+ const ZSTD_compressionParameters* const cParams = &ms->cParams;
212
+ U32* const hashTable = ms->hashTable;
213
+ U32 const hlog = cParams->hashLog;
214
+ /* support stepSize of 0 */
215
+ U32 const stepSize = cParams->targetLength + !(cParams->targetLength);
216
+ const BYTE* const base = ms->window.base;
217
+ const BYTE* const istart = (const BYTE*)src;
218
+ const BYTE* ip = istart;
219
+ const BYTE* anchor = istart;
220
+ const U32 prefixStartIndex = ms->window.dictLimit;
221
+ const BYTE* const prefixStart = base + prefixStartIndex;
222
+ const BYTE* const iend = istart + srcSize;
223
+ const BYTE* const ilimit = iend - HASH_READ_SIZE;
224
+ U32 offset_1=rep[0], offset_2=rep[1];
225
+ U32 offsetSaved = 0;
226
+
227
+ const ZSTD_matchState_t* const dms = ms->dictMatchState;
228
+ const ZSTD_compressionParameters* const dictCParams = &dms->cParams ;
229
+ const U32* const dictHashTable = dms->hashTable;
230
+ const U32 dictStartIndex = dms->window.dictLimit;
231
+ const BYTE* const dictBase = dms->window.base;
232
+ const BYTE* const dictStart = dictBase + dictStartIndex;
233
+ const BYTE* const dictEnd = dms->window.nextSrc;
234
+ const U32 dictIndexDelta = prefixStartIndex - (U32)(dictEnd - dictBase);
235
+ const U32 dictAndPrefixLength = (U32)(ip - prefixStart + dictEnd - dictStart);
236
+ const U32 dictHLog = dictCParams->hashLog;
237
+
238
+ /* if a dictionary is still attached, it necessarily means that
239
+ * it is within window size. So we just check it. */
240
+ const U32 maxDistance = 1U << cParams->windowLog;
241
+ const U32 endIndex = (U32)((size_t)(ip - base) + srcSize);
242
+ assert(endIndex - prefixStartIndex <= maxDistance);
243
+ (void)maxDistance; (void)endIndex; /* these variables are not used when assert() is disabled */
244
+
245
+ /* ensure there will be no no underflow
246
+ * when translating a dict index into a local index */
247
+ assert(prefixStartIndex >= (U32)(dictEnd - dictBase));
248
+
249
+ /* init */
250
+ DEBUGLOG(5, "ZSTD_compressBlock_fast_dictMatchState_generic");
251
+ ip += (dictAndPrefixLength == 0);
252
+ /* dictMatchState repCode checks don't currently handle repCode == 0
253
+ * disabling. */
254
+ assert(offset_1 <= dictAndPrefixLength);
255
+ assert(offset_2 <= dictAndPrefixLength);
256
+
257
+ /* Main Search Loop */
258
+ while (ip < ilimit) { /* < instead of <=, because repcode check at (ip+1) */
259
+ size_t mLength;
260
+ size_t const h = ZSTD_hashPtr(ip, hlog, mls);
261
+ U32 const curr = (U32)(ip-base);
262
+ U32 const matchIndex = hashTable[h];
263
+ const BYTE* match = base + matchIndex;
264
+ const U32 repIndex = curr + 1 - offset_1;
265
+ const BYTE* repMatch = (repIndex < prefixStartIndex) ?
266
+ dictBase + (repIndex - dictIndexDelta) :
267
+ base + repIndex;
268
+ hashTable[h] = curr; /* update hash table */
269
+
270
+ if ( ((U32)((prefixStartIndex-1) - repIndex) >= 3) /* intentional underflow : ensure repIndex isn't overlapping dict + prefix */
271
+ && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) {
272
+ const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
273
+ mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixStart) + 4;
274
+ ip++;
275
+ ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH);
276
+ } else if ( (matchIndex <= prefixStartIndex) ) {
277
+ size_t const dictHash = ZSTD_hashPtr(ip, dictHLog, mls);
278
+ U32 const dictMatchIndex = dictHashTable[dictHash];
279
+ const BYTE* dictMatch = dictBase + dictMatchIndex;
280
+ if (dictMatchIndex <= dictStartIndex ||
281
+ MEM_read32(dictMatch) != MEM_read32(ip)) {
282
+ assert(stepSize >= 1);
283
+ ip += ((ip-anchor) >> kSearchStrength) + stepSize;
284
+ continue;
285
+ } else {
286
+ /* found a dict match */
287
+ U32 const offset = (U32)(curr-dictMatchIndex-dictIndexDelta);
288
+ mLength = ZSTD_count_2segments(ip+4, dictMatch+4, iend, dictEnd, prefixStart) + 4;
289
+ while (((ip>anchor) & (dictMatch>dictStart))
290
+ && (ip[-1] == dictMatch[-1])) {
291
+ ip--; dictMatch--; mLength++;
292
+ } /* catch up */
293
+ offset_2 = offset_1;
294
+ offset_1 = offset;
295
+ ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
296
+ }
297
+ } else if (MEM_read32(match) != MEM_read32(ip)) {
298
+ /* it's not a match, and we're not going to check the dictionary */
299
+ assert(stepSize >= 1);
300
+ ip += ((ip-anchor) >> kSearchStrength) + stepSize;
301
+ continue;
302
+ } else {
303
+ /* found a regular match */
304
+ U32 const offset = (U32)(ip-match);
305
+ mLength = ZSTD_count(ip+4, match+4, iend) + 4;
306
+ while (((ip>anchor) & (match>prefixStart))
307
+ && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
308
+ offset_2 = offset_1;
309
+ offset_1 = offset;
310
+ ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
311
+ }
312
+
313
+ /* match found */
314
+ ip += mLength;
315
+ anchor = ip;
316
+
317
+ if (ip <= ilimit) {
318
+ /* Fill Table */
319
+ assert(base+curr+2 > istart); /* check base overflow */
320
+ hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2; /* here because curr+2 could be > iend-8 */
321
+ hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base);
322
+
323
+ /* check immediate repcode */
324
+ while (ip <= ilimit) {
325
+ U32 const current2 = (U32)(ip-base);
326
+ U32 const repIndex2 = current2 - offset_2;
327
+ const BYTE* repMatch2 = repIndex2 < prefixStartIndex ?
328
+ dictBase - dictIndexDelta + repIndex2 :
329
+ base + repIndex2;
330
+ if ( ((U32)((prefixStartIndex-1) - (U32)repIndex2) >= 3 /* intentional overflow */)
331
+ && (MEM_read32(repMatch2) == MEM_read32(ip)) ) {
332
+ const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
333
+ size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4;
334
+ U32 tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; /* swap offset_2 <=> offset_1 */
335
+ ZSTD_storeSeq(seqStore, 0, anchor, iend, 0, repLength2-MINMATCH);
336
+ hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2;
337
+ ip += repLength2;
338
+ anchor = ip;
339
+ continue;
340
+ }
341
+ break;
342
+ }
343
+ }
344
+ }
345
+
346
+ /* save reps for next block */
347
+ rep[0] = offset_1 ? offset_1 : offsetSaved;
348
+ rep[1] = offset_2 ? offset_2 : offsetSaved;
349
+
350
+ /* Return the last literals size */
351
+ return (size_t)(iend - anchor);
352
+ }
353
+
354
+ size_t ZSTD_compressBlock_fast_dictMatchState(
355
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
356
+ void const* src, size_t srcSize)
357
+ {
358
+ U32 const mls = ms->cParams.minMatch;
359
+ assert(ms->dictMatchState != NULL);
360
+ switch(mls)
361
+ {
362
+ default: /* includes case 3 */
363
+ case 4 :
364
+ return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 4);
365
+ case 5 :
366
+ return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 5);
367
+ case 6 :
368
+ return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 6);
369
+ case 7 :
370
+ return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 7);
371
+ }
372
+ }
373
+
374
+
375
+ static size_t ZSTD_compressBlock_fast_extDict_generic(
376
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
377
+ void const* src, size_t srcSize, U32 const mls)
378
+ {
379
+ const ZSTD_compressionParameters* const cParams = &ms->cParams;
380
+ U32* const hashTable = ms->hashTable;
381
+ U32 const hlog = cParams->hashLog;
382
+ /* support stepSize of 0 */
383
+ U32 const stepSize = cParams->targetLength + !(cParams->targetLength);
384
+ const BYTE* const base = ms->window.base;
385
+ const BYTE* const dictBase = ms->window.dictBase;
386
+ const BYTE* const istart = (const BYTE*)src;
387
+ const BYTE* ip = istart;
388
+ const BYTE* anchor = istart;
389
+ const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
390
+ const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog);
391
+ const U32 dictStartIndex = lowLimit;
392
+ const BYTE* const dictStart = dictBase + dictStartIndex;
393
+ const U32 dictLimit = ms->window.dictLimit;
394
+ const U32 prefixStartIndex = dictLimit < lowLimit ? lowLimit : dictLimit;
395
+ const BYTE* const prefixStart = base + prefixStartIndex;
396
+ const BYTE* const dictEnd = dictBase + prefixStartIndex;
397
+ const BYTE* const iend = istart + srcSize;
398
+ const BYTE* const ilimit = iend - 8;
399
+ U32 offset_1=rep[0], offset_2=rep[1];
400
+
401
+ DEBUGLOG(5, "ZSTD_compressBlock_fast_extDict_generic (offset_1=%u)", offset_1);
402
+
403
+ /* switch to "regular" variant if extDict is invalidated due to maxDistance */
404
+ if (prefixStartIndex == dictStartIndex)
405
+ return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, mls);
406
+
407
+ /* Search Loop */
408
+ while (ip < ilimit) { /* < instead of <=, because (ip+1) */
409
+ const size_t h = ZSTD_hashPtr(ip, hlog, mls);
410
+ const U32 matchIndex = hashTable[h];
411
+ const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base;
412
+ const BYTE* match = matchBase + matchIndex;
413
+ const U32 curr = (U32)(ip-base);
414
+ const U32 repIndex = curr + 1 - offset_1;
415
+ const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base;
416
+ const BYTE* const repMatch = repBase + repIndex;
417
+ hashTable[h] = curr; /* update hash table */
418
+ DEBUGLOG(7, "offset_1 = %u , curr = %u", offset_1, curr);
419
+ assert(offset_1 <= curr +1); /* check repIndex */
420
+
421
+ if ( (((U32)((prefixStartIndex-1) - repIndex) >= 3) /* intentional underflow */ & (repIndex > dictStartIndex))
422
+ && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) {
423
+ const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
424
+ size_t const rLength = ZSTD_count_2segments(ip+1 +4, repMatch +4, iend, repMatchEnd, prefixStart) + 4;
425
+ ip++;
426
+ ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, rLength-MINMATCH);
427
+ ip += rLength;
428
+ anchor = ip;
429
+ } else {
430
+ if ( (matchIndex < dictStartIndex) ||
431
+ (MEM_read32(match) != MEM_read32(ip)) ) {
432
+ assert(stepSize >= 1);
433
+ ip += ((ip-anchor) >> kSearchStrength) + stepSize;
434
+ continue;
435
+ }
436
+ { const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend;
437
+ const BYTE* const lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart;
438
+ U32 const offset = curr - matchIndex;
439
+ size_t mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, prefixStart) + 4;
440
+ while (((ip>anchor) & (match>lowMatchPtr)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */
441
+ offset_2 = offset_1; offset_1 = offset; /* update offset history */
442
+ ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH);
443
+ ip += mLength;
444
+ anchor = ip;
445
+ } }
446
+
447
+ if (ip <= ilimit) {
448
+ /* Fill Table */
449
+ hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2;
450
+ hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base);
451
+ /* check immediate repcode */
452
+ while (ip <= ilimit) {
453
+ U32 const current2 = (U32)(ip-base);
454
+ U32 const repIndex2 = current2 - offset_2;
455
+ const BYTE* const repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2;
456
+ if ( (((U32)((prefixStartIndex-1) - repIndex2) >= 3) & (repIndex2 > dictStartIndex)) /* intentional overflow */
457
+ && (MEM_read32(repMatch2) == MEM_read32(ip)) ) {
458
+ const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
459
+ size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4;
460
+ { U32 const tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; } /* swap offset_2 <=> offset_1 */
461
+ ZSTD_storeSeq(seqStore, 0 /*litlen*/, anchor, iend, 0 /*offcode*/, repLength2-MINMATCH);
462
+ hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2;
463
+ ip += repLength2;
464
+ anchor = ip;
465
+ continue;
466
+ }
467
+ break;
468
+ } } }
469
+
470
+ /* save reps for next block */
471
+ rep[0] = offset_1;
472
+ rep[1] = offset_2;
473
+
474
+ /* Return the last literals size */
475
+ return (size_t)(iend - anchor);
476
+ }
477
+
478
+
479
+ size_t ZSTD_compressBlock_fast_extDict(
480
+ ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
481
+ void const* src, size_t srcSize)
482
+ {
483
+ U32 const mls = ms->cParams.minMatch;
484
+ switch(mls)
485
+ {
486
+ default: /* includes case 3 */
487
+ case 4 :
488
+ return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 4);
489
+ case 5 :
490
+ return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 5);
491
+ case 6 :
492
+ return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 6);
493
+ case 7 :
494
+ return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 7);
495
+ }
496
+ }