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
use crate::traits::{SIMD128, SIMD256};
#[cfg(feature = "alloc")]
item_group! {
use core::mem::MaybeUninit;
use alloc::boxed::Box;
}
pub use ::outref::{OutBuf, OutRef};
#[derive(Debug)]
#[repr(C, align(16))]
pub struct Bytes16(pub [u8; 16]);
#[derive(Debug)]
#[repr(C, align(32))]
pub struct Bytes32(pub [u8; 32]);
pub trait Load<T> {
type Output;
fn load(self, src: T) -> Self::Output;
}
impl<S: SIMD128> Load<&'_ Bytes16> for S {
type Output = S::V128;
#[inline(always)]
fn load(self, src: &'_ Bytes16) -> Self::Output {
unsafe { self.v128_load(src.0.as_ptr()) }
}
}
impl<S: SIMD256> Load<&'_ Bytes32> for S {
type Output = S::V256;
#[inline(always)]
fn load(self, src: &'_ Bytes32) -> Self::Output {
unsafe { self.v256_load(src.0.as_ptr()) }
}
}
#[allow(unused_macros)]
macro_rules! debug_assert_ptr_align {
($ptr:expr, $align:literal) => {{
let align: usize = $align;
let ptr = $ptr as *const _ as *const ();
let addr = ptr as usize;
debug_assert!(addr % align == 0)
}};
}
#[cfg(feature = "alloc")]
#[inline]
pub unsafe fn alloc_uninit_bytes(len: usize) -> Box<[MaybeUninit<u8>]> {
#[cfg(any(debug_assertions, miri))]
{
assert!(len > 0 && len <= (isize::MAX as usize))
}
use alloc::alloc::{alloc, handle_alloc_error, Layout};
let layout = Layout::from_size_align_unchecked(len, 1);
let p = alloc(layout);
if p.is_null() {
handle_alloc_error(layout)
}
let ptr = p.cast();
Box::from_raw(core::slice::from_raw_parts_mut(ptr, len))
}
#[allow(clippy::missing_safety_doc)]
#[cfg(feature = "alloc")]
#[inline]
pub unsafe fn assume_init(b: Box<[MaybeUninit<u8>]>) -> Box<[u8]> {
let len = b.len();
let ptr = Box::into_raw(b).cast::<u8>();
Box::from_raw(core::ptr::slice_from_raw_parts_mut(ptr, len))
}
#[allow(clippy::missing_safety_doc)]
#[inline(always)]
pub unsafe fn read<T>(base: *const T, offset: usize) -> T {
base.add(offset).read()
}
#[allow(clippy::missing_safety_doc)]
#[inline(always)]
pub unsafe fn write<T>(base: *mut T, offset: usize, value: T) {
base.add(offset).write(value)
}
#[allow(clippy::missing_safety_doc)]
#[inline(always)]
pub unsafe fn slice_mut<'a, T>(data: *mut T, len: usize) -> &'a mut [T] {
core::slice::from_raw_parts_mut(data, len)
}