-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathalignment.rs
More file actions
274 lines (239 loc) · 8.04 KB
/
Copy pathalignment.rs
File metadata and controls
274 lines (239 loc) · 8.04 KB
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
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
use std::fmt::Display;
use std::ops::Deref;
use vortex_error::VortexError;
use vortex_error::VortexExpect;
use vortex_error::VortexResult;
use vortex_error::vortex_bail;
use vortex_error::vortex_err;
/// The alignment of a buffer.
///
/// This type is a wrapper around `usize` that ensures the alignment is a non-zero power of 2.
#[derive(Clone, Debug, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Alignment(usize);
impl Alignment {
/// Default alignment for device-to-host buffer copies.
pub const HOST_COPY: Self = Alignment::new(256);
/// Default alignment for all buffers.
///
/// Chosen to be larger than any SIMD register (e.g. AVX-512's 64-byte
/// registers) so that buffers can be processed with vectorized loads/stores
/// without alignment fixups, and to match the alignment guarantees of the
/// CUDA allocator (256 bytes) so host buffers can be copied to/from device
/// memory without re-alignment.
pub const DEFAULT_ALIGNMENT: Self = Alignment::new(256);
/// Create a new alignment.
///
/// ## Panics
///
/// Panics if `align` is zero or is not a power of 2.
#[inline]
pub const fn new(align: usize) -> Self {
assert!(align > 0, "Alignment must be greater than 0");
assert!(align.is_power_of_two(), "Alignment must be a power of 2");
Self(align)
}
/// Create a new 1-byte alignment.
#[inline]
pub const fn none() -> Self {
Self::new(1)
}
/// Create an alignment from the alignment of a type `T`.
///
/// ## Example
///
/// ```
/// use vortex_buffer::Alignment;
///
/// assert_eq!(Alignment::new(4), Alignment::of::<i32>());
/// assert_eq!(Alignment::new(8), Alignment::of::<i64>());
/// assert_eq!(Alignment::new(16), Alignment::of::<u128>());
/// ```
#[inline]
pub const fn of<T>() -> Self {
Self::new(align_of::<T>())
}
/// The largest valid alignment: the greatest power of 2 representable in a `usize`.
pub const MAX: Alignment = Alignment::new(1 << (usize::BITS - 1));
/// Check if `self` alignment is a "larger" than `other` alignment.
///
/// ## Example
///
/// ```
/// use vortex_buffer::Alignment;
///
/// let a = Alignment::new(4);
/// let b = Alignment::new(2);
/// assert!(a.is_aligned_to(b));
/// assert!(!b.is_aligned_to(a));
/// ```
#[inline]
pub const fn is_aligned_to(&self, other: Alignment) -> bool {
// Since both alignments are powers of 2, divisibility is equivalent to ordering.
self.0 >= other.0
}
/// Check if the given byte offset (or length) is a multiple of this alignment.
///
/// ## Example
///
/// ```
/// use vortex_buffer::Alignment;
///
/// let a = Alignment::new(4);
/// assert!(a.is_offset_aligned(8));
/// assert!(!a.is_offset_aligned(2));
/// ```
#[inline]
pub const fn is_offset_aligned(&self, offset: usize) -> bool {
// Alignment is always a power of 2, so a mask test is equivalent to `offset % self == 0`.
offset & (self.0 - 1) == 0
}
/// Check if the given pointer is aligned to this alignment.
#[inline]
pub fn is_ptr_aligned<T>(&self, ptr: *const T) -> bool {
self.is_offset_aligned(ptr.addr())
}
/// Returns the log2 of the alignment.
pub fn exponent(&self) -> u8 {
u8::try_from(self.0.trailing_zeros())
.vortex_expect("alignment is a power of 2 within usize, so its exponent fits in u8")
}
/// Create from the log2 exponent of the alignment.
///
/// ## Panics
///
/// Panics if `1 << exponent` overflows `usize`.
#[inline]
pub const fn from_exponent(exponent: u8) -> Self {
Self::new(1 << exponent)
}
/// Create from the log2 exponent of the alignment, returning an error rather than panicking if
/// `1 << exponent` would overflow `usize`.
///
/// Prefer this over [`from_exponent`](Self::from_exponent) when the exponent originates from
/// untrusted input such as a serialized file, where a too-large value must not panic.
#[inline]
pub fn try_from_exponent(exponent: u8) -> VortexResult<Self> {
if u32::from(exponent) >= usize::BITS {
vortex_bail!(
"Alignment exponent {exponent} is too large for a {}-bit usize",
usize::BITS
);
}
Ok(Self::new(1 << exponent))
}
}
impl Display for Alignment {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl Deref for Alignment {
type Target = usize;
#[inline]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<usize> for Alignment {
#[inline]
fn from(value: usize) -> Self {
Self::new(value)
}
}
impl From<u16> for Alignment {
#[inline]
fn from(value: u16) -> Self {
Self::new(usize::from(value))
}
}
impl From<Alignment> for usize {
#[inline]
fn from(value: Alignment) -> Self {
value.0
}
}
impl From<Alignment> for u32 {
#[inline]
fn from(value: Alignment) -> Self {
u32::try_from(value.0).vortex_expect("Alignment must fit into u32")
}
}
impl TryFrom<u32> for Alignment {
type Error = VortexError;
fn try_from(value: u32) -> Result<Self, Self::Error> {
let value = usize::try_from(value)
.map_err(|_| vortex_err!("Alignment must fit into usize, got {value}"))?;
if value == 0 {
return Err(vortex_err!("Alignment must be greater than 0"));
}
if !value.is_power_of_two() {
return Err(vortex_err!("Alignment must be a power of 2, got {value}"));
}
Ok(Self(value))
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
#[should_panic]
fn alignment_zero() {
Alignment::new(0);
}
#[test]
fn alignment_above_u16() {
// 64KiB alignment (one past `u16::MAX`) is valid — common on ARM with 64K pages.
let alignment = Alignment::new(u16::MAX as usize + 1);
assert_eq!(*alignment, 1 << 16);
assert_eq!(alignment, Alignment::from_exponent(16));
}
#[test]
#[should_panic]
fn alignment_not_power_of_two() {
Alignment::new(3);
}
#[test]
fn alignment_exponent() {
let alignment = Alignment::new(1024);
assert_eq!(alignment.exponent(), 10);
assert_eq!(Alignment::from_exponent(10), alignment);
}
#[test]
fn is_aligned_to() {
assert!(Alignment::new(1).is_aligned_to(Alignment::new(1)));
assert!(Alignment::new(2).is_aligned_to(Alignment::new(1)));
assert!(Alignment::new(4).is_aligned_to(Alignment::new(1)));
assert!(!Alignment::new(1).is_aligned_to(Alignment::new(2)));
}
#[test]
fn try_from_u32() {
match Alignment::try_from(8u32) {
Ok(alignment) => assert_eq!(alignment, Alignment::new(8)),
Err(err) => panic!("unexpected error for valid alignment: {err}"),
}
match Alignment::try_from(1u32 << 16) {
Ok(alignment) => assert_eq!(alignment, Alignment::new(1 << 16)),
Err(err) => panic!("64KiB alignment should be valid: {err}"),
}
assert!(Alignment::try_from(0u32).is_err());
assert!(Alignment::try_from(3u32).is_err());
}
#[test]
fn try_from_exponent() {
match Alignment::try_from_exponent(10) {
Ok(alignment) => assert_eq!(alignment, Alignment::new(1024)),
Err(err) => panic!("valid exponent should succeed: {err}"),
}
// Exponents whose `1 << exponent` would overflow a usize must error rather than panic.
// 64 is `>= usize::BITS` on both 32- and 64-bit targets.
assert!(Alignment::try_from_exponent(64).is_err());
assert!(Alignment::try_from_exponent(u8::MAX).is_err());
}
#[test]
fn into_u32() {
let alignment = Alignment::new(64);
assert_eq!(u32::from(alignment), 64u32);
}
}