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
//! Implements portable horizontal mask reductions.

macro_rules! impl_reduction_mask {
    ([$elem_ty:ident; $elem_count:expr]: $id:ident | $test_tt:tt) => {
        impl $id {
            /// Are `all` vector lanes `true`?
            #[inline]
            pub fn all(self) -> bool {
                unsafe { crate::codegen::reductions::mask::All::all(self) }
            }
            /// Is `any` vector lane `true`?
            #[inline]
            pub fn any(self) -> bool {
                unsafe { crate::codegen::reductions::mask::Any::any(self) }
            }
            /// Are `all` vector lanes `false`?
            #[inline]
            pub fn none(self) -> bool {
                !self.any()
            }
        }

        test_if! {
            $test_tt:
            paste::item! {
                pub mod [<$id _reduction>] {
                    use super::*;
                    #[cfg_attr(not(target_arch = "wasm32"), test)]
                    #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
                    fn all() {
                        let a = $id::splat(true);
                        assert!(a.all());
                        let a = $id::splat(false);
                        assert!(!a.all());

                        if $id::lanes() > 1 {
                            for i in 0..$id::lanes() {
                                let mut a = $id::splat(true);
                                a = a.replace(i, false);
                                assert!(!a.all());
                                let mut a = $id::splat(false);
                                a = a.replace(i, true);
                                assert!(!a.all());
                            }
                        }
                    }
                    #[cfg_attr(not(target_arch = "wasm32"), test)]
                    #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
                    fn any() {
                        let a = $id::splat(true);
                        assert!(a.any());
                        let a = $id::splat(false);
                        assert!(!a.any());

                        if $id::lanes() > 1 {
                            for i in 0..$id::lanes() {
                                let mut a = $id::splat(true);
                                a = a.replace(i, false);
                                assert!(a.any());
                                let mut a = $id::splat(false);
                                a = a.replace(i, true);
                                assert!(a.any());
                            }
                        }
                    }
                    #[cfg_attr(not(target_arch = "wasm32"), test)]
                    #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)]
                    fn none() {
                        let a = $id::splat(true);
                        assert!(!a.none());
                        let a = $id::splat(false);
                        assert!(a.none());

                        if $id::lanes() > 1 {
                            for i in 0..$id::lanes() {
                                let mut a = $id::splat(true);
                                a = a.replace(i, false);
                                assert!(!a.none());
                                let mut a = $id::splat(false);
                                a = a.replace(i, true);
                                assert!(!a.none());
                            }
                        }
                    }
                }
            }
        }
    };
}