aboutsummaryrefslogtreecommitdiff
path: root/std/hash/crc.zig
blob: f88069ce3ce138d736f4c812a7fca3e57f5f5f3b (plain)
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
// There are two implementations of CRC32 implemented with the following key characteristics:
//
// - Crc32WithPoly uses 8Kb of tables but is ~10x faster than the small method.
//
// - Crc32SmallWithPoly uses only 64 bytes of memory but is slower. Be aware that this is
//   still moderately fast just slow relative to the slicing approach.

const std = @import("../index.zig");
const debug = std.debug;

pub const Polynomial = struct {
    const IEEE       = 0xedb88320;
    const Castagnoli = 0x82f63b78;
    const Koopman    = 0xeb31d82e;
};

// IEEE is by far the most common CRC and so is aliased by default.
pub const Crc32 = Crc32WithPoly(Polynomial.IEEE);

// slicing-by-8 crc32 implementation.
pub fn Crc32WithPoly(comptime poly: u32) type {
    return struct {
        const Self = this;
        const lookup_tables = comptime block: {
            @setEvalBranchQuota(20000);
            var tables: [8][256]u32 = undefined;

            for (tables[0]) |*e, i| {
                var crc = u32(i);
                var j: usize = 0; while (j < 8) : (j += 1) {
                    if (crc & 1 == 1) {
                        crc = (crc >> 1) ^ poly;
                    } else {
                        crc = (crc >> 1);
                    }
                }
                *e = crc;
            }

            var i: usize = 0;
            while (i < 256) : (i += 1) {
                var crc = tables[0][i];
                var j: usize = 1; while (j < 8) : (j += 1) {
                    const index = @truncate(u8, crc);
                    crc = tables[0][index] ^ (crc >> 8);
                    tables[j][i] = crc;
                }
            }

            break :block tables;
        };

        crc: u32,

        pub fn init() Self {
            return Self {
                .crc = 0xffffffff,
            };
        }

        pub fn update(self: &Self, input: []const u8) void {
            var i: usize = 0;
            while (i + 8 <= input.len) : (i += 8) {
                const p = input[i..i+8];

                // Unrolling this way gives ~50Mb/s increase
                self.crc ^= (u32(p[0]) <<  0);
                self.crc ^= (u32(p[1]) <<  8);
                self.crc ^= (u32(p[2]) << 16);
                self.crc ^= (u32(p[3]) << 24);

                self.crc =
                    lookup_tables[0][p[7]] ^
                    lookup_tables[1][p[6]] ^
                    lookup_tables[2][p[5]] ^
                    lookup_tables[3][p[4]] ^
                    lookup_tables[4][@truncate(u8, self.crc >> 24)] ^
                    lookup_tables[5][@truncate(u8, self.crc >> 16)] ^
                    lookup_tables[6][@truncate(u8, self.crc >>  8)] ^
                    lookup_tables[7][@truncate(u8, self.crc >>  0)];
            }

            while (i < input.len) : (i += 1) {
                const index = @truncate(u8, self.crc) ^ input[i];
                self.crc = (self.crc >> 8) ^ lookup_tables[0][index];
            }
        }

        pub fn final(self: &Self) u32 {
            return ~self.crc;
        }

        pub fn hash(input: []const u8) u32 {
            var c = Self.init();
            c.update(input);
            return c.final();
        }
    };
}

test "crc32 ieee" {
    const Crc32Ieee = Crc32WithPoly(Polynomial.IEEE);

    debug.assert(Crc32Ieee.hash("") == 0x00000000);
    debug.assert(Crc32Ieee.hash("a") == 0xe8b7be43);
    debug.assert(Crc32Ieee.hash("abc") == 0x352441c2);
}

test "crc32 castagnoli" {
    const Crc32Castagnoli = Crc32WithPoly(Polynomial.Castagnoli);

    debug.assert(Crc32Castagnoli.hash("") == 0x00000000);
    debug.assert(Crc32Castagnoli.hash("a") == 0xc1d04330);
    debug.assert(Crc32Castagnoli.hash("abc") == 0x364b3fb7);
}

// half-byte lookup table implementation.
pub fn Crc32SmallWithPoly(comptime poly: u32) type {
    return struct {
        const Self = this;
        const lookup_table = comptime block: {
            var table: [16]u32 = undefined;

            for (table) |*e, i| {
                var crc = u32(i * 16);
                var j: usize = 0; while (j < 8) : (j += 1) {
                    if (crc & 1 == 1) {
                        crc = (crc >> 1) ^ poly;
                    } else {
                        crc = (crc >> 1);
                    }
                }
                *e = crc;
            }

            break :block table;
        };

        crc: u32,

        pub fn init() Self {
            return Self {
                .crc = 0xffffffff,
            };
        }

        pub fn update(self: &Self, input: []const u8) void {
            for (input) |b| {
                self.crc = lookup_table[@truncate(u4, self.crc ^ (b >> 0))] ^ (self.crc >> 4);
                self.crc = lookup_table[@truncate(u4, self.crc ^ (b >> 4))] ^ (self.crc >> 4);
            }
        }

        pub fn final(self: &Self) u32 {
            return ~self.crc;
        }

        pub fn hash(input: []const u8) u32 {
            var c = Self.init();
            c.update(input);
            return c.final();
        }
    };
}

test "small crc32 ieee" {
    const Crc32Ieee = Crc32SmallWithPoly(Polynomial.IEEE);

    debug.assert(Crc32Ieee.hash("") == 0x00000000);
    debug.assert(Crc32Ieee.hash("a") == 0xe8b7be43);
    debug.assert(Crc32Ieee.hash("abc") == 0x352441c2);
}

test "small crc32 castagnoli" {
    const Crc32Castagnoli = Crc32SmallWithPoly(Polynomial.Castagnoli);

    debug.assert(Crc32Castagnoli.hash("") == 0x00000000);
    debug.assert(Crc32Castagnoli.hash("a") == 0xc1d04330);
    debug.assert(Crc32Castagnoli.hash("abc") == 0x364b3fb7);
}