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
//! Implements `Hash`.

macro_rules! impl_hash {
    ($id:ident, $elem_ty:ident) => {
        impl hash::Hash for $id {
            #[inline]
            fn hash<H: hash::Hasher>(&self, state: &mut H) {
                union A {
                    data: [$elem_ty; $id::lanes()],
                    vec: $id
                }
                unsafe {
                    A { vec: *self }.data.hash(state)
                }
            }
        }
    }
}

#[cfg(test)]
#[macro_export]
macro_rules! test_hash {
    ($id:ident, $elem_ty:ident) => {
        #[test]
        fn hash() {
            use ::coresimd::simd::$id;
            use ::std::collections::hash_map::DefaultHasher;
            use ::std::hash::{Hash, Hasher};
            use ::std::{mem, clone};
            use clone::Clone;
            type A = [$elem_ty; $id::lanes()];
            let a: A = [42 as $elem_ty; $id::lanes()];
            assert!(mem::size_of::<A>() == mem::size_of::<$id>());
            let mut a_hash = DefaultHasher::new();
            let mut v_hash = a_hash.clone();
            a.hash(&mut a_hash);

            let v = $id::splat(42 as $elem_ty);
            v.hash(&mut v_hash);
            assert_eq!(a_hash.finish(), v_hash.finish());
        }
    }
}