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
//! Lane-wise vector comparisons returning vector masks.
#![allow(unused)]

macro_rules! impl_cmp {
    ($id:ident, $bool_ty:ident) => {
        impl $id {
            /// Lane-wise equality comparison.
            #[inline]
            pub fn eq(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_eq;
                unsafe { simd_eq(self, other) }
            }

            /// Lane-wise inequality comparison.
            #[inline]
            pub fn ne(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_ne;
                unsafe { simd_ne(self, other) }
            }

            /// Lane-wise less-than comparison.
            #[inline]
            pub fn lt(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_lt;
                unsafe { simd_lt(self, other) }
            }

            /// Lane-wise less-than-or-equals comparison.
            #[inline]
            pub fn le(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_le;
                unsafe { simd_le(self, other) }
            }

            /// Lane-wise greater-than comparison.
            #[inline]
            pub fn gt(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_gt;
                unsafe { simd_gt(self, other) }
            }

            /// Lane-wise greater-than-or-equals comparison.
            #[inline]
            pub fn ge(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_ge;
                unsafe { simd_ge(self, other) }
            }
        }
    };
}

macro_rules! impl_mask_cmp {
    ($id:ident, $bool_ty:ident) => {
        impl $id {
            /// Lane-wise equality comparison.
            #[inline]
            pub fn eq(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_eq;
                unsafe { simd_eq(self, other) }
            }

            /// Lane-wise inequality comparison.
            #[inline]
            pub fn ne(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_ne;
                unsafe { simd_ne(self, other) }
            }

            /// Lane-wise less-than comparison.
            #[inline]
            pub fn lt(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_gt;
                unsafe { simd_gt(self, other) }
            }

            /// Lane-wise less-than-or-equals comparison.
            #[inline]
            pub fn le(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_ge;
                unsafe { simd_ge(self, other) }
            }

            /// Lane-wise greater-than comparison.
            #[inline]
            pub fn gt(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_lt;
                unsafe { simd_lt(self, other) }
            }

            /// Lane-wise greater-than-or-equals comparison.
            #[inline]
            pub fn ge(self, other: $id) -> $bool_ty {
                use coresimd::simd_llvm::simd_le;
                unsafe { simd_le(self, other) }
            }
        }
    };
}

#[cfg(test)]
macro_rules! test_cmp {
    ($id:ident, $elem_ty:ident, $bool_ty:ident, $true:expr, $false:expr) => {
        #[test]
        fn cmp() {
            use coresimd::simd::*;

            let a = $id::splat($false);
            let b = $id::splat($true);

            let r = a.lt(b);
            let e = $bool_ty::splat(true);
            assert!(r == e);
            let r = a.le(b);
            assert!(r == e);

            let e = $bool_ty::splat(false);
            let r = a.gt(b);
            assert!(r == e);
            let r = a.ge(b);
            assert!(r == e);
            let r = a.eq(b);
            assert!(r == e);

            let mut a = a;
            let mut b = b;
            let mut e = e;
            for i in 0..$id::lanes() {
                if i % 2 == 0 {
                    a = a.replace(i, $false);
                    b = b.replace(i, $true);
                    e = e.replace(i, true);
                } else {
                    a = a.replace(i, $true);
                    b = b.replace(i, $false);
                    e = e.replace(i, false);
                }
            }
            let r = a.lt(b);
            assert!(r == e);
        }
    };
}