aboutsummaryrefslogtreecommitdiff
path: root/src/Spv.Generator/DeterministicHashCode.cs
blob: ee7ad1de025d8e7cf69032ab69d874fbf7e4ab6b (plain) (blame)
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
using System;
using System.Numerics;
using System.Runtime.CompilerServices;

namespace Spv.Generator
{
    /// <summary>
    /// Similar to System.HashCode, but without introducing random values.
    /// The same primes and shifts are used.
    /// </summary>
    internal static class DeterministicHashCode
    {
        private const uint Prime1 = 2654435761U;
        private const uint Prime2 = 2246822519U;
        private const uint Prime3 = 3266489917U;
        private const uint Prime4 = 668265263U;

        public static int GetHashCode(string value)
        {
            uint hash = (uint)value.Length + Prime1;

            for (int i = 0; i < value.Length; i++)
            {
                hash += (hash << 7) ^ value[i];
            }

            return (int)MixFinal(hash);
        }

        public static int Combine<T>(ReadOnlySpan<T> values)
        {
            uint hashCode = Prime2;
            hashCode += 4 * (uint)values.Length;

            foreach (T value in values)
            {
                uint hc = (uint)(value?.GetHashCode() ?? 0);
                hashCode = MixStep(hashCode, hc);
            }

            return (int)MixFinal(hashCode);
        }

        public static int Combine<T1, T2>(T1 value1, T2 value2)
        {
            uint hc1 = (uint)(value1?.GetHashCode() ?? 0);
            uint hc2 = (uint)(value2?.GetHashCode() ?? 0);

            uint hash = Prime2;
            hash += 8;

            hash = MixStep(hash, hc1);
            hash = MixStep(hash, hc2);

            return (int)MixFinal(hash);
        }

        public static int Combine<T1, T2, T3>(T1 value1, T2 value2, T3 value3)
        {
            uint hc1 = (uint)(value1?.GetHashCode() ?? 0);
            uint hc2 = (uint)(value2?.GetHashCode() ?? 0);
            uint hc3 = (uint)(value3?.GetHashCode() ?? 0);

            uint hash = Prime2;
            hash += 12;

            hash = MixStep(hash, hc1);
            hash = MixStep(hash, hc2);
            hash = MixStep(hash, hc3);

            return (int)MixFinal(hash);
        }

        public static int Combine<T1, T2, T3, T4>(T1 value1, T2 value2, T3 value3, T4 value4)
        {
            uint hc1 = (uint)(value1?.GetHashCode() ?? 0);
            uint hc2 = (uint)(value2?.GetHashCode() ?? 0);
            uint hc3 = (uint)(value3?.GetHashCode() ?? 0);
            uint hc4 = (uint)(value4?.GetHashCode() ?? 0);

            uint hash = Prime2;
            hash += 16;

            hash = MixStep(hash, hc1);
            hash = MixStep(hash, hc2);
            hash = MixStep(hash, hc3);
            hash = MixStep(hash, hc4);

            return (int)MixFinal(hash);
        }

        [MethodImpl(MethodImplOptions.AggressiveInlining)]
        private static uint MixStep(uint hashCode, uint mixValue)
        {
            return BitOperations.RotateLeft(hashCode + mixValue * Prime3, 17) * Prime4;
        }

        [MethodImpl(MethodImplOptions.AggressiveInlining)]
        private static uint MixFinal(uint hash)
        {
            hash ^= hash >> 15;
            hash *= Prime2;
            hash ^= hash >> 13;
            hash *= Prime3;
            hash ^= hash >> 16;
            return hash;
        }
    }
}