2019-05-15 05:33:08 +08:00
|
|
|
#![cfg(all(
|
|
|
|
target_arch = "arm",
|
|
|
|
not(any(target_env = "gnu", target_env = "musl")),
|
|
|
|
target_os = "linux",
|
|
|
|
feature = "mem"
|
|
|
|
))]
|
2017-06-30 11:40:58 +08:00
|
|
|
#![feature(compiler_builtins_lib)]
|
2018-02-19 01:15:57 +08:00
|
|
|
#![feature(lang_items)]
|
2017-06-30 11:40:58 +08:00
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
extern crate compiler_builtins;
|
|
|
|
|
|
|
|
// test runner
|
|
|
|
extern crate utest_cortex_m_qemu;
|
|
|
|
|
|
|
|
// overrides `panic!`
|
|
|
|
#[macro_use]
|
|
|
|
extern crate utest_macros;
|
|
|
|
|
|
|
|
use core::mem;
|
|
|
|
|
|
|
|
macro_rules! panic {
|
|
|
|
($($tt:tt)*) => {
|
|
|
|
upanic!($($tt)*);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
fn __aeabi_memset4(dest: *mut u8, n: usize, c: u32);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Aligned {
|
|
|
|
array: [u8; 8],
|
|
|
|
_alignment: [u32; 0],
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Aligned {
|
|
|
|
fn new(array: [u8; 8]) -> Self {
|
|
|
|
Aligned {
|
|
|
|
array: array,
|
|
|
|
_alignment: [],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn zero() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), 0, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0; 8]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), 0, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [1; 8]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn one() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let n = 1;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0, 0, 0, 0, 0, 0, 0]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 1, 1, 1, 1, 1, 1, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn two() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let n = 2;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0, 0, 0, 0, 0, 0]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 1, 1, 1, 1, 1, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn three() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let n = 3;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0, 0, 0, 0, 0]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 1, 1, 1, 1, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn four() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let n = 4;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0, 0, 0, 0]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 1, 1, 1, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn five() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let n = 5;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0xef, 0, 0, 0]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0xef, 1, 1, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn six() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let n = 6;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0, 0]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 1, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn seven() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let n = 7;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn eight() {
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([0u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let n = 8;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef]);
|
|
|
|
|
2019-11-12 02:19:10 +08:00
|
|
|
let mut aligned = Aligned::new([1u8; 8]);
|
2017-06-30 11:40:58 +08:00
|
|
|
assert_eq!(mem::align_of_val(&aligned), 4);
|
|
|
|
let xs = &mut aligned.array;
|
|
|
|
let c = 0xdeadbeef;
|
|
|
|
|
2019-05-15 05:33:08 +08:00
|
|
|
unsafe { __aeabi_memset4(xs.as_mut_ptr(), n, c) }
|
2017-06-30 11:40:58 +08:00
|
|
|
|
|
|
|
assert_eq!(*xs, [0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef]);
|
|
|
|
}
|