blob: f9a7fa8d4175105031903fd34504d8f87e78009f [file] [log] [blame]
Alan Dingb7560882024-04-28 17:13:41 -07001/*
2 * Copyright 2024 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
19#include <cinttypes>
20#include <cstring>
21
22namespace android::ftl::details {
23
24// Based on CityHash64 v1.0.1 (http://code.google.com/p/cityhash/), but slightly
25// modernized and trimmed for cases with bounded lengths.
26
27template <typename T = std::uint64_t>
28inline T read_unaligned(const void* ptr) {
29 T v;
30 std::memcpy(&v, ptr, sizeof(T));
31 return v;
32}
33
34template <bool NonZeroShift = false>
35constexpr std::uint64_t rotate(std::uint64_t v, std::uint8_t shift) {
36 if constexpr (!NonZeroShift) {
37 if (shift == 0) return v;
38 }
39 return (v >> shift) | (v << (64 - shift));
40}
41
42constexpr std::uint64_t shift_mix(std::uint64_t v) {
43 return v ^ (v >> 47);
44}
45
46constexpr std::uint64_t hash_length_16(std::uint64_t u, std::uint64_t v) {
47 constexpr std::uint64_t kPrime = 0x9ddfea08eb382d69ull;
48 auto a = (u ^ v) * kPrime;
49 a ^= (a >> 47);
50 auto b = (v ^ a) * kPrime;
51 b ^= (b >> 47);
52 b *= kPrime;
53 return b;
54}
55
56constexpr std::uint64_t kPrime0 = 0xc3a5c85c97cb3127ull;
57constexpr std::uint64_t kPrime1 = 0xb492b66fbe98f273ull;
58constexpr std::uint64_t kPrime2 = 0x9ae16a3b2f90404full;
59constexpr std::uint64_t kPrime3 = 0xc949d7c7509e6557ull;
60
61inline std::uint64_t hash_length_0_to_16(const char* str, std::uint64_t length) {
62 if (length > 8) {
63 const auto a = read_unaligned(str);
64 const auto b = read_unaligned(str + length - 8);
65 return hash_length_16(a, rotate<true>(b + length, static_cast<std::uint8_t>(length))) ^ b;
66 }
67 if (length >= 4) {
68 const auto a = read_unaligned<std::uint32_t>(str);
69 const auto b = read_unaligned<std::uint32_t>(str + length - 4);
70 return hash_length_16(length + (a << 3), b);
71 }
72 if (length > 0) {
73 const auto a = static_cast<unsigned char>(str[0]);
74 const auto b = static_cast<unsigned char>(str[length >> 1]);
75 const auto c = static_cast<unsigned char>(str[length - 1]);
76 const auto y = static_cast<std::uint32_t>(a) + (static_cast<std::uint32_t>(b) << 8);
77 const auto z = static_cast<std::uint32_t>(length) + (static_cast<std::uint32_t>(c) << 2);
78 return shift_mix(y * kPrime2 ^ z * kPrime3) * kPrime2;
79 }
80 return kPrime2;
81}
82
83inline std::uint64_t hash_length_17_to_32(const char* str, std::uint64_t length) {
84 const auto a = read_unaligned(str) * kPrime1;
85 const auto b = read_unaligned(str + 8);
86 const auto c = read_unaligned(str + length - 8) * kPrime2;
87 const auto d = read_unaligned(str + length - 16) * kPrime0;
88 return hash_length_16(rotate(a - b, 43) + rotate(c, 30) + d,
89 a + rotate(b ^ kPrime3, 20) - c + length);
90}
91
92inline std::uint64_t hash_length_33_to_64(const char* str, std::uint64_t length) {
93 auto z = read_unaligned(str + 24);
94 auto a = read_unaligned(str) + (length + read_unaligned(str + length - 16)) * kPrime0;
95 auto b = rotate(a + z, 52);
96 auto c = rotate(a, 37);
97
98 a += read_unaligned(str + 8);
99 c += rotate(a, 7);
100 a += read_unaligned(str + 16);
101
102 const auto vf = a + z;
103 const auto vs = b + rotate(a, 31) + c;
104
105 a = read_unaligned(str + 16) + read_unaligned(str + length - 32);
106 z += read_unaligned(str + length - 8);
107 b = rotate(a + z, 52);
108 c = rotate(a, 37);
109 a += read_unaligned(str + length - 24);
110 c += rotate(a, 7);
111 a += read_unaligned(str + length - 16);
112
113 const auto wf = a + z;
114 const auto ws = b + rotate(a, 31) + c;
115 const auto r = shift_mix((vf + ws) * kPrime2 + (wf + vs) * kPrime0);
116 return shift_mix(r * kPrime0 + vs) * kPrime2;
117}
118
119} // namespace android::ftl::details