2019-12-21 11:16:18 +00:00
|
|
|
#![unstable(feature = "raw_vec_internals", reason = "implementation detail", issue = "none")]
|
2018-06-15 01:36:34 +00:00
|
|
|
#![doc(hidden)]
|
|
|
|
|
2019-02-03 07:27:44 +00:00
|
|
|
use core::cmp;
|
|
|
|
use core::mem;
|
|
|
|
use core::ops::Drop;
|
|
|
|
use core::ptr::{self, NonNull, Unique};
|
|
|
|
use core::slice;
|
2019-02-02 09:14:40 +00:00
|
|
|
|
2020-01-23 00:49:29 +00:00
|
|
|
use crate::alloc::{handle_alloc_error, AllocErr, AllocRef, Global, Layout};
|
2019-02-03 07:27:44 +00:00
|
|
|
use crate::boxed::Box;
|
2019-12-22 22:42:04 +00:00
|
|
|
use crate::collections::TryReserveError::{self, *};
|
2015-07-10 04:57:21 +00:00
|
|
|
|
2019-08-01 22:40:56 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
|
2016-08-14 04:59:43 +00:00
|
|
|
/// A low-level utility for more ergonomically allocating, reallocating, and deallocating
|
2015-07-10 04:57:21 +00:00
|
|
|
/// a buffer of memory on the heap without having to worry about all the corner cases
|
|
|
|
/// involved. This type is excellent for building your own data structures like Vec and VecDeque.
|
|
|
|
/// In particular:
|
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// * Produces `Unique::empty()` on zero-sized types.
|
|
|
|
/// * Produces `Unique::empty()` on zero-length allocations.
|
|
|
|
/// * Catches all overflows in capacity computations (promotes them to "capacity overflow" panics).
|
|
|
|
/// * Guards against 32-bit systems allocating more than isize::MAX bytes.
|
|
|
|
/// * Guards against overflowing your length.
|
|
|
|
/// * Aborts on OOM or calls `handle_alloc_error` as applicable.
|
|
|
|
/// * Avoids freeing `Unique::empty()`.
|
|
|
|
/// * Contains a `ptr::Unique` and thus endows the user with all related benefits.
|
2015-07-10 04:57:21 +00:00
|
|
|
///
|
|
|
|
/// This type does not in anyway inspect the memory that it manages. When dropped it *will*
|
2019-09-05 16:15:28 +00:00
|
|
|
/// free its memory, but it *won't* try to drop its contents. It is up to the user of `RawVec`
|
|
|
|
/// to handle the actual things *stored* inside of a `RawVec`.
|
2015-07-10 04:57:21 +00:00
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Note that a `RawVec` always forces its capacity to be `usize::MAX` for zero-sized types.
|
|
|
|
/// This enables you to use capacity-growing logic catch the overflows in your length
|
2015-07-10 04:57:21 +00:00
|
|
|
/// that might occur with zero-sized types.
|
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// The above means that you need to be careful when round-tripping this type with a
|
|
|
|
/// `Box<[T]>`, since `capacity()` won't yield the length. However, `with_capacity`,
|
|
|
|
/// `shrink_to_fit`, and `from_box` will actually set `RawVec`'s private capacity
|
2015-07-10 04:57:21 +00:00
|
|
|
/// field. This allows zero-sized types to not be special-cased by consumers of
|
|
|
|
/// this type.
|
2017-06-13 22:52:59 +00:00
|
|
|
#[allow(missing_debug_implementations)]
|
2020-01-23 00:49:29 +00:00
|
|
|
pub struct RawVec<T, A: AllocRef = Global> {
|
2015-07-10 04:57:21 +00:00
|
|
|
ptr: Unique<T>,
|
|
|
|
cap: usize,
|
2017-05-24 16:06:11 +00:00
|
|
|
a: A,
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 00:49:29 +00:00
|
|
|
impl<T, A: AllocRef> RawVec<T, A> {
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Like `new`, but parameterized over the choice of allocator for
|
|
|
|
/// the returned `RawVec`.
|
2018-04-29 22:13:49 +00:00
|
|
|
pub const fn new_in(a: A) -> Self {
|
2019-12-18 18:04:47 +00:00
|
|
|
let cap = if mem::size_of::<T>() == 0 { core::usize::MAX } else { 0 };
|
2015-07-10 04:57:21 +00:00
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
// `Unique::empty()` doubles as "unallocated" and "zero-sized allocation".
|
2019-12-22 22:42:04 +00:00
|
|
|
RawVec { ptr: Unique::empty(), cap, a }
|
2019-11-25 20:44:19 +00:00
|
|
|
}
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Like `with_capacity`, but parameterized over the choice of
|
|
|
|
/// allocator for the returned `RawVec`.
|
2017-03-10 01:53:01 +00:00
|
|
|
#[inline]
|
2019-04-27 19:28:40 +00:00
|
|
|
pub fn with_capacity_in(capacity: usize, a: A) -> Self {
|
|
|
|
RawVec::allocate_in(capacity, false, a)
|
2017-03-10 01:53:01 +00:00
|
|
|
}
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Like `with_capacity_zeroed`, but parameterized over the choice
|
|
|
|
/// of allocator for the returned `RawVec`.
|
2017-03-10 01:53:01 +00:00
|
|
|
#[inline]
|
2019-04-27 19:28:40 +00:00
|
|
|
pub fn with_capacity_zeroed_in(capacity: usize, a: A) -> Self {
|
|
|
|
RawVec::allocate_in(capacity, true, a)
|
2017-03-10 01:53:01 +00:00
|
|
|
}
|
|
|
|
|
2019-04-27 19:28:40 +00:00
|
|
|
fn allocate_in(capacity: usize, zeroed: bool, mut a: A) -> Self {
|
2015-07-10 04:57:21 +00:00
|
|
|
unsafe {
|
|
|
|
let elem_size = mem::size_of::<T>();
|
|
|
|
|
2019-04-27 19:28:40 +00:00
|
|
|
let alloc_size = capacity.checked_mul(elem_size).unwrap_or_else(|| capacity_overflow());
|
2018-04-06 20:46:10 +00:00
|
|
|
alloc_guard(alloc_size).unwrap_or_else(|_| capacity_overflow());
|
2015-07-10 04:57:21 +00:00
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
// Handles ZSTs and `capacity == 0` alike.
|
2015-07-10 04:57:21 +00:00
|
|
|
let ptr = if alloc_size == 0 {
|
2018-05-30 19:04:17 +00:00
|
|
|
NonNull::<T>::dangling()
|
2015-07-10 04:57:21 +00:00
|
|
|
} else {
|
|
|
|
let align = mem::align_of::<T>();
|
2018-05-15 00:56:46 +00:00
|
|
|
let layout = Layout::from_size_align(alloc_size, align).unwrap();
|
2019-12-22 22:42:04 +00:00
|
|
|
let result = if zeroed { a.alloc_zeroed(layout) } else { a.alloc(layout) };
|
2017-05-24 16:06:11 +00:00
|
|
|
match result {
|
2018-05-30 19:04:17 +00:00
|
|
|
Ok(ptr) => ptr.cast(),
|
2018-06-13 22:32:30 +00:00
|
|
|
Err(_) => handle_alloc_error(layout),
|
2015-09-23 22:00:54 +00:00
|
|
|
}
|
2015-07-10 04:57:21 +00:00
|
|
|
};
|
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
RawVec { ptr: ptr.into(), cap: capacity, a }
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-24 16:06:11 +00:00
|
|
|
}
|
|
|
|
|
2018-04-03 19:15:06 +00:00
|
|
|
impl<T> RawVec<T, Global> {
|
2019-08-29 09:32:38 +00:00
|
|
|
/// HACK(Centril): This exists because `#[unstable]` `const fn`s needn't conform
|
|
|
|
/// to `min_const_fn` and so they cannot be called in `min_const_fn`s either.
|
|
|
|
///
|
|
|
|
/// If you change `RawVec<T>::new` or dependencies, please take care to not
|
|
|
|
/// introduce anything that would truly violate `min_const_fn`.
|
|
|
|
///
|
|
|
|
/// NOTE: We could avoid this hack and check conformance with some
|
|
|
|
/// `#[rustc_force_min_const_fn]` attribute which requires conformance
|
|
|
|
/// with `min_const_fn` but does not necessarily allow calling it in
|
|
|
|
/// `stable(...) const fn` / user code not enabling `foo` when
|
|
|
|
/// `#[rustc_const_unstable(feature = "foo", ..)]` is present.
|
|
|
|
pub const NEW: Self = Self::new();
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Creates the biggest possible `RawVec` (on the system heap)
|
|
|
|
/// without allocating. If `T` has positive size, then this makes a
|
|
|
|
/// `RawVec` with capacity `0`. If `T` is zero-sized, then it makes a
|
|
|
|
/// `RawVec` with capacity `usize::MAX`. Useful for implementing
|
2017-05-24 16:06:11 +00:00
|
|
|
/// delayed allocation.
|
2019-11-25 20:44:19 +00:00
|
|
|
pub const fn new() -> Self {
|
2019-11-25 21:29:57 +00:00
|
|
|
Self::new_in(Global)
|
2017-05-24 16:06:11 +00:00
|
|
|
}
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Creates a `RawVec` (on the system heap) with exactly the
|
2019-04-27 19:28:40 +00:00
|
|
|
/// capacity and alignment requirements for a `[T; capacity]`. This is
|
2019-09-05 16:15:28 +00:00
|
|
|
/// equivalent to calling `RawVec::new` when `capacity` is `0` or `T` is
|
2017-05-24 16:06:11 +00:00
|
|
|
/// zero-sized. Note that if `T` is zero-sized this means you will
|
2019-09-05 16:15:28 +00:00
|
|
|
/// *not* get a `RawVec` with the requested capacity.
|
2017-05-24 16:06:11 +00:00
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// * Panics if the requested capacity exceeds `usize::MAX` bytes.
|
|
|
|
/// * Panics on 32-bit platforms if the requested capacity exceeds
|
|
|
|
/// `isize::MAX` bytes.
|
|
|
|
///
|
|
|
|
/// # Aborts
|
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Aborts on OOM.
|
2017-05-24 16:06:11 +00:00
|
|
|
#[inline]
|
2019-04-27 19:28:40 +00:00
|
|
|
pub fn with_capacity(capacity: usize) -> Self {
|
|
|
|
RawVec::allocate_in(capacity, false, Global)
|
2017-05-24 16:06:11 +00:00
|
|
|
}
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Like `with_capacity`, but guarantees the buffer is zeroed.
|
2017-05-24 16:06:11 +00:00
|
|
|
#[inline]
|
2019-04-27 19:28:40 +00:00
|
|
|
pub fn with_capacity_zeroed(capacity: usize) -> Self {
|
|
|
|
RawVec::allocate_in(capacity, true, Global)
|
2017-05-24 16:06:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-23 00:49:29 +00:00
|
|
|
impl<T, A: AllocRef> RawVec<T, A> {
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Reconstitutes a `RawVec` from a pointer, capacity, and allocator.
|
2017-05-24 16:06:11 +00:00
|
|
|
///
|
|
|
|
/// # Undefined Behavior
|
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// The `ptr` must be allocated (via the given allocator `a`), and with the given `capacity`.
|
|
|
|
/// The `capacity` cannot exceed `isize::MAX` (only a concern on 32-bit systems).
|
|
|
|
/// If the `ptr` and `capacity` come from a `RawVec` created via `a`, then this is guaranteed.
|
2019-04-27 19:28:40 +00:00
|
|
|
pub unsafe fn from_raw_parts_in(ptr: *mut T, capacity: usize, a: A) -> Self {
|
2019-12-22 22:42:04 +00:00
|
|
|
RawVec { ptr: Unique::new_unchecked(ptr), cap: capacity, a }
|
2017-05-24 16:06:11 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-10 04:57:21 +00:00
|
|
|
|
2018-04-03 19:15:06 +00:00
|
|
|
impl<T> RawVec<T, Global> {
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Reconstitutes a `RawVec` from a pointer and capacity.
|
2015-07-10 04:57:21 +00:00
|
|
|
///
|
2015-10-13 13:44:11 +00:00
|
|
|
/// # Undefined Behavior
|
2015-07-10 04:57:21 +00:00
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// The `ptr` must be allocated (on the system heap), and with the given `capacity`.
|
2019-09-14 14:26:50 +00:00
|
|
|
/// The `capacity` cannot exceed `isize::MAX` (only a concern on 32-bit systems).
|
2019-09-05 16:15:28 +00:00
|
|
|
/// If the `ptr` and `capacity` come from a `RawVec`, then this is guaranteed.
|
2019-04-27 19:28:40 +00:00
|
|
|
pub unsafe fn from_raw_parts(ptr: *mut T, capacity: usize) -> Self {
|
2019-12-22 22:42:04 +00:00
|
|
|
RawVec { ptr: Unique::new_unchecked(ptr), cap: capacity, a: Global }
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Converts a `Box<[T]>` into a `RawVec<T>`.
|
|
|
|
pub fn from_box(mut slice: Box<[T]>) -> Self {
|
|
|
|
unsafe {
|
|
|
|
let result = RawVec::from_raw_parts(slice.as_mut_ptr(), slice.len());
|
|
|
|
mem::forget(slice);
|
|
|
|
result
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-23 00:49:29 +00:00
|
|
|
impl<T, A: AllocRef> RawVec<T, A> {
|
2015-07-10 04:57:21 +00:00
|
|
|
/// Gets a raw pointer to the start of the allocation. Note that this is
|
2019-09-05 16:15:28 +00:00
|
|
|
/// `Unique::empty()` if `capacity == 0` or `T` is zero-sized. In the former case, you must
|
2015-07-10 04:57:21 +00:00
|
|
|
/// be careful.
|
|
|
|
pub fn ptr(&self) -> *mut T {
|
2017-05-04 18:48:58 +00:00
|
|
|
self.ptr.as_ptr()
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Gets the capacity of the allocation.
|
|
|
|
///
|
|
|
|
/// This will always be `usize::MAX` if `T` is zero-sized.
|
2016-05-09 18:43:33 +00:00
|
|
|
#[inline(always)]
|
2019-04-27 19:28:40 +00:00
|
|
|
pub fn capacity(&self) -> usize {
|
2019-12-22 22:42:04 +00:00
|
|
|
if mem::size_of::<T>() == 0 { !0 } else { self.cap }
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Returns a shared reference to the allocator backing this `RawVec`.
|
2017-05-24 16:06:11 +00:00
|
|
|
pub fn alloc(&self) -> &A {
|
|
|
|
&self.a
|
|
|
|
}
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Returns a mutable reference to the allocator backing this `RawVec`.
|
2017-05-24 16:06:11 +00:00
|
|
|
pub fn alloc_mut(&mut self) -> &mut A {
|
|
|
|
&mut self.a
|
|
|
|
}
|
|
|
|
|
2017-08-11 23:00:09 +00:00
|
|
|
fn current_layout(&self) -> Option<Layout> {
|
|
|
|
if self.cap == 0 {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
// We have an allocated chunk of memory, so we can bypass runtime
|
|
|
|
// checks to get our current layout.
|
|
|
|
unsafe {
|
|
|
|
let align = mem::align_of::<T>();
|
|
|
|
let size = mem::size_of::<T>() * self.cap;
|
|
|
|
Some(Layout::from_size_align_unchecked(size, align))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 04:57:21 +00:00
|
|
|
/// Doubles the size of the type's backing allocation. This is common enough
|
|
|
|
/// to want to do that it's easiest to just have a dedicated method. Slightly
|
|
|
|
/// more efficient logic can be provided for this than the general case.
|
|
|
|
///
|
|
|
|
/// This function is ideal for when pushing elements one-at-a-time because
|
|
|
|
/// you don't need to incur the costs of the more general computations
|
|
|
|
/// reserve needs to do to guard against overflow. You do however need to
|
2019-04-27 19:28:40 +00:00
|
|
|
/// manually check if your `len == capacity`.
|
2015-07-10 04:57:21 +00:00
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// * Panics if `T` is zero-sized on the assumption that you managed to exhaust
|
2015-07-10 04:57:21 +00:00
|
|
|
/// all `usize::MAX` slots in your imaginary buffer.
|
|
|
|
/// * Panics on 32-bit platforms if the requested capacity exceeds
|
|
|
|
/// `isize::MAX` bytes.
|
|
|
|
///
|
|
|
|
/// # Aborts
|
|
|
|
///
|
|
|
|
/// Aborts on OOM
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2017-06-20 07:15:16 +00:00
|
|
|
/// ```
|
2019-04-03 17:50:28 +00:00
|
|
|
/// # #![feature(raw_vec_internals)]
|
2017-06-20 07:15:16 +00:00
|
|
|
/// # extern crate alloc;
|
|
|
|
/// # use std::ptr;
|
|
|
|
/// # use alloc::raw_vec::RawVec;
|
2015-07-10 04:57:21 +00:00
|
|
|
/// struct MyVec<T> {
|
|
|
|
/// buf: RawVec<T>,
|
|
|
|
/// len: usize,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// impl<T> MyVec<T> {
|
|
|
|
/// pub fn push(&mut self, elem: T) {
|
2019-04-27 19:28:40 +00:00
|
|
|
/// if self.len == self.buf.capacity() { self.buf.double(); }
|
2015-07-10 04:57:21 +00:00
|
|
|
/// // double would have aborted or panicked if the len exceeded
|
|
|
|
/// // `isize::MAX` so this is safe to do unchecked now.
|
|
|
|
/// unsafe {
|
2018-08-20 02:16:22 +00:00
|
|
|
/// ptr::write(self.buf.ptr().add(self.len), elem);
|
2015-07-10 04:57:21 +00:00
|
|
|
/// }
|
|
|
|
/// self.len += 1;
|
|
|
|
/// }
|
|
|
|
/// }
|
2017-06-20 07:15:16 +00:00
|
|
|
/// # fn main() {
|
|
|
|
/// # let mut vec = MyVec { buf: RawVec::new(), len: 0 };
|
|
|
|
/// # vec.push(1);
|
|
|
|
/// # }
|
2015-07-10 04:57:21 +00:00
|
|
|
/// ```
|
|
|
|
#[inline(never)]
|
|
|
|
#[cold]
|
|
|
|
pub fn double(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
let elem_size = mem::size_of::<T>();
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
// Since we set the capacity to `usize::MAX` when `elem_size` is
|
|
|
|
// 0, getting to here necessarily means the `RawVec` is overfull.
|
2015-07-10 04:57:21 +00:00
|
|
|
assert!(elem_size != 0, "capacity overflow");
|
|
|
|
|
2020-02-10 15:42:00 +00:00
|
|
|
let (new_cap, ptr) = match self.current_layout() {
|
2017-08-11 23:00:09 +00:00
|
|
|
Some(cur) => {
|
|
|
|
// Since we guarantee that we never allocate more than
|
2019-09-05 16:15:28 +00:00
|
|
|
// `isize::MAX` bytes, `elem_size * self.cap <= isize::MAX` as
|
2017-08-11 23:00:09 +00:00
|
|
|
// a precondition, so this can't overflow. Additionally the
|
|
|
|
// alignment will never be too large as to "not be
|
|
|
|
// satisfiable", so `Layout::from_size_align` will always
|
|
|
|
// return `Some`.
|
|
|
|
//
|
2019-09-05 16:15:28 +00:00
|
|
|
// TL;DR, we bypass runtime checks due to dynamic assertions
|
2017-08-11 23:00:09 +00:00
|
|
|
// in this module, allowing us to use
|
|
|
|
// `from_size_align_unchecked`.
|
|
|
|
let new_cap = 2 * self.cap;
|
|
|
|
let new_size = new_cap * elem_size;
|
2018-04-06 20:46:10 +00:00
|
|
|
alloc_guard(new_size).unwrap_or_else(|_| capacity_overflow());
|
2019-12-22 22:42:04 +00:00
|
|
|
let ptr_res = self.a.realloc(NonNull::from(self.ptr).cast(), cur, new_size);
|
2017-08-11 23:00:09 +00:00
|
|
|
match ptr_res {
|
2020-02-10 15:42:00 +00:00
|
|
|
Ok(ptr) => (new_cap, ptr),
|
2019-12-22 22:42:04 +00:00
|
|
|
Err(_) => handle_alloc_error(Layout::from_size_align_unchecked(
|
|
|
|
new_size,
|
|
|
|
cur.align(),
|
|
|
|
)),
|
2017-08-11 23:00:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {
|
2019-09-05 16:15:28 +00:00
|
|
|
// Skip to 4 because tiny `Vec`'s are dumb; but not if that
|
|
|
|
// would cause overflow.
|
2017-08-11 23:00:09 +00:00
|
|
|
let new_cap = if elem_size > (!0) / 8 { 1 } else { 4 };
|
2020-02-10 15:42:00 +00:00
|
|
|
let layout = Layout::array::<T>(new_cap).unwrap();
|
|
|
|
match self.a.alloc(layout) {
|
|
|
|
Ok(ptr) => (new_cap, ptr),
|
|
|
|
Err(_) => handle_alloc_error(layout),
|
2017-08-11 23:00:09 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-24 16:06:11 +00:00
|
|
|
};
|
2020-02-10 15:42:00 +00:00
|
|
|
self.ptr = ptr.cast().into();
|
2015-07-10 04:57:21 +00:00
|
|
|
self.cap = new_cap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-12 03:53:58 +00:00
|
|
|
/// Attempts to double the size of the type's backing allocation in place. This is common
|
|
|
|
/// enough to want to do that it's easiest to just have a dedicated method. Slightly
|
|
|
|
/// more efficient logic can be provided for this than the general case.
|
|
|
|
///
|
2019-02-09 22:16:58 +00:00
|
|
|
/// Returns `true` if the reallocation attempt has succeeded.
|
2015-08-12 03:53:58 +00:00
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// * Panics if `T` is zero-sized on the assumption that you managed to exhaust
|
2015-08-12 03:53:58 +00:00
|
|
|
/// all `usize::MAX` slots in your imaginary buffer.
|
|
|
|
/// * Panics on 32-bit platforms if the requested capacity exceeds
|
|
|
|
/// `isize::MAX` bytes.
|
|
|
|
#[inline(never)]
|
|
|
|
#[cold]
|
|
|
|
pub fn double_in_place(&mut self) -> bool {
|
|
|
|
unsafe {
|
|
|
|
let elem_size = mem::size_of::<T>();
|
2017-08-11 23:00:09 +00:00
|
|
|
let old_layout = match self.current_layout() {
|
|
|
|
Some(layout) => layout,
|
|
|
|
None => return false, // nothing to double
|
|
|
|
};
|
2015-08-12 03:53:58 +00:00
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
// Since we set the capacity to `usize::MAX` when `elem_size` is
|
|
|
|
// 0, getting to here necessarily means the `RawVec` is overfull.
|
2015-08-12 03:53:58 +00:00
|
|
|
assert!(elem_size != 0, "capacity overflow");
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
// Since we guarantee that we never allocate more than `isize::MAX`
|
2017-08-11 23:00:09 +00:00
|
|
|
// bytes, `elem_size * self.cap <= isize::MAX` as a precondition, so
|
|
|
|
// this can't overflow.
|
|
|
|
//
|
2019-09-05 16:15:28 +00:00
|
|
|
// Similarly to with `double` above, we can go straight to
|
2017-08-11 23:00:09 +00:00
|
|
|
// `Layout::from_size_align_unchecked` as we know this won't
|
|
|
|
// overflow and the alignment is sufficiently small.
|
2015-08-12 03:53:58 +00:00
|
|
|
let new_cap = 2 * self.cap;
|
2017-08-11 23:00:09 +00:00
|
|
|
let new_size = new_cap * elem_size;
|
2018-04-06 20:46:10 +00:00
|
|
|
alloc_guard(new_size).unwrap_or_else(|_| capacity_overflow());
|
2018-05-31 06:57:43 +00:00
|
|
|
match self.a.grow_in_place(NonNull::from(self.ptr).cast(), old_layout, new_size) {
|
2017-05-24 16:06:11 +00:00
|
|
|
Ok(_) => {
|
|
|
|
// We can't directly divide `size`.
|
|
|
|
self.cap = new_cap;
|
|
|
|
true
|
|
|
|
}
|
2019-12-22 22:42:04 +00:00
|
|
|
Err(_) => false,
|
2015-08-12 03:53:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-10 00:16:10 +00:00
|
|
|
/// The same as `reserve_exact`, but returns on errors instead of panicking or aborting.
|
2019-12-22 22:42:04 +00:00
|
|
|
pub fn try_reserve_exact(
|
|
|
|
&mut self,
|
|
|
|
used_capacity: usize,
|
|
|
|
needed_extra_capacity: usize,
|
|
|
|
) -> Result<(), TryReserveError> {
|
2019-04-27 19:28:40 +00:00
|
|
|
self.reserve_internal(used_capacity, needed_extra_capacity, Fallible, Exact)
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
|
|
|
|
2018-05-10 00:16:10 +00:00
|
|
|
/// Ensures that the buffer contains at least enough space to hold
|
2019-04-27 19:28:40 +00:00
|
|
|
/// `used_capacity + needed_extra_capacity` elements. If it doesn't already,
|
2018-05-10 00:16:10 +00:00
|
|
|
/// will reallocate the minimum possible amount of memory necessary.
|
|
|
|
/// Generally this will be exactly the amount of memory necessary,
|
|
|
|
/// but in principle the allocator is free to give back more than
|
|
|
|
/// we asked for.
|
|
|
|
///
|
2019-04-27 19:28:40 +00:00
|
|
|
/// If `used_capacity` exceeds `self.capacity()`, this may fail to actually allocate
|
2018-05-10 00:16:10 +00:00
|
|
|
/// the requested space. This is not really unsafe, but the unsafe
|
|
|
|
/// code *you* write that relies on the behavior of this function may break.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// * Panics if the requested capacity exceeds `usize::MAX` bytes.
|
|
|
|
/// * Panics on 32-bit platforms if the requested capacity exceeds
|
|
|
|
/// `isize::MAX` bytes.
|
|
|
|
///
|
|
|
|
/// # Aborts
|
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Aborts on OOM.
|
2019-04-27 19:28:40 +00:00
|
|
|
pub fn reserve_exact(&mut self, used_capacity: usize, needed_extra_capacity: usize) {
|
|
|
|
match self.reserve_internal(used_capacity, needed_extra_capacity, Infallible, Exact) {
|
2018-04-06 20:46:10 +00:00
|
|
|
Err(CapacityOverflow) => capacity_overflow(),
|
2019-06-12 16:47:58 +00:00
|
|
|
Err(AllocError { .. }) => unreachable!(),
|
2018-03-08 14:36:43 +00:00
|
|
|
Ok(()) => { /* yay */ }
|
2019-12-22 22:42:04 +00:00
|
|
|
}
|
|
|
|
}
|
2018-03-08 14:36:43 +00:00
|
|
|
|
2019-04-27 19:28:40 +00:00
|
|
|
/// Calculates the buffer's new size given that it'll hold `used_capacity +
|
|
|
|
/// needed_extra_capacity` elements. This logic is used in amortized reserve methods.
|
2015-08-12 03:53:58 +00:00
|
|
|
/// Returns `(new_capacity, new_alloc_size)`.
|
2019-12-22 22:42:04 +00:00
|
|
|
fn amortized_new_size(
|
|
|
|
&self,
|
|
|
|
used_capacity: usize,
|
|
|
|
needed_extra_capacity: usize,
|
|
|
|
) -> Result<usize, TryReserveError> {
|
2019-09-05 16:15:28 +00:00
|
|
|
// Nothing we can really do about these checks, sadly.
|
2019-12-22 22:42:04 +00:00
|
|
|
let required_cap =
|
|
|
|
used_capacity.checked_add(needed_extra_capacity).ok_or(CapacityOverflow)?;
|
2015-08-12 03:53:58 +00:00
|
|
|
// Cannot overflow, because `cap <= isize::MAX`, and type of `cap` is `usize`.
|
|
|
|
let double_cap = self.cap * 2;
|
|
|
|
// `double_cap` guarantees exponential growth.
|
2018-03-08 14:36:43 +00:00
|
|
|
Ok(cmp::max(double_cap, required_cap))
|
2015-08-12 03:53:58 +00:00
|
|
|
}
|
|
|
|
|
2018-05-10 00:16:10 +00:00
|
|
|
/// The same as `reserve`, but returns on errors instead of panicking or aborting.
|
2019-12-22 22:42:04 +00:00
|
|
|
pub fn try_reserve(
|
|
|
|
&mut self,
|
|
|
|
used_capacity: usize,
|
|
|
|
needed_extra_capacity: usize,
|
|
|
|
) -> Result<(), TryReserveError> {
|
2019-04-27 19:28:40 +00:00
|
|
|
self.reserve_internal(used_capacity, needed_extra_capacity, Fallible, Amortized)
|
2018-05-10 00:16:10 +00:00
|
|
|
}
|
|
|
|
|
2015-07-10 04:57:21 +00:00
|
|
|
/// Ensures that the buffer contains at least enough space to hold
|
2019-04-27 19:28:40 +00:00
|
|
|
/// `used_capacity + needed_extra_capacity` elements. If it doesn't already have
|
2015-07-10 04:57:21 +00:00
|
|
|
/// enough capacity, will reallocate enough space plus comfortable slack
|
2015-10-13 13:44:11 +00:00
|
|
|
/// space to get amortized `O(1)` behavior. Will limit this behavior
|
2015-07-10 04:57:21 +00:00
|
|
|
/// if it would needlessly cause itself to panic.
|
|
|
|
///
|
2019-04-27 19:28:40 +00:00
|
|
|
/// If `used_capacity` exceeds `self.capacity()`, this may fail to actually allocate
|
2015-07-10 04:57:21 +00:00
|
|
|
/// the requested space. This is not really unsafe, but the unsafe
|
2015-10-13 13:44:11 +00:00
|
|
|
/// code *you* write that relies on the behavior of this function may break.
|
2015-07-10 04:57:21 +00:00
|
|
|
///
|
|
|
|
/// This is ideal for implementing a bulk-push operation like `extend`.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// * Panics if the requested capacity exceeds `usize::MAX` bytes.
|
|
|
|
/// * Panics on 32-bit platforms if the requested capacity exceeds
|
|
|
|
/// `isize::MAX` bytes.
|
|
|
|
///
|
|
|
|
/// # Aborts
|
|
|
|
///
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Aborts on OOM.
|
2015-07-10 04:57:21 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2017-06-20 07:15:16 +00:00
|
|
|
/// ```
|
2019-04-03 17:50:28 +00:00
|
|
|
/// # #![feature(raw_vec_internals)]
|
2017-06-20 07:15:16 +00:00
|
|
|
/// # extern crate alloc;
|
|
|
|
/// # use std::ptr;
|
|
|
|
/// # use alloc::raw_vec::RawVec;
|
2015-07-10 04:57:21 +00:00
|
|
|
/// struct MyVec<T> {
|
|
|
|
/// buf: RawVec<T>,
|
|
|
|
/// len: usize,
|
|
|
|
/// }
|
|
|
|
///
|
2017-06-20 07:15:16 +00:00
|
|
|
/// impl<T: Clone> MyVec<T> {
|
2015-07-10 04:57:21 +00:00
|
|
|
/// pub fn push_all(&mut self, elems: &[T]) {
|
|
|
|
/// self.buf.reserve(self.len, elems.len());
|
|
|
|
/// // reserve would have aborted or panicked if the len exceeded
|
|
|
|
/// // `isize::MAX` so this is safe to do unchecked now.
|
|
|
|
/// for x in elems {
|
|
|
|
/// unsafe {
|
2018-08-20 02:16:22 +00:00
|
|
|
/// ptr::write(self.buf.ptr().add(self.len), x.clone());
|
2015-07-10 04:57:21 +00:00
|
|
|
/// }
|
|
|
|
/// self.len += 1;
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// }
|
2017-06-20 07:15:16 +00:00
|
|
|
/// # fn main() {
|
|
|
|
/// # let mut vector = MyVec { buf: RawVec::new(), len: 0 };
|
|
|
|
/// # vector.push_all(&[1, 3, 5, 7, 9]);
|
|
|
|
/// # }
|
2015-07-10 04:57:21 +00:00
|
|
|
/// ```
|
2019-04-27 19:28:40 +00:00
|
|
|
pub fn reserve(&mut self, used_capacity: usize, needed_extra_capacity: usize) {
|
|
|
|
match self.reserve_internal(used_capacity, needed_extra_capacity, Infallible, Amortized) {
|
2018-04-06 20:46:10 +00:00
|
|
|
Err(CapacityOverflow) => capacity_overflow(),
|
2019-06-12 16:47:58 +00:00
|
|
|
Err(AllocError { .. }) => unreachable!(),
|
2018-03-08 14:36:43 +00:00
|
|
|
Ok(()) => { /* yay */ }
|
2018-05-15 00:56:46 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-12 03:53:58 +00:00
|
|
|
/// Attempts to ensure that the buffer contains at least enough space to hold
|
2019-04-27 19:28:40 +00:00
|
|
|
/// `used_capacity + needed_extra_capacity` elements. If it doesn't already have
|
2015-08-12 03:53:58 +00:00
|
|
|
/// enough capacity, will reallocate in place enough space plus comfortable slack
|
2017-08-15 19:45:21 +00:00
|
|
|
/// space to get amortized `O(1)` behavior. Will limit this behaviour
|
2015-08-12 03:53:58 +00:00
|
|
|
/// if it would needlessly cause itself to panic.
|
|
|
|
///
|
2019-04-27 19:28:40 +00:00
|
|
|
/// If `used_capacity` exceeds `self.capacity()`, this may fail to actually allocate
|
2015-08-12 03:53:58 +00:00
|
|
|
/// the requested space. This is not really unsafe, but the unsafe
|
2017-08-15 19:45:21 +00:00
|
|
|
/// code *you* write that relies on the behavior of this function may break.
|
2015-08-12 03:53:58 +00:00
|
|
|
///
|
2019-02-09 22:16:58 +00:00
|
|
|
/// Returns `true` if the reallocation attempt has succeeded.
|
2015-08-12 03:53:58 +00:00
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// * Panics if the requested capacity exceeds `usize::MAX` bytes.
|
|
|
|
/// * Panics on 32-bit platforms if the requested capacity exceeds
|
|
|
|
/// `isize::MAX` bytes.
|
2019-04-27 19:28:40 +00:00
|
|
|
pub fn reserve_in_place(&mut self, used_capacity: usize, needed_extra_capacity: usize) -> bool {
|
2015-08-12 03:53:58 +00:00
|
|
|
unsafe {
|
|
|
|
// NOTE: we don't early branch on ZSTs here because we want this
|
|
|
|
// to actually catch "asking for more than usize::MAX" in that case.
|
|
|
|
// If we make it past the first branch then we are guaranteed to
|
|
|
|
// panic.
|
|
|
|
|
|
|
|
// Don't actually need any more capacity. If the current `cap` is 0, we can't
|
|
|
|
// reallocate in place.
|
2019-04-27 19:28:40 +00:00
|
|
|
// Wrapping in case they give a bad `used_capacity`
|
2017-08-11 23:00:09 +00:00
|
|
|
let old_layout = match self.current_layout() {
|
|
|
|
Some(layout) => layout,
|
|
|
|
None => return false,
|
|
|
|
};
|
2019-04-27 19:28:40 +00:00
|
|
|
if self.capacity().wrapping_sub(used_capacity) >= needed_extra_capacity {
|
2015-08-12 03:53:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
let new_cap = self
|
|
|
|
.amortized_new_size(used_capacity, needed_extra_capacity)
|
2018-04-06 20:46:10 +00:00
|
|
|
.unwrap_or_else(|_| capacity_overflow());
|
2015-08-12 03:53:58 +00:00
|
|
|
|
2019-04-27 19:28:40 +00:00
|
|
|
// Here, `cap < used_capacity + needed_extra_capacity <= new_cap`
|
|
|
|
// (regardless of whether `self.cap - used_capacity` wrapped).
|
2019-09-05 16:15:28 +00:00
|
|
|
// Therefore, we can safely call `grow_in_place`.
|
2017-05-24 16:06:11 +00:00
|
|
|
|
|
|
|
let new_layout = Layout::new::<T>().repeat(new_cap).unwrap().0;
|
2017-08-11 23:00:09 +00:00
|
|
|
// FIXME: may crash and burn on over-reserve
|
2018-04-06 20:46:10 +00:00
|
|
|
alloc_guard(new_layout.size()).unwrap_or_else(|_| capacity_overflow());
|
2018-04-02 23:51:02 +00:00
|
|
|
match self.a.grow_in_place(
|
2019-12-22 22:42:04 +00:00
|
|
|
NonNull::from(self.ptr).cast(),
|
|
|
|
old_layout,
|
|
|
|
new_layout.size(),
|
2018-04-02 23:51:02 +00:00
|
|
|
) {
|
2017-05-24 16:06:11 +00:00
|
|
|
Ok(_) => {
|
|
|
|
self.cap = new_cap;
|
|
|
|
true
|
|
|
|
}
|
2019-12-22 22:42:04 +00:00
|
|
|
Err(_) => false,
|
2015-08-12 03:53:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 04:57:21 +00:00
|
|
|
/// Shrinks the allocation down to the specified amount. If the given amount
|
|
|
|
/// is 0, actually completely deallocates.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// Panics if the given amount is *larger* than the current capacity.
|
|
|
|
///
|
|
|
|
/// # Aborts
|
|
|
|
///
|
|
|
|
/// Aborts on OOM.
|
|
|
|
pub fn shrink_to_fit(&mut self, amount: usize) {
|
|
|
|
let elem_size = mem::size_of::<T>();
|
|
|
|
|
|
|
|
// Set the `cap` because they might be about to promote to a `Box<[T]>`
|
|
|
|
if elem_size == 0 {
|
|
|
|
self.cap = amount;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
// This check is my waterloo; it's the only thing `Vec` wouldn't have to do.
|
2015-10-12 05:11:59 +00:00
|
|
|
assert!(self.cap >= amount, "Tried to shrink to a larger capacity");
|
2015-07-10 04:57:21 +00:00
|
|
|
|
|
|
|
if amount == 0 {
|
2017-05-24 16:06:11 +00:00
|
|
|
// We want to create a new zero-length vector within the
|
2019-09-05 16:15:28 +00:00
|
|
|
// same allocator. We use `ptr::write` to avoid an
|
2017-05-24 16:06:11 +00:00
|
|
|
// erroneous attempt to drop the contents, and we use
|
2019-09-05 16:15:28 +00:00
|
|
|
// `ptr::read` to sidestep condition against destructuring
|
2017-05-24 16:06:11 +00:00
|
|
|
// types that implement Drop.
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let a = ptr::read(&self.a as *const A);
|
|
|
|
self.dealloc_buffer();
|
|
|
|
ptr::write(self, RawVec::new_in(a));
|
|
|
|
}
|
2015-07-10 04:57:21 +00:00
|
|
|
} else if self.cap != amount {
|
|
|
|
unsafe {
|
2017-08-11 23:00:09 +00:00
|
|
|
// We know here that our `amount` is greater than zero. This
|
|
|
|
// implies, via the assert above, that capacity is also greater
|
|
|
|
// than zero, which means that we've got a current layout that
|
|
|
|
// "fits"
|
|
|
|
//
|
|
|
|
// We also know that `self.cap` is greater than `amount`, and
|
|
|
|
// consequently we don't need runtime checks for creating either
|
2019-09-05 16:15:28 +00:00
|
|
|
// layout.
|
2017-08-11 23:00:09 +00:00
|
|
|
let old_size = elem_size * self.cap;
|
|
|
|
let new_size = elem_size * amount;
|
|
|
|
let align = mem::align_of::<T>();
|
|
|
|
let old_layout = Layout::from_size_align_unchecked(old_size, align);
|
2019-12-22 22:42:04 +00:00
|
|
|
match self.a.realloc(NonNull::from(self.ptr).cast(), old_layout, new_size) {
|
2018-04-02 23:51:02 +00:00
|
|
|
Ok(p) => self.ptr = p.cast().into(),
|
2019-12-22 22:42:04 +00:00
|
|
|
Err(_) => {
|
|
|
|
handle_alloc_error(Layout::from_size_align_unchecked(new_size, align))
|
|
|
|
}
|
2015-09-23 22:00:54 +00:00
|
|
|
}
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
|
|
|
self.cap = amount;
|
|
|
|
}
|
|
|
|
}
|
2017-05-24 16:06:11 +00:00
|
|
|
}
|
2015-07-10 04:57:21 +00:00
|
|
|
|
2018-05-15 00:56:46 +00:00
|
|
|
enum Fallibility {
|
|
|
|
Fallible,
|
|
|
|
Infallible,
|
|
|
|
}
|
|
|
|
|
2019-02-02 10:05:20 +00:00
|
|
|
use Fallibility::*;
|
2018-05-15 00:56:46 +00:00
|
|
|
|
|
|
|
enum ReserveStrategy {
|
|
|
|
Exact,
|
|
|
|
Amortized,
|
|
|
|
}
|
|
|
|
|
2019-02-02 10:05:20 +00:00
|
|
|
use ReserveStrategy::*;
|
2018-05-15 00:56:46 +00:00
|
|
|
|
2020-01-23 00:49:29 +00:00
|
|
|
impl<T, A: AllocRef> RawVec<T, A> {
|
2018-05-15 00:56:46 +00:00
|
|
|
fn reserve_internal(
|
|
|
|
&mut self,
|
2019-04-27 19:28:40 +00:00
|
|
|
used_capacity: usize,
|
|
|
|
needed_extra_capacity: usize,
|
2018-05-15 00:56:46 +00:00
|
|
|
fallibility: Fallibility,
|
|
|
|
strategy: ReserveStrategy,
|
2019-06-12 18:02:01 +00:00
|
|
|
) -> Result<(), TryReserveError> {
|
2018-05-15 00:56:46 +00:00
|
|
|
unsafe {
|
|
|
|
// NOTE: we don't early branch on ZSTs here because we want this
|
|
|
|
// to actually catch "asking for more than usize::MAX" in that case.
|
|
|
|
// If we make it past the first branch then we are guaranteed to
|
|
|
|
// panic.
|
|
|
|
|
|
|
|
// Don't actually need any more capacity.
|
2019-04-27 19:28:40 +00:00
|
|
|
// Wrapping in case they gave a bad `used_capacity`.
|
|
|
|
if self.capacity().wrapping_sub(used_capacity) >= needed_extra_capacity {
|
2018-05-15 00:56:46 +00:00
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2019-09-05 16:15:28 +00:00
|
|
|
// Nothing we can really do about these checks, sadly.
|
2018-05-15 00:56:46 +00:00
|
|
|
let new_cap = match strategy {
|
2019-12-22 22:42:04 +00:00
|
|
|
Exact => {
|
|
|
|
used_capacity.checked_add(needed_extra_capacity).ok_or(CapacityOverflow)?
|
|
|
|
}
|
2019-04-27 19:28:40 +00:00
|
|
|
Amortized => self.amortized_new_size(used_capacity, needed_extra_capacity)?,
|
2018-05-15 00:56:46 +00:00
|
|
|
};
|
|
|
|
let new_layout = Layout::array::<T>(new_cap).map_err(|_| CapacityOverflow)?;
|
|
|
|
|
|
|
|
alloc_guard(new_layout.size())?;
|
|
|
|
|
|
|
|
let res = match self.current_layout() {
|
|
|
|
Some(layout) => {
|
|
|
|
debug_assert!(new_layout.align() == layout.align());
|
2018-05-31 06:57:43 +00:00
|
|
|
self.a.realloc(NonNull::from(self.ptr).cast(), layout, new_layout.size())
|
2018-05-15 00:56:46 +00:00
|
|
|
}
|
|
|
|
None => self.a.alloc(new_layout),
|
|
|
|
};
|
|
|
|
|
2019-06-12 16:47:58 +00:00
|
|
|
let ptr = match (res, fallibility) {
|
2018-06-13 22:32:30 +00:00
|
|
|
(Err(AllocErr), Infallible) => handle_alloc_error(new_layout),
|
2019-12-22 22:42:04 +00:00
|
|
|
(Err(AllocErr), Fallible) => {
|
|
|
|
return Err(TryReserveError::AllocError {
|
|
|
|
layout: new_layout,
|
|
|
|
non_exhaustive: (),
|
|
|
|
});
|
|
|
|
}
|
2019-06-12 16:47:58 +00:00
|
|
|
(Ok(ptr), _) => ptr,
|
|
|
|
};
|
2018-05-15 00:56:46 +00:00
|
|
|
|
2019-06-12 16:47:58 +00:00
|
|
|
self.ptr = ptr.cast().into();
|
2018-05-15 00:56:46 +00:00
|
|
|
self.cap = new_cap;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-03 19:15:06 +00:00
|
|
|
impl<T> RawVec<T, Global> {
|
2015-07-10 04:57:21 +00:00
|
|
|
/// Converts the entire buffer into `Box<[T]>`.
|
|
|
|
///
|
|
|
|
/// Note that this will correctly reconstitute any `cap` changes
|
2019-09-05 16:15:28 +00:00
|
|
|
/// that may have been performed. (See description of type for details.)
|
2019-05-27 06:43:20 +00:00
|
|
|
///
|
|
|
|
/// # Undefined Behavior
|
|
|
|
///
|
|
|
|
/// All elements of `RawVec<T, Global>` must be initialized. Notice that
|
|
|
|
/// the rules around uninitialized boxed values are not finalized yet,
|
|
|
|
/// but until they are, it is advisable to avoid them.
|
2015-07-10 04:57:21 +00:00
|
|
|
pub unsafe fn into_box(self) -> Box<[T]> {
|
2019-09-05 16:15:28 +00:00
|
|
|
// NOTE: not calling `capacity()` here; actually using the real `cap` field!
|
2015-07-10 04:57:21 +00:00
|
|
|
let slice = slice::from_raw_parts_mut(self.ptr(), self.cap);
|
|
|
|
let output: Box<[T]> = Box::from_raw(slice);
|
|
|
|
mem::forget(self);
|
|
|
|
output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-23 00:49:29 +00:00
|
|
|
impl<T, A: AllocRef> RawVec<T, A> {
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Frees the memory owned by the `RawVec` *without* trying to drop its contents.
|
2017-05-24 16:06:11 +00:00
|
|
|
pub unsafe fn dealloc_buffer(&mut self) {
|
2015-07-10 04:57:21 +00:00
|
|
|
let elem_size = mem::size_of::<T>();
|
2017-08-11 23:00:09 +00:00
|
|
|
if elem_size != 0 {
|
|
|
|
if let Some(layout) = self.current_layout() {
|
2018-05-31 06:57:43 +00:00
|
|
|
self.a.dealloc(NonNull::from(self.ptr).cast(), layout);
|
2017-08-11 23:00:09 +00:00
|
|
|
}
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-23 00:49:29 +00:00
|
|
|
unsafe impl<#[may_dangle] T, A: AllocRef> Drop for RawVec<T, A> {
|
2019-09-05 16:15:28 +00:00
|
|
|
/// Frees the memory owned by the `RawVec` *without* trying to drop its contents.
|
2017-05-24 16:06:11 +00:00
|
|
|
fn drop(&mut self) {
|
2019-12-22 22:42:04 +00:00
|
|
|
unsafe {
|
|
|
|
self.dealloc_buffer();
|
|
|
|
}
|
2017-05-24 16:06:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 04:57:21 +00:00
|
|
|
// We need to guarantee the following:
|
2019-09-05 16:15:28 +00:00
|
|
|
// * We don't ever allocate `> isize::MAX` byte-size objects.
|
|
|
|
// * We don't overflow `usize::MAX` and actually allocate too little.
|
2015-07-10 04:57:21 +00:00
|
|
|
//
|
|
|
|
// On 64-bit we just need to check for overflow since trying to allocate
|
2016-05-06 13:31:11 +00:00
|
|
|
// `> isize::MAX` bytes will surely fail. On 32-bit and 16-bit we need to add
|
|
|
|
// an extra guard for this in case we're running on a platform which can use
|
2019-09-05 16:15:28 +00:00
|
|
|
// all 4GB in user-space, e.g., PAE or x32.
|
2015-07-10 04:57:21 +00:00
|
|
|
|
|
|
|
#[inline]
|
2019-06-12 18:02:01 +00:00
|
|
|
fn alloc_guard(alloc_size: usize) -> Result<(), TryReserveError> {
|
2019-02-02 09:34:36 +00:00
|
|
|
if mem::size_of::<usize>() < 8 && alloc_size > core::isize::MAX as usize {
|
2018-03-08 14:36:43 +00:00
|
|
|
Err(CapacityOverflow)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
2015-08-15 05:17:17 +00:00
|
|
|
}
|
2015-07-10 04:57:21 +00:00
|
|
|
}
|
2015-10-30 21:17:16 +00:00
|
|
|
|
2018-04-06 20:46:10 +00:00
|
|
|
// One central function responsible for reporting capacity overflows. This'll
|
|
|
|
// ensure that the code generation related to these panics is minimal as there's
|
|
|
|
// only one location which panics rather than a bunch throughout the module.
|
|
|
|
fn capacity_overflow() -> ! {
|
2019-09-05 16:15:28 +00:00
|
|
|
panic!("capacity overflow");
|
2018-04-06 20:46:10 +00:00
|
|
|
}
|