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
use core::{
hash::Hash,
hint::unreachable_unchecked,
mem,
num::NonZeroUsize,
panic::{RefUnwindSafe, UnwindSafe},
};
pub unsafe trait Aligned {
const ALIGN: NonZeroUsize;
}
unsafe impl<T> Aligned for T {
const ALIGN: NonZeroUsize = NonZeroUsize::new(mem::align_of::<T>()).unwrap();
}
unsafe impl<T> Aligned for [T] {
const ALIGN: NonZeroUsize = NonZeroUsize::new(mem::align_of::<T>()).unwrap();
}
pub(super) unsafe trait AlignStorage<T: ?Sized>:
Copy + Send + Sync + Ord + Hash + Unpin + UnwindSafe + RefUnwindSafe
{
const MIN_ALIGN: Self;
#[must_use]
fn from_align(align: usize) -> Option<Self>;
#[must_use]
fn from_align_exact(align: usize) -> Option<Self>;
#[must_use]
unsafe fn unchecked_align_offset_to(self, offset: usize) -> usize;
#[must_use]
fn to_align(self) -> NonZeroUsize;
}
unsafe impl<T: ?Sized> AlignStorage<T> for NonZeroUsize {
const MIN_ALIGN: Self = NonZeroUsize::new(1).unwrap();
#[inline]
fn from_align(align: usize) -> Option<Self> {
if align.is_power_of_two() {
Some(unsafe { NonZeroUsize::new_unchecked(align) })
} else {
None
}
}
#[inline]
fn from_align_exact(align: usize) -> Option<Self> {
<Self as AlignStorage<T>>::from_align(align)
}
#[inline]
unsafe fn unchecked_align_offset_to(self, offset: usize) -> usize {
unsafe {
offset
.checked_next_multiple_of(self.into())
.unwrap_unchecked()
}
}
#[inline]
fn to_align(self) -> NonZeroUsize {
debug_assert!(self.is_power_of_two());
self
}
}
unsafe impl<T: ?Sized + Aligned> AlignStorage<T> for () {
const MIN_ALIGN: Self = ();
#[inline]
fn from_align(align: usize) -> Option<Self> {
if cfg!(debug_assertions) && !align.is_power_of_two() {
None
} else {
Some(())
}
}
#[inline]
fn from_align_exact(align: usize) -> Option<Self> {
if cfg!(debug_assertions) && align != T::ALIGN.into() {
None
} else {
Some(())
}
}
#[inline]
unsafe fn unchecked_align_offset_to(self, offset: usize) -> usize {
if offset % T::ALIGN == 0 {
offset
} else {
unsafe { unreachable_unchecked() }
}
}
#[inline]
fn to_align(self) -> NonZeroUsize {
<T as Aligned>::ALIGN
}
}
pub(super) trait StoreAlign {
type AlignStore: AlignStorage<Self>;
}
impl<T: ?Sized> StoreAlign for T {
default type AlignStore = NonZeroUsize;
}
impl<T: ?Sized + Aligned> StoreAlign for T {
type AlignStore = ();
}