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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
|
/*
* hashfn_unstable.h
*
* Building blocks for creating fast inlineable hash functions. The
* functions in this file are not guaranteed to be stable between versions,
* and may differ by hardware platform. Hence they must not be used in
* indexes or other on-disk structures. See hashfn.h if you need stability.
*
*
* Portions Copyright (c) 2024-2025, PostgreSQL Global Development Group
*
* src/include/common/hashfn_unstable.h
*/
#ifndef HASHFN_UNSTABLE_H
#define HASHFN_UNSTABLE_H
/*
* fasthash is a modification of code taken from
* https://code.google.com/archive/p/fast-hash/source/default/source
* under the terms of the MIT license. The original copyright
* notice follows:
*/
/* The MIT License
Copyright (C) 2012 Zilong Tan (eric.zltan@gmail.com)
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/*
* fasthash as implemented here has two interfaces:
*
* 1) Standalone functions, e.g. fasthash32() for a single value with a
* known length. These return the same hash code as the original, at
* least on little-endian machines.
*
* 2) Incremental interface. This can used for incorporating multiple
* inputs. First, initialize the hash state (here with a zero seed):
*
* fasthash_state hs;
* fasthash_init(&hs, 0);
*
* If the inputs are of types that can be trivially cast to uint64, it's
* sufficient to do:
*
* hs.accum = value1;
* fasthash_combine(&hs);
* hs.accum = value2;
* fasthash_combine(&hs);
* ...
*
* For longer or variable-length input, fasthash_accum() is a more
* flexible, but more verbose method. The standalone functions use this
* internally, so see fasthash64() for an example of this.
*
* After all inputs have been mixed in, finalize the hash:
*
* hashcode = fasthash_final32(&hs, 0);
*
* The incremental interface allows an optimization for NUL-terminated
* C strings:
*
* len = fasthash_accum_cstring(&hs, str);
* hashcode = fasthash_final32(&hs, len);
*
* By handling the terminator on-the-fly, we can avoid needing a strlen()
* call to tell us how many bytes to hash. Experimentation has found that
* SMHasher fails unless we incorporate the length, so it is passed to
* the finalizer as a tweak.
*/
typedef struct fasthash_state
{
/* staging area for chunks of input */
uint64 accum;
uint64 hash;
} fasthash_state;
#define FH_SIZEOF_ACCUM sizeof(uint64)
/*
* Initialize the hash state.
*
* 'seed' can be zero.
*/
static inline void
fasthash_init(fasthash_state *hs, uint64 seed)
{
memset(hs, 0, sizeof(fasthash_state));
hs->hash = seed ^ 0x880355f21e6d1965;
}
/* both the finalizer and part of the combining step */
static inline uint64
fasthash_mix(uint64 h, uint64 tweak)
{
h ^= (h >> 23) + tweak;
h *= 0x2127599bf4325c37;
h ^= h >> 47;
return h;
}
/* combine one chunk of input into the hash */
static inline void
fasthash_combine(fasthash_state *hs)
{
hs->hash ^= fasthash_mix(hs->accum, 0);
hs->hash *= 0x880355f21e6d1965;
}
/* accumulate up to 8 bytes of input and combine it into the hash */
static inline void
fasthash_accum(fasthash_state *hs, const char *k, size_t len)
{
uint32 lower_four;
Assert(len <= FH_SIZEOF_ACCUM);
hs->accum = 0;
/*
* For consistency, bytewise loads must match the platform's endianness.
*/
#ifdef WORDS_BIGENDIAN
switch (len)
{
case 8:
memcpy(&hs->accum, k, 8);
break;
case 7:
hs->accum |= (uint64) k[6] << 8;
/* FALLTHROUGH */
case 6:
hs->accum |= (uint64) k[5] << 16;
/* FALLTHROUGH */
case 5:
hs->accum |= (uint64) k[4] << 24;
/* FALLTHROUGH */
case 4:
memcpy(&lower_four, k, sizeof(lower_four));
hs->accum |= (uint64) lower_four << 32;
break;
case 3:
hs->accum |= (uint64) k[2] << 40;
/* FALLTHROUGH */
case 2:
hs->accum |= (uint64) k[1] << 48;
/* FALLTHROUGH */
case 1:
hs->accum |= (uint64) k[0] << 56;
break;
case 0:
return;
}
#else
switch (len)
{
case 8:
memcpy(&hs->accum, k, 8);
break;
case 7:
hs->accum |= (uint64) k[6] << 48;
/* FALLTHROUGH */
case 6:
hs->accum |= (uint64) k[5] << 40;
/* FALLTHROUGH */
case 5:
hs->accum |= (uint64) k[4] << 32;
/* FALLTHROUGH */
case 4:
memcpy(&lower_four, k, sizeof(lower_four));
hs->accum |= lower_four;
break;
case 3:
hs->accum |= (uint64) k[2] << 16;
/* FALLTHROUGH */
case 2:
hs->accum |= (uint64) k[1] << 8;
/* FALLTHROUGH */
case 1:
hs->accum |= (uint64) k[0];
break;
case 0:
return;
}
#endif
fasthash_combine(hs);
}
/*
* Set high bit in lowest byte where the input is zero, from:
* https://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
*/
#define haszero64(v) \
(((v) - 0x0101010101010101) & ~(v) & 0x8080808080808080)
/*
* all-purpose workhorse for fasthash_accum_cstring
*/
static inline size_t
fasthash_accum_cstring_unaligned(fasthash_state *hs, const char *str)
{
const char *const start = str;
while (*str)
{
size_t chunk_len = 0;
while (chunk_len < FH_SIZEOF_ACCUM && str[chunk_len] != '\0')
chunk_len++;
fasthash_accum(hs, str, chunk_len);
str += chunk_len;
}
return str - start;
}
/*
* specialized workhorse for fasthash_accum_cstring
*
* With an aligned pointer, we consume the string a word at a time.
* Loading the word containing the NUL terminator cannot segfault since
* allocation boundaries are suitably aligned. To keep from setting
* off alarms with address sanitizers, exclude this function from
* such testing.
*/
pg_attribute_no_sanitize_address()
static inline size_t
fasthash_accum_cstring_aligned(fasthash_state *hs, const char *str)
{
const char *const start = str;
size_t remainder;
uint64 zero_byte_low;
Assert(PointerIsAligned(start, uint64));
/*
* For every chunk of input, check for zero bytes before mixing into the
* hash. The chunk with zeros must contain the NUL terminator.
*/
for (;;)
{
uint64 chunk = *(uint64 *) str;
zero_byte_low = haszero64(chunk);
if (zero_byte_low)
break;
hs->accum = chunk;
fasthash_combine(hs);
str += FH_SIZEOF_ACCUM;
}
/* mix in remaining bytes */
remainder = fasthash_accum_cstring_unaligned(hs, str);
str += remainder;
return str - start;
}
/*
* Mix 'str' into the hash state and return the length of the string.
*/
static inline size_t
fasthash_accum_cstring(fasthash_state *hs, const char *str)
{
#if SIZEOF_VOID_P >= 8
size_t len;
#ifdef USE_ASSERT_CHECKING
size_t len_check;
fasthash_state hs_check;
memcpy(&hs_check, hs, sizeof(fasthash_state));
len_check = fasthash_accum_cstring_unaligned(&hs_check, str);
#endif
if (PointerIsAligned(str, uint64))
{
len = fasthash_accum_cstring_aligned(hs, str);
Assert(len_check == len);
Assert(hs_check.hash == hs->hash);
return len;
}
#endif /* SIZEOF_VOID_P */
/*
* It's not worth it to try to make the word-at-a-time optimization work
* on 32-bit platforms.
*/
return fasthash_accum_cstring_unaligned(hs, str);
}
/*
* The finalizer
*
* 'tweak' is intended to be the input length when the caller doesn't know
* the length ahead of time, such as for NUL-terminated strings, otherwise
* zero.
*/
static inline uint64
fasthash_final64(fasthash_state *hs, uint64 tweak)
{
return fasthash_mix(hs->hash, tweak);
}
/*
* Reduce a 64-bit hash to a 32-bit hash.
*
* This optional step provides a bit more additional mixing compared to
* just taking the lower 32-bits.
*/
static inline uint32
fasthash_reduce32(uint64 h)
{
/*
* Convert the 64-bit hashcode to Fermat residue, which shall retain
* information from both the higher and lower parts of hashcode.
*/
return h - (h >> 32);
}
/* finalize and reduce */
static inline uint32
fasthash_final32(fasthash_state *hs, uint64 tweak)
{
return fasthash_reduce32(fasthash_final64(hs, tweak));
}
/*
* The original fasthash64 function, re-implemented using the incremental
* interface. Returns a 64-bit hashcode. 'len' controls not only how
* many bytes to hash, but also modifies the internal seed.
* 'seed' can be zero.
*/
static inline uint64
fasthash64(const char *k, size_t len, uint64 seed)
{
fasthash_state hs;
fasthash_init(&hs, 0);
/* re-initialize the seed according to input length */
hs.hash = seed ^ (len * 0x880355f21e6d1965);
while (len >= FH_SIZEOF_ACCUM)
{
fasthash_accum(&hs, k, FH_SIZEOF_ACCUM);
k += FH_SIZEOF_ACCUM;
len -= FH_SIZEOF_ACCUM;
}
fasthash_accum(&hs, k, len);
return fasthash_final64(&hs, 0);
}
/* like fasthash64, but returns a 32-bit hashcode */
static inline uint32
fasthash32(const char *k, size_t len, uint64 seed)
{
return fasthash_reduce32(fasthash64(k, len, seed));
}
/*
* Convenience function for hashing NUL-terminated strings
*/
static inline uint32
hash_string(const char *s)
{
fasthash_state hs;
size_t s_len;
fasthash_init(&hs, 0);
/*
* Combine string into the hash and save the length for tweaking the final
* mix.
*/
s_len = fasthash_accum_cstring(&hs, s);
return fasthash_final32(&hs, s_len);
}
#endif /* HASHFN_UNSTABLE_H */
|