forked from powzix/ooz
-
Notifications
You must be signed in to change notification settings - Fork 12
/
match_hasher.h
357 lines (313 loc) · 9.98 KB
/
match_hasher.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
// This file is not GPL. It may be used for educational purposes only.
#pragma once
#include <algorithm>
template<int _NumHash, bool _DualHash>
class MatchHasher {
public:
MatchHasher() {}
enum {
NumHash = _NumHash,
DualHash = _DualHash,
};
~MatchHasher() {
free(malloced_ptr_);
}
void AllocateHash(int bits, int k) {
hash_bits_ = bits;
hash_mask_ = (1 << bits) - NumHash;
k = std::max(std::min(k > 0 ? k : 4, 8), 1);
hashmult_ = 0xCF1BBCDCB7A56463ull << (8 * (8 - k));
malloced_ptr_ = malloc(sizeof(uint32) * (1 << bits) + 64);
hash_ptr_ = (uint32*)(((uintptr_t)malloced_ptr_ + 63) & ~63);
memset(hash_ptr_, 0, sizeof(uint32) * (1 << bits));
}
struct HashPos {
uint32 *ptr1, *ptr2;
uint32 pos, hi;
};
HashPos GetHashPos(const uint8 *src) {
HashPos hp = {hashentry_ptr_next_, hashentry2_ptr_next_, (uint32)(src - src_base_), hashtable_high_bits_};
return hp;
}
void SetBaseWithoutPreload(const uint8 *src_base) {
src_base_ = src_base;
}
void SetBaseAndPreload(const uint8 *src_base, const uint8 *src_start, int max_preload_len) {
src_base_ = src_base;
if (src_base == src_start)
return;
int preload_len = src_start - src_base;
const uint8 *src = src_base;
assert(preload_len > 0);
if (preload_len > max_preload_len) {
preload_len = max_preload_len;
src = src_start - preload_len;
}
int step = std::max(preload_len >> 18, 2);
int rounds_until_next_step = (preload_len >> 1) / step;
SetHashPos(src);
for (;;) {
if (--rounds_until_next_step <= 0) {
if (src >= src_start)
break;
step >>= 1;
assert(step >= 1);
rounds_until_next_step = (src_start - src) / step;
if (step > 1)
rounds_until_next_step >>= 1;
}
HashPos hp = GetHashPos(src);
src += step;
SetHashPos(src);
Insert(hp);
}
}
static uint32 MakeHashValue(uint32 cur_high, uint32 cur_pos) {
return (cur_high & ~0x3FFFFFF) | (cur_pos & 0x3FFFFFF);
}
inline void InsertOne(uint32 *h, uint32 hval) {
if (NumHash == 1) {
h[0] = hval;
} else if (NumHash == 2) {
h[1] = h[0];
h[0] = hval;
} else if (NumHash == 4) {
uint32 a = h[2], b = h[1], c = h[0];
h[3] = a;
h[2] = b;
h[1] = c;
h[0] = hval;
} else if (NumHash == 16) {
__m128i a0 = _mm_load_si128((__m128i*)h);
__m128i a1 = _mm_loadu_si128((__m128i*)(h + 3));
__m128i a2 = _mm_loadu_si128((__m128i*)(h + 7));
__m128i a3 = _mm_loadu_si128((__m128i*)(h + 11));
_mm_storeu_si128((__m128i*)(h + 1), a0);
_mm_store_si128((__m128i*)(h + 4), a1);
_mm_store_si128((__m128i*)(h + 8), a2);
_mm_store_si128((__m128i*)(h + 12), a3);
h[0] = hval;
} else {
assert(0);
}
}
inline void Insert(uint32 *h, uint32 *h2, uint32 he) {
InsertOne(h, he);
if (DualHash)
InsertOne(h2, he);
}
inline void Insert(const HashPos &hp) {
Insert(hp.ptr1, hp.ptr2, MakeHashValue(hp.hi, hp.pos));
}
inline void SetHashPos(const uint8 *p) {
src_cur_ = p;
uint64 at_src = *(uint64*)p;
uint32 hash1 = Rol32((uint32)((hashmult_ * at_src) >> 32), hash_bits_);
hashtable_high_bits_ = hash1;
hashentry_ptr_next_ = &hash_ptr_[hash1 & hash_mask_];
if (DualHash) {
uint32 hash2 = (0xCF1BBCDCB7A56463ull * at_src) >> (64 - hash_bits_);
hashentry2_ptr_next_ = &hash_ptr_[hash2 & ~(NumHash - 1)];
}
}
inline void SetHashPosPrefetch(const uint8 *p) {
SetHashPos(p);
_mm_prefetch((char*)hashentry_ptr_next_, _MM_HINT_T0);
if (DualHash)
_mm_prefetch((char*)hashentry2_ptr_next_, _MM_HINT_T0);
}
void Reset(const uint8 *p) {
memset(hash_ptr_, 0, sizeof(uint32) * (1 << hash_bits_));
src_base_ = p;
}
void InsertRange(const uint8 *p, size_t len) {
if (src_cur_ < p + len) {
const uint8 *src_base = src_base_;
Insert(hashentry_ptr_next_, hashentry2_ptr_next_, MakeHashValue(hashtable_high_bits_, src_cur_ - src_base));
for (int i = src_cur_ - p + 1; i < len; i *= 2) {
uint32 hash = Rol32((uint32)((hashmult_ * *(uint64*)(p + i)) >> 32), hash_bits_);
InsertOne(&hash_ptr_[hash & hash_mask_], MakeHashValue(hash, p + i - src_base));
}
SetHashPos(p + len);
} else if (src_cur_ != p + len) {
SetHashPos(p + len);
}
}
public:
void *malloced_ptr_ = 0;
uint32 *hash_ptr_ = 0;
int hash_bits_;
uint32 hash_mask_;
const uint8 *src_base_ = 0;
const uint8 *src_cur_ = 0;
uint32 *hashentry_ptr_next_ = 0;
uint32 *hashentry2_ptr_next_ = 0;
uint64 hashmult_;
uint32 hashtable_high_bits_;
};
class MatchHasher2 {
public:
MatchHasher2() {}
~MatchHasher2() {
delete[] firsthash_;
delete[] longhash_;
delete[] nexthash_;
}
void AllocateHash(int bits, int min_match_len) {
int a_bits = bits, b_bits = bits, c_bits = 16;
firsthash_bits_ = a_bits = std::min(a_bits, 19);
longhash_bits_ = b_bits = std::min(b_bits, 19);
firsthash_mask_ = (1 << a_bits) - 1;
longhash_mask_ = (1 << b_bits) - 1;
nexthash_mask_ = (1 << c_bits) - 1;
firsthash_ = new uint32[1 << a_bits];
longhash_ = new uint32[1 << b_bits];
nexthash_ = new uint16[1 << c_bits];
memset(firsthash_, 0, sizeof(uint32) * (1 << a_bits));
memset(longhash_, 0, sizeof(uint32) * (1 << b_bits));
memset(nexthash_, 0, sizeof(uint16) * (1 << c_bits));
}
struct HashPos {
uint32 pos;
uint32 hash_a, hash_b, hash_b_hi;
const uint8 *next_p;
};
HashPos GetHashPos(const uint8 *src) {
uint64 at_src = *(uint64*)src;
uint32 hash_a = (uint32)((0xB7A5646300000000ull * at_src) >> 32);
uint32 hash_b = (uint32)((0xCF1BBCDCB7A56463ull * at_src) >> 32);
HashPos hp = { (uint32)(src - src_base_), hash_a >> (32 - firsthash_bits_), hash_b >> (32 - longhash_bits_), hash_b, src + 1 };
return hp;
}
void SetBaseWithoutPreload(const uint8 *src_base) {
src_base_ = src_base;
}
void SetBaseAndPreload(const uint8 *src_base, const uint8 *src_start, int max_preload_len) {
src_base_ = src_base;
if (src_base == src_start)
return;
int preload_len = src_start - src_base;
const uint8 *src = src_base;
assert(preload_len > 0);
if (preload_len > max_preload_len) {
preload_len = max_preload_len;
src = src_start - preload_len;
}
int step = std::max(preload_len >> 18, 2);
int rounds_until_next_step = (preload_len >> 1) / step;
SetHashPos(src);
for (;;) {
if (--rounds_until_next_step <= 0) {
if (src >= src_start)
break;
step >>= 1;
assert(step >= 1);
rounds_until_next_step = (src_start - src) / step;
if (step > 1)
rounds_until_next_step >>= 1;
}
HashPos hp = GetHashPos(src);
src += step;
SetHashPos(src);
firsthash_[hp.hash_a] = hp.pos;
longhash_[hp.hash_b] = (hp.hash_b_hi & 0x3F) | (hp.pos << 6);
}
}
static uint32 MakeHashValue(uint32 cur_high, uint32 cur_pos) {
return (cur_high & ~0x3FFFFFF) | (cur_pos & 0x3FFFFFF);
}
inline void Insert(const HashPos &hp) {
nexthash_[hp.pos & nexthash_mask_] = firsthash_[hp.hash_a];
firsthash_[hp.hash_a] = hp.pos;
src_cur_ = hp.next_p;
}
inline void SetHashPos(const uint8 *p) {
src_cur_ = p;
}
inline void SetHashPosPrefetch(const uint8 *p) {
HashPos hp = GetHashPos(p);
_mm_prefetch((char*)&firsthash_[hp.hash_a], _MM_HINT_T0);
_mm_prefetch((char*)&longhash_[hp.hash_b], _MM_HINT_T0);
}
void InsertRange(const uint8 *p, size_t len) {
for (int i = 0; i < len; i = 2 * i + 1) {
uint32 hash_b = (uint32)((0xCF1BBCDCB7A56463ull * *(uint64*)(p + i)) >> 32);
longhash_[hash_b >> (32 - longhash_bits_)] = (hash_b & 0x3F) | ((p + i - src_base_) << 6);
}
const uint8 *p_end = p + len;
while (src_cur_ < p_end) {
uint32 hash_a = (uint32)((0xB7A5646300000000ull * *(uint64*)src_cur_) >> 32) >> (32 - firsthash_bits_);
uint32 pos = src_cur_ - src_base_;
nexthash_[pos & nexthash_mask_] = firsthash_[hash_a];
firsthash_[hash_a] = pos;
src_cur_++;
}
}
public:
uint32 *firsthash_ = 0;
uint32 *longhash_ = 0;
uint16 *nexthash_ = 0;
const uint8 *src_base_ = 0;
const uint8 *src_cur_ = 0;
uint32 firsthash_mask_;
uint32 longhash_mask_;
uint32 nexthash_mask_;
uint8 firsthash_bits_;
uint8 longhash_bits_;
};
template<typename T>
class FastMatchHasher {
public:
typedef T ElemType;
void AllocateHash(int bits, int k) {
hash_bits_ = bits;
if (k == 0)
k = 4;
if (k >= 5 && k <= 8) {
hashmult_ = 0xCF1BBCDCB7A56463ull << (8 * (8 - k));
} else {
hashmult_ = 0x9E3779B100000000ull;
}
malloced_ptr_ = malloc(sizeof(T) * (1 << bits) + 64);
hash_ptr_ = (T*)(((uintptr_t)malloced_ptr_ + 63) & ~63);
memset(hash_ptr_, 0, sizeof(T) * (1 << bits));
}
void SetBaseWithoutPreload(const uint8 *p) {
src_base_ = p;
}
void SetBaseAndPreload(const uint8 *src_base, const uint8 *src_start, int max_preload_len) {
src_base_ = src_base;
if (src_base == src_start)
return;
const uint8 *src = src_base;
int preload_len = src_start - src_base;
assert(preload_len > 0);
if (preload_len > max_preload_len) {
preload_len = max_preload_len;
src = src_start - preload_len;
}
int step = std::max(preload_len >> 18, 2);
int rounds_until_next_step = (preload_len >> 1) / step;
T *hash_ptr = hash_ptr_;
uint64 hashmult = hashmult_;
int hashshift = 64 - hash_bits_;
for (;;) {
if (--rounds_until_next_step <= 0) {
if (src >= src_start)
break;
step >>= 1;
assert(step >= 1);
rounds_until_next_step = (src_start - src) / step;
if (step > 1)
rounds_until_next_step >>= 1;
}
hash_ptr[(size_t)(*(uint64*)src * hashmult >> hashshift)] = src - src_base;
src += step;
}
}
void *malloced_ptr_ = NULL;
T *hash_ptr_ = NULL;
const uint8 *src_base_;
uint64 hashmult_;
int hash_bits_;
};