1 /* NOLINT(build/header_guard) */
2 /* Copyright 2010 Google Inc. All Rights Reserved.
3
4 Distributed under MIT license.
5 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
6 */
7
8 /* template parameters: FN */
9
10 /* A (forgetful) hash table to the data seen by the compressor, to
11 help create backward references to previous data.
12
13 This is a hash map of fixed size (bucket_size_) to a ring buffer of
14 fixed size (block_size_). The ring buffer contains the last block_size_
15 index positions of the given hash key in the compressed data. */
16
17 #define HashLongestMatch HASHER()
18
FN(HashTypeLength)19 static BROTLI_INLINE size_t FN(HashTypeLength)(void) { return 4; }
FN(StoreLookahead)20 static BROTLI_INLINE size_t FN(StoreLookahead)(void) { return 4; }
21
22 /* HashBytes is the function that chooses the bucket to place the address in. */
FN(HashBytes)23 static uint32_t FN(HashBytes)(
24 const uint8_t* BROTLI_RESTRICT data, const int shift) {
25 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32;
26 /* The higher bits contain more mixture from the multiplication,
27 so we take our results from there. */
28 return (uint32_t)(h >> shift);
29 }
30
31 typedef struct HashLongestMatch {
32 /* Number of hash buckets. */
33 size_t bucket_size_;
34 /* Only block_size_ newest backward references are kept,
35 and the older are forgotten. */
36 size_t block_size_;
37 /* Left-shift for computing hash bucket index from hash value. */
38 int hash_shift_;
39 /* Mask for accessing entries in a block (in a ring-buffer manner). */
40 uint32_t block_mask_;
41
42 int block_bits_;
43 int num_last_distances_to_check_;
44
45 /* Shortcuts. */
46 HasherCommon* common_;
47
48 /* --- Dynamic size members --- */
49
50 /* Number of entries in a particular bucket. */
51 uint16_t* num_; /* uint16_t[bucket_size]; */
52
53 /* Buckets containing block_size_ of backward references. */
54 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */
55 } HashLongestMatch;
56
FN(Initialize)57 static void FN(Initialize)(
58 HasherCommon* common, HashLongestMatch* BROTLI_RESTRICT self,
59 const BrotliEncoderParams* params) {
60 self->common_ = common;
61
62 BROTLI_UNUSED(params);
63 self->hash_shift_ = 32 - common->params.bucket_bits;
64 self->bucket_size_ = (size_t)1 << common->params.bucket_bits;
65 self->block_size_ = (size_t)1 << common->params.block_bits;
66 self->block_mask_ = (uint32_t)(self->block_size_ - 1);
67 self->num_ = (uint16_t*)common->extra[0];
68 self->buckets_ = (uint32_t*)common->extra[1];
69 self->block_bits_ = common->params.block_bits;
70 self->num_last_distances_to_check_ =
71 common->params.num_last_distances_to_check;
72 }
73
FN(Prepare)74 static void FN(Prepare)(
75 HashLongestMatch* BROTLI_RESTRICT self, BROTLI_BOOL one_shot,
76 size_t input_size, const uint8_t* BROTLI_RESTRICT data) {
77 uint16_t* BROTLI_RESTRICT num = self->num_;
78 /* Partial preparation is 100 times slower (per socket). */
79 size_t partial_prepare_threshold = self->bucket_size_ >> 6;
80 if (one_shot && input_size <= partial_prepare_threshold) {
81 size_t i;
82 for (i = 0; i < input_size; ++i) {
83 const uint32_t key = FN(HashBytes)(&data[i], self->hash_shift_);
84 num[key] = 0;
85 }
86 } else {
87 memset(num, 0, self->bucket_size_ * sizeof(num[0]));
88 }
89 }
90
FN(HashMemAllocInBytes)91 static BROTLI_INLINE void FN(HashMemAllocInBytes)(
92 const BrotliEncoderParams* params, BROTLI_BOOL one_shot,
93 size_t input_size, size_t* alloc_size) {
94 size_t bucket_size = (size_t)1 << params->hasher.bucket_bits;
95 size_t block_size = (size_t)1 << params->hasher.block_bits;
96 BROTLI_UNUSED(one_shot);
97 BROTLI_UNUSED(input_size);
98 alloc_size[0] = sizeof(uint16_t) * bucket_size;
99 alloc_size[1] = sizeof(uint32_t) * bucket_size * block_size;
100 }
101
102 /* Look at 4 bytes at &data[ix & mask].
103 Compute a hash from these, and store the value of ix at that position. */
FN(Store)104 static BROTLI_INLINE void FN(Store)(
105 HashLongestMatch* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data,
106 const size_t mask, const size_t ix) {
107 const uint32_t key = FN(HashBytes)(&data[ix & mask], self->hash_shift_);
108 const size_t minor_ix = self->num_[key] & self->block_mask_;
109 const size_t offset = minor_ix + (key << self->block_bits_);
110 self->buckets_[offset] = (uint32_t)ix;
111 ++self->num_[key];
112 }
113
FN(StoreRange)114 static BROTLI_INLINE void FN(StoreRange)(HashLongestMatch* BROTLI_RESTRICT self,
115 const uint8_t* BROTLI_RESTRICT data, const size_t mask,
116 const size_t ix_start, const size_t ix_end) {
117 size_t i;
118 for (i = ix_start; i < ix_end; ++i) {
119 FN(Store)(self, data, mask, i);
120 }
121 }
122
FN(StitchToPreviousBlock)123 static BROTLI_INLINE void FN(StitchToPreviousBlock)(
124 HashLongestMatch* BROTLI_RESTRICT self,
125 size_t num_bytes, size_t position, const uint8_t* ringbuffer,
126 size_t ringbuffer_mask) {
127 if (num_bytes >= FN(HashTypeLength)() - 1 && position >= 3) {
128 /* Prepare the hashes for three last bytes of the last write.
129 These could not be calculated before, since they require knowledge
130 of both the previous and the current block. */
131 FN(Store)(self, ringbuffer, ringbuffer_mask, position - 3);
132 FN(Store)(self, ringbuffer, ringbuffer_mask, position - 2);
133 FN(Store)(self, ringbuffer, ringbuffer_mask, position - 1);
134 }
135 }
136
FN(PrepareDistanceCache)137 static BROTLI_INLINE void FN(PrepareDistanceCache)(
138 HashLongestMatch* BROTLI_RESTRICT self,
139 int* BROTLI_RESTRICT distance_cache) {
140 PrepareDistanceCache(distance_cache, self->num_last_distances_to_check_);
141 }
142
143 /* Find a longest backward match of &data[cur_ix] up to the length of
144 max_length and stores the position cur_ix in the hash table.
145
146 REQUIRES: FN(PrepareDistanceCache) must be invoked for current distance cache
147 values; if this method is invoked repeatedly with the same distance
148 cache values, it is enough to invoke FN(PrepareDistanceCache) once.
149
150 Does not look for matches longer than max_length.
151 Does not look for matches further away than max_backward.
152 Writes the best match into |out|.
153 |out|->score is updated only if a better match is found. */
FN(FindLongestMatch)154 static BROTLI_INLINE void FN(FindLongestMatch)(
155 HashLongestMatch* BROTLI_RESTRICT self,
156 const BrotliEncoderDictionary* dictionary,
157 const uint8_t* BROTLI_RESTRICT data, const size_t ring_buffer_mask,
158 const int* BROTLI_RESTRICT distance_cache, const size_t cur_ix,
159 const size_t max_length, const size_t max_backward,
160 const size_t dictionary_distance, const size_t max_distance,
161 HasherSearchResult* BROTLI_RESTRICT out) {
162 uint16_t* BROTLI_RESTRICT num = self->num_;
163 uint32_t* BROTLI_RESTRICT buckets = self->buckets_;
164 const size_t cur_ix_masked = cur_ix & ring_buffer_mask;
165 /* Don't accept a short copy from far away. */
166 score_t min_score = out->score;
167 score_t best_score = out->score;
168 size_t best_len = out->len;
169 size_t i;
170 out->len = 0;
171 out->len_code_delta = 0;
172 /* Try last distance first. */
173 for (i = 0; i < (size_t)self->num_last_distances_to_check_; ++i) {
174 const size_t backward = (size_t)distance_cache[i];
175 size_t prev_ix = (size_t)(cur_ix - backward);
176 if (prev_ix >= cur_ix) {
177 continue;
178 }
179 if (BROTLI_PREDICT_FALSE(backward > max_backward)) {
180 continue;
181 }
182 prev_ix &= ring_buffer_mask;
183
184 if (cur_ix_masked + best_len > ring_buffer_mask ||
185 prev_ix + best_len > ring_buffer_mask ||
186 data[cur_ix_masked + best_len] != data[prev_ix + best_len]) {
187 continue;
188 }
189 {
190 const size_t len = FindMatchLengthWithLimit(&data[prev_ix],
191 &data[cur_ix_masked],
192 max_length);
193 if (len >= 3 || (len == 2 && i < 2)) {
194 /* Comparing for >= 2 does not change the semantics, but just saves for
195 a few unnecessary binary logarithms in backward reference score,
196 since we are not interested in such short matches. */
197 score_t score = BackwardReferenceScoreUsingLastDistance(len);
198 if (best_score < score) {
199 if (i != 0) score -= BackwardReferencePenaltyUsingLastDistance(i);
200 if (best_score < score) {
201 best_score = score;
202 best_len = len;
203 out->len = best_len;
204 out->distance = backward;
205 out->score = best_score;
206 }
207 }
208 }
209 }
210 }
211 {
212 const uint32_t key =
213 FN(HashBytes)(&data[cur_ix_masked], self->hash_shift_);
214 uint32_t* BROTLI_RESTRICT bucket = &buckets[key << self->block_bits_];
215 const size_t down =
216 (num[key] > self->block_size_) ? (num[key] - self->block_size_) : 0u;
217 for (i = num[key]; i > down;) {
218 size_t prev_ix = bucket[--i & self->block_mask_];
219 const size_t backward = cur_ix - prev_ix;
220 if (BROTLI_PREDICT_FALSE(backward > max_backward)) {
221 break;
222 }
223 prev_ix &= ring_buffer_mask;
224 if (cur_ix_masked + best_len > ring_buffer_mask ||
225 prev_ix + best_len > ring_buffer_mask ||
226 data[cur_ix_masked + best_len] != data[prev_ix + best_len]) {
227 continue;
228 }
229 {
230 const size_t len = FindMatchLengthWithLimit(&data[prev_ix],
231 &data[cur_ix_masked],
232 max_length);
233 if (len >= 4) {
234 /* Comparing for >= 3 does not change the semantics, but just saves
235 for a few unnecessary binary logarithms in backward reference
236 score, since we are not interested in such short matches. */
237 score_t score = BackwardReferenceScore(len, backward);
238 if (best_score < score) {
239 best_score = score;
240 best_len = len;
241 out->len = best_len;
242 out->distance = backward;
243 out->score = best_score;
244 }
245 }
246 }
247 }
248 bucket[num[key] & self->block_mask_] = (uint32_t)cur_ix;
249 ++num[key];
250 }
251 if (min_score == out->score) {
252 SearchInStaticDictionary(dictionary,
253 self->common_, &data[cur_ix_masked], max_length, dictionary_distance,
254 max_distance, out, BROTLI_FALSE);
255 }
256 }
257
258 #undef HashLongestMatch
259