alloc/raw_vec/mod.rs
1#![unstable(feature = "raw_vec_internals", reason = "unstable const warnings", issue = "none")]
2#![cfg_attr(test, allow(dead_code))]
3
4// Note: This module is also included in the alloctests crate using #[path] to
5// run the tests. See the comment there for an explanation why this is the case.
6
7use core::marker::{Destruct, PhantomData};
8use core::mem::{Alignment, ManuallyDrop, MaybeUninit, SizedTypeProperties};
9use core::ptr::{self, NonNull, Unique};
10use core::{cmp, hint};
11
12#[cfg(not(no_global_oom_handling))]
13use crate::alloc::handle_alloc_error;
14use crate::alloc::{Allocator, Global, Layout};
15use crate::boxed::Box;
16use crate::collections::TryReserveError;
17use crate::collections::TryReserveErrorKind::*;
18
19#[cfg(test)]
20mod tests;
21
22// One central function responsible for reporting capacity overflows. This'll
23// ensure that the code generation related to these panics is minimal as there's
24// only one location which panics rather than a bunch throughout the module.
25#[cfg(not(no_global_oom_handling))]
26#[cfg_attr(not(panic = "immediate-abort"), inline(never))]
27const fn capacity_overflow() -> ! {
28 panic!("capacity overflow");
29}
30
31enum AllocInit {
32 /// The contents of the new memory are uninitialized.
33 Uninitialized,
34 #[cfg(not(no_global_oom_handling))]
35 /// The new memory is guaranteed to be zeroed.
36 Zeroed,
37}
38
39type Cap = core::num::niche_types::UsizeNoHighBit;
40
41const ZERO_CAP: Cap = unsafe { Cap::new_unchecked(0) };
42
43/// `Cap(cap)`, except if `T` is a ZST then `Cap::ZERO`.
44///
45/// # Safety: cap must be <= `isize::MAX`.
46const unsafe fn new_cap<T>(cap: usize) -> Cap {
47 if T::IS_ZST { ZERO_CAP } else { unsafe { Cap::new_unchecked(cap) } }
48}
49
50/// A low-level utility for more ergonomically allocating, reallocating, and deallocating
51/// a buffer of memory on the heap without having to worry about all the corner cases
52/// involved. This type is excellent for building your own data structures like Vec and VecDeque.
53/// In particular:
54///
55/// * Produces `Unique::dangling()` on zero-sized types.
56/// * Produces `Unique::dangling()` on zero-length allocations.
57/// * Avoids freeing `Unique::dangling()`.
58/// * Catches all overflows in capacity computations (promotes them to "capacity overflow" panics).
59/// * Guards against 32-bit systems allocating more than `isize::MAX` bytes.
60/// * Guards against overflowing your length.
61/// * Calls `handle_alloc_error` for fallible allocations.
62/// * Contains a `ptr::Unique` and thus endows the user with all related benefits.
63/// * Uses the excess returned from the allocator to use the largest available capacity.
64///
65/// This type does not in anyway inspect the memory that it manages. When dropped it *will*
66/// free its memory, but it *won't* try to drop its contents. It is up to the user of `RawVec`
67/// to handle the actual things *stored* inside of a `RawVec`.
68///
69/// Note that the excess of a zero-sized types is always infinite, so `capacity()` always returns
70/// `usize::MAX`. This means that you need to be careful when round-tripping this type with a
71/// `Box<[T]>`, since `capacity()` won't yield the length.
72#[allow(missing_debug_implementations)]
73pub(crate) struct RawVec<T, A: Allocator = Global> {
74 inner: RawVecInner<A>,
75 _marker: PhantomData<T>,
76}
77
78/// Like a `RawVec`, but only generic over the allocator, not the type.
79///
80/// As such, all the methods need the layout passed-in as a parameter.
81///
82/// Having this separation reduces the amount of code we need to monomorphize,
83/// as most operations don't need the actual type, just its layout.
84#[allow(missing_debug_implementations)]
85struct RawVecInner<A: Allocator = Global> {
86 ptr: Unique<u8>,
87 /// Never used for ZSTs; it's `capacity()`'s responsibility to return usize::MAX in that case.
88 ///
89 /// # Safety
90 ///
91 /// `cap` must be in the `0..=isize::MAX` range.
92 cap: Cap,
93 alloc: A,
94}
95
96impl<T> RawVec<T, Global> {
97 /// Creates the biggest possible `RawVec` (on the system heap)
98 /// without allocating. If `T` has positive size, then this makes a
99 /// `RawVec` with capacity `0`. If `T` is zero-sized, then it makes a
100 /// `RawVec` with capacity `usize::MAX`. Useful for implementing
101 /// delayed allocation.
102 #[must_use]
103 pub(crate) const fn new() -> Self {
104 Self::new_in(Global)
105 }
106
107 /// Creates a `RawVec` (on the system heap) with exactly the
108 /// capacity and alignment requirements for a `[T; capacity]`. This is
109 /// equivalent to calling `RawVec::new` when `capacity` is `0` or `T` is
110 /// zero-sized. Note that if `T` is zero-sized this means you will
111 /// *not* get a `RawVec` with the requested capacity.
112 ///
113 /// Non-fallible version of `try_with_capacity`
114 ///
115 /// # Panics
116 ///
117 /// Panics if the requested capacity exceeds `isize::MAX` bytes.
118 ///
119 /// # Aborts
120 ///
121 /// Aborts on OOM.
122 #[cfg(not(any(no_global_oom_handling, test)))]
123 #[must_use]
124 #[inline]
125 pub(crate) fn with_capacity(capacity: usize) -> Self {
126 Self { inner: RawVecInner::with_capacity(capacity, T::LAYOUT), _marker: PhantomData }
127 }
128
129 /// Like `with_capacity`, but guarantees the buffer is zeroed.
130 #[cfg(not(any(no_global_oom_handling, test)))]
131 #[must_use]
132 #[inline]
133 pub(crate) fn with_capacity_zeroed(capacity: usize) -> Self {
134 Self {
135 inner: RawVecInner::with_capacity_zeroed_in(capacity, Global, T::LAYOUT),
136 _marker: PhantomData,
137 }
138 }
139}
140
141impl RawVecInner<Global> {
142 #[cfg(not(any(no_global_oom_handling, test)))]
143 #[must_use]
144 #[inline]
145 fn with_capacity(capacity: usize, elem_layout: Layout) -> Self {
146 match Self::try_allocate_in(capacity, AllocInit::Uninitialized, Global, elem_layout) {
147 Ok(res) => res,
148 Err(err) => handle_error(err),
149 }
150 }
151}
152
153// Tiny Vecs are dumb. Skip to:
154// - 8 if the element size is 1, because any heap allocator is likely
155// to round up a request of less than 8 bytes to at least 8 bytes.
156// - 4 if elements are moderate-sized (<= 1 KiB).
157// - 1 otherwise, to avoid wasting too much space for very short Vecs.
158const fn min_non_zero_cap(size: usize) -> usize {
159 if size == 1 {
160 8
161 } else if size <= 1024 {
162 4
163 } else {
164 1
165 }
166}
167
168#[rustc_const_unstable(feature = "const_heap", issue = "79597")]
169#[rustfmt::skip] // FIXME(fee1-dead): temporary measure before rustfmt is bumped
170const impl<T, A: [const] Allocator + [const] Destruct> RawVec<T, A> {
171 /// Like `with_capacity`, but parameterized over the choice of
172 /// allocator for the returned `RawVec`.
173 #[cfg(not(no_global_oom_handling))]
174 #[inline]
175 pub(crate) fn with_capacity_in(capacity: usize, alloc: A) -> Self {
176 Self {
177 inner: RawVecInner::with_capacity_in(capacity, alloc, T::LAYOUT),
178 _marker: PhantomData,
179 }
180 }
181
182 /// A specialized version of `self.reserve(len, 1)` which requires the
183 /// caller to ensure `len == self.capacity()`.
184 #[cfg(not(no_global_oom_handling))]
185 #[inline(never)]
186 pub(crate) fn grow_one(&mut self) {
187 // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout
188 unsafe { self.inner.grow_one(T::LAYOUT) }
189 }
190}
191
192impl<T, A: Allocator> RawVec<T, A> {
193 #[cfg(not(no_global_oom_handling))]
194 pub(crate) const MIN_NON_ZERO_CAP: usize = min_non_zero_cap(size_of::<T>());
195
196 /// Like `new`, but parameterized over the choice of allocator for
197 /// the returned `RawVec`.
198 #[inline]
199 pub(crate) const fn new_in(alloc: A) -> Self {
200 // Check assumption made in `current_memory`
201 const { assert!(T::LAYOUT.size() % T::LAYOUT.align() == 0) };
202 Self { inner: RawVecInner::new_in(alloc, Alignment::of::<T>()), _marker: PhantomData }
203 }
204
205 /// Like `try_with_capacity`, but parameterized over the choice of
206 /// allocator for the returned `RawVec`.
207 #[inline]
208 pub(crate) fn try_with_capacity_in(capacity: usize, alloc: A) -> Result<Self, TryReserveError> {
209 match RawVecInner::try_with_capacity_in(capacity, alloc, T::LAYOUT) {
210 Ok(inner) => Ok(Self { inner, _marker: PhantomData }),
211 Err(e) => Err(e),
212 }
213 }
214
215 /// Like `with_capacity_zeroed`, but parameterized over the choice
216 /// of allocator for the returned `RawVec`.
217 #[cfg(not(no_global_oom_handling))]
218 #[inline]
219 pub(crate) fn with_capacity_zeroed_in(capacity: usize, alloc: A) -> Self {
220 Self {
221 inner: RawVecInner::with_capacity_zeroed_in(capacity, alloc, T::LAYOUT),
222 _marker: PhantomData,
223 }
224 }
225
226 /// Converts the entire buffer into `Box<[MaybeUninit<T>]>` with the specified `len`.
227 ///
228 /// Note that this will correctly reconstitute any `cap` changes
229 /// that may have been performed. (See description of type for details.)
230 ///
231 /// # Safety
232 ///
233 /// * `len` must be greater than or equal to the most recently requested capacity, and
234 /// * `len` must be less than or equal to `self.capacity()`.
235 ///
236 /// Note, that the requested capacity and `self.capacity()` could differ, as
237 /// an allocator could overallocate and return a greater memory block than requested.
238 pub(crate) unsafe fn into_box(self, len: usize) -> Box<[MaybeUninit<T>], A> {
239 // Sanity-check one half of the safety requirement (we cannot check the other half).
240 debug_assert!(
241 len <= self.capacity(),
242 "`len` must be smaller than or equal to `self.capacity()`"
243 );
244
245 let me = ManuallyDrop::new(self);
246 unsafe {
247 let slice = me.ptr().cast::<MaybeUninit<T>>().cast_slice(len);
248 Box::from_raw_in(slice, ptr::read(&me.inner.alloc))
249 }
250 }
251
252 /// Reconstitutes a `RawVec` from a pointer, capacity, and allocator.
253 ///
254 /// # Safety
255 ///
256 /// The `ptr` must be allocated (via the given allocator `alloc`), and with the given
257 /// `capacity`.
258 /// The `capacity` cannot exceed `isize::MAX` for sized types. (only a concern on 32-bit
259 /// systems). For ZSTs capacity is ignored.
260 /// If the `ptr` and `capacity` come from a `RawVec` created via `alloc`, then this is
261 /// guaranteed.
262 #[inline]
263 pub(crate) const unsafe fn from_raw_parts_in(ptr: *mut T, capacity: usize, alloc: A) -> Self {
264 // SAFETY: Precondition passed to the caller
265 unsafe {
266 let ptr = ptr.cast();
267 let capacity = new_cap::<T>(capacity);
268 Self {
269 inner: RawVecInner::from_raw_parts_in(ptr, capacity, alloc),
270 _marker: PhantomData,
271 }
272 }
273 }
274
275 /// A convenience method for hoisting the non-null precondition out of [`RawVec::from_raw_parts_in`].
276 ///
277 /// # Safety
278 ///
279 /// See [`RawVec::from_raw_parts_in`].
280 #[inline]
281 #[rustc_const_unstable(feature = "const_heap", issue = "79597")]
282 pub(crate) const unsafe fn from_nonnull_in(ptr: NonNull<T>, capacity: usize, alloc: A) -> Self {
283 // SAFETY: Precondition passed to the caller
284 unsafe {
285 let ptr = ptr.cast();
286 let capacity = new_cap::<T>(capacity);
287 Self { inner: RawVecInner::from_nonnull_in(ptr, capacity, alloc), _marker: PhantomData }
288 }
289 }
290
291 /// Gets a raw pointer to the start of the allocation. Note that this is
292 /// `Unique::dangling()` if `capacity == 0` or `T` is zero-sized. In the former case, you must
293 /// be careful.
294 #[inline]
295 pub(crate) const fn ptr(&self) -> *mut T {
296 self.inner.ptr()
297 }
298
299 #[inline]
300 pub(crate) const fn non_null(&self) -> NonNull<T> {
301 self.inner.non_null()
302 }
303
304 /// Gets the capacity of the allocation.
305 ///
306 /// This will always be `usize::MAX` if `T` is zero-sized.
307 #[inline]
308 pub(crate) const fn capacity(&self) -> usize {
309 self.inner.capacity(size_of::<T>())
310 }
311
312 /// Returns a shared reference to the allocator backing this `RawVec`.
313 #[inline]
314 pub(crate) const fn allocator(&self) -> &A {
315 self.inner.allocator()
316 }
317
318 /// Ensures that the buffer contains at least enough space to hold `len +
319 /// additional` elements. If it doesn't already have enough capacity, will
320 /// reallocate enough space plus comfortable slack space to get amortized
321 /// *O*(1) behavior. Will limit this behavior if it would needlessly cause
322 /// itself to panic.
323 ///
324 /// If `len` exceeds `self.capacity()`, this may fail to actually allocate
325 /// the requested space. This is not really unsafe, but the unsafe
326 /// code *you* write that relies on the behavior of this function may break.
327 ///
328 /// This is ideal for implementing a bulk-push operation like `extend`.
329 ///
330 /// # Panics
331 ///
332 /// Panics if the new capacity exceeds `isize::MAX` _bytes_.
333 ///
334 /// # Aborts
335 ///
336 /// Aborts on OOM.
337 #[cfg(not(no_global_oom_handling))]
338 #[inline]
339 pub(crate) fn reserve(&mut self, len: usize, additional: usize) {
340 // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout
341 unsafe { self.inner.reserve(len, additional, T::LAYOUT) }
342 }
343
344 /// The same as `reserve`, but returns on errors instead of panicking or aborting.
345 pub(crate) fn try_reserve(
346 &mut self,
347 len: usize,
348 additional: usize,
349 ) -> Result<(), TryReserveError> {
350 // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout
351 unsafe { self.inner.try_reserve(len, additional, T::LAYOUT) }
352 }
353
354 /// Ensures that the buffer contains at least enough space to hold `len +
355 /// additional` elements. If it doesn't already, will reallocate the
356 /// minimum possible amount of memory necessary. Generally this will be
357 /// exactly the amount of memory necessary, but in principle the allocator
358 /// is free to give back more than we asked for.
359 ///
360 /// If `len` exceeds `self.capacity()`, this may fail to actually allocate
361 /// the requested space. This is not really unsafe, but the unsafe code
362 /// *you* write that relies on the behavior of this function may break.
363 ///
364 /// # Panics
365 ///
366 /// Panics if the new capacity exceeds `isize::MAX` _bytes_.
367 ///
368 /// # Aborts
369 ///
370 /// Aborts on OOM.
371 #[cfg(not(no_global_oom_handling))]
372 pub(crate) fn reserve_exact(&mut self, len: usize, additional: usize) {
373 // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout
374 unsafe { self.inner.reserve_exact(len, additional, T::LAYOUT) }
375 }
376
377 /// The same as `reserve_exact`, but returns on errors instead of panicking or aborting.
378 pub(crate) fn try_reserve_exact(
379 &mut self,
380 len: usize,
381 additional: usize,
382 ) -> Result<(), TryReserveError> {
383 // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout
384 unsafe { self.inner.try_reserve_exact(len, additional, T::LAYOUT) }
385 }
386
387 /// Shrinks the buffer down to the specified capacity. If the given amount
388 /// is 0, actually completely deallocates.
389 ///
390 /// # Panics
391 ///
392 /// Panics if the given amount is *larger* than the current capacity.
393 ///
394 /// # Aborts
395 ///
396 /// Aborts on OOM.
397 #[cfg(not(no_global_oom_handling))]
398 #[inline]
399 pub(crate) fn shrink_to_fit(&mut self, cap: usize) {
400 // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout
401 unsafe { self.inner.shrink_to_fit(cap, T::LAYOUT) }
402 }
403
404 /// Shrinks the buffer down to the specified capacity. If the given amount
405 /// is 0, actually completely deallocates.
406 ///
407 /// # Errors
408 ///
409 /// This function returns an error if the allocator cannot shrink the allocation.
410 ///
411 /// # Panics
412 ///
413 /// Panics if the given amount is *larger* than the current capacity.
414 #[inline]
415 pub(crate) fn try_shrink_to_fit(&mut self, cap: usize) -> Result<(), TryReserveError> {
416 unsafe { self.inner.try_shrink_to_fit(cap, T::LAYOUT) }
417 }
418}
419
420#[rustc_const_unstable(feature = "const_heap", issue = "79597")]
421const unsafe impl<#[may_dangle] T, A: [const] Allocator + [const] Destruct> Drop for RawVec<T, A> {
422 /// Frees the memory owned by the `RawVec` *without* trying to drop its contents.
423 fn drop(&mut self) {
424 // SAFETY: We are in a Drop impl, self.inner will not be used again.
425 unsafe { self.inner.deallocate(T::LAYOUT) }
426 }
427}
428
429#[rustc_const_unstable(feature = "const_heap", issue = "79597")]
430#[rustfmt::skip] // FIXME(fee1-dead): temporary measure before rustfmt is bumped
431const impl<A: [const] Allocator + [const] Destruct> RawVecInner<A> {
432 #[cfg(not(no_global_oom_handling))]
433 #[inline]
434 fn with_capacity_in(capacity: usize, alloc: A, elem_layout: Layout) -> Self {
435 match Self::try_allocate_in(capacity, AllocInit::Uninitialized, alloc, elem_layout) {
436 Ok(this) => {
437 unsafe {
438 // Make it more obvious that a subsequent Vec::reserve(capacity) will not allocate.
439 hint::assert_unchecked(!this.needs_to_grow(0, capacity, elem_layout));
440 }
441 this
442 }
443 Err(err) => handle_error(err),
444 }
445 }
446
447 fn try_allocate_in(
448 capacity: usize,
449 init: AllocInit,
450 alloc: A,
451 elem_layout: Layout,
452 ) -> Result<Self, TryReserveError> {
453 // We avoid `unwrap_or_else` here because it bloats the amount of
454 // LLVM IR generated.
455 let layout = match layout_array(capacity, elem_layout) {
456 Ok(layout) => layout,
457 Err(_) => return Err(CapacityOverflow.into()),
458 };
459
460 // Don't allocate here because `Drop` will not deallocate when `capacity` is 0.
461 if layout.size() == 0 {
462 return Ok(Self::new_in(alloc, elem_layout.alignment()));
463 }
464
465 let result = match init {
466 AllocInit::Uninitialized => alloc.allocate(layout),
467 #[cfg(not(no_global_oom_handling))]
468 AllocInit::Zeroed => alloc.allocate_zeroed(layout),
469 };
470 let ptr = match result {
471 Ok(ptr) => ptr,
472 Err(_) => return Err(AllocError { layout, non_exhaustive: () }.into()),
473 };
474
475 // Allocators currently return a `NonNull<[u8]>` whose length
476 // matches the size requested. If that ever changes, the capacity
477 // here should change to `ptr.len() / size_of::<T>()`.
478 Ok(Self {
479 ptr: Unique::from(ptr.cast()),
480 cap: unsafe { Cap::new_unchecked(capacity) },
481 alloc,
482 })
483 }
484
485 /// # Safety
486 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
487 /// initially construct `self`
488 /// - `elem_layout`'s size must be a multiple of its alignment
489 #[cfg(not(no_global_oom_handling))]
490 #[inline]
491 unsafe fn grow_one(&mut self, elem_layout: Layout) {
492 // SAFETY: Precondition passed to caller
493 if let Err(err) = unsafe { self.grow_amortized(self.cap.as_inner(), 1, elem_layout) } {
494 handle_error(err);
495 }
496 }
497
498 /// # Safety
499 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
500 /// initially construct `self`
501 /// - `elem_layout`'s size must be a multiple of its alignment
502 /// - The sum of `len` and `additional` must be greater than the current capacity
503 unsafe fn grow_amortized(
504 &mut self,
505 len: usize,
506 additional: usize,
507 elem_layout: Layout,
508 ) -> Result<(), TryReserveError> {
509 // This is ensured by the calling contexts.
510 debug_assert!(additional > 0);
511
512 if elem_layout.size() == 0 {
513 // Since we return a capacity of `usize::MAX` when `elem_size` is
514 // 0, getting to here necessarily means the `RawVec` is overfull.
515 return Err(CapacityOverflow.into());
516 }
517
518 // Nothing we can really do about these checks, sadly.
519 let required_cap = len.checked_add(additional).ok_or(CapacityOverflow)?;
520
521 // This guarantees exponential growth. The doubling cannot overflow
522 // because `cap <= isize::MAX` and the type of `cap` is `usize`.
523 let cap = cmp::max(self.cap.as_inner() * 2, required_cap);
524 let cap = cmp::max(min_non_zero_cap(elem_layout.size()), cap);
525
526 // SAFETY:
527 // - cap >= len + additional
528 // - other preconditions passed to caller
529 let ptr = unsafe { self.finish_grow(cap, elem_layout)? };
530
531 // SAFETY: `finish_grow` would have failed if `cap > isize::MAX`
532 unsafe { self.set_ptr_and_cap(ptr, cap) };
533 Ok(())
534 }
535
536 /// # Safety
537 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
538 /// initially construct `self`
539 /// - `elem_layout`'s size must be a multiple of its alignment
540 /// - `cap` must be greater than the current capacity
541 // not marked inline(never) since we want optimizers to be able to observe the specifics of this
542 // function, see tests/codegen-llvm/vec-reserve-extend.rs.
543 #[cold]
544 unsafe fn finish_grow(
545 &self,
546 cap: usize,
547 elem_layout: Layout,
548 ) -> Result<NonNull<[u8]>, TryReserveError> {
549 let new_layout = layout_array(cap, elem_layout)?;
550
551 let memory = if let Some((ptr, old_layout)) = unsafe { self.current_memory(elem_layout) } {
552 // FIXME(const-hack): switch to `debug_assert_eq`
553 debug_assert!(old_layout.align() == new_layout.align());
554 unsafe {
555 // The allocator checks for alignment equality
556 hint::assert_unchecked(old_layout.align() == new_layout.align());
557 self.alloc.grow(ptr, old_layout, new_layout)
558 }
559 } else {
560 self.alloc.allocate(new_layout)
561 };
562
563 // FIXME(const-hack): switch back to `map_err`
564 match memory {
565 Ok(memory) => Ok(memory),
566 Err(_) => Err(AllocError { layout: new_layout, non_exhaustive: () }.into()),
567 }
568 }
569}
570
571impl<A: Allocator> RawVecInner<A> {
572 #[inline]
573 const fn new_in(alloc: A, align: Alignment) -> Self {
574 let ptr = Unique::from_non_null(NonNull::without_provenance(align.as_nonzero_usize()));
575 // `cap: 0` means "unallocated". zero-sized types are ignored.
576 Self { ptr, cap: ZERO_CAP, alloc }
577 }
578
579 #[inline]
580 fn try_with_capacity_in(
581 capacity: usize,
582 alloc: A,
583 elem_layout: Layout,
584 ) -> Result<Self, TryReserveError> {
585 Self::try_allocate_in(capacity, AllocInit::Uninitialized, alloc, elem_layout)
586 }
587
588 #[cfg(not(no_global_oom_handling))]
589 #[inline]
590 fn with_capacity_zeroed_in(capacity: usize, alloc: A, elem_layout: Layout) -> Self {
591 match Self::try_allocate_in(capacity, AllocInit::Zeroed, alloc, elem_layout) {
592 Ok(res) => res,
593 Err(err) => handle_error(err),
594 }
595 }
596
597 #[inline]
598 const unsafe fn from_raw_parts_in(ptr: *mut u8, cap: Cap, alloc: A) -> Self {
599 Self { ptr: unsafe { Unique::new_unchecked(ptr) }, cap, alloc }
600 }
601
602 #[inline]
603 #[rustc_const_unstable(feature = "const_heap", issue = "79597")]
604 const unsafe fn from_nonnull_in(ptr: NonNull<u8>, cap: Cap, alloc: A) -> Self {
605 Self { ptr: Unique::from(ptr), cap, alloc }
606 }
607
608 #[inline]
609 const fn ptr<T>(&self) -> *mut T {
610 self.non_null::<T>().as_ptr()
611 }
612
613 #[inline]
614 const fn non_null<T>(&self) -> NonNull<T> {
615 self.ptr.cast().as_non_null_ptr()
616 }
617
618 #[inline]
619 const fn capacity(&self, elem_size: usize) -> usize {
620 if elem_size == 0 { usize::MAX } else { self.cap.as_inner() }
621 }
622
623 #[inline]
624 const fn allocator(&self) -> &A {
625 &self.alloc
626 }
627
628 /// # Safety
629 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
630 /// initially construct `self`
631 /// - `elem_layout`'s size must be a multiple of its alignment
632 #[inline]
633 #[rustc_const_unstable(feature = "const_heap", issue = "79597")]
634 const unsafe fn current_memory(&self, elem_layout: Layout) -> Option<(NonNull<u8>, Layout)> {
635 if elem_layout.size() == 0 || self.cap.as_inner() == 0 {
636 None
637 } else {
638 // We could use Layout::array here which ensures the absence of isize and usize overflows
639 // and could hypothetically handle differences between stride and size, but this memory
640 // has already been allocated so we know it can't overflow and currently Rust does not
641 // support such types. So we can do better by skipping some checks and avoid an unwrap.
642 unsafe {
643 let alloc_size = elem_layout.size().unchecked_mul(self.cap.as_inner());
644 let layout = Layout::from_size_align_unchecked(alloc_size, elem_layout.align());
645 Some((self.ptr.into(), layout))
646 }
647 }
648 }
649
650 /// # Safety
651 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
652 /// initially construct `self`
653 /// - `elem_layout`'s size must be a multiple of its alignment
654 #[cfg(not(no_global_oom_handling))]
655 #[inline]
656 unsafe fn reserve(&mut self, len: usize, additional: usize, elem_layout: Layout) {
657 // Callers expect this function to be very cheap when there is already sufficient capacity.
658 // Therefore, we move all the resizing and error-handling logic from grow_amortized and
659 // handle_reserve behind a call, while making sure that this function is likely to be
660 // inlined as just a comparison and a call if the comparison fails.
661 #[cold]
662 unsafe fn do_reserve_and_handle<A: Allocator>(
663 slf: &mut RawVecInner<A>,
664 len: usize,
665 additional: usize,
666 elem_layout: Layout,
667 ) {
668 // SAFETY: Precondition passed to caller
669 if let Err(err) = unsafe { slf.grow_amortized(len, additional, elem_layout) } {
670 handle_error(err);
671 }
672 }
673
674 if self.needs_to_grow(len, additional, elem_layout) {
675 unsafe {
676 do_reserve_and_handle(self, len, additional, elem_layout);
677 }
678 }
679 }
680
681 /// # Safety
682 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
683 /// initially construct `self`
684 /// - `elem_layout`'s size must be a multiple of its alignment
685 unsafe fn try_reserve(
686 &mut self,
687 len: usize,
688 additional: usize,
689 elem_layout: Layout,
690 ) -> Result<(), TryReserveError> {
691 if self.needs_to_grow(len, additional, elem_layout) {
692 // SAFETY: Precondition passed to caller
693 unsafe {
694 self.grow_amortized(len, additional, elem_layout)?;
695 }
696 }
697 unsafe {
698 // Inform the optimizer that the reservation has succeeded or wasn't needed
699 hint::assert_unchecked(!self.needs_to_grow(len, additional, elem_layout));
700 }
701 Ok(())
702 }
703
704 /// # Safety
705 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
706 /// initially construct `self`
707 /// - `elem_layout`'s size must be a multiple of its alignment
708 #[cfg(not(no_global_oom_handling))]
709 unsafe fn reserve_exact(&mut self, len: usize, additional: usize, elem_layout: Layout) {
710 // SAFETY: Precondition passed to caller
711 if let Err(err) = unsafe { self.try_reserve_exact(len, additional, elem_layout) } {
712 handle_error(err);
713 }
714 }
715
716 /// # Safety
717 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
718 /// initially construct `self`
719 /// - `elem_layout`'s size must be a multiple of its alignment
720 unsafe fn try_reserve_exact(
721 &mut self,
722 len: usize,
723 additional: usize,
724 elem_layout: Layout,
725 ) -> Result<(), TryReserveError> {
726 if self.needs_to_grow(len, additional, elem_layout) {
727 // SAFETY: Precondition passed to caller
728 unsafe {
729 self.grow_exact(len, additional, elem_layout)?;
730 }
731 }
732 unsafe {
733 // Inform the optimizer that the reservation has succeeded or wasn't needed
734 hint::assert_unchecked(!self.needs_to_grow(len, additional, elem_layout));
735 }
736 Ok(())
737 }
738
739 /// # Safety
740 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
741 /// initially construct `self`
742 /// - `elem_layout`'s size must be a multiple of its alignment
743 /// - `cap` must be less than or equal to `self.capacity(elem_layout.size())`
744 #[cfg(not(no_global_oom_handling))]
745 #[inline]
746 unsafe fn shrink_to_fit(&mut self, cap: usize, elem_layout: Layout) {
747 if let Err(err) = unsafe { self.shrink(cap, elem_layout) } {
748 handle_error(err);
749 }
750 }
751
752 /// # Safety
753 ///
754 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
755 /// initially construct `self`
756 /// - `elem_layout`'s size must be a multiple of its alignment
757 /// - `cap` must be less than or equal to `self.capacity(elem_layout.size())`
758 unsafe fn try_shrink_to_fit(
759 &mut self,
760 cap: usize,
761 elem_layout: Layout,
762 ) -> Result<(), TryReserveError> {
763 unsafe { self.shrink(cap, elem_layout) }
764 }
765
766 #[inline]
767 const fn needs_to_grow(&self, len: usize, additional: usize, elem_layout: Layout) -> bool {
768 additional > self.capacity(elem_layout.size()).wrapping_sub(len)
769 }
770
771 #[inline]
772 #[rustc_const_unstable(feature = "const_heap", issue = "79597")]
773 const unsafe fn set_ptr_and_cap(&mut self, ptr: NonNull<[u8]>, cap: usize) {
774 // Allocators currently return a `NonNull<[u8]>` whose length matches
775 // the size requested. If that ever changes, the capacity here should
776 // change to `ptr.len() / size_of::<T>()`.
777 self.ptr = Unique::from(ptr.cast());
778 self.cap = unsafe { Cap::new_unchecked(cap) };
779 }
780
781 /// # Safety
782 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
783 /// initially construct `self`
784 /// - `elem_layout`'s size must be a multiple of its alignment
785 /// - The sum of `len` and `additional` must be greater than the current capacity
786 unsafe fn grow_exact(
787 &mut self,
788 len: usize,
789 additional: usize,
790 elem_layout: Layout,
791 ) -> Result<(), TryReserveError> {
792 if elem_layout.size() == 0 {
793 // Since we return a capacity of `usize::MAX` when the type size is
794 // 0, getting to here necessarily means the `RawVec` is overfull.
795 return Err(CapacityOverflow.into());
796 }
797
798 let cap = len.checked_add(additional).ok_or(CapacityOverflow)?;
799
800 // SAFETY: preconditions passed to caller
801 let ptr = unsafe { self.finish_grow(cap, elem_layout)? };
802
803 // SAFETY: `finish_grow` would have failed if `cap > isize::MAX`
804 unsafe { self.set_ptr_and_cap(ptr, cap) };
805 Ok(())
806 }
807
808 /// # Safety
809 /// - `elem_layout` must be valid for `self`, i.e. it must be the same `elem_layout` used to
810 /// initially construct `self`
811 /// - `elem_layout`'s size must be a multiple of its alignment
812 /// - `cap` must be less than or equal to `self.capacity(elem_layout.size())`
813 #[inline]
814 unsafe fn shrink(&mut self, cap: usize, elem_layout: Layout) -> Result<(), TryReserveError> {
815 assert!(cap <= self.capacity(elem_layout.size()), "Tried to shrink to a larger capacity");
816 // SAFETY: Just checked this isn't trying to grow
817 unsafe { self.shrink_unchecked(cap, elem_layout) }
818 }
819
820 /// `shrink`, but without the capacity check.
821 ///
822 /// This is split out so that `shrink` can inline the check, since it
823 /// optimizes out in things like `shrink_to_fit`, without needing to
824 /// also inline all this code, as doing that ends up failing the
825 /// `vec-shrink-panic` codegen test when `shrink_to_fit` ends up being too
826 /// big for LLVM to be willing to inline.
827 ///
828 /// # Safety
829 /// `cap <= self.capacity()`
830 unsafe fn shrink_unchecked(
831 &mut self,
832 cap: usize,
833 elem_layout: Layout,
834 ) -> Result<(), TryReserveError> {
835 // SAFETY: Precondition passed to caller
836 let Some((ptr, layout)) = (unsafe { self.current_memory(elem_layout) }) else {
837 return Ok(());
838 };
839
840 // If shrinking to 0, deallocate the buffer. We don't reach this point
841 // for the T::IS_ZST case since current_memory() will have returned
842 // None.
843 if cap == 0 {
844 unsafe { self.alloc.deallocate(ptr, layout) };
845 self.ptr =
846 unsafe { Unique::new_unchecked(ptr::without_provenance_mut(elem_layout.align())) };
847 self.cap = ZERO_CAP;
848 } else {
849 let ptr = unsafe {
850 // Layout cannot overflow here because it would have
851 // overflowed earlier when capacity was larger.
852 let new_size = elem_layout.size().unchecked_mul(cap);
853 let new_layout = Layout::from_size_align_unchecked(new_size, layout.align());
854 self.alloc
855 .shrink(ptr, layout, new_layout)
856 .map_err(|_| AllocError { layout: new_layout, non_exhaustive: () })?
857 };
858 // SAFETY: if the allocation is valid, then the capacity is too
859 unsafe {
860 self.set_ptr_and_cap(ptr, cap);
861 }
862 }
863 Ok(())
864 }
865}
866
867#[rustc_const_unstable(feature = "const_heap", issue = "79597")]
868const impl<A: [const] Allocator> RawVecInner<A> {
869 /// # Safety
870 ///
871 /// This function deallocates the owned allocation, but does not update `ptr` or `cap` to
872 /// prevent double-free or use-after-free. Essentially, do not do anything with the caller
873 /// after this function returns.
874 /// Ideally this function would take `self` by move, but it cannot because it exists to be
875 /// called from a `Drop` impl.
876 unsafe fn deallocate(&mut self, elem_layout: Layout) {
877 // SAFETY: Precondition passed to caller
878 if let Some((ptr, layout)) = unsafe { self.current_memory(elem_layout) } {
879 unsafe {
880 self.alloc.deallocate(ptr, layout);
881 }
882 }
883 }
884}
885
886// Central function for reserve error handling.
887#[cfg(not(no_global_oom_handling))]
888#[cold]
889#[optimize(size)]
890#[rustc_const_unstable(feature = "const_heap", issue = "79597")]
891const fn handle_error(e: TryReserveError) -> ! {
892 match e.kind() {
893 CapacityOverflow => capacity_overflow(),
894 AllocError { layout, .. } => handle_alloc_error(layout),
895 }
896}
897
898#[inline]
899#[rustc_const_unstable(feature = "const_heap", issue = "79597")]
900const fn layout_array(cap: usize, elem_layout: Layout) -> Result<Layout, TryReserveError> {
901 // This is only used with `elem_layout`s which are those of real rust types,
902 // which lets us use the much-simpler `repeat_packed`.
903 debug_assert!(elem_layout.size() == elem_layout.pad_to_align().size());
904
905 elem_layout.repeat_packed(cap).map_err(const |_| CapacityOverflow.into())
906}