]> git.lizzy.rs Git - rust.git/blob - library/core/src/alloc/layout.rs
Rollup merge of #103439 - Nilstrieb:help-me-with-my-macro, r=estebank
[rust.git] / library / core / src / alloc / layout.rs
1 // Seemingly inconsequential code changes to this file can lead to measurable
2 // performance impact on compilation times, due at least in part to the fact
3 // that the layout code gets called from many instantiations of the various
4 // collections, resulting in having to optimize down excess IR multiple times.
5 // Your performance intuition is useless. Run perf.
6
7 use crate::cmp;
8 use crate::error::Error;
9 use crate::fmt;
10 use crate::mem;
11 use crate::ptr::{Alignment, NonNull};
12
13 // While this function is used in one place and its implementation
14 // could be inlined, the previous attempts to do so made rustc
15 // slower:
16 //
17 // * https://github.com/rust-lang/rust/pull/72189
18 // * https://github.com/rust-lang/rust/pull/79827
19 const fn size_align<T>() -> (usize, usize) {
20     (mem::size_of::<T>(), mem::align_of::<T>())
21 }
22
23 /// Layout of a block of memory.
24 ///
25 /// An instance of `Layout` describes a particular layout of memory.
26 /// You build a `Layout` up as an input to give to an allocator.
27 ///
28 /// All layouts have an associated size and a power-of-two alignment.
29 ///
30 /// (Note that layouts are *not* required to have non-zero size,
31 /// even though `GlobalAlloc` requires that all memory requests
32 /// be non-zero in size. A caller must either ensure that conditions
33 /// like this are met, use specific allocators with looser
34 /// requirements, or use the more lenient `Allocator` interface.)
35 #[stable(feature = "alloc_layout", since = "1.28.0")]
36 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
37 #[lang = "alloc_layout"]
38 pub struct Layout {
39     // size of the requested block of memory, measured in bytes.
40     size: usize,
41
42     // alignment of the requested block of memory, measured in bytes.
43     // we ensure that this is always a power-of-two, because API's
44     // like `posix_memalign` require it and it is a reasonable
45     // constraint to impose on Layout constructors.
46     //
47     // (However, we do not analogously require `align >= sizeof(void*)`,
48     //  even though that is *also* a requirement of `posix_memalign`.)
49     align: Alignment,
50 }
51
52 impl Layout {
53     /// Constructs a `Layout` from a given `size` and `align`,
54     /// or returns `LayoutError` if any of the following conditions
55     /// are not met:
56     ///
57     /// * `align` must not be zero,
58     ///
59     /// * `align` must be a power of two,
60     ///
61     /// * `size`, when rounded up to the nearest multiple of `align`,
62     ///    must not overflow isize (i.e., the rounded value must be
63     ///    less than or equal to `isize::MAX`).
64     #[stable(feature = "alloc_layout", since = "1.28.0")]
65     #[rustc_const_stable(feature = "const_alloc_layout_size_align", since = "1.50.0")]
66     #[inline]
67     #[rustc_allow_const_fn_unstable(ptr_alignment_type)]
68     pub const fn from_size_align(size: usize, align: usize) -> Result<Self, LayoutError> {
69         if !align.is_power_of_two() {
70             return Err(LayoutError);
71         }
72
73         // SAFETY: just checked that align is a power of two.
74         Layout::from_size_alignment(size, unsafe { Alignment::new_unchecked(align) })
75     }
76
77     #[inline(always)]
78     const fn max_size_for_align(align: Alignment) -> usize {
79         // (power-of-two implies align != 0.)
80
81         // Rounded up size is:
82         //   size_rounded_up = (size + align - 1) & !(align - 1);
83         //
84         // We know from above that align != 0. If adding (align - 1)
85         // does not overflow, then rounding up will be fine.
86         //
87         // Conversely, &-masking with !(align - 1) will subtract off
88         // only low-order-bits. Thus if overflow occurs with the sum,
89         // the &-mask cannot subtract enough to undo that overflow.
90         //
91         // Above implies that checking for summation overflow is both
92         // necessary and sufficient.
93         isize::MAX as usize - (align.as_usize() - 1)
94     }
95
96     /// Internal helper constructor to skip revalidating alignment validity.
97     #[inline]
98     const fn from_size_alignment(size: usize, align: Alignment) -> Result<Self, LayoutError> {
99         if size > Self::max_size_for_align(align) {
100             return Err(LayoutError);
101         }
102
103         // SAFETY: Layout::size invariants checked above.
104         Ok(Layout { size, align })
105     }
106
107     /// Creates a layout, bypassing all checks.
108     ///
109     /// # Safety
110     ///
111     /// This function is unsafe as it does not verify the preconditions from
112     /// [`Layout::from_size_align`].
113     #[stable(feature = "alloc_layout", since = "1.28.0")]
114     #[rustc_const_stable(feature = "const_alloc_layout_unchecked", since = "1.36.0")]
115     #[must_use]
116     #[inline]
117     #[rustc_allow_const_fn_unstable(ptr_alignment_type)]
118     pub const unsafe fn from_size_align_unchecked(size: usize, align: usize) -> Self {
119         // SAFETY: the caller is required to uphold the preconditions.
120         unsafe { Layout { size, align: Alignment::new_unchecked(align) } }
121     }
122
123     /// The minimum size in bytes for a memory block of this layout.
124     #[stable(feature = "alloc_layout", since = "1.28.0")]
125     #[rustc_const_stable(feature = "const_alloc_layout_size_align", since = "1.50.0")]
126     #[must_use]
127     #[inline]
128     pub const fn size(&self) -> usize {
129         self.size
130     }
131
132     /// The minimum byte alignment for a memory block of this layout.
133     #[stable(feature = "alloc_layout", since = "1.28.0")]
134     #[rustc_const_stable(feature = "const_alloc_layout_size_align", since = "1.50.0")]
135     #[must_use = "this returns the minimum alignment, \
136                   without modifying the layout"]
137     #[inline]
138     #[rustc_allow_const_fn_unstable(ptr_alignment_type)]
139     pub const fn align(&self) -> usize {
140         self.align.as_usize()
141     }
142
143     /// Constructs a `Layout` suitable for holding a value of type `T`.
144     #[stable(feature = "alloc_layout", since = "1.28.0")]
145     #[rustc_const_stable(feature = "alloc_layout_const_new", since = "1.42.0")]
146     #[must_use]
147     #[inline]
148     pub const fn new<T>() -> Self {
149         let (size, align) = size_align::<T>();
150         // SAFETY: if the type is instantiated, rustc already ensures that its
151         // layout is valid. Use the unchecked constructor to avoid inserting a
152         // panicking codepath that needs to be optimized out.
153         unsafe { Layout::from_size_align_unchecked(size, align) }
154     }
155
156     /// Produces layout describing a record that could be used to
157     /// allocate backing structure for `T` (which could be a trait
158     /// or other unsized type like a slice).
159     #[stable(feature = "alloc_layout", since = "1.28.0")]
160     #[must_use]
161     #[inline]
162     pub fn for_value<T: ?Sized>(t: &T) -> Self {
163         let (size, align) = (mem::size_of_val(t), mem::align_of_val(t));
164         // SAFETY: see rationale in `new` for why this is using the unsafe variant
165         unsafe { Layout::from_size_align_unchecked(size, align) }
166     }
167
168     /// Produces layout describing a record that could be used to
169     /// allocate backing structure for `T` (which could be a trait
170     /// or other unsized type like a slice).
171     ///
172     /// # Safety
173     ///
174     /// This function is only safe to call if the following conditions hold:
175     ///
176     /// - If `T` is `Sized`, this function is always safe to call.
177     /// - If the unsized tail of `T` is:
178     ///     - a [slice], then the length of the slice tail must be an initialized
179     ///       integer, and the size of the *entire value*
180     ///       (dynamic tail length + statically sized prefix) must fit in `isize`.
181     ///     - a [trait object], then the vtable part of the pointer must point
182     ///       to a valid vtable for the type `T` acquired by an unsizing coercion,
183     ///       and the size of the *entire value*
184     ///       (dynamic tail length + statically sized prefix) must fit in `isize`.
185     ///     - an (unstable) [extern type], then this function is always safe to
186     ///       call, but may panic or otherwise return the wrong value, as the
187     ///       extern type's layout is not known. This is the same behavior as
188     ///       [`Layout::for_value`] on a reference to an extern type tail.
189     ///     - otherwise, it is conservatively not allowed to call this function.
190     ///
191     /// [trait object]: ../../book/ch17-02-trait-objects.html
192     /// [extern type]: ../../unstable-book/language-features/extern-types.html
193     #[unstable(feature = "layout_for_ptr", issue = "69835")]
194     #[must_use]
195     pub unsafe fn for_value_raw<T: ?Sized>(t: *const T) -> Self {
196         // SAFETY: we pass along the prerequisites of these functions to the caller
197         let (size, align) = unsafe { (mem::size_of_val_raw(t), mem::align_of_val_raw(t)) };
198         // SAFETY: see rationale in `new` for why this is using the unsafe variant
199         unsafe { Layout::from_size_align_unchecked(size, align) }
200     }
201
202     /// Creates a `NonNull` that is dangling, but well-aligned for this Layout.
203     ///
204     /// Note that the pointer value may potentially represent a valid pointer,
205     /// which means this must not be used as a "not yet initialized"
206     /// sentinel value. Types that lazily allocate must track initialization by
207     /// some other means.
208     #[unstable(feature = "alloc_layout_extra", issue = "55724")]
209     #[rustc_const_unstable(feature = "alloc_layout_extra", issue = "55724")]
210     #[must_use]
211     #[inline]
212     pub const fn dangling(&self) -> NonNull<u8> {
213         // SAFETY: align is guaranteed to be non-zero
214         unsafe { NonNull::new_unchecked(crate::ptr::invalid_mut::<u8>(self.align())) }
215     }
216
217     /// Creates a layout describing the record that can hold a value
218     /// of the same layout as `self`, but that also is aligned to
219     /// alignment `align` (measured in bytes).
220     ///
221     /// If `self` already meets the prescribed alignment, then returns
222     /// `self`.
223     ///
224     /// Note that this method does not add any padding to the overall
225     /// size, regardless of whether the returned layout has a different
226     /// alignment. In other words, if `K` has size 16, `K.align_to(32)`
227     /// will *still* have size 16.
228     ///
229     /// Returns an error if the combination of `self.size()` and the given
230     /// `align` violates the conditions listed in [`Layout::from_size_align`].
231     #[stable(feature = "alloc_layout_manipulation", since = "1.44.0")]
232     #[inline]
233     pub fn align_to(&self, align: usize) -> Result<Self, LayoutError> {
234         Layout::from_size_align(self.size(), cmp::max(self.align(), align))
235     }
236
237     /// Returns the amount of padding we must insert after `self`
238     /// to ensure that the following address will satisfy `align`
239     /// (measured in bytes).
240     ///
241     /// e.g., if `self.size()` is 9, then `self.padding_needed_for(4)`
242     /// returns 3, because that is the minimum number of bytes of
243     /// padding required to get a 4-aligned address (assuming that the
244     /// corresponding memory block starts at a 4-aligned address).
245     ///
246     /// The return value of this function has no meaning if `align` is
247     /// not a power-of-two.
248     ///
249     /// Note that the utility of the returned value requires `align`
250     /// to be less than or equal to the alignment of the starting
251     /// address for the whole allocated block of memory. One way to
252     /// satisfy this constraint is to ensure `align <= self.align()`.
253     #[unstable(feature = "alloc_layout_extra", issue = "55724")]
254     #[rustc_const_unstable(feature = "const_alloc_layout", issue = "67521")]
255     #[must_use = "this returns the padding needed, \
256                   without modifying the `Layout`"]
257     #[inline]
258     pub const fn padding_needed_for(&self, align: usize) -> usize {
259         let len = self.size();
260
261         // Rounded up value is:
262         //   len_rounded_up = (len + align - 1) & !(align - 1);
263         // and then we return the padding difference: `len_rounded_up - len`.
264         //
265         // We use modular arithmetic throughout:
266         //
267         // 1. align is guaranteed to be > 0, so align - 1 is always
268         //    valid.
269         //
270         // 2. `len + align - 1` can overflow by at most `align - 1`,
271         //    so the &-mask with `!(align - 1)` will ensure that in the
272         //    case of overflow, `len_rounded_up` will itself be 0.
273         //    Thus the returned padding, when added to `len`, yields 0,
274         //    which trivially satisfies the alignment `align`.
275         //
276         // (Of course, attempts to allocate blocks of memory whose
277         // size and padding overflow in the above manner should cause
278         // the allocator to yield an error anyway.)
279
280         let len_rounded_up = len.wrapping_add(align).wrapping_sub(1) & !align.wrapping_sub(1);
281         len_rounded_up.wrapping_sub(len)
282     }
283
284     /// Creates a layout by rounding the size of this layout up to a multiple
285     /// of the layout's alignment.
286     ///
287     /// This is equivalent to adding the result of `padding_needed_for`
288     /// to the layout's current size.
289     #[stable(feature = "alloc_layout_manipulation", since = "1.44.0")]
290     #[must_use = "this returns a new `Layout`, \
291                   without modifying the original"]
292     #[inline]
293     pub fn pad_to_align(&self) -> Layout {
294         let pad = self.padding_needed_for(self.align());
295         // This cannot overflow. Quoting from the invariant of Layout:
296         // > `size`, when rounded up to the nearest multiple of `align`,
297         // > must not overflow isize (i.e., the rounded value must be
298         // > less than or equal to `isize::MAX`)
299         let new_size = self.size() + pad;
300
301         // SAFETY: padded size is guaranteed to not exceed `isize::MAX`.
302         unsafe { Layout::from_size_align_unchecked(new_size, self.align()) }
303     }
304
305     /// Creates a layout describing the record for `n` instances of
306     /// `self`, with a suitable amount of padding between each to
307     /// ensure that each instance is given its requested size and
308     /// alignment. On success, returns `(k, offs)` where `k` is the
309     /// layout of the array and `offs` is the distance between the start
310     /// of each element in the array.
311     ///
312     /// On arithmetic overflow, returns `LayoutError`.
313     #[unstable(feature = "alloc_layout_extra", issue = "55724")]
314     #[inline]
315     pub fn repeat(&self, n: usize) -> Result<(Self, usize), LayoutError> {
316         // This cannot overflow. Quoting from the invariant of Layout:
317         // > `size`, when rounded up to the nearest multiple of `align`,
318         // > must not overflow isize (i.e., the rounded value must be
319         // > less than or equal to `isize::MAX`)
320         let padded_size = self.size() + self.padding_needed_for(self.align());
321         let alloc_size = padded_size.checked_mul(n).ok_or(LayoutError)?;
322
323         // The safe constructor is called here to enforce the isize size limit.
324         Layout::from_size_alignment(alloc_size, self.align).map(|layout| (layout, padded_size))
325     }
326
327     /// Creates a layout describing the record for `self` followed by
328     /// `next`, including any necessary padding to ensure that `next`
329     /// will be properly aligned, but *no trailing padding*.
330     ///
331     /// In order to match C representation layout `repr(C)`, you should
332     /// call `pad_to_align` after extending the layout with all fields.
333     /// (There is no way to match the default Rust representation
334     /// layout `repr(Rust)`, as it is unspecified.)
335     ///
336     /// Note that the alignment of the resulting layout will be the maximum of
337     /// those of `self` and `next`, in order to ensure alignment of both parts.
338     ///
339     /// Returns `Ok((k, offset))`, where `k` is layout of the concatenated
340     /// record and `offset` is the relative location, in bytes, of the
341     /// start of the `next` embedded within the concatenated record
342     /// (assuming that the record itself starts at offset 0).
343     ///
344     /// On arithmetic overflow, returns `LayoutError`.
345     ///
346     /// # Examples
347     ///
348     /// To calculate the layout of a `#[repr(C)]` structure and the offsets of
349     /// the fields from its fields' layouts:
350     ///
351     /// ```rust
352     /// # use std::alloc::{Layout, LayoutError};
353     /// pub fn repr_c(fields: &[Layout]) -> Result<(Layout, Vec<usize>), LayoutError> {
354     ///     let mut offsets = Vec::new();
355     ///     let mut layout = Layout::from_size_align(0, 1)?;
356     ///     for &field in fields {
357     ///         let (new_layout, offset) = layout.extend(field)?;
358     ///         layout = new_layout;
359     ///         offsets.push(offset);
360     ///     }
361     ///     // Remember to finalize with `pad_to_align`!
362     ///     Ok((layout.pad_to_align(), offsets))
363     /// }
364     /// # // test that it works
365     /// # #[repr(C)] struct S { a: u64, b: u32, c: u16, d: u32 }
366     /// # let s = Layout::new::<S>();
367     /// # let u16 = Layout::new::<u16>();
368     /// # let u32 = Layout::new::<u32>();
369     /// # let u64 = Layout::new::<u64>();
370     /// # assert_eq!(repr_c(&[u64, u32, u16, u32]), Ok((s, vec![0, 8, 12, 16])));
371     /// ```
372     #[stable(feature = "alloc_layout_manipulation", since = "1.44.0")]
373     #[inline]
374     pub fn extend(&self, next: Self) -> Result<(Self, usize), LayoutError> {
375         let new_align = cmp::max(self.align, next.align);
376         let pad = self.padding_needed_for(next.align());
377
378         let offset = self.size().checked_add(pad).ok_or(LayoutError)?;
379         let new_size = offset.checked_add(next.size()).ok_or(LayoutError)?;
380
381         // The safe constructor is called here to enforce the isize size limit.
382         let layout = Layout::from_size_alignment(new_size, new_align)?;
383         Ok((layout, offset))
384     }
385
386     /// Creates a layout describing the record for `n` instances of
387     /// `self`, with no padding between each instance.
388     ///
389     /// Note that, unlike `repeat`, `repeat_packed` does not guarantee
390     /// that the repeated instances of `self` will be properly
391     /// aligned, even if a given instance of `self` is properly
392     /// aligned. In other words, if the layout returned by
393     /// `repeat_packed` is used to allocate an array, it is not
394     /// guaranteed that all elements in the array will be properly
395     /// aligned.
396     ///
397     /// On arithmetic overflow, returns `LayoutError`.
398     #[unstable(feature = "alloc_layout_extra", issue = "55724")]
399     #[inline]
400     pub fn repeat_packed(&self, n: usize) -> Result<Self, LayoutError> {
401         let size = self.size().checked_mul(n).ok_or(LayoutError)?;
402         // The safe constructor is called here to enforce the isize size limit.
403         Layout::from_size_alignment(size, self.align)
404     }
405
406     /// Creates a layout describing the record for `self` followed by
407     /// `next` with no additional padding between the two. Since no
408     /// padding is inserted, the alignment of `next` is irrelevant,
409     /// and is not incorporated *at all* into the resulting layout.
410     ///
411     /// On arithmetic overflow, returns `LayoutError`.
412     #[unstable(feature = "alloc_layout_extra", issue = "55724")]
413     #[inline]
414     pub fn extend_packed(&self, next: Self) -> Result<Self, LayoutError> {
415         let new_size = self.size().checked_add(next.size()).ok_or(LayoutError)?;
416         // The safe constructor is called here to enforce the isize size limit.
417         Layout::from_size_alignment(new_size, self.align)
418     }
419
420     /// Creates a layout describing the record for a `[T; n]`.
421     ///
422     /// On arithmetic overflow or when the total size would exceed
423     /// `isize::MAX`, returns `LayoutError`.
424     #[stable(feature = "alloc_layout_manipulation", since = "1.44.0")]
425     #[inline]
426     pub fn array<T>(n: usize) -> Result<Self, LayoutError> {
427         // Reduce the amount of code we need to monomorphize per `T`.
428         return inner(mem::size_of::<T>(), Alignment::of::<T>(), n);
429
430         #[inline]
431         fn inner(element_size: usize, align: Alignment, n: usize) -> Result<Layout, LayoutError> {
432             // We need to check two things about the size:
433             //  - That the total size won't overflow a `usize`, and
434             //  - That the total size still fits in an `isize`.
435             // By using division we can check them both with a single threshold.
436             // That'd usually be a bad idea, but thankfully here the element size
437             // and alignment are constants, so the compiler will fold all of it.
438             if element_size != 0 && n > Layout::max_size_for_align(align) / element_size {
439                 return Err(LayoutError);
440             }
441
442             let array_size = element_size * n;
443
444             // SAFETY: We just checked above that the `array_size` will not
445             // exceed `isize::MAX` even when rounded up to the alignment.
446             // And `Alignment` guarantees it's a power of two.
447             unsafe { Ok(Layout::from_size_align_unchecked(array_size, align.as_usize())) }
448         }
449     }
450 }
451
452 #[stable(feature = "alloc_layout", since = "1.28.0")]
453 #[deprecated(
454     since = "1.52.0",
455     note = "Name does not follow std convention, use LayoutError",
456     suggestion = "LayoutError"
457 )]
458 pub type LayoutErr = LayoutError;
459
460 /// The parameters given to `Layout::from_size_align`
461 /// or some other `Layout` constructor
462 /// do not satisfy its documented constraints.
463 #[stable(feature = "alloc_layout_error", since = "1.50.0")]
464 #[non_exhaustive]
465 #[derive(Clone, PartialEq, Eq, Debug)]
466 pub struct LayoutError;
467
468 #[stable(feature = "alloc_layout", since = "1.28.0")]
469 impl Error for LayoutError {}
470
471 // (we need this for downstream impl of trait Error)
472 #[stable(feature = "alloc_layout", since = "1.28.0")]
473 impl fmt::Display for LayoutError {
474     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
475         f.write_str("invalid parameters to Layout::from_size_align")
476     }
477 }