dyn_stack/mem.rs
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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
use crate::stack_req::StackReq;
use alloc::alloc::handle_alloc_error;
use core::alloc::Layout;
use core::mem::ManuallyDrop;
use core::mem::MaybeUninit;
use core::ptr::NonNull;
use crate::alloc::*;
extern crate alloc;
impl core::fmt::Display for AllocError {
fn fmt(&self, fmt: &mut core::fmt::Formatter<'_>) -> Result<(), core::fmt::Error> {
fmt.write_str("memory allocation failed")
}
}
#[cfg(any(feature = "std", feature = "core-error"))]
impl crate::Error for AllocError {}
use super::*;
#[inline]
fn to_layout(req: StackReq) -> Result<Layout, AllocError> {
req.layout().ok().ok_or(AllocError)
}
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
impl MemBuffer {
/// Allocate a memory buffer with sufficient storage for the given stack requirements, using the
/// global allocator.
///
/// Calls [`alloc::alloc::handle_alloc_error`] in the case of failure.
///
/// # Example
/// ```
/// use dyn_stack::{MemStack, StackReq, MemBuffer};
///
/// let req = StackReq::new::<i32>(3);
/// let mut buf = MemBuffer::new(req);
/// let stack = MemStack::new(&mut buf);
///
/// // use the stack
/// let (arr, _) = stack.make_with::<i32>(3, |i| i as i32);
/// ```
pub fn new(req: StackReq) -> Self {
Self::new_in(req, Global)
}
/// Allocate a memory buffer with sufficient storage for the given stack requirements, using the
/// global allocator, or an error if the allocation did not succeed.
///
/// # Example
/// ```
/// use dyn_stack::{MemStack, StackReq, MemBuffer};
///
/// let req = StackReq::new::<i32>(3);
/// let mut buf = MemBuffer::new(req);
/// let stack = MemStack::new(&mut buf);
///
/// // use the stack
/// let (arr, _) = stack.make_with::<i32>(3, |i| i as i32);
/// ```
pub fn try_new(req: StackReq) -> Result<Self, AllocError> {
Self::try_new_in(req, Global)
}
/// Creates a `MemBuffer` from its raw components.
///
/// # Safety
///
/// The arguments to this function must have been acquired from a call to
/// [`MemBuffer::into_raw_parts`]
#[inline]
pub unsafe fn from_raw_parts(ptr: *mut u8, len: usize, align: usize) -> Self {
Self {
ptr: NonNull::new_unchecked(ptr),
len,
align,
alloc: Global,
}
}
/// Decomposes a `MemBuffer` into its raw components in this order: ptr, length and
/// alignment.
#[inline]
pub fn into_raw_parts(self) -> (*mut u8, usize, usize) {
let no_drop = ManuallyDrop::new(self);
(no_drop.ptr.as_ptr(), no_drop.len, no_drop.align)
}
}
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
impl PodBuffer {
/// Allocate a memory buffer with sufficient storage for the given stack requirements, using the
/// global allocator.
///
/// Calls [`alloc::alloc::handle_alloc_error`] in the case of failure.
///
/// # Example
/// ```
/// use dyn_stack::{PodStack, StackReq, PodBuffer};
///
/// let req = StackReq::new::<i32>(3);
/// let mut buf = PodBuffer::new(req);
/// let stack = PodStack::new(&mut buf);
///
/// // use the stack
/// let (arr, _) = stack.make_with::<i32>(3, |i| i as i32);
/// ```
pub fn new(req: StackReq) -> Self {
Self::new_in(req, Global)
}
/// Allocate a memory buffer with sufficient storage for the given stack requirements, using the
/// global allocator, or an error if the allocation did not succeed.
///
/// # Example
/// ```
/// use dyn_stack::{PodStack, StackReq, PodBuffer};
///
/// let req = StackReq::new::<i32>(3);
/// let mut buf = PodBuffer::new(req);
/// let stack = PodStack::new(&mut buf);
///
/// // use the stack
/// let (arr, _) = stack.make_with::<i32>(3, |i| i as i32);
/// ```
pub fn try_new(req: StackReq) -> Result<Self, AllocError> {
Self::try_new_in(req, Global)
}
/// Creates a `PodBuffer` from its raw components.
///
/// # Safety
///
/// The arguments to this function must have been acquired from a call to
/// [`PodBuffer::into_raw_parts`]
#[inline]
pub unsafe fn from_raw_parts(ptr: *mut u8, len: usize, align: usize) -> Self {
Self {
ptr: NonNull::new_unchecked(ptr),
len,
align,
alloc: Global,
}
}
/// Decomposes a `PodBuffer` into its raw components in this order: ptr, length and
/// alignment.
#[inline]
pub fn into_raw_parts(self) -> (*mut u8, usize, usize) {
let no_drop = ManuallyDrop::new(self);
(no_drop.ptr.as_ptr(), no_drop.len, no_drop.align)
}
}
#[cfg(feature = "alloc")]
/// Buffer of uninitialized bytes to serve as workspace for dynamic arrays.
pub struct MemBuffer<A: Allocator = Global> {
ptr: NonNull<u8>,
len: usize,
align: usize,
alloc: A,
}
#[cfg(feature = "alloc")]
/// Buffer of initialized bytes to serve as workspace for dynamic arrays.
pub struct PodBuffer<A: Allocator = Global> {
ptr: NonNull<u8>,
len: usize,
align: usize,
alloc: A,
}
#[cfg(not(feature = "alloc"))]
/// Buffer of uninitialized bytes to serve as workspace for dynamic arrays.
pub struct MemBuffer<A: Allocator> {
ptr: NonNull<u8>,
len: usize,
align: usize,
alloc: A,
}
#[cfg(not(feature = "alloc"))]
/// Buffer of initialized bytes to serve as workspace for dynamic arrays.
pub struct PodBuffer<A: Allocator> {
ptr: NonNull<u8>,
len: usize,
align: usize,
alloc: A,
}
unsafe impl<A: Allocator + Sync> Sync for MemBuffer<A> {}
unsafe impl<A: Allocator + Send> Send for MemBuffer<A> {}
unsafe impl<A: Allocator + Sync> Sync for PodBuffer<A> {}
unsafe impl<A: Allocator + Send> Send for PodBuffer<A> {}
impl<A: Allocator> Drop for MemBuffer<A> {
#[inline]
fn drop(&mut self) {
// SAFETY: this was initialized with std::alloc::alloc
unsafe {
self.alloc.deallocate(
self.ptr,
Layout::from_size_align_unchecked(self.len, self.align),
)
}
}
}
impl<A: Allocator> Drop for PodBuffer<A> {
#[inline]
fn drop(&mut self) {
// SAFETY: this was initialized with std::alloc::alloc
unsafe {
self.alloc.deallocate(
self.ptr,
Layout::from_size_align_unchecked(self.len, self.align),
)
}
}
}
impl<A: Allocator> PodBuffer<A> {
/// Allocate a memory buffer with sufficient storage for the given stack requirements, using the
/// provided allocator.
///
/// Calls [`alloc::alloc::handle_alloc_error`] in the case of failure.
///
/// # Example
/// ```
/// use dyn_stack::{PodStack, StackReq, PodBuffer};
/// use dyn_stack::alloc::Global;
///
/// let req = StackReq::new::<i32>(3);
/// let mut buf = PodBuffer::new_in(req, Global);
/// let stack = PodStack::new(&mut buf);
///
/// // use the stack
/// let (arr, _) = stack.make_with::<i32>(3, |i| i as i32);
/// ```
pub fn new_in(req: StackReq, alloc: A) -> Self {
Self::try_new_in(req, alloc).unwrap_or_else(|_| handle_alloc_error(to_layout(req).unwrap()))
}
/// Allocate a memory buffer with sufficient storage for the given stack requirements, using the
/// provided allocator, or an `AllocError` in the case of failure.
///
/// # Example
/// ```
/// use dyn_stack::{PodStack, StackReq, PodBuffer};
/// use dyn_stack::alloc::Global;
///
/// let req = StackReq::new::<i32>(3);
/// let mut buf = PodBuffer::new_in(req, Global);
/// let stack = PodStack::new(&mut buf);
///
/// // use the stack
/// let (arr, _) = stack.make_with::<i32>(3, |i| i as i32);
/// ```
pub fn try_new_in(req: StackReq, alloc: A) -> Result<Self, AllocError> {
unsafe {
let ptr = &mut *(alloc
.allocate_zeroed(to_layout(req)?)
.map_err(|_| AllocError)?
.as_ptr() as *mut [MaybeUninit<u8>]);
#[cfg(debug_assertions)]
ptr.fill(MaybeUninit::new(0xCD));
let len = ptr.len();
let ptr = NonNull::new_unchecked(ptr.as_mut_ptr() as *mut u8);
Ok(PodBuffer {
alloc,
ptr,
len,
align: req.align_bytes(),
})
}
}
/// Creates a `PodBuffer` from its raw components.
///
/// # Safety
///
/// The arguments to this function must have been acquired from a call to
/// [`PodBuffer::into_raw_parts`]
#[inline]
pub unsafe fn from_raw_parts_in(ptr: *mut u8, len: usize, align: usize, alloc: A) -> Self {
Self {
ptr: NonNull::new_unchecked(ptr),
len,
align,
alloc,
}
}
/// Decomposes a `PodBuffer` into its raw components in this order: ptr, length and
/// alignment.
#[inline]
pub fn into_raw_parts_with_alloc(self) -> (*mut u8, usize, usize, A) {
let me = ManuallyDrop::new(self);
(me.ptr.as_ptr(), me.len, me.align, unsafe {
core::ptr::read(core::ptr::addr_of!(me.alloc))
})
}
}
impl<A: Allocator> MemBuffer<A> {
/// Allocate a memory buffer with sufficient storage for the given stack requirements, using the
/// provided allocator.
///
/// Calls [`alloc::alloc::handle_alloc_error`] in the case of failure.
///
/// # Example
/// ```
/// use dyn_stack::{MemStack, StackReq, MemBuffer};
/// use dyn_stack::alloc::Global;
///
/// let req = StackReq::new::<i32>(3);
/// let mut buf = MemBuffer::new_in(req, Global);
/// let stack = MemStack::new(&mut buf);
///
/// // use the stack
/// let (arr, _) = stack.make_with::<i32>(3, |i| i as i32);
/// ```
pub fn new_in(req: StackReq, alloc: A) -> Self {
Self::try_new_in(req, alloc).unwrap_or_else(|_| handle_alloc_error(to_layout(req).unwrap()))
}
/// Allocate a memory buffer with sufficient storage for the given stack requirements, using the
/// provided allocator, or an `AllocError` in the case of failure.
///
/// # Example
/// ```
/// use dyn_stack::{MemStack, StackReq, MemBuffer};
/// use dyn_stack::alloc::Global;
///
/// let req = StackReq::new::<i32>(3);
/// let mut buf = MemBuffer::new_in(req, Global);
/// let stack = MemStack::new(&mut buf);
///
/// // use the stack
/// let (arr, _) = stack.make_with::<i32>(3, |i| i as i32);
/// ```
pub fn try_new_in(req: StackReq, alloc: A) -> Result<Self, AllocError> {
unsafe {
let ptr = &mut *(alloc
.allocate(to_layout(req)?)
.map_err(|_| AllocError)?
.as_ptr() as *mut [MaybeUninit<u8>]);
let len = ptr.len();
let ptr = NonNull::new_unchecked(ptr.as_mut_ptr() as *mut u8);
Ok(MemBuffer {
alloc,
ptr,
len,
align: req.align_bytes(),
})
}
}
/// Creates a `MemBuffer` from its raw components.
///
/// # Safety
///
/// The arguments to this function must have been acquired from a call to
/// [`MemBuffer::into_raw_parts`]
#[inline]
pub unsafe fn from_raw_parts_in(ptr: *mut u8, len: usize, align: usize, alloc: A) -> Self {
Self {
ptr: NonNull::new_unchecked(ptr),
len,
align,
alloc,
}
}
/// Decomposes a `MemBuffer` into its raw components in this order: ptr, length and
/// alignment.
#[inline]
pub fn into_raw_parts_with_alloc(self) -> (*mut u8, usize, usize, A) {
let me = ManuallyDrop::new(self);
(me.ptr.as_ptr(), me.len, me.align, unsafe {
core::ptr::read(core::ptr::addr_of!(me.alloc))
})
}
}
impl<A: Allocator> core::ops::Deref for MemBuffer<A> {
type Target = [MaybeUninit<u8>];
#[inline]
fn deref(&self) -> &Self::Target {
unsafe {
core::slice::from_raw_parts(self.ptr.as_ptr() as *const MaybeUninit<u8>, self.len)
}
}
}
impl<A: Allocator> core::ops::DerefMut for MemBuffer<A> {
#[inline]
fn deref_mut(&mut self) -> &mut Self::Target {
unsafe {
core::slice::from_raw_parts_mut(self.ptr.as_ptr() as *mut MaybeUninit<u8>, self.len)
}
}
}
impl<A: Allocator> core::ops::Deref for PodBuffer<A> {
type Target = [u8];
#[inline]
fn deref(&self) -> &Self::Target {
unsafe { core::slice::from_raw_parts(self.ptr.as_ptr(), self.len) }
}
}
impl<A: Allocator> core::ops::DerefMut for PodBuffer<A> {
#[inline]
fn deref_mut(&mut self) -> &mut Self::Target {
unsafe { core::slice::from_raw_parts_mut(self.ptr.as_ptr(), self.len) }
}
}
/// Error during memory allocation.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct AllocError;