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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
//! Implements the load/store API.
#![allow(unused)]

macro_rules! impl_load_store {
    ($id:ident, $elem_ty:ident, $elem_count:expr) => {
        impl $id {
            /// Writes the values of the vector to the `slice`.
            ///
            /// # Panics
            ///
            /// If `slice.len() < Self::lanes()` or `&slice[0]` is not
            /// aligned to an `align_of::<Self>()` boundary.
            #[inline]
            pub fn store_aligned(self, slice: &mut [$elem_ty]) {
                unsafe {
                    assert!(slice.len() >= $elem_count);
                    let target_ptr =
                        slice.get_unchecked_mut(0) as *mut $elem_ty;
                    assert!(
                        target_ptr.align_offset(::mem::align_of::<Self>())
                            == 0
                    );
                    self.store_aligned_unchecked(slice);
                }
            }

            /// Writes the values of the vector to the `slice`.
            ///
            /// # Panics
            ///
            /// If `slice.len() < Self::lanes()`.
            #[inline]
            pub fn store_unaligned(self, slice: &mut [$elem_ty]) {
                unsafe {
                    assert!(slice.len() >= $elem_count);
                    self.store_unaligned_unchecked(slice);
                }
            }

            /// Writes the values of the vector to the `slice`.
            ///
            /// # Precondition
            ///
            /// If `slice.len() < Self::lanes()` or `&slice[0]` is not
            /// aligned to an `align_of::<Self>()` boundary, the behavior is
            /// undefined.
            #[inline]
            pub unsafe fn store_aligned_unchecked(
                self, slice: &mut [$elem_ty]
            ) {
                *(slice.get_unchecked_mut(0) as *mut $elem_ty as *mut Self) =
                    self;
            }

            /// Writes the values of the vector to the `slice`.
            ///
            /// # Precondition
            ///
            /// If `slice.len() < Self::lanes()` the behavior is undefined.
            #[inline]
            pub unsafe fn store_unaligned_unchecked(
                self, slice: &mut [$elem_ty]
            ) {
                let target_ptr =
                    slice.get_unchecked_mut(0) as *mut $elem_ty as *mut u8;
                let self_ptr = &self as *const Self as *const u8;
                ::ptr::copy_nonoverlapping(
                    self_ptr,
                    target_ptr,
                    ::mem::size_of::<Self>(),
                );
            }

            /// Instantiates a new vector with the values of the `slice`.
            ///
            /// # Panics
            ///
            /// If `slice.len() < Self::lanes()` or `&slice[0]` is not aligned
            /// to an `align_of::<Self>()` boundary.
            #[inline]
            pub fn load_aligned(slice: &[$elem_ty]) -> Self {
                unsafe {
                    assert!(slice.len() >= $elem_count);
                    let target_ptr = slice.get_unchecked(0) as *const $elem_ty;
                    assert!(
                        target_ptr.align_offset(::mem::align_of::<Self>())
                            == 0
                    );
                    Self::load_aligned_unchecked(slice)
                }
            }

            /// Instantiates a new vector with the values of the `slice`.
            ///
            /// # Panics
            ///
            /// If `slice.len() < Self::lanes()`.
            #[inline]
            pub fn load_unaligned(slice: &[$elem_ty]) -> Self {
                unsafe {
                    assert!(slice.len() >= $elem_count);
                    Self::load_unaligned_unchecked(slice)
                }
            }

            /// Instantiates a new vector with the values of the `slice`.
            ///
            /// # Precondition
            ///
            /// If `slice.len() < Self::lanes()` or `&slice[0]` is not aligned
            /// to an `align_of::<Self>()` boundary, the behavior is undefined.
            #[inline]
            pub unsafe fn load_aligned_unchecked(slice: &[$elem_ty]) -> Self {
                *(slice.get_unchecked(0) as *const $elem_ty as *const Self)
            }

            /// Instantiates a new vector with the values of the `slice`.
            ///
            /// # Precondition
            ///
            /// If `slice.len() < Self::lanes()` the behavior is undefined.
            #[inline]
            pub unsafe fn load_unaligned_unchecked(
                slice: &[$elem_ty]
            ) -> Self {
                use mem::size_of;
                let target_ptr =
                    slice.get_unchecked(0) as *const $elem_ty as *const u8;
                let mut x = Self::splat(0 as $elem_ty);
                let self_ptr = &mut x as *mut Self as *mut u8;
                ::ptr::copy_nonoverlapping(
                    target_ptr,
                    self_ptr,
                    size_of::<Self>(),
                );
                x
            }
        }
    };
}

#[cfg(test)]
macro_rules! test_load_store {
    ($id:ident, $elem_ty:ident) => {
        #[test]
        fn store_unaligned() {
            use coresimd::simd::$id;
            use std::iter::Iterator;
            let mut unaligned = [0 as $elem_ty; $id::lanes() + 1];
            let vec = $id::splat(42 as $elem_ty);
            vec.store_unaligned(&mut unaligned[1..]);
            for (index, &b) in unaligned.iter().enumerate() {
                if index == 0 {
                    assert_eq!(b, 0 as $elem_ty);
                } else {
                    assert_eq!(b, vec.extract(index - 1));
                }
            }
        }

        #[test]
        #[should_panic]
        fn store_unaligned_fail() {
            use coresimd::simd::$id;
            let mut unaligned = [0 as $elem_ty; $id::lanes() + 1];
            let vec = $id::splat(42 as $elem_ty);
            vec.store_unaligned(&mut unaligned[2..]);
        }

        #[test]
        fn load_unaligned() {
            use coresimd::simd::$id;
            use std::iter::Iterator;
            let mut unaligned = [42 as $elem_ty; $id::lanes() + 1];
            unaligned[0] = 0 as $elem_ty;
            let vec = $id::load_unaligned(&unaligned[1..]);
            for (index, &b) in unaligned.iter().enumerate() {
                if index == 0 {
                    assert_eq!(b, 0 as $elem_ty);
                } else {
                    assert_eq!(b, vec.extract(index - 1));
                }
            }
        }

        #[test]
        #[should_panic]
        fn load_unaligned_fail() {
            use coresimd::simd::$id;
            let mut unaligned = [42 as $elem_ty; $id::lanes() + 1];
            unaligned[0] = 0 as $elem_ty;
            let _vec = $id::load_unaligned(&unaligned[2..]);
        }

        union A {
            data: [$elem_ty; 2 * ::coresimd::simd::$id::lanes()],
            _vec: ::coresimd::simd::$id,
        }

        #[test]
        fn store_aligned() {
            use coresimd::simd::$id;
            use std::iter::Iterator;
            let mut aligned = A {
                data: [0 as $elem_ty; 2 * $id::lanes()],
            };
            let vec = $id::splat(42 as $elem_ty);
            unsafe { vec.store_aligned(&mut aligned.data[$id::lanes()..]) };
            for (index, &b) in unsafe { aligned.data.iter().enumerate() } {
                if index < $id::lanes() {
                    assert_eq!(b, 0 as $elem_ty);
                } else {
                    assert_eq!(b, vec.extract(index - $id::lanes()));
                }
            }
        }

        #[test]
        #[should_panic]
        fn store_aligned_fail_lanes() {
            use coresimd::simd::$id;
            let mut aligned = A {
                data: [0 as $elem_ty; 2 * $id::lanes()],
            };
            let vec = $id::splat(42 as $elem_ty);
            unsafe {
                vec.store_aligned(&mut aligned.data[2 * $id::lanes()..])
            };
        }

        #[test]
        #[should_panic]
        fn store_aligned_fail_align() {
            unsafe {
                use coresimd::simd::$id;
                use std::{mem, slice};
                let mut aligned = A {
                    data: [0 as $elem_ty; 2 * $id::lanes()],
                };
                // offset the aligned data by one byte:
                let s: &mut [u8; 2 * $id::lanes()
                                * mem::size_of::<$elem_ty>()] =
                    mem::transmute(&mut aligned.data);
                let s: &mut [$elem_ty] = slice::from_raw_parts_mut(
                    s.get_unchecked_mut(1) as *mut u8 as *mut $elem_ty,
                    $id::lanes(),
                );
                let vec = $id::splat(42 as $elem_ty);
                vec.store_aligned(s);
            }
        }

        #[test]
        fn load_aligned() {
            use coresimd::simd::$id;
            use std::iter::Iterator;
            let mut aligned = A {
                data: [0 as $elem_ty; 2 * $id::lanes()],
            };
            for i in $id::lanes()..(2 * $id::lanes()) {
                unsafe {
                    aligned.data[i] = 42 as $elem_ty;
                }
            }

            let vec =
                unsafe { $id::load_aligned(&aligned.data[$id::lanes()..]) };
            for (index, &b) in unsafe { aligned.data.iter().enumerate() } {
                if index < $id::lanes() {
                    assert_eq!(b, 0 as $elem_ty);
                } else {
                    assert_eq!(b, vec.extract(index - $id::lanes()));
                }
            }
        }

        #[test]
        #[should_panic]
        fn load_aligned_fail_lanes() {
            use coresimd::simd::$id;
            let aligned = A {
                data: [0 as $elem_ty; 2 * $id::lanes()],
            };
            let _vec = unsafe {
                $id::load_aligned(&aligned.data[2 * $id::lanes()..])
            };
        }

        #[test]
        #[should_panic]
        fn load_aligned_fail_align() {
            unsafe {
                use coresimd::simd::$id;
                use std::{mem, slice};
                let aligned = A {
                    data: [0 as $elem_ty; 2 * $id::lanes()],
                };
                // offset the aligned data by one byte:
                let s: &[u8; 2 * $id::lanes()
                            * mem::size_of::<$elem_ty>()] =
                    mem::transmute(&aligned.data);
                let s: &[$elem_ty] = slice::from_raw_parts(
                    s.get_unchecked(1) as *const u8 as *const $elem_ty,
                    $id::lanes(),
                );
                let _vec = $id::load_aligned(s);
            }
        }
    };
}