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
181
182
183
184
#[cfg(not(feature = "fake-simd"))]
#[cfg_attr(any(target_arch = "x86", target_arch = "x86_64"), path = "x86.rs")]
#[cfg_attr(all(target_arch = "aarch64", feature = "pmull"), path = "aarch64.rs")]
mod arch;
#[cfg(feature = "fake-simd")]
mod arch;
use self::arch::Simd;
use super::table;
use std::{
fmt::Debug,
ops::{BitXor, BitXorAssign},
};
trait SimdExt: Copy + Debug + BitXor {
fn is_supported() -> bool;
unsafe fn new(high: u64, low: u64) -> Self;
unsafe fn fold_16(self, coeff: Self) -> Self;
unsafe fn fold_8(self, coeff: u64) -> Self;
unsafe fn barrett(self, poly: u64, mu: u64) -> u64;
}
impl PartialEq for Simd {
fn eq(&self, other: &Self) -> bool {
unsafe {
use std::mem::transmute;
let a: u128 = transmute(*self);
let b: u128 = transmute(*other);
a == b
}
}
}
impl Eq for Simd {}
impl BitXorAssign for Simd {
fn bitxor_assign(&mut self, other: Self) {
*self = *self ^ other;
}
}
pub fn get_update() -> super::UpdateFn {
if Simd::is_supported() {
update
} else {
table::update
}
}
fn update(mut state: u64, bytes: &[u8]) -> u64 {
let (left, middle, right) = unsafe { bytes.align_to::<[Simd; 8]>() };
if let Some((first, rest)) = middle.split_first() {
state = table::update(state, left);
state = unsafe { update_simd(state, first, rest) };
table::update(state, right)
} else {
table::update(state, bytes)
}
}
#[cfg_attr(
any(target_arch = "x86", target_arch = "x86_64"),
target_feature(enable = "pclmulqdq", enable = "sse2", enable = "sse4.1")
)]
#[cfg_attr(
all(target_arch = "aarch64", feature = "pmull"),
target_feature(enable = "crypto", enable = "neon")
)]
unsafe fn update_simd(state: u64, first: &[Simd; 8], rest: &[[Simd; 8]]) -> u64 {
let mut x = *first;
x[0] ^= Simd::new(0, state);
let coeff = Simd::new(table::K_1023, table::K_1087);
for chunk in rest {
for (xi, yi) in x.iter_mut().zip(chunk.iter()) {
*xi = *yi ^ xi.fold_16(coeff);
}
}
let coeffs = [
Simd::new(table::K_895, table::K_959),
Simd::new(table::K_767, table::K_831),
Simd::new(table::K_639, table::K_703),
Simd::new(table::K_511, table::K_575),
Simd::new(table::K_383, table::K_447),
Simd::new(table::K_255, table::K_319),
Simd::new(table::K_127, table::K_191),
];
x.iter()
.zip(&coeffs)
.fold(x[7], |acc, (m, c)| acc ^ m.fold_16(*c))
.fold_8(table::K_127)
.barrett(table::POLY, table::MU)
}
#[test]
fn test_size_and_alignment() {
assert_eq!(std::mem::size_of::<Simd>(), 16);
assert_eq!(std::mem::align_of::<Simd>(), 16);
}
#[test]
fn test_new() {
unsafe {
let x = Simd::new(0xd7c8_11cf_e5c5_c792, 0x86e6_5c36_e68b_4804);
let y = Simd::new(0xd7c8_11cf_e5c5_c792, 0x86e6_5c36_e68b_4804);
let z = Simd::new(0xfa3e_0099_cd5e_d60d, 0xad71_9ee6_57d1_498e);
assert_eq!(x, y);
assert_ne!(x, z);
}
}
#[test]
fn test_xor() {
unsafe {
let x = Simd::new(0xe450_87f9_b031_0d47, 0x3d72_e92a_96c7_4c63);
let y = Simd::new(0x7ed8_ae0a_dfbd_89c0, 0x1c9b_dfaa_953e_0ef4);
let mut z = x ^ y;
assert_eq!(z, Simd::new(0x9a88_29f3_6f8c_8487, 0x21e9_3680_03f9_4297));
z ^= Simd::new(0x57a2_0f44_c005_b2ea, 0x7056_bde9_9303_aa51);
assert_eq!(z, Simd::new(0xcd2a_26b7_af89_366d, 0x51bf_8b69_90fa_e8c6));
}
}
#[test]
fn test_fold_16() {
unsafe {
let x = Simd::new(0xb5f1_2590_5645_0b6c, 0x333a_2c49_c361_9e21);
let f = x.fold_16(Simd::new(0xbecc_9dd9_038f_c366, 0x5ba9_365b_e2e9_5bf5));
assert_eq!(f, Simd::new(0x4f55_42df_ef35_1810, 0x0c03_5bd6_70fc_5abd));
}
}
#[test]
fn test_fold_8() {
unsafe {
let x = Simd::new(0x60c0_b48f_4a92_2003, 0x203c_f7bc_ad34_103b);
let f = x.fold_8(0x3e90_3688_ea71_f472);
assert_eq!(f, Simd::new(0x07d7_2761_4d16_56db, 0x2bc0_ed8a_a341_7665));
}
}
#[test]
fn test_barrett() {
unsafe {
let x = Simd::new(0x2606_e582_3406_9bae, 0x76cc_1105_0fef_6d68);
let b = x.barrett(0x435d_0f79_19a6_1445, 0x5817_6272_f8fa_b8d5);
assert_eq!(b, 0x5e4d_0253_942a_d95d);
}
}