#include "farmhash-c.h"
#include <string.h>
#include <assert.h>
#if defined (__x86_64) || defined (__x86_64__)
#define x86_64 1
#else
#define x86_64 0
#endif
#if defined(__i386__) || defined(__i386) || defined(__X86__)
#define x86 1
#else
#define x86 x86_64
#endif
#if defined(__SSSE3__) || defined(__SSE4_1__) || defined(__SSE4_2__)
#include <tmmintrin.h>
#define CAN_USE_SSSE3 1
#else
#define CAN_USE_SSSE3 0
#endif
#if defined(__SSE4_1__) || defined(__SSE4_2__)
#include <immintrin.h>
#define CAN_USE_SSE41 1
#else
#define CAN_USE_SSE41 0
#endif
#if defined(__SSE4_2__)
#include <nmmintrin.h>
#define CAN_USE_SSE42 1
#else
#define CAN_USE_SSE42 0
#endif
#if defined(__AES__)
#include <wmmintrin.h>
#define CAN_USE_AESNI 1
#else
#define CAN_USE_AESNI 0
#endif
#if defined(__AVX__)
#include <immintrin.h>
#define CAN_USE_AVX 1
#else
#define CAN_USE_AVX 0
#endif
#ifdef __GNUC__
#define likely(x) (__builtin_expect(!!(x), 1))
#else
#define likely(x) (x)
#endif
#if !defined(_MSC_VER) && (!defined(__BYTE_ORDER__) || !defined(__ORDER_LITTLE_ENDIAN__))
#error "Unknown byte order"
#endif
#if defined(_MSC_VER) || (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#define uint32_t_in_expected_order(x) (x)
#define uint64_t_in_expected_order(x) (x)
#else
#define uint32_t_in_expected_order(x) (bswap32(x))
#define uint64_t_in_expected_order(x) (bswap64(x))
#endif
#define PERMUTE3(a, b, c) \
do { \
swap32(a, b); \
swap32(a, c); \
} while (0)
static inline uint32_t bswap32(const uint32_t x) {
uint32_t y = x;
size_t i;
for (i = 0; i < sizeof(uint32_t) >> 1; i++) {
uint32_t d = sizeof(uint32_t) - i - 1;
uint32_t mh = ((uint32_t)0xff) << (d << 3);
uint32_t ml = ((uint32_t)0xff) << (i << 3);
uint32_t h = x & mh;
uint32_t l = x & ml;
uint64_t t = (l << ((d - i) << 3)) | (h >> ((d - i) << 3));
y = t | (y & ~(mh | ml));
}
return y;
}
static inline uint64_t bswap64(const uint64_t x) {
uint64_t y = x;
size_t i;
for (i = 0; i < sizeof(uint64_t) >> 1; i++) {
uint64_t d = sizeof(uint64_t) - i - 1;
uint64_t mh = ((uint64_t)0xff) << (d << 3);
uint64_t ml = ((uint64_t)0xff) << (i << 3);
uint64_t h = x & mh;
uint64_t l = x & ml;
uint64_t t = (l << ((d - i) << 3)) | (h >> ((d - i) << 3));
y = t | (y & ~(mh | ml));
}
return y;
}
static inline uint64_t fetch64(const char* p) {
uint64_t result;
memcpy(&result, p, sizeof(result));
return uint64_t_in_expected_order(result);
}
static inline uint32_t fetch32(const char* p) {
uint32_t result;
memcpy(&result, p, sizeof(result));
return uint32_t_in_expected_order(result);
}
#if CAN_USE_SSSE3 || CAN_USE_SSE41 || CAN_USE_SSE42 || CAN_USE_AESNI || CAN_USE_AVX
static inline __m128i fetch128(const char* s) {
return _mm_loadu_si128((const __m128i*) s);
}
#endif
static inline void swap32(uint32_t* a, uint32_t* b) {
uint32_t t;
t = *a;
*a = *b;
*b = t;
}
static inline void swap64(uint64_t* a, uint64_t* b) {
uint64_t t;
t = *a;
*a = *b;
*b = t;
}
#if CAN_USE_SSSE3 || CAN_USE_SSE41 || CAN_USE_SSE42 || CAN_USE_AESNI || CAN_USE_AVX
static inline void swap128(__m128i* a, __m128i* b) {
__m128i t;
t = *a;
*a = *b;
*b = t;
}
#endif
static inline uint32_t ror32(uint32_t val, size_t shift) {
return shift == 0 ? val : (val >> shift) | (val << (32 - shift));
}
static inline uint64_t ror64(uint64_t val, size_t shift) {
return shift == 0 ? val : (val >> shift) | (val << (64 - shift));
}
#if CAN_USE_SSSE3 || CAN_USE_SSE41 || CAN_USE_SSE42 || CAN_USE_AESNI || CAN_USE_AVX
static inline __m128i add64x2(__m128i x, __m128i y) { return _mm_add_epi64(x, y); }
static inline __m128i add32x4(__m128i x, __m128i y) { return _mm_add_epi32(x, y); }
static inline __m128i xor128(__m128i x, __m128i y) { return _mm_xor_si128(x, y); }
static inline __m128i or128(__m128i x, __m128i y) { return _mm_or_si128(x, y); }
static inline __m128i mul32x4_5(__m128i x) { return add32x4(x, _mm_slli_epi32(x, 2)); }
static inline __m128i rol32x4(__m128i x, int c) {
return or128(_mm_slli_epi32(x, c),
_mm_srli_epi32(x, 32 - c));
}
static inline __m128i rol32x4_17(__m128i x) { return rol32x4(x, 17); }
static inline __m128i rol32x4_19(__m128i x) { return rol32x4(x, 19); }
static inline __m128i shuf32x4_0_3_2_1(__m128i x) {
return _mm_shuffle_epi32(x, (0 << 6) + (3 << 4) + (2 << 2) + (1 << 0));
}
#endif
#if CAN_USE_SSSE3
static inline __m128i shuf8x16(__m128i x, __m128i y) { return _mm_shuffle_epi8(y, x); }
#endif
#if CAN_USE_SSE41
static inline __m128i mul32x4(__m128i x, __m128i y) { return _mm_mullo_epi32(x, y); }
static inline __m128i murk(__m128i a, __m128i b, __m128i c, __m128i d, __m128i e) {
return add32x4(e,
mul32x4_5(
rol32x4_19(
xor128(
mul32x4(d,
rol32x4_17(
mul32x4(c, a))),
(b)))));
}
#endif
static const uint64_t k0 = 0xc3a5c85c97cb3127ULL;
static const uint64_t k1 = 0xb492b66fbe98f273ULL;
static const uint64_t k2 = 0x9ae16a3b2f90404fULL;
static const uint32_t c1 = 0xcc9e2d51;
static const uint32_t c2 = 0x1b873593;
static inline uint32_t fmix(uint32_t h) {
h ^= h >> 16;
h *= 0x85ebca6b;
h ^= h >> 13;
h *= 0xc2b2ae35;
h ^= h >> 16;
return h;
}
static inline uint64_t smix(uint64_t val) {
return val ^ (val >> 47);
}
static inline uint32_t mur(uint32_t a, uint32_t h) {
a *= c1;
a = ror32(a, 17);
a *= c2;
h ^= a;
h = ror32(h, 19);
return h * 5 + 0xe6546b64;
}
static inline uint32_t debug_tweak32(uint32_t x) {
#ifndef NDEBUG
x = ~bswap32(x * c1);
#endif
return x;
}
static inline uint64_t debug_tweak64(uint64_t x) {
#ifndef NDEBUG
x = ~bswap64(x * k1);
#endif
return x;
}
uint128_c_t debug_tweak128(uint128_c_t x) {
#ifndef NDEBUG
uint64_t y = debug_tweak64(uint128_c_t_low64(x));
uint64_t z = debug_tweak64(uint128_c_t_high64(x));
y += z;
z += y;
x = make_uint128_c_t(y, z * k1);
#endif
return x;
}
static inline uint64_t farmhash_len_16(uint64_t u, uint64_t v) {
return farmhash128_to_64(make_uint128_c_t(u, v));
}
static inline uint64_t farmhash_len_16_mul(uint64_t u, uint64_t v, uint64_t mul) {
uint64_t a = (u ^ v) * mul;
a ^= (a >> 47);
uint64_t b = (v ^ a) * mul;
b ^= (b >> 47);
b *= mul;
return b;
}
static inline uint64_t farmhash_na_len_0_to_16(const char *s, size_t len) {
if (len >= 8) {
uint64_t mul = k2 + len * 2;
uint64_t a = fetch64(s) + k2;
uint64_t b = fetch64(s + len - 8);
uint64_t c = ror64(b, 37) * mul + a;
uint64_t d = (ror64(a, 25) + b) * mul;
return farmhash_len_16_mul(c, d, mul);
}
if (len >= 4) {
uint64_t mul = k2 + len * 2;
uint64_t a = fetch32(s);
return farmhash_len_16_mul(len + (a << 3), fetch32(s + len - 4), mul);
}
if (len > 0) {
uint8_t a = s[0];
uint8_t b = s[len >> 1];
uint8_t c = s[len - 1];
uint32_t y = (uint32_t) a + ((uint32_t) b << 8);
uint32_t z = len + ((uint32_t) c << 2);
return smix(y * k2 ^ z * k0) * k2;
}
return k2;
}
static inline uint64_t farmhash_na_len_17_to_32(const char *s, size_t len) {
uint64_t mul = k2 + len * 2;
uint64_t a = fetch64(s) * k1;
uint64_t b = fetch64(s + 8);
uint64_t c = fetch64(s + len - 8) * mul;
uint64_t d = fetch64(s + len - 16) * k2;
return farmhash_len_16_mul(ror64(a + b, 43) + ror64(c, 30) + d,
a + ror64(b + k2, 18) + c, mul);
}
static inline uint128_c_t weak_farmhash_na_len_32_with_seeds_vals(
uint64_t w, uint64_t x, uint64_t y, uint64_t z, uint64_t a, uint64_t b) {
a += w;
b = ror64(b + a + z, 21);
uint64_t c = a;
a += x;
a += y;
b += ror64(a, 44);
return make_uint128_c_t(a + z, b + c);
}
static inline uint128_c_t weak_farmhash_na_len_32_with_seeds(
const char* s, uint64_t a, uint64_t b) {
return weak_farmhash_na_len_32_with_seeds_vals(fetch64(s),
fetch64(s + 8),
fetch64(s + 16),
fetch64(s + 24),
a,
b);
}
static inline uint64_t farmhash_na_len_33_to_64(const char *s, size_t len) {
uint64_t mul = k2 + len * 2;
uint64_t a = fetch64(s) * k2;
uint64_t b = fetch64(s + 8);
uint64_t c = fetch64(s + len - 8) * mul;
uint64_t d = fetch64(s + len - 16) * k2;
uint64_t y = ror64(a + b, 43) + ror64(c, 30) + d;
uint64_t z = farmhash_len_16_mul(y, a + ror64(b + k2, 18) + c, mul);
uint64_t e = fetch64(s + 16) * mul;
uint64_t f = fetch64(s + 24);
uint64_t g = (y + fetch64(s + len - 32)) * mul;
uint64_t h = (z + fetch64(s + len - 24)) * mul;
return farmhash_len_16_mul(ror64(e + f, 43) + ror64(g, 30) + h,
e + ror64(f + a, 18) + g, mul);
}
uint64_t farmhash64_na(const char *s, size_t len) {
const uint64_t seed = 81;
if (len <= 32) {
if (len <= 16) {
return farmhash_na_len_0_to_16(s, len);
} else {
return farmhash_na_len_17_to_32(s, len);
}
} else if (len <= 64) {
return farmhash_na_len_33_to_64(s, len);
}
uint64_t x = seed;
uint64_t y = seed * k1 + 113;
uint64_t z = smix(y * k2 + 113) * k2;
uint128_c_t v = make_uint128_c_t(0, 0);
uint128_c_t w = make_uint128_c_t(0, 0);
x = x * k2 + fetch64(s);
const char* end = s + ((len - 1) / 64) * 64;
const char* last64 = end + ((len - 1) & 63) - 63;
assert(s + len - 64 == last64);
do {
x = ror64(x + y + v.a + fetch64(s + 8), 37) * k1;
y = ror64(y + v.b + fetch64(s + 48), 42) * k1;
x ^= w.b;
y += v.a + fetch64(s + 40);
z = ror64(z + w.a, 33) * k1;
v = weak_farmhash_na_len_32_with_seeds(s, v.b * k1, x + w.a);
w = weak_farmhash_na_len_32_with_seeds(s + 32, z + w.b, y + fetch64(s + 16));
swap64(&z, &x);
s += 64;
} while (s != end);
uint64_t mul = k1 + ((z & 0xff) << 1);
s = last64;
w.a += ((len - 1) & 63);
v.a += w.a;
w.a += v.a;
x = ror64(x + y + v.a + fetch64(s + 8), 37) * mul;
y = ror64(y + v.b + fetch64(s + 48), 42) * mul;
x ^= w.b * 9;
y += v.a * 9 + fetch64(s + 40);
z = ror64(z + w.a, 33) * mul;
v = weak_farmhash_na_len_32_with_seeds(s, v.b * mul, x + w.a);
w = weak_farmhash_na_len_32_with_seeds(s + 32, z + w.b, y + fetch64(s + 16));
swap64(&z, &x);
return farmhash_len_16_mul(farmhash_len_16_mul(v.a, w.a, mul) + smix(y) * k0 + z,
farmhash_len_16_mul(v.b, w.b, mul) + x,
mul);
}
uint64_t farmhash64_na_with_seeds(const char *s, size_t len, uint64_t seed0, uint64_t seed1) {
return farmhash_len_16(farmhash64_na(s, len) - seed0, seed1);
}
uint64_t farmhash64_na_with_seed(const char *s, size_t len, uint64_t seed) {
return farmhash64_na_with_seeds(s, len, k2, seed);
}
static inline uint64_t farmhash_uo_h(uint64_t x, uint64_t y, uint64_t mul, int r) {
uint64_t a = (x ^ y) * mul;
a ^= (a >> 47);
uint64_t b = (y ^ a) * mul;
return ror64(b, r) * mul;
}
uint64_t farmhash64_uo_with_seeds(const char *s, size_t len,
uint64_t seed0, uint64_t seed1) {
if (len <= 64) {
return farmhash64_na_with_seeds(s, len, seed0, seed1);
}
uint64_t x = seed0;
uint64_t y = seed1 * k2 + 113;
uint64_t z = smix(y * k2) * k2;
uint128_c_t v = make_uint128_c_t(seed0, seed1);
uint128_c_t w = make_uint128_c_t(0, 0);
uint64_t u = x - z;
x *= k2;
uint64_t mul = k2 + (u & 0x82);
const char* end = s + ((len - 1) / 64) * 64;
const char* last64 = end + ((len - 1) & 63) - 63;
assert(s + len - 64 == last64);
do {
uint64_t a0 = fetch64(s);
uint64_t a1 = fetch64(s + 8);
uint64_t a2 = fetch64(s + 16);
uint64_t a3 = fetch64(s + 24);
uint64_t a4 = fetch64(s + 32);
uint64_t a5 = fetch64(s + 40);
uint64_t a6 = fetch64(s + 48);
uint64_t a7 = fetch64(s + 56);
x += a0 + a1;
y += a2;
z += a3;
v.a += a4;
v.b += a5 + a1;
w.a += a6;
w.b += a7;
x = ror64(x, 26);
x *= 9;
y = ror64(y, 29);
z *= mul;
v.a = ror64(v.a, 33);
v.b = ror64(v.b, 30);
w.a ^= x;
w.a *= 9;
z = ror64(z, 32);
z += w.b;
w.b += z;
z *= 9;
swap64(&u, &y);
z += a0 + a6;
v.a += a2;
v.b += a3;
w.a += a4;
w.b += a5 + a6;
x += a1;
y += a7;
y += v.a;
v.a += x - y;
v.b += w.a;
w.a += v.b;
w.b += x - y;
x += w.b;
w.b = ror64(w.b, 34);
swap64(&u, &z);
s += 64;
} while (s != end);
s = last64;
u *= 9;
v.b = ror64(v.b, 28);
v.a = ror64(v.a, 20);
w.a += ((len - 1) & 63);
u += y;
y += u;
x = ror64(y - x + v.a + fetch64(s + 8), 37) * mul;
y = ror64(y ^ v.b ^ fetch64(s + 48), 42) * mul;
x ^= w.b * 9;
y += v.a + fetch64(s + 40);
z = ror64(z + w.a, 33) * mul;
v = weak_farmhash_na_len_32_with_seeds(s, v.b * mul, x + w.a);
w = weak_farmhash_na_len_32_with_seeds(s + 32, z + w.b, y + fetch64(s + 16));
return farmhash_uo_h(farmhash_len_16_mul(v.a + x, w.a ^ y, mul) + z - u,
farmhash_uo_h(v.b + y, w.b + z, k2, 30) ^ x,
k2,
31);
}
uint64_t farmhash64_uo_with_seed(const char *s, size_t len, uint64_t seed) {
return len <= 64 ? farmhash64_na_with_seed(s, len, seed) :
farmhash64_uo_with_seeds(s, len, 0, seed);
}
uint64_t farmhash64_uo(const char *s, size_t len) {
return len <= 64 ? farmhash64_na(s, len) :
farmhash64_uo_with_seeds(s, len, 81, 0);
}
static inline uint64_t farmhash_xo_h32(const char *s, size_t len, uint64_t mul,
uint64_t seed0, uint64_t seed1) {
uint64_t a = fetch64(s) * k1;
uint64_t b = fetch64(s + 8);
uint64_t c = fetch64(s + len - 8) * mul;
uint64_t d = fetch64(s + len - 16) * k2;
uint64_t u = ror64(a + b, 43) + ror64(c, 30) + d + seed0;
uint64_t v = a + ror64(b + k2, 18) + c + seed1;
a = smix((u ^ v) * mul);
b = smix((v ^ a) * mul);
return b;
}
static inline uint64_t farmhash_xo_len_33_to_64(const char *s, size_t len) {
uint64_t mul0 = k2 - 30;
uint64_t mul1 = k2 - 30 + 2 * len;
uint64_t h0 = farmhash_xo_h32(s, 32, mul0, 0, 0);
uint64_t h1 = farmhash_xo_h32(s + len - 32, 32, mul1, 0, 0);
return ((h1 * mul1) + h0) * mul1;
}
static inline uint64_t farmhash_xo_len_65_to_96(const char *s, size_t len) {
uint64_t mul0 = k2 - 114;
uint64_t mul1 = k2 - 114 + 2 * len;
uint64_t h0 = farmhash_xo_h32(s, 32, mul0, 0, 0);
uint64_t h1 = farmhash_xo_h32(s + 32, 32, mul1, 0, 0);
uint64_t h2 = farmhash_xo_h32(s + len - 32, 32, mul1, h0, h1);
return (h2 * 9 + (h0 >> 17) + (h1 >> 21)) * mul1;
}
uint64_t farmhash64_xo(const char *s, size_t len) {
if (len <= 32) {
if (len <= 16) {
return farmhash_na_len_0_to_16(s, len);
} else {
return farmhash_na_len_17_to_32(s, len);
}
} else if (len <= 64) {
return farmhash_xo_len_33_to_64(s, len);
} else if (len <= 96) {
return farmhash_xo_len_65_to_96(s, len);
} else if (len <= 256) {
return farmhash64_na(s, len);
} else {
return farmhash64_uo(s, len);
}
}
uint64_t farmhash64_xo_with_seeds(const char *s, size_t len, uint64_t seed0, uint64_t seed1) {
return farmhash64_uo_with_seeds(s, len, seed0, seed1);
}
uint64_t farmhash64_xo_with_seed(const char *s, size_t len, uint64_t seed) {
return farmhash64_uo_with_seed(s, len, seed);
}
#if x86_64 && CAN_USE_SSE41 && CAN_USE_SSSE3
static inline uint64_t farmhash64_te_long(const char* s, size_t n,
uint64_t seed0, uint64_t seed1) {
const __m128i k_shuf =
_mm_set_epi8(4, 11, 10, 5, 8, 15, 6, 9, 12, 2, 14, 13, 0, 7, 3, 1);
const __m128i k_mult =
_mm_set_epi8(0xbd, 0xd6, 0x33, 0x39, 0x45, 0x54, 0xfa, 0x03,
0x34, 0x3e, 0x33, 0xed, 0xcc, 0x9e, 0x2d, 0x51);
uint64_t seed2 = (seed0 + 113) * (seed1 + 9);
uint64_t seed3 = (ror64(seed0, 23) + 27) * (ror64(seed1, 30) + 111);
__m128i d0 = _mm_cvtsi64_si128(seed0);
__m128i d1 = _mm_cvtsi64_si128(seed1);
__m128i d2 = shuf8x16(k_shuf, d0);
__m128i d3 = shuf8x16(k_shuf, d1);
__m128i d4 = xor128(d0, d1);
__m128i d5 = xor128(d1, d2);
__m128i d6 = xor128(d2, d4);
__m128i d7 = _mm_set1_epi32(seed2 >> 32);
__m128i d8 = mul32x4(k_mult, d2);
__m128i d9 = _mm_set1_epi32(seed3 >> 32);
__m128i d10 = _mm_set1_epi32(seed3);
__m128i d11 = add64x2(d2, _mm_set1_epi32(seed2));
const char* end = s + (n & ~((size_t) 255));
do {
__m128i z;
z = fetch128(s);
d0 = add64x2(d0, z);
d1 = shuf8x16(k_shuf, d1);
d2 = xor128(d2, d0);
d4 = xor128(d4, z);
d4 = xor128(d4, d1);
swap128(&d0, &d6);
z = fetch128(s + 16);
d5 = add64x2(d5, z);
d6 = shuf8x16(k_shuf, d6);
d8 = shuf8x16(k_shuf, d8);
d7 = xor128(d7, d5);
d0 = xor128(d0, z);
d0 = xor128(d0, d6);
swap128(&d5, &d11);
z = fetch128(s + 32);
d1 = add64x2(d1, z);
d2 = shuf8x16(k_shuf, d2);
d4 = shuf8x16(k_shuf, d4);
d5 = xor128(d5, z);
d5 = xor128(d5, d2);
swap128(&d10, &d4);
z = fetch128(s + 48);
d6 = add64x2(d6, z);
d7 = shuf8x16(k_shuf, d7);
d0 = shuf8x16(k_shuf, d0);
d8 = xor128(d8, d6);
d1 = xor128(d1, z);
d1 = add64x2(d1, d7);
z = fetch128(s + 64);
d2 = add64x2(d2, z);
d5 = shuf8x16(k_shuf, d5);
d4 = add64x2(d4, d2);
d6 = xor128(d6, z);
d6 = xor128(d6, d11);
swap128(&d8, &d2);
z = fetch128(s + 80);
d7 = xor128(d7, z);
d8 = shuf8x16(k_shuf, d8);
d1 = shuf8x16(k_shuf, d1);
d0 = add64x2(d0, d7);
d2 = add64x2(d2, z);
d2 = add64x2(d2, d8);
swap128(&d1, &d7);
z = fetch128(s + 96);
d4 = shuf8x16(k_shuf, d4);
d6 = shuf8x16(k_shuf, d6);
d8 = mul32x4(k_mult, d8);
d5 = xor128(d5, d11);
d7 = xor128(d7, z);
d7 = add64x2(d7, d4);
swap128(&d6, &d0);
z = fetch128(s + 112);
d8 = add64x2(d8, z);
d0 = shuf8x16(k_shuf, d0);
d2 = shuf8x16(k_shuf, d2);
d1 = xor128(d1, d8);
d10 = xor128(d10, z);
d10 = xor128(d10, d0);
swap128(&d11, &d5);
z = fetch128(s + 128);
d4 = add64x2(d4, z);
d5 = shuf8x16(k_shuf, d5);
d7 = shuf8x16(k_shuf, d7);
d6 = add64x2(d6, d4);
d8 = xor128(d8, z);
d8 = xor128(d8, d5);
swap128(&d4, &d10);
z = fetch128(s + 144);
d0 = add64x2(d0, z);
d1 = shuf8x16(k_shuf, d1);
d2 = add64x2(d2, d0);
d4 = xor128(d4, z);
d4 = xor128(d4, d1);
z = fetch128(s + 160);
d5 = add64x2(d5, z);
d6 = shuf8x16(k_shuf, d6);
d8 = shuf8x16(k_shuf, d8);
d7 = xor128(d7, d5);
d0 = xor128(d0, z);
d0 = xor128(d0, d6);
swap128(&d2, &d8);
z = fetch128(s + 176);
d1 = add64x2(d1, z);
d2 = shuf8x16(k_shuf, d2);
d4 = shuf8x16(k_shuf, d4);
d5 = mul32x4(k_mult, d5);
d5 = xor128(d5, z);
d5 = xor128(d5, d2);
swap128(&d7, &d1);
z = fetch128(s + 192);
d6 = add64x2(d6, z);
d7 = shuf8x16(k_shuf, d7);
d0 = shuf8x16(k_shuf, d0);
d8 = add64x2(d8, d6);
d1 = xor128(d1, z);
d1 = xor128(d1, d7);
swap128(&d0, &d6);
z = fetch128(s + 208);
d2 = add64x2(d2, z);
d5 = shuf8x16(k_shuf, d5);
d4 = xor128(d4, d2);
d6 = xor128(d6, z);
d6 = xor128(d6, d9);
swap128(&d5, &d11);
z = fetch128(s + 224);
d7 = add64x2(d7, z);
d8 = shuf8x16(k_shuf, d8);
d1 = shuf8x16(k_shuf, d1);
d0 = xor128(d0, d7);
d2 = xor128(d2, z);
d2 = xor128(d2, d8);
swap128(&d10, &d4);
z = fetch128(s + 240);
d3 = add64x2(d3, z);
d4 = shuf8x16(k_shuf, d4);
d6 = shuf8x16(k_shuf, d6);
d7 = mul32x4(k_mult, d7);
d5 = add64x2(d5, d3);
d7 = xor128(d7, z);
d7 = xor128(d7, d4);
swap128(&d3, &d9);
s += 256;
} while (s != end);
d6 = add64x2(mul32x4(k_mult, d6), _mm_cvtsi64_si128(n));
if (n % 256 != 0) {
d7 = add64x2(_mm_shuffle_epi32(d8, (0 << 6) + (3 << 4) + (2 << 2) + (1 << 0)), d7);
d8 = add64x2(mul32x4(k_mult, d8), _mm_cvtsi64_si128(farmhash64_xo(s, n % 256)));
}
__m128i t[8];
d0 = mul32x4(k_mult, shuf8x16(k_shuf, mul32x4(k_mult, d0)));
d3 = mul32x4(k_mult, shuf8x16(k_shuf, mul32x4(k_mult, d3)));
d9 = mul32x4(k_mult, shuf8x16(k_shuf, mul32x4(k_mult, d9)));
d1 = mul32x4(k_mult, shuf8x16(k_shuf, mul32x4(k_mult, d1)));
d0 = add64x2(d11, d0);
d3 = xor128(d7, d3);
d9 = add64x2(d8, d9);
d1 = add64x2(d10, d1);
d4 = add64x2(d3, d4);
d5 = add64x2(d9, d5);
d6 = xor128(d1, d6);
d2 = add64x2(d0, d2);
t[0] = d0;
t[1] = d3;
t[2] = d9;
t[3] = d1;
t[4] = d4;
t[5] = d5;
t[6] = d6;
t[7] = d2;
return farmhash64_xo((const char*) t, sizeof(t));
}
uint64_t farmhash64_te(const char *s, size_t len) {
return len >= 512 ? farmhash64_te_long(s, len, k2, k1) : farmhash64_xo(s, len);
}
uint64_t farmhash64_te_with_seed(const char *s, size_t len, uint64_t seed) {
return len >= 512 ? farmhash64_te_long(s, len, k1, seed) :
farmhash64_xo_with_seed(s, len, seed);
}
uint64_t farmhash64_te_with_seeds(const char *s, size_t len, uint64_t seed0, uint64_t seed1) {
return len >= 512 ? farmhash64_te_long(s, len, seed0, seed1) :
farmhash64_xo_with_seeds(s, len, seed0, seed1);
}
#endif
#if x86_64 && CAN_USE_SSE41 && CAN_USE_SSSE3
uint32_t farmhash32_nt(const char *s, size_t len) {
return (uint32_t) farmhash64_te(s, len);
}
uint32_t farmhash32_nt_with_seed(const char *s, size_t len, uint32_t seed) {
return (uint32_t) farmhash64_te_with_seed(s, len, seed);
}
#endif
static inline uint32_t farmhash32_mk_len_13_to_24(const char *s, size_t len, uint32_t seed) {
uint32_t a = fetch32(s - 4 + (len >> 1));
uint32_t b = fetch32(s + 4);
uint32_t c = fetch32(s + len - 8);
uint32_t d = fetch32(s + (len >> 1));
uint32_t e = fetch32(s);
uint32_t f = fetch32(s + len - 4);
uint32_t h = d * c1 + len + seed;
a = ror32(a, 12) + f;
h = mur(c, h) + a;
a = ror32(a, 3) + c;
h = mur(e, h) + a;
a = ror32(a + f, 12) + d;
h = mur(b ^ seed, h) + a;
return fmix(h);
}
static inline uint32_t farmhash32_mk_len_0_to_4(const char *s, size_t len, uint32_t seed) {
uint32_t b = seed;
uint32_t c = 9;
size_t i;
for (i = 0; i < len; i++) {
signed char v = s[i];
b = b * c1 + v;
c ^= b;
}
return fmix(mur(b, mur(len, c)));
}
static inline uint32_t farmhash32_mk_len_5_to_12(const char *s, size_t len, uint32_t seed) {
uint32_t a = len, b = len * 5, c = 9, d = b + seed;
a += fetch32(s);
b += fetch32(s + len - 4);
c += fetch32(s + ((len >> 1) & 4));
return fmix(seed ^ mur(c, mur(b, mur(a, d))));
}
uint32_t farmhash32_mk(const char *s, size_t len) {
if (len <= 24) {
return len <= 12 ?
(len <= 4 ? farmhash32_mk_len_0_to_4(s, len, 0) : farmhash32_mk_len_5_to_12(s, len, 0)) :
farmhash32_mk_len_13_to_24(s, len, 0);
}
uint32_t h = len, g = c1 * len, f = g;
uint32_t a0 = ror32(fetch32(s + len - 4) * c1, 17) * c2;
uint32_t a1 = ror32(fetch32(s + len - 8) * c1, 17) * c2;
uint32_t a2 = ror32(fetch32(s + len - 16) * c1, 17) * c2;
uint32_t a3 = ror32(fetch32(s + len - 12) * c1, 17) * c2;
uint32_t a4 = ror32(fetch32(s + len - 20) * c1, 17) * c2;
h ^= a0;
h = ror32(h, 19);
h = h * 5 + 0xe6546b64;
h ^= a2;
h = ror32(h, 19);
h = h * 5 + 0xe6546b64;
g ^= a1;
g = ror32(g, 19);
g = g * 5 + 0xe6546b64;
g ^= a3;
g = ror32(g, 19);
g = g * 5 + 0xe6546b64;
f += a4;
f = ror32(f, 19) + 113;
size_t iters = (len - 1) / 20;
do {
uint32_t a = fetch32(s);
uint32_t b = fetch32(s + 4);
uint32_t c = fetch32(s + 8);
uint32_t d = fetch32(s + 12);
uint32_t e = fetch32(s + 16);
h += a;
g += b;
f += c;
h = mur(d, h) + e;
g = mur(c, g) + a;
f = mur(b + e * c1, f) + d;
f += g;
g += f;
s += 20;
} while (--iters != 0);
g = ror32(g, 11) * c1;
g = ror32(g, 17) * c1;
f = ror32(f, 11) * c1;
f = ror32(f, 17) * c1;
h = ror32(h + g, 19);
h = h * 5 + 0xe6546b64;
h = ror32(h, 17) * c1;
h = ror32(h + f, 19);
h = h * 5 + 0xe6546b64;
h = ror32(h, 17) * c1;
return h;
}
uint32_t farmhash32_mk_with_seed(const char *s, size_t len, uint32_t seed) {
if (len <= 24) {
if (len >= 13) return farmhash32_mk_len_13_to_24(s, len, seed * c1);
else if (len >= 5) return farmhash32_mk_len_5_to_12(s, len, seed);
else return farmhash32_mk_len_0_to_4(s, len, seed);
}
uint32_t h = farmhash32_mk_len_13_to_24(s, 24, seed ^ len);
return mur(farmhash32_mk(s + 24, len - 24) + seed, h);
}
#if CAN_USE_AESNI && CAN_USE_SSE42
uint32_t farmhash32_su(const char *s, size_t len) {
const uint32_t seed = 81;
if (len <= 24) {
return len <= 12 ?
(len <= 4 ?
farmhash32_mk_len_0_to_4(s, len, 0) :
farmhash32_mk_len_5_to_12(s, len, 0)) :
farmhash32_mk_len_13_to_24(s, len, 0);
}
if (len < 40) {
uint32_t a = len, b = seed * c2, c = a + b;
a += fetch32(s + len - 4);
b += fetch32(s + len - 20);
c += fetch32(s + len - 16);
uint32_t d = a;
a = ror32(a, 21);
a = mur(a, mur(b, _mm_crc32_u32(c, d)));
a += fetch32(s + len - 12);
b += fetch32(s + len - 8);
d += a;
a += d;
b = mur(b, d) * c2;
a = _mm_crc32_u32(a, b + c);
return farmhash32_mk_len_13_to_24(s, (len + 1) / 2, a) + b;
}
const __m128i cc1 = _mm_set1_epi32(c1);
const __m128i cc2 = _mm_set1_epi32(c2);
__m128i h = _mm_set1_epi32(seed);
__m128i g = _mm_set1_epi32(c1 * seed);
__m128i f = g;
__m128i k = _mm_set1_epi32(0xe6546b64);
__m128i q;
if (len < 80) {
__m128i a = fetch128(s);
__m128i b = fetch128(s + 16);
__m128i c = fetch128(s + (len - 15) / 2);
__m128i d = fetch128(s + len - 32);
__m128i e = fetch128(s + len - 16);
h = add32x4(h, a);
g = add32x4(g, b);
q = g;
g = shuf32x4_0_3_2_1(g);
f = add32x4(f, c);
__m128i be = add32x4(b, mul32x4(e, cc1));
h = add32x4(h, f);
f = add32x4(f, h);
h = add32x4(murk(d, h, cc1, cc2, k), e);
k = xor128(k, _mm_shuffle_epi8(g, f));
g = add32x4(xor128(c, g), a);
f = add32x4(xor128(be, f), d);
k = add32x4(k, be);
k = add32x4(k, _mm_shuffle_epi8(f, h));
f = add32x4(f, g);
g = add32x4(g, f);
g = add32x4(_mm_set1_epi32(len), mul32x4(g, cc1));
} else {
size_t iters = (len - 1) / 80;
len -= iters * 80;
#define CHUNK_AES() do { \
__m128i a = fetch128(s); \
__m128i b = fetch128(s + 16); \
__m128i c = fetch128(s + 32); \
__m128i d = fetch128(s + 48); \
__m128i e = fetch128(s + 64); \
h = add32x4(h, a); \
g = add32x4(g, b); \
g = shuf32x4_0_3_2_1(g); \
f = add32x4(f, c); \
__m128i be = add32x4(b, mul32x4(e, cc1)); \
h = add32x4(h, f); \
f = add32x4(f, h); \
h = add32x4(h, d); \
q = add32x4(q, e); \
h = rol32x4_17(h); \
h = mul32x4(h, cc1); \
k = xor128(k, _mm_shuffle_epi8(g, f)); \
g = add32x4(xor128(c, g), a); \
f = add32x4(xor128(be, f), d); \
swap128(&f, &q); \
q = _mm_aesimc_si128(q); \
k = add32x4(k, be); \
k = add32x4(k, _mm_shuffle_epi8(f, h)); \
f = add32x4(f, g); \
g = add32x4(g, f); \
f = mul32x4(f, cc1); \
} while (0)
q = g;
while (iters-- != 0) {
CHUNK_AES();
s += 80;
}
if (len != 0) {
h = add32x4(h, _mm_set1_epi32(len));
s = s + len - 80;
CHUNK_AES();
}
}
g = shuf32x4_0_3_2_1(g);
k = xor128(k, g);
k = xor128(k, q);
h = xor128(h, q);
f = mul32x4(f, cc1);
k = mul32x4(k, cc2);
g = mul32x4(g, cc1);
h = mul32x4(h, cc2);
k = add32x4(k, _mm_shuffle_epi8(g, f));
h = add32x4(h, f);
f = add32x4(f, h);
g = add32x4(g, k);
k = add32x4(k, g);
k = xor128(k, _mm_shuffle_epi8(f, h));
__m128i buf[4];
buf[0] = f;
buf[1] = g;
buf[2] = k;
buf[3] = h;
s = (char*) buf;
uint32_t x = fetch32(s);
uint32_t y = fetch32(s+4);
uint32_t z = fetch32(s+8);
x = _mm_crc32_u32(x, fetch32(s+12));
y = _mm_crc32_u32(y, fetch32(s+16));
z = _mm_crc32_u32(z * c1, fetch32(s+20));
x = _mm_crc32_u32(x, fetch32(s+24));
y = _mm_crc32_u32(y * c1, fetch32(s+28));
uint32_t o = y;
z = _mm_crc32_u32(z, fetch32(s+32));
x = _mm_crc32_u32(x * c1, fetch32(s+36));
y = _mm_crc32_u32(y, fetch32(s+40));
z = _mm_crc32_u32(z * c1, fetch32(s+44));
x = _mm_crc32_u32(x, fetch32(s+48));
y = _mm_crc32_u32(y * c1, fetch32(s+52));
z = _mm_crc32_u32(z, fetch32(s+56));
x = _mm_crc32_u32(x, fetch32(s+60));
return (o - x + y - z) * c1;
}
uint32_t farmhash32_su_with_seed(const char *s, size_t len, uint32_t seed) {
if (len <= 24) {
if (len >= 13) return farmhash32_mk_len_13_to_24(s, len, seed * c1);
else if (len >= 5) return farmhash32_mk_len_5_to_12(s, len, seed);
else return farmhash32_mk_len_0_to_4(s, len, seed);
}
uint32_t h = farmhash32_mk_len_13_to_24(s, 24, seed ^ len);
return _mm_crc32_u32(farmhash32_su(s + 24, len - 24) + seed, h);
}
#endif
#if CAN_USE_SSE41 && CAN_USE_SSE42
uint32_t farmhash32_sa(const char *s, size_t len) {
const uint32_t seed = 81;
if (len <= 24) {
return len <= 12 ?
(len <= 4 ?
farmhash32_mk_len_0_to_4(s, len, 0) :
farmhash32_mk_len_5_to_12(s, len, 0)) :
farmhash32_mk_len_13_to_24(s, len, 0);
}
if (len < 40) {
uint32_t a = len, b = seed * c2, c = a + b;
a += fetch32(s + len - 4);
b += fetch32(s + len - 20);
c += fetch32(s + len - 16);
uint32_t d = a;
a = ror32(a, 21);
a = mur(a, mur(b, mur(c, d)));
a += fetch32(s + len - 12);
b += fetch32(s + len - 8);
d += a;
a += d;
b = mur(b, d) * c2;
a = _mm_crc32_u32(a, b + c);
return farmhash32_mk_len_13_to_24(s, (len + 1) / 2, a) + b;
}
const __m128i cc1 = _mm_set1_epi32(c1);
const __m128i cc2 = _mm_set1_epi32(c2);
__m128i h = _mm_set1_epi32(seed);
__m128i g = _mm_set1_epi32(c1 * seed);
__m128i f = g;
__m128i k = _mm_set1_epi32(0xe6546b64);
if (len < 80) {
__m128i a = fetch128(s);
__m128i b = fetch128(s + 16);
__m128i c = fetch128(s + (len - 15) / 2);
__m128i d = fetch128(s + len - 32);
__m128i e = fetch128(s + len - 16);
h = add32x4(h, a);
g = add32x4(g, b);
g = shuf32x4_0_3_2_1(g);
f = add32x4(f, c);
__m128i be = add32x4(b, mul32x4(e, cc1));
h = add32x4(h, f);
f = add32x4(f, h);
h = add32x4(murk(d, h, cc1, cc2, k), e);
k = xor128(k, _mm_shuffle_epi8(g, f));
g = add32x4(xor128(c, g), a);
f = add32x4(xor128(be, f), d);
k = add32x4(k, be);
k = add32x4(k, _mm_shuffle_epi8(f, h));
f = add32x4(f, g);
g = add32x4(g, f);
g = add32x4(_mm_set1_epi32(len), mul32x4(g, cc1));
} else {
size_t iters = (len - 1) / 80;
len -= iters * 80;
#define CHUNK() do { \
__m128i a = fetch128(s); \
__m128i b = fetch128(s + 16); \
__m128i c = fetch128(s + 32); \
__m128i d = fetch128(s + 48); \
__m128i e = fetch128(s + 64); \
h = add32x4(h, a); \
g = add32x4(g, b); \
g = shuf32x4_0_3_2_1(g); \
f = add32x4(f, c); \
__m128i be = add32x4(b, mul32x4(e, cc1)); \
h = add32x4(h, f); \
f = add32x4(f, h); \
h = add32x4(murk(d, h, cc1, cc2, k), e); \
k = xor128(k, _mm_shuffle_epi8(g, f)); \
g = add32x4(xor128(c, g), a); \
f = add32x4(xor128(be, f), d); \
k = add32x4(k, be); \
k = add32x4(k, _mm_shuffle_epi8(f, h)); \
f = add32x4(f, g); \
g = add32x4(g, f); \
f = mul32x4(f, cc1); \
} while (0)
while (iters-- != 0) {
CHUNK();
s += 80;
}
if (len != 0) {
h = add32x4(h, _mm_set1_epi32(len));
s = s + len - 80;
CHUNK();
}
}
g = shuf32x4_0_3_2_1(g);
k = xor128(k, g);
f = mul32x4(f, cc1);
k = mul32x4(k, cc2);
g = mul32x4(g, cc1);
h = mul32x4(h, cc2);
k = add32x4(k, _mm_shuffle_epi8(g, f));
h = add32x4(h, f);
f = add32x4(f, h);
g = add32x4(g, k);
k = add32x4(k, g);
k = xor128(k, _mm_shuffle_epi8(f, h));
__m128i buf[4];
buf[0] = f;
buf[1] = g;
buf[2] = k;
buf[3] = h;
s = (char*) buf;
uint32_t x = fetch32(s);
uint32_t y = fetch32(s+4);
uint32_t z = fetch32(s+8);
x = _mm_crc32_u32(x, fetch32(s+12));
y = _mm_crc32_u32(y, fetch32(s+16));
z = _mm_crc32_u32(z * c1, fetch32(s+20));
x = _mm_crc32_u32(x, fetch32(s+24));
y = _mm_crc32_u32(y * c1, fetch32(s+28));
uint32_t o = y;
z = _mm_crc32_u32(z, fetch32(s+32));
x = _mm_crc32_u32(x * c1, fetch32(s+36));
y = _mm_crc32_u32(y, fetch32(s+40));
z = _mm_crc32_u32(z * c1, fetch32(s+44));
x = _mm_crc32_u32(x, fetch32(s+48));
y = _mm_crc32_u32(y * c1, fetch32(s+52));
z = _mm_crc32_u32(z, fetch32(s+56));
x = _mm_crc32_u32(x, fetch32(s+60));
return (o - x + y - z) * c1;
}
uint32_t farmhash32_sa_with_seed(const char *s, size_t len, uint32_t seed) {
if (len <= 24) {
if (len >= 13) return farmhash32_mk_len_13_to_24(s, len, seed * c1);
else if (len >= 5) return farmhash32_mk_len_5_to_12(s, len, seed);
else return farmhash32_mk_len_0_to_4(s, len, seed);
}
uint32_t h = farmhash32_mk_len_13_to_24(s, 24, seed ^ len);
return _mm_crc32_u32(farmhash32_sa(s + 24, len - 24) + seed, h);
}
#endif
static inline uint32_t farmhash32_cc_len_13_to_24(const char *s, size_t len) {
uint32_t a = fetch32(s - 4 + (len >> 1));
uint32_t b = fetch32(s + 4);
uint32_t c = fetch32(s + len - 8);
uint32_t d = fetch32(s + (len >> 1));
uint32_t e = fetch32(s);
uint32_t f = fetch32(s + len - 4);
uint32_t h = len;
return fmix(mur(f, mur(e, mur(d, mur(c, mur(b, mur(a, h)))))));
}
static inline uint32_t farmhash32_cc_len_0_to_4(const char *s, size_t len) {
uint32_t b = 0;
uint32_t c = 9;
size_t i;
for (i = 0; i < len; i++) {
signed char v = s[i];
b = b * c1 + v;
c ^= b;
}
return fmix(mur(b, mur(len, c)));
}
static inline uint32_t farmhash32_cc_len_5_to_12(const char *s, size_t len) {
uint32_t a = len, b = len * 5, c = 9, d = b;
a += fetch32(s);
b += fetch32(s + len - 4);
c += fetch32(s + ((len >> 1) & 4));
return fmix(mur(c, mur(b, mur(a, d))));
}
uint32_t farmhash32_cc(const char *s, size_t len) {
if (len <= 24) {
return len <= 12 ?
(len <= 4 ? farmhash32_cc_len_0_to_4(s, len) : farmhash32_cc_len_5_to_12(s, len)) :
farmhash32_cc_len_13_to_24(s, len);
}
uint32_t h = len, g = c1 * len, f = g;
uint32_t a0 = ror32(fetch32(s + len - 4) * c1, 17) * c2;
uint32_t a1 = ror32(fetch32(s + len - 8) * c1, 17) * c2;
uint32_t a2 = ror32(fetch32(s + len - 16) * c1, 17) * c2;
uint32_t a3 = ror32(fetch32(s + len - 12) * c1, 17) * c2;
uint32_t a4 = ror32(fetch32(s + len - 20) * c1, 17) * c2;
h ^= a0;
h = ror32(h, 19);
h = h * 5 + 0xe6546b64;
h ^= a2;
h = ror32(h, 19);
h = h * 5 + 0xe6546b64;
g ^= a1;
g = ror32(g, 19);
g = g * 5 + 0xe6546b64;
g ^= a3;
g = ror32(g, 19);
g = g * 5 + 0xe6546b64;
f += a4;
f = ror32(f, 19);
f = f * 5 + 0xe6546b64;
size_t iters = (len - 1) / 20;
do {
uint32_t a0 = ror32(fetch32(s) * c1, 17) * c2;
uint32_t a1 = fetch32(s + 4);
uint32_t a2 = ror32(fetch32(s + 8) * c1, 17) * c2;
uint32_t a3 = ror32(fetch32(s + 12) * c1, 17) * c2;
uint32_t a4 = fetch32(s + 16);
h ^= a0;
h = ror32(h, 18);
h = h * 5 + 0xe6546b64;
f += a1;
f = ror32(f, 19);
f = f * c1;
g += a2;
g = ror32(g, 18);
g = g * 5 + 0xe6546b64;
h ^= a3 + a1;
h = ror32(h, 19);
h = h * 5 + 0xe6546b64;
g ^= a4;
g = bswap32(g) * 5;
h += a4 * 5;
h = bswap32(h);
f += a0;
PERMUTE3(&f, &h, &g);
s += 20;
} while (--iters != 0);
g = ror32(g, 11) * c1;
g = ror32(g, 17) * c1;
f = ror32(f, 11) * c1;
f = ror32(f, 17) * c1;
h = ror32(h + g, 19);
h = h * 5 + 0xe6546b64;
h = ror32(h, 17) * c1;
h = ror32(h + f, 19);
h = h * 5 + 0xe6546b64;
h = ror32(h, 17) * c1;
return h;
}
uint32_t farmhash32_cc_with_seed(const char *s, size_t len, uint32_t seed) {
if (len <= 24) {
if (len >= 13) return farmhash32_mk_len_13_to_24(s, len, seed * c1);
else if (len >= 5) return farmhash32_mk_len_5_to_12(s, len, seed);
else return farmhash32_mk_len_0_to_4(s, len, seed);
}
uint32_t h = farmhash32_mk_len_13_to_24(s, 24, seed ^ len);
return mur(farmhash32_cc(s + 24, len - 24) + seed, h);
}
static inline uint64_t farmhash_cc_len_0_to_16(const char *s, size_t len) {
if (len >= 8) {
uint64_t mul = k2 + len * 2;
uint64_t a = fetch64(s) + k2;
uint64_t b = fetch64(s + len - 8);
uint64_t c = ror64(b, 37) * mul + a;
uint64_t d = (ror64(a, 25) + b) * mul;
return farmhash_len_16_mul(c, d, mul);
}
if (len >= 4) {
uint64_t mul = k2 + len * 2;
uint64_t a = fetch32(s);
return farmhash_len_16_mul(len + (a << 3), fetch32(s + len - 4), mul);
}
if (len > 0) {
uint8_t a = s[0];
uint8_t b = s[len >> 1];
uint8_t c = s[len - 1];
uint32_t y = ((uint32_t) a) + (((uint32_t) b) << 8);
uint32_t z = len + (((uint32_t) c) << 2);
return smix(y * k2 ^ z * k0) * k2;
}
return k2;
}
static inline uint128_c_t weak_farmhash_cc_len_32_with_seeds_vals(
uint64_t w, uint64_t x, uint64_t y, uint64_t z, uint64_t a, uint64_t b) {
a += w;
b = ror64(b + a + z, 21);
uint64_t c = a;
a += x;
a += y;
b += ror64(a, 44);
return make_uint128_c_t(a + z, b + c);
}
static inline uint128_c_t weak_farmhash_cc_len_32_with_seeds(
const char* s, uint64_t a, uint64_t b) {
return weak_farmhash_cc_len_32_with_seeds_vals(fetch64(s),
fetch64(s + 8),
fetch64(s + 16),
fetch64(s + 24),
a,
b);
}
static inline uint128_c_t farmhash_cc_city_murmur(const char *s, size_t len, uint128_c_t seed) {
uint64_t a = uint128_c_t_low64(seed);
uint64_t b = uint128_c_t_high64(seed);
uint64_t c = 0;
uint64_t d = 0;
signed long l = len - 16;
if (l <= 0) { a = smix(a * k1) * k1;
c = b * k1 + farmhash_cc_len_0_to_16(s, len);
d = smix(a + (len >= 8 ? fetch64(s) : c));
} else { c = farmhash_len_16(fetch64(s + len - 8) + k1, a);
d = farmhash_len_16(b + len, c + fetch64(s + len - 16));
a += d;
do {
a ^= smix(fetch64(s) * k1) * k1;
a *= k1;
b ^= a;
c ^= smix(fetch64(s + 8) * k1) * k1;
c *= k1;
d ^= c;
s += 16;
l -= 16;
} while (l > 0);
}
a = farmhash_len_16(a, c);
b = farmhash_len_16(d, b);
return make_uint128_c_t(a ^ b, farmhash_len_16(b, a));
}
uint128_c_t farmhash128_cc_city_with_seed(const char *s, size_t len, uint128_c_t seed) {
if (len < 128) {
return farmhash_cc_city_murmur(s, len, seed);
}
uint128_c_t v, w;
uint64_t x = uint128_c_t_low64(seed);
uint64_t y = uint128_c_t_high64(seed);
uint64_t z = len * k1;
size_t tail_done;
v.a = ror64(y ^ k1, 49) * k1 + fetch64(s);
v.b = ror64(v.a, 42) * k1 + fetch64(s + 8);
w.a = ror64(y + z, 35) * k1 + x;
w.b = ror64(x + fetch64(s + 88), 53) * k1;
do {
x = ror64(x + y + v.a + fetch64(s + 8), 37) * k1;
y = ror64(y + v.b + fetch64(s + 48), 42) * k1;
x ^= w.b;
y += v.a + fetch64(s + 40);
z = ror64(z + w.a, 33) * k1;
v = weak_farmhash_cc_len_32_with_seeds(s, v.b * k1, x + w.a);
w = weak_farmhash_cc_len_32_with_seeds(s + 32, z + w.b, y + fetch64(s + 16));
swap64(&z, &x);
s += 64;
x = ror64(x + y + v.a + fetch64(s + 8), 37) * k1;
y = ror64(y + v.b + fetch64(s + 48), 42) * k1;
x ^= w.b;
y += v.a + fetch64(s + 40);
z = ror64(z + w.a, 33) * k1;
v = weak_farmhash_cc_len_32_with_seeds(s, v.b * k1, x + w.a);
w = weak_farmhash_cc_len_32_with_seeds(s + 32, z + w.b, y + fetch64(s + 16));
swap64(&z, &x);
s += 64;
len -= 128;
} while (likely(len >= 128));
x += ror64(v.a + z, 49) * k0;
y = y * k0 + ror64(w.b, 37);
z = z * k0 + ror64(w.a, 27);
w.a *= 9;
v.a *= k0;
for (tail_done = 0; tail_done < len; ) {
tail_done += 32;
y = ror64(x + y, 42) * k0 + v.b;
w.a += fetch64(s + len - tail_done + 16);
x = x * k0 + w.a;
z += w.b + fetch64(s + len - tail_done);
w.b += v.a;
v = weak_farmhash_cc_len_32_with_seeds(s + len - tail_done, v.a + z, v.b);
v.a *= k0;
}
x = farmhash_len_16(x, v.a);
y = farmhash_len_16(y + z, w.a);
return make_uint128_c_t(farmhash_len_16(x + v.b, w.b) + y,
farmhash_len_16(x + w.b, y + v.b));
}
static inline uint128_c_t farmhash128_cc_city(const char *s, size_t len) {
return len >= 16 ?
farmhash128_cc_city_with_seed(s + 16, len - 16,
make_uint128_c_t(fetch64(s), fetch64(s + 8) + k0)) :
farmhash128_cc_city_with_seed(s, len, make_uint128_c_t(k0, k1));
}
uint128_c_t farmhash_cc_fingerprint128(const char* s, size_t len) {
return farmhash128_cc_city(s, len);
}
uint32_t farmhash32(const char* s, size_t len) {
return debug_tweak32(
#if CAN_USE_SSE41 && x86_64
farmhash32_nt(s, len)
#elif CAN_USE_SSE42 && CAN_USE_AESNI
farmhash32_su(s, len)
#elif CAN_USE_SSE41 && CAN_USE_SSE42
farmhash32_sa(s, len)
#else
farmhash32_mk(s, len)
#endif
);
}
uint32_t farmhash32_with_seed(const char* s, size_t len, uint32_t seed) {
return debug_tweak32(
#if CAN_USE_SSE41 && x86_64
farmhash32_nt_with_seed(s, len, seed)
#elif CAN_USE_SSE42 && CAN_USE_AESNI
farmhash32_su_with_seed(s, len, seed)
#elif CAN_USE_SSE41 && CAN_USE_SSE42
farmhash32_sa_with_seed(s, len, seed)
#else
farmhash32_mk_with_seed(s, len, seed)
#endif
);
}
uint64_t farmhash64(const char* s, size_t len) {
return debug_tweak64(
#if CAN_USE_SSE41 && CAN_USE_SSE42 && x86_64
farmhash64_te(s, len)
#else
farmhash64_xo(s, len)
#endif
);
}
size_t farmhash(const char* s, size_t len) {
return sizeof(size_t) == 8 ? farmhash64(s, len) : farmhash32(s, len);
}
uint64_t farmhash64_with_seed(const char* s, size_t len, uint64_t seed) {
return debug_tweak64(farmhash64_na_with_seed(s, len, seed));
}
uint64_t farmhash64_with_seeds(const char* s, size_t len, uint64_t seed0, uint64_t seed1) {
return debug_tweak64(farmhash64_na_with_seeds(s, len, seed0, seed1));
}
uint128_c_t farmhash128(const char* s, size_t len) {
return debug_tweak128(farmhash_cc_fingerprint128(s, len));
}
uint128_c_t farmhash128_with_seed(const char* s, size_t len, uint128_c_t seed) {
return debug_tweak128(farmhash128_cc_city_with_seed(s, len, seed));
}
uint32_t farmhash_fingerprint32(const char* s, size_t len) {
return farmhash32_mk(s, len);
}
uint64_t farmhash_fingerprint64(const char* s, size_t len) {
return farmhash64_na(s, len);
}
uint128_c_t farmhash_fingerprint128(const char* s, size_t len) {
return farmhash_cc_fingerprint128(s, len);
}