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
|
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
* Use of this file is governed by the BSD 3-clause license that
* can be found in the LICENSE.txt file in the project root.
*/
#include <cstddef>
#include <cstdint>
#include <cstring>
#include "misc/MurmurHash.h"
using namespace antlr4::misc;
// A variation of the MurmurHash3 implementation (https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp)
// Here we unrolled the loop used there into individual calls to update(), as we usually hash object fields
// instead of entire buffers.
// Platform-specific functions and macros
// Microsoft Visual Studio
#if defined(_MSC_VER)
#include <stdlib.h>
#define ROTL32(x,y) _rotl(x,y)
#define ROTL64(x,y) _rotl64(x,y)
#elif ANTLR4CPP_HAVE_BUILTIN(__builtin_rotateleft32) && ANTLR4CPP_HAVE_BUILTIN(__builtin_rotateleft64)
#define ROTL32(x, y) __builtin_rotateleft32(x, y)
#define ROTL64(x, y) __builtin_rotateleft64(x, y)
#else // defined(_MSC_VER)
// Other compilers
namespace {
constexpr uint32_t ROTL32(uint32_t x, int r) {
return (x << r) | (x >> (32 - r));
}
constexpr uint64_t ROTL64(uint64_t x, int r) {
return (x << r) | (x >> (64 - r));
}
}
#endif // !defined(_MSC_VER)
#if SIZE_MAX == UINT64_MAX
size_t MurmurHash::update(size_t hash, size_t value) {
size_t k1 = value;
k1 *= UINT64_C(0x87c37b91114253d5);
k1 = ROTL64(k1, 31);
k1 *= UINT64_C(0x4cf5ad432745937f);
hash ^= k1;
hash = ROTL64(hash, 27);
hash = hash * 5 + UINT64_C(0x52dce729);
return hash;
}
size_t MurmurHash::finish(size_t hash, size_t entryCount) {
hash ^= entryCount * 8;
hash ^= hash >> 33;
hash *= UINT64_C(0xff51afd7ed558ccd);
hash ^= hash >> 33;
hash *= UINT64_C(0xc4ceb9fe1a85ec53);
hash ^= hash >> 33;
return hash;
}
#elif SIZE_MAX == UINT32_MAX
size_t MurmurHash::update(size_t hash, size_t value) {
size_t k1 = value;
k1 *= UINT32_C(0xCC9E2D51);
k1 = ROTL32(k1, 15);
k1 *= UINT32_C(0x1B873593);
hash ^= k1;
hash = ROTL32(hash, 13);
hash = hash * 5 + UINT32_C(0xE6546B64);
return hash;
}
size_t MurmurHash::finish(size_t hash, size_t entryCount) {
hash ^= entryCount * 4;
hash ^= hash >> 16;
hash *= UINT32_C(0x85EBCA6B);
hash ^= hash >> 13;
hash *= UINT32_C(0xC2B2AE35);
hash ^= hash >> 16;
return hash;
}
#else
#error "Expected sizeof(size_t) to be 4 or 8."
#endif
size_t MurmurHash::update(size_t hash, const void *data, size_t size) {
size_t value;
const uint8_t *bytes = static_cast<const uint8_t*>(data);
while (size >= sizeof(size_t)) {
std::memcpy(&value, bytes, sizeof(size_t));
hash = update(hash, value);
bytes += sizeof(size_t);
size -= sizeof(size_t);
}
if (size != 0) {
value = 0;
std::memcpy(&value, bytes, size);
hash = update(hash, value);
}
return hash;
}
|