core/mem/mod.rs
1//! Basic functions for dealing with memory, values, and types.
2//!
3//! The contents of this module can be seen as belonging to a few families:
4//!
5//! * [`drop`], [`replace`], [`swap`], and [`take`]
6//! are safe functions for moving values in particular ways.
7//! They are useful in everyday Rust code.
8//!
9//! * [`size_of`], [`size_of_val`], [`align_of`], [`align_of_val`], and [`offset_of`]
10//! give information about the representation of values in memory.
11//!
12//! * [`discriminant`]
13//! allows comparing the variants of [`enum`] values while ignoring their fields.
14//!
15//! * [`forget`] and [`ManuallyDrop`]
16//! prevent destructors from running, which is used in certain kinds of ownership transfer.
17//! [`needs_drop`]
18//! tells you whether a type’s destructor even does anything.
19//!
20//! * [`transmute`], [`transmute_copy`], and [`MaybeUninit`]
21//! convert and construct values in [`unsafe`] ways.
22//!
23//! See also the [`alloc`] and [`ptr`] modules for more primitive operations on memory.
24//!
25// core::alloc exists but doesn’t contain all the items we want to discuss
26//! [`alloc`]: ../../std/alloc/index.html
27//! [`enum`]: ../../std/keyword.enum.html
28//! [`ptr`]: crate::ptr
29//! [`unsafe`]: ../../std/keyword.unsafe.html
30
31#![stable(feature = "rust1", since = "1.0.0")]
32
33use crate::alloc::Layout;
34use crate::clone::TrivialClone;
35use crate::cmp::Ordering;
36use crate::marker::{Destruct, DiscriminantKind};
37use crate::panic::const_assert;
38use crate::ub_checks::assert_unsafe_precondition;
39use crate::{clone, cmp, fmt, hash, intrinsics, ptr};
40
41mod alignment;
42#[unstable(feature = "ptr_alignment_type", issue = "102070")]
43pub use alignment::Alignment;
44
45mod manually_drop;
46#[stable(feature = "manually_drop", since = "1.20.0")]
47pub use manually_drop::ManuallyDrop;
48
49mod maybe_uninit;
50#[stable(feature = "maybe_uninit", since = "1.36.0")]
51pub use maybe_uninit::MaybeUninit;
52
53mod maybe_dangling;
54#[unstable(feature = "maybe_dangling", issue = "118166")]
55pub use maybe_dangling::MaybeDangling;
56
57mod transmutability;
58#[unstable(feature = "transmutability", issue = "99571")]
59pub use transmutability::{Assume, TransmuteFrom};
60
61mod drop_guard;
62#[unstable(feature = "drop_guard", issue = "144426")]
63pub use drop_guard::DropGuard;
64
65// This one has to be a re-export (rather than wrapping the underlying intrinsic) so that we can do
66// the special magic "types have equal size" check at the call site.
67#[stable(feature = "rust1", since = "1.0.0")]
68#[doc(inline)]
69pub use crate::intrinsics::transmute;
70
71#[unstable(feature = "type_info", issue = "146922")]
72pub mod type_info;
73
74/// Takes ownership and "forgets" about the value **without running its destructor**.
75///
76/// Any resources the value manages, such as heap memory or a file handle, will linger
77/// forever in an unreachable state. However, it does not guarantee that pointers
78/// to this memory will remain valid.
79///
80/// * If you want to leak memory, see [`Box::leak`].
81/// * If you want to obtain a raw pointer to the memory, see [`Box::into_raw`].
82/// * If you want to dispose of a value properly, running its destructor, see
83/// [`mem::drop`].
84///
85/// # Safety
86///
87/// `forget` is not marked as `unsafe`, because Rust's safety guarantees
88/// do not include a guarantee that destructors will always run. For example,
89/// a program can create a reference cycle using [`Rc`][rc], or call
90/// [`process::exit`][exit] to exit without running destructors. Thus, allowing
91/// `mem::forget` from safe code does not fundamentally change Rust's safety
92/// guarantees.
93///
94/// That said, leaking resources such as memory or I/O objects is usually undesirable.
95/// The need comes up in some specialized use cases for FFI or unsafe code, but even
96/// then, [`ManuallyDrop`] is typically preferred.
97///
98/// Because forgetting a value is allowed, any `unsafe` code you write must
99/// allow for this possibility. You cannot return a value and expect that the
100/// caller will necessarily run the value's destructor.
101///
102/// [rc]: ../../std/rc/struct.Rc.html
103/// [exit]: ../../std/process/fn.exit.html
104///
105/// # Examples
106///
107/// The canonical safe use of `mem::forget` is to circumvent a value's destructor
108/// implemented by the `Drop` trait. For example, this will leak a `File`, i.e. reclaim
109/// the space taken by the variable but never close the underlying system resource:
110///
111/// ```no_run
112/// use std::mem;
113/// use std::fs::File;
114///
115/// let file = File::open("foo.txt").unwrap();
116/// mem::forget(file);
117/// ```
118///
119/// This is useful when the ownership of the underlying resource was previously
120/// transferred to code outside of Rust, for example by transmitting the raw
121/// file descriptor to C code.
122///
123/// # Relationship with `ManuallyDrop`
124///
125/// While `mem::forget` can also be used to transfer *memory* ownership, doing so is error-prone.
126/// [`ManuallyDrop`] should be used instead. Consider, for example, this code:
127///
128/// ```
129/// use std::mem;
130///
131/// let mut v = vec![65, 122];
132/// // Build a `String` using the contents of `v`
133/// let s = unsafe { String::from_raw_parts(v.as_mut_ptr(), v.len(), v.capacity()) };
134/// // leak `v` because its memory is now managed by `s`
135/// mem::forget(v); // ERROR - v is invalid and must not be passed to a function
136/// assert_eq!(s, "Az");
137/// // `s` is implicitly dropped and its memory deallocated.
138/// ```
139///
140/// There are two issues with the above example:
141///
142/// * If more code were added between the construction of `String` and the invocation of
143/// `mem::forget()`, a panic within it would cause a double free because the same memory
144/// is handled by both `v` and `s`.
145/// * After calling `v.as_mut_ptr()` and transmitting the ownership of the data to `s`,
146/// the `v` value is invalid. Even when a value is just moved to `mem::forget` (which won't
147/// inspect it), some types have strict requirements on their values that
148/// make them invalid when dangling or no longer owned. Using invalid values in any
149/// way, including passing them to or returning them from functions, constitutes
150/// undefined behavior and may break the assumptions made by the compiler.
151///
152/// Switching to `ManuallyDrop` avoids both issues:
153///
154/// ```
155/// use std::mem::ManuallyDrop;
156///
157/// let v = vec![65, 122];
158/// // Before we disassemble `v` into its raw parts, make sure it
159/// // does not get dropped!
160/// let mut v = ManuallyDrop::new(v);
161/// // Now disassemble `v`. These operations cannot panic, so there cannot be a leak.
162/// let (ptr, len, cap) = (v.as_mut_ptr(), v.len(), v.capacity());
163/// // Finally, build a `String`.
164/// let s = unsafe { String::from_raw_parts(ptr, len, cap) };
165/// assert_eq!(s, "Az");
166/// // `s` is implicitly dropped and its memory deallocated.
167/// ```
168///
169/// `ManuallyDrop` robustly prevents double-free because we disable `v`'s destructor
170/// before doing anything else. `mem::forget()` doesn't allow this because it consumes its
171/// argument, forcing us to call it only after extracting anything we need from `v`. Even
172/// if a panic were introduced between construction of `ManuallyDrop` and building the
173/// string (which cannot happen in the code as shown), it would result in a leak and not a
174/// double free. In other words, `ManuallyDrop` errs on the side of leaking instead of
175/// erring on the side of (double-)dropping.
176///
177/// Also, `ManuallyDrop` prevents us from having to "touch" `v` after transferring the
178/// ownership to `s` — the final step of interacting with `v` to dispose of it without
179/// running its destructor is entirely avoided.
180///
181/// [`Box`]: ../../std/boxed/struct.Box.html
182/// [`Box::leak`]: ../../std/boxed/struct.Box.html#method.leak
183/// [`Box::into_raw`]: ../../std/boxed/struct.Box.html#method.into_raw
184/// [`mem::drop`]: drop
185/// [ub]: ../../reference/behavior-considered-undefined.html
186#[inline]
187#[rustc_const_stable(feature = "const_forget", since = "1.46.0")]
188#[stable(feature = "rust1", since = "1.0.0")]
189#[rustc_diagnostic_item = "mem_forget"]
190#[rustc_no_writable]
191pub const fn forget<T>(t: T) {
192 let _ = ManuallyDrop::new(t);
193}
194
195/// Like [`forget`], but also accepts unsized values.
196///
197/// While Rust does not permit unsized locals since its removal in [#111942] it is
198/// still possible to call functions with unsized values from a function argument
199/// or place expression.
200///
201/// ```rust
202/// #![feature(unsized_fn_params, forget_unsized)]
203/// #![allow(internal_features)]
204///
205/// use std::mem::forget_unsized;
206///
207/// pub fn in_place() {
208/// forget_unsized(*Box::<str>::from("str"));
209/// }
210///
211/// pub fn param(x: str) {
212/// forget_unsized(x);
213/// }
214/// ```
215///
216/// This works because the compiler will alter these functions to pass the parameter
217/// by reference instead. This trick is necessary to support `Box<dyn FnOnce()>: FnOnce()`.
218/// See [#68304] and [#71170] for more information.
219///
220/// [#111942]: https://github.com/rust-lang/rust/issues/111942
221/// [#68304]: https://github.com/rust-lang/rust/issues/68304
222/// [#71170]: https://github.com/rust-lang/rust/pull/71170
223#[inline]
224#[unstable(feature = "forget_unsized", issue = "none")]
225pub fn forget_unsized<T: ?Sized>(t: T) {
226 intrinsics::forget(t)
227}
228
229/// Returns the size of a type in bytes.
230///
231/// More specifically, this is the offset in bytes between successive elements
232/// in an array with that item type including alignment padding. Thus, for any
233/// type `T` and length `n`, `[T; n]` has a size of `n * size_of::<T>()`.
234///
235/// In general, the size of a type is not stable across compilations, but
236/// specific types such as primitives are.
237///
238/// The following table gives the size for primitives.
239///
240/// Type | `size_of::<Type>()`
241/// ---- | ---------------
242/// () | 0
243/// bool | 1
244/// u8 | 1
245/// u16 | 2
246/// u32 | 4
247/// u64 | 8
248/// u128 | 16
249/// i8 | 1
250/// i16 | 2
251/// i32 | 4
252/// i64 | 8
253/// i128 | 16
254/// f32 | 4
255/// f64 | 8
256/// char | 4
257///
258/// Furthermore, `usize` and `isize` have the same size.
259///
260/// The types [`*const T`], `&T`, [`Box<T>`], [`Option<&T>`], and `Option<Box<T>>` all have
261/// the same size. If `T` is `Sized`, all of those types have the same size as `usize`.
262///
263/// The mutability of a pointer does not change its size. As such, `&T` and `&mut T`
264/// have the same size. Likewise for `*const T` and `*mut T`.
265///
266/// # Size of `#[repr(C)]` items
267///
268/// The `C` representation for items has a defined layout. With this layout,
269/// the size of items is also stable as long as all fields have a stable size.
270///
271/// ## Size of Structs
272///
273/// For `struct`s, the size is determined by the following algorithm.
274///
275/// For each field in the struct ordered by declaration order:
276///
277/// 1. Add the size of the field.
278/// 2. Round up the current size to the nearest multiple of the next field's [alignment].
279///
280/// Finally, round the size of the struct to the nearest multiple of its [alignment].
281/// The alignment of the struct is usually the largest alignment of all its
282/// fields; this can be changed with the use of `repr(align(N))`.
283///
284/// Unlike `C`, zero sized structs are not rounded up to one byte in size.
285///
286/// ## Size of Enums
287///
288/// Enums that carry no data other than the discriminant have the same size as C enums
289/// on the platform they are compiled for.
290///
291/// ## Size of Unions
292///
293/// The size of a union is the size of its largest field.
294///
295/// Unlike `C`, zero sized unions are not rounded up to one byte in size.
296///
297/// # Examples
298///
299/// ```
300/// // Some primitives
301/// assert_eq!(4, size_of::<i32>());
302/// assert_eq!(8, size_of::<f64>());
303/// assert_eq!(0, size_of::<()>());
304///
305/// // Some arrays
306/// assert_eq!(8, size_of::<[i32; 2]>());
307/// assert_eq!(12, size_of::<[i32; 3]>());
308/// assert_eq!(0, size_of::<[i32; 0]>());
309///
310///
311/// // Pointer size equality
312/// assert_eq!(size_of::<&i32>(), size_of::<*const i32>());
313/// assert_eq!(size_of::<&i32>(), size_of::<Box<i32>>());
314/// assert_eq!(size_of::<&i32>(), size_of::<Option<&i32>>());
315/// assert_eq!(size_of::<Box<i32>>(), size_of::<Option<Box<i32>>>());
316/// ```
317///
318/// Using `#[repr(C)]`.
319///
320/// ```
321/// #[repr(C)]
322/// struct FieldStruct {
323/// first: u8,
324/// second: u16,
325/// third: u8
326/// }
327///
328/// // The size of the first field is 1, so add 1 to the size. Size is 1.
329/// // The alignment of the second field is 2, so add 1 to the size for padding. Size is 2.
330/// // The size of the second field is 2, so add 2 to the size. Size is 4.
331/// // The alignment of the third field is 1, so add 0 to the size for padding. Size is 4.
332/// // The size of the third field is 1, so add 1 to the size. Size is 5.
333/// // Finally, the alignment of the struct is 2 (because the largest alignment amongst its
334/// // fields is 2), so add 1 to the size for padding. Size is 6.
335/// assert_eq!(6, size_of::<FieldStruct>());
336///
337/// #[repr(C)]
338/// struct TupleStruct(u8, u16, u8);
339///
340/// // Tuple structs follow the same rules.
341/// assert_eq!(6, size_of::<TupleStruct>());
342///
343/// // Note that reordering the fields can lower the size. We can remove both padding bytes
344/// // by putting `third` before `second`.
345/// #[repr(C)]
346/// struct FieldStructOptimized {
347/// first: u8,
348/// third: u8,
349/// second: u16
350/// }
351///
352/// assert_eq!(4, size_of::<FieldStructOptimized>());
353///
354/// // Union size is the size of the largest field.
355/// #[repr(C)]
356/// union ExampleUnion {
357/// smaller: u8,
358/// larger: u16
359/// }
360///
361/// assert_eq!(2, size_of::<ExampleUnion>());
362/// ```
363///
364/// [alignment]: align_of
365/// [`*const T`]: primitive@pointer
366/// [`Box<T>`]: ../../std/boxed/struct.Box.html
367/// [`Option<&T>`]: crate::option::Option
368///
369#[inline(always)]
370#[must_use]
371#[stable(feature = "rust1", since = "1.0.0")]
372#[rustc_promotable]
373#[rustc_const_stable(feature = "const_mem_size_of", since = "1.24.0")]
374#[rustc_diagnostic_item = "mem_size_of"]
375pub const fn size_of<T>() -> usize {
376 // By making this a constant, we also guarantee that the constant can be successfully evaluated
377 // in any program execution that actually executes `size_of`. Which is relevant because the
378 // constant can fail to evaluate if the type is too big. Someone might do something cursed where
379 // soundness relies on a certain type not being too big, and they check that by just invoking
380 // size_of on the type to ensure it exists, so if we fully DCE'd size_of calls that would be
381 // considered unsound... but by making this a constant, it participates in the usual "required
382 // consts" system, and we are safe.
383 <T as SizedTypeProperties>::SIZE
384}
385
386/// Returns the size of the pointed-to value in bytes.
387///
388/// This is usually the same as [`size_of::<T>()`]. However, when `T` *has* no
389/// statically-known size, e.g., a slice [`[T]`][slice] or a [trait object],
390/// then `size_of_val` can be used to get the dynamically-known size.
391///
392/// [trait object]: ../../book/ch17-02-trait-objects.html
393///
394/// # Examples
395///
396/// ```
397/// assert_eq!(4, size_of_val(&5i32));
398///
399/// let x: [u8; 13] = [0; 13];
400/// let y: &[u8] = &x;
401/// assert_eq!(13, size_of_val(y));
402/// ```
403///
404/// [`size_of::<T>()`]: size_of
405#[inline]
406#[must_use]
407#[stable(feature = "rust1", since = "1.0.0")]
408#[rustc_const_stable(feature = "const_size_of_val", since = "1.85.0")]
409#[rustc_diagnostic_item = "mem_size_of_val"]
410pub const fn size_of_val<T: ?Sized>(val: &T) -> usize {
411 // SAFETY: `val` is a reference, so it's a valid raw pointer
412 unsafe { intrinsics::size_of_val(val) }
413}
414
415/// Returns the size of the pointed-to value in bytes.
416///
417/// This is usually the same as [`size_of::<T>()`]. However, when `T` *has* no
418/// statically-known size, e.g., a slice [`[T]`][slice] or a [trait object],
419/// then `size_of_val_raw` can be used to get the dynamically-known size.
420///
421/// # Safety
422///
423/// This function is only safe to call if the following conditions hold:
424///
425/// - If `T` is `Sized`, this function is always safe to call.
426/// - If the unsized tail of `T` is:
427/// - a [slice], then the length of the slice tail must be an initialized
428/// integer, and the size of the *entire value*
429/// (dynamic tail length + statically sized prefix) must fit in `isize`.
430/// For the special case where the dynamic tail length is 0, this function
431/// is safe to call.
432// NOTE: the reason this is safe is that if an overflow were to occur already with size 0,
433// then we would stop compilation as even the "statically known" part of the type would
434// already be too big (or the call may be in dead code and optimized away, but then it
435// doesn't matter).
436/// - a [trait object], then the vtable part of the pointer must point
437/// to a valid vtable acquired by an unsizing coercion, and the size
438/// of the *entire value* (dynamic tail length + statically sized prefix)
439/// must fit in `isize`.
440/// - an (unstable) [extern type], then this function is always safe to
441/// call, but may panic or otherwise return the wrong value, as the
442/// extern type's layout is not known. This is the same behavior as
443/// [`size_of_val`] on a reference to a type with an extern type tail.
444/// - otherwise, it is conservatively not allowed to call this function.
445///
446/// [`size_of::<T>()`]: size_of
447/// [trait object]: ../../book/ch17-02-trait-objects.html
448/// [extern type]: ../../unstable-book/language-features/extern-types.html
449///
450/// # Examples
451///
452/// ```
453/// #![feature(layout_for_ptr)]
454/// use std::mem;
455///
456/// assert_eq!(4, size_of_val(&5i32));
457///
458/// let x: [u8; 13] = [0; 13];
459/// let y: &[u8] = &x;
460/// assert_eq!(13, unsafe { mem::size_of_val_raw(y) });
461/// ```
462#[inline]
463#[must_use]
464#[unstable(feature = "layout_for_ptr", issue = "69835")]
465pub const unsafe fn size_of_val_raw<T: ?Sized>(val: *const T) -> usize {
466 // SAFETY: the caller must provide a valid raw pointer
467 unsafe { intrinsics::size_of_val(val) }
468}
469
470/// Returns the [ABI]-required minimum alignment of a type in bytes.
471///
472/// Every reference to a value of the type `T` must be a multiple of this number.
473///
474/// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
475///
476/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
477///
478/// # Examples
479///
480/// ```
481/// # #![allow(deprecated)]
482/// use std::mem;
483///
484/// assert_eq!(4, mem::min_align_of::<i32>());
485/// ```
486#[inline]
487#[must_use]
488#[stable(feature = "rust1", since = "1.0.0")]
489#[deprecated(note = "use `align_of` instead", since = "1.2.0", suggestion = "align_of")]
490pub fn min_align_of<T>() -> usize {
491 <T as SizedTypeProperties>::ALIGN
492}
493
494/// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to in
495/// bytes.
496///
497/// Every reference to a value of the type `T` must be a multiple of this number.
498///
499/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
500///
501/// # Examples
502///
503/// ```
504/// # #![allow(deprecated)]
505/// use std::mem;
506///
507/// assert_eq!(4, mem::min_align_of_val(&5i32));
508/// ```
509#[inline]
510#[must_use]
511#[stable(feature = "rust1", since = "1.0.0")]
512#[deprecated(note = "use `align_of_val` instead", since = "1.2.0", suggestion = "align_of_val")]
513pub fn min_align_of_val<T: ?Sized>(val: &T) -> usize {
514 // SAFETY: val is a reference, so it's a valid raw pointer
515 unsafe { intrinsics::align_of_val(val) }
516}
517
518/// Returns the [ABI]-required minimum alignment of a type, in bytes.
519///
520/// Every reference to a value of the type `T` must be a multiple of this number.
521///
522/// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
523///
524/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
525///
526/// # Examples
527///
528/// ```
529/// assert_eq!(4, align_of::<i32>());
530/// ```
531///
532/// (Caution: [it is not guaranteed][type-layout] that the alignment of `i32` is `4`;
533/// that is, the above assertion does not pass on all platforms.)
534///
535/// [type-layout]: ../../reference/type-layout.html#r-layout.primitive
536#[inline(always)]
537#[must_use]
538#[stable(feature = "rust1", since = "1.0.0")]
539#[rustc_promotable]
540#[rustc_const_stable(feature = "const_align_of", since = "1.24.0")]
541#[rustc_diagnostic_item = "mem_align_of"]
542pub const fn align_of<T>() -> usize {
543 <T as SizedTypeProperties>::ALIGN
544}
545
546/// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to, in
547/// bytes.
548///
549/// This function is identical to [`align_of::<T>()`][align_of] whenever <code>T: [Sized]</code>,
550/// but also supports determining the alignment required by a `dyn Trait` value, which is the
551/// alignment of the underlying concrete type.
552///
553/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
554///
555/// # Examples
556///
557/// ```
558/// assert_eq!(4, align_of_val(&5i32));
559/// ```
560///
561/// (Caution: [it is not guaranteed][type-layout] that the alignment of `i32` is `4`;
562/// that is, this example assertion does not pass on all platforms.)
563///
564/// `dyn` types may have different alignments for different values;
565/// `align_of_val` can be used to learn those alignments:
566///
567/// ```
568/// let a: &dyn ToString = &1234u16;
569/// let b: &dyn ToString = &String::from("abcd");
570///
571/// assert_eq!(align_of_val(a), align_of::<u16>());
572/// assert_eq!(align_of_val(b), align_of::<String>());
573/// ```
574///
575/// [type-layout]: ../../reference/type-layout.html#r-layout.primitive
576#[inline]
577#[must_use]
578#[stable(feature = "rust1", since = "1.0.0")]
579#[rustc_const_stable(feature = "const_align_of_val", since = "1.85.0")]
580pub const fn align_of_val<T: ?Sized>(val: &T) -> usize {
581 // SAFETY: val is a reference, so it's a valid raw pointer
582 unsafe { intrinsics::align_of_val(val) }
583}
584
585/// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to, in
586/// bytes.
587///
588/// This function is identical to [`align_of_val()`], except that it can be used with raw pointers
589/// in situations where it would be unsound or undesirable to convert them to
590/// [`&` references][primitive@reference] and impose the aliasing rules that come with that.
591///
592/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
593///
594/// # Safety
595///
596/// This function is only safe to call if the following conditions hold:
597///
598/// - If `T` is `Sized`, this function is always safe to call.
599/// - If the unsized tail of `T` is:
600/// - a [slice], then the length of the slice tail must be an initialized
601/// integer, and the size of the *entire value*
602/// (dynamic tail length + statically sized prefix) must fit in `isize`.
603/// For the special case where the dynamic tail length is 0, this function
604/// is safe to call.
605/// - a [trait object], then the vtable part of the pointer must point
606/// to a valid vtable acquired by an unsizing coercion, and the size
607/// of the *entire value* (dynamic tail length + statically sized prefix)
608/// must fit in `isize`.
609/// - an (unstable) [extern type], then this function is always safe to
610/// call, but may panic or otherwise return the wrong value, as the
611/// extern type's layout is not known. This is the same behavior as
612/// [`align_of_val`] on a reference to a type with an extern type tail.
613/// - otherwise, it is conservatively not allowed to call this function.
614///
615/// [trait object]: ../../book/ch17-02-trait-objects.html
616/// [extern type]: ../../unstable-book/language-features/extern-types.html
617///
618/// # Examples
619///
620/// ```
621/// #![feature(layout_for_ptr)]
622/// use std::mem;
623///
624/// assert_eq!(4, unsafe { mem::align_of_val_raw(&5i32) });
625/// ```
626///
627/// (Caution: [it is not guaranteed][type-layout] that the alignment of `i32` is `4`;
628/// that is, the above assertion does not pass on all platforms.)
629///
630/// [type-layout]: ../../reference/type-layout.html#r-layout.primitive
631#[inline]
632#[must_use]
633#[unstable(feature = "layout_for_ptr", issue = "69835")]
634pub const unsafe fn align_of_val_raw<T: ?Sized>(val: *const T) -> usize {
635 // SAFETY: the caller must provide a valid raw pointer
636 unsafe { intrinsics::align_of_val(val) }
637}
638
639/// Returns `true` if dropping values of type `T` matters.
640///
641/// This is purely an optimization hint, and may be implemented conservatively:
642/// it may return `true` for types that don't actually need to be dropped.
643/// As such always returning `true` would be a valid implementation of
644/// this function. However if this function actually returns `false`, then you
645/// can be certain dropping `T` has no side effect.
646///
647/// Low level implementations of things like collections, which need to manually
648/// drop their data, should use this function to avoid unnecessarily
649/// trying to drop all their contents when they are destroyed. This might not
650/// make a difference in release builds (where a loop that has no side-effects
651/// is easily detected and eliminated), but is often a big win for debug builds.
652///
653/// Note that [`drop_in_place`] already performs this check, so if your workload
654/// can be reduced to some small number of [`drop_in_place`] calls, using this is
655/// unnecessary. In particular note that you can [`drop_in_place`] a slice, and that
656/// will do a single needs_drop check for all the values.
657///
658/// Types like Vec therefore just `drop_in_place(&mut self[..])` without using
659/// `needs_drop` explicitly. Types like [`HashMap`], on the other hand, have to drop
660/// values one at a time and should use this API.
661///
662/// [`drop_in_place`]: crate::ptr::drop_in_place
663/// [`HashMap`]: ../../std/collections/struct.HashMap.html
664///
665/// # Examples
666///
667/// Here's an example of how a collection might make use of `needs_drop`:
668///
669/// ```
670/// use std::{mem, ptr};
671///
672/// pub struct MyCollection<T> {
673/// # data: [T; 1],
674/// /* ... */
675/// }
676/// # impl<T> MyCollection<T> {
677/// # fn iter_mut(&mut self) -> &mut [T] { &mut self.data }
678/// # fn free_buffer(&mut self) {}
679/// # }
680///
681/// impl<T> Drop for MyCollection<T> {
682/// fn drop(&mut self) {
683/// unsafe {
684/// // drop the data
685/// if mem::needs_drop::<T>() {
686/// for x in self.iter_mut() {
687/// ptr::drop_in_place(x);
688/// }
689/// }
690/// self.free_buffer();
691/// }
692/// }
693/// }
694/// ```
695#[inline]
696#[must_use]
697#[stable(feature = "needs_drop", since = "1.21.0")]
698#[rustc_const_stable(feature = "const_mem_needs_drop", since = "1.36.0")]
699#[rustc_diagnostic_item = "needs_drop"]
700pub const fn needs_drop<T: ?Sized>() -> bool {
701 const { intrinsics::needs_drop::<T>() }
702}
703
704/// Returns the value of type `T` represented by the all-zero byte-pattern.
705///
706/// This means that, for example, the padding byte in `(u8, u16)` is not
707/// necessarily zeroed.
708///
709/// There is no guarantee that an all-zero byte-pattern represents a valid value
710/// of some type `T`. For example, the all-zero byte-pattern is not a valid value
711/// for reference types (`&T`, `&mut T`) and function pointers. Using `zeroed`
712/// on such types causes immediate [undefined behavior][ub] because [the Rust
713/// compiler assumes][inv] that there always is a valid value in a variable it
714/// considers initialized.
715///
716/// This has the same effect as [`MaybeUninit::zeroed().assume_init()`][zeroed].
717/// It is useful for FFI sometimes, but should generally be avoided.
718///
719/// [zeroed]: MaybeUninit::zeroed
720/// [ub]: ../../reference/behavior-considered-undefined.html
721/// [inv]: MaybeUninit#initialization-invariant
722///
723/// # Examples
724///
725/// Correct usage of this function: initializing an integer with zero.
726///
727/// ```
728/// use std::mem;
729///
730/// let x: i32 = unsafe { mem::zeroed() };
731/// assert_eq!(0, x);
732/// ```
733///
734/// *Incorrect* usage of this function: initializing a reference with zero.
735///
736/// ```rust,no_run
737/// # #![allow(invalid_value)]
738/// use std::mem;
739///
740/// let _x: &i32 = unsafe { mem::zeroed() }; // Undefined behavior!
741/// let _y: fn() = unsafe { mem::zeroed() }; // And again!
742/// ```
743#[inline(always)]
744#[must_use]
745#[stable(feature = "rust1", since = "1.0.0")]
746#[rustc_diagnostic_item = "mem_zeroed"]
747#[track_caller]
748#[rustc_const_stable(feature = "const_mem_zeroed", since = "1.75.0")]
749pub const unsafe fn zeroed<T>() -> T {
750 // SAFETY: the caller must guarantee that an all-zero value is valid for `T`.
751 unsafe {
752 intrinsics::assert_zero_valid::<T>();
753 MaybeUninit::zeroed().assume_init()
754 }
755}
756
757/// Bypasses Rust's normal memory-initialization checks by pretending to
758/// produce a value of type `T`, while doing nothing at all.
759///
760/// **This function is deprecated.** Use [`MaybeUninit<T>`] instead.
761/// It also might be slower than using `MaybeUninit<T>` due to mitigations that were put in place to
762/// limit the potential harm caused by incorrect use of this function in legacy code.
763///
764/// The reason for deprecation is that the function basically cannot be used
765/// correctly: it has the same effect as [`MaybeUninit::uninit().assume_init()`][uninit].
766/// As the [`assume_init` documentation][assume_init] explains,
767/// [the Rust compiler assumes][inv] that values are properly initialized.
768///
769/// Truly uninitialized memory like what gets returned here
770/// is special in that the compiler knows that it does not have a fixed value.
771/// This makes it undefined behavior to have uninitialized data in a variable even
772/// if that variable has an integer type.
773///
774/// Therefore, it is immediate undefined behavior to call this function on nearly all types,
775/// including integer types and arrays of integer types, and even if the result is unused.
776///
777/// [uninit]: MaybeUninit::uninit
778/// [assume_init]: MaybeUninit::assume_init
779/// [inv]: MaybeUninit#initialization-invariant
780#[inline(always)]
781#[must_use]
782#[deprecated(since = "1.39.0", note = "use `mem::MaybeUninit` instead")]
783#[stable(feature = "rust1", since = "1.0.0")]
784#[rustc_diagnostic_item = "mem_uninitialized"]
785#[track_caller]
786pub unsafe fn uninitialized<T>() -> T {
787 // SAFETY: the caller must guarantee that an uninitialized value is valid for `T`.
788 unsafe {
789 intrinsics::assert_mem_uninitialized_valid::<T>();
790 let mut val = MaybeUninit::<T>::uninit();
791
792 // Fill memory with 0x01, as an imperfect mitigation for old code that uses this function on
793 // bool, nonnull, and noundef types. But don't do this if we actively want to detect UB.
794 if !cfg!(any(miri, sanitize = "memory")) {
795 val.as_mut_ptr().write_bytes(0x01, 1);
796 }
797
798 val.assume_init()
799 }
800}
801
802/// Swaps the values at two mutable locations, without deinitializing either one.
803///
804/// * If you want to swap with a default or dummy value, see [`take`].
805/// * If you want to swap with a passed value, returning the old value, see [`replace`].
806///
807/// # Examples
808///
809/// ```
810/// use std::mem;
811///
812/// let mut x = 5;
813/// let mut y = 42;
814///
815/// mem::swap(&mut x, &mut y);
816///
817/// assert_eq!(42, x);
818/// assert_eq!(5, y);
819/// ```
820#[inline]
821#[stable(feature = "rust1", since = "1.0.0")]
822#[rustc_const_stable(feature = "const_swap", since = "1.85.0")]
823#[rustc_diagnostic_item = "mem_swap"]
824pub const fn swap<T>(x: &mut T, y: &mut T) {
825 // SAFETY: `&mut` guarantees these are typed readable and writable
826 // as well as non-overlapping.
827 unsafe { intrinsics::typed_swap_nonoverlapping(x, y) }
828}
829
830/// Replaces `dest` with the default value of `T`, returning the previous `dest` value.
831///
832/// * If you want to replace the values of two variables, see [`swap`].
833/// * If you want to replace with a passed value instead of the default value, see [`replace`].
834///
835/// # Examples
836///
837/// A simple example:
838///
839/// ```
840/// use std::mem;
841///
842/// let mut v: Vec<i32> = vec![1, 2];
843///
844/// let old_v = mem::take(&mut v);
845/// assert_eq!(vec![1, 2], old_v);
846/// assert!(v.is_empty());
847/// ```
848///
849/// `take` allows taking ownership of a struct field by replacing it with an "empty" value.
850/// Without `take` you can run into issues like these:
851///
852/// ```compile_fail,E0507
853/// struct Buffer<T> { buf: Vec<T> }
854///
855/// impl<T> Buffer<T> {
856/// fn get_and_reset(&mut self) -> Vec<T> {
857/// // error: cannot move out of dereference of `&mut`-pointer
858/// let buf = self.buf;
859/// self.buf = Vec::new();
860/// buf
861/// }
862/// }
863/// ```
864///
865/// Note that `T` does not necessarily implement [`Clone`], so it can't even clone and reset
866/// `self.buf`. But `take` can be used to disassociate the original value of `self.buf` from
867/// `self`, allowing it to be returned:
868///
869/// ```
870/// use std::mem;
871///
872/// # struct Buffer<T> { buf: Vec<T> }
873/// impl<T> Buffer<T> {
874/// fn get_and_reset(&mut self) -> Vec<T> {
875/// mem::take(&mut self.buf)
876/// }
877/// }
878///
879/// let mut buffer = Buffer { buf: vec![0, 1] };
880/// assert_eq!(buffer.buf.len(), 2);
881///
882/// assert_eq!(buffer.get_and_reset(), vec![0, 1]);
883/// assert_eq!(buffer.buf.len(), 0);
884/// ```
885#[inline]
886#[stable(feature = "mem_take", since = "1.40.0")]
887#[rustc_const_unstable(feature = "const_default", issue = "143894")]
888pub const fn take<T: [const] Default>(dest: &mut T) -> T {
889 replace(dest, T::default())
890}
891
892/// Moves `src` into the referenced `dest`, returning the previous `dest` value.
893///
894/// Neither value is dropped.
895///
896/// * If you want to replace the values of two variables, see [`swap`].
897/// * If you want to replace with a default value, see [`take`].
898///
899/// # Examples
900///
901/// A simple example:
902///
903/// ```
904/// use std::mem;
905///
906/// let mut v: Vec<i32> = vec![1, 2];
907///
908/// let old_v = mem::replace(&mut v, vec![3, 4, 5]);
909/// assert_eq!(vec![1, 2], old_v);
910/// assert_eq!(vec![3, 4, 5], v);
911/// ```
912///
913/// `replace` allows consumption of a struct field by replacing it with another value.
914/// Without `replace` you can run into issues like these:
915///
916/// ```compile_fail,E0507
917/// struct Buffer<T> { buf: Vec<T> }
918///
919/// impl<T> Buffer<T> {
920/// fn replace_index(&mut self, i: usize, v: T) -> T {
921/// // error: cannot move out of dereference of `&mut`-pointer
922/// let t = self.buf[i];
923/// self.buf[i] = v;
924/// t
925/// }
926/// }
927/// ```
928///
929/// Note that `T` does not necessarily implement [`Clone`], so we can't even clone `self.buf[i]` to
930/// avoid the move. But `replace` can be used to disassociate the original value at that index from
931/// `self`, allowing it to be returned:
932///
933/// ```
934/// # #![allow(dead_code)]
935/// use std::mem;
936///
937/// # struct Buffer<T> { buf: Vec<T> }
938/// impl<T> Buffer<T> {
939/// fn replace_index(&mut self, i: usize, v: T) -> T {
940/// mem::replace(&mut self.buf[i], v)
941/// }
942/// }
943///
944/// let mut buffer = Buffer { buf: vec![0, 1] };
945/// assert_eq!(buffer.buf[0], 0);
946///
947/// assert_eq!(buffer.replace_index(0, 2), 0);
948/// assert_eq!(buffer.buf[0], 2);
949/// ```
950#[inline]
951#[stable(feature = "rust1", since = "1.0.0")]
952#[must_use = "if you don't need the old value, you can just assign the new value directly"]
953#[rustc_const_stable(feature = "const_replace", since = "1.83.0")]
954#[rustc_diagnostic_item = "mem_replace"]
955pub const fn replace<T>(dest: &mut T, src: T) -> T {
956 // It may be tempting to use `swap` to avoid `unsafe` here. Don't!
957 // The compiler optimizes the implementation below to two `memcpy`s
958 // while `swap` would require at least three. See PR#83022 for details.
959
960 // SAFETY: We read from `dest` but directly write `src` into it afterwards,
961 // such that the old value is not duplicated. Nothing is dropped and
962 // nothing here can panic.
963 unsafe {
964 // Ideally we wouldn't use the intrinsics here, but going through the
965 // `ptr` methods introduces two unnecessary UbChecks, so until we can
966 // remove those for pointers that come from references, this uses the
967 // intrinsics instead so this stays very cheap in MIR (and debug).
968
969 let result = crate::intrinsics::read_via_copy(dest);
970 crate::intrinsics::write_via_move(dest, src);
971 result
972 }
973}
974
975/// Disposes of a value.
976///
977/// This effectively does nothing for types which implement `Copy`, e.g.
978/// integers. Such values are copied and _then_ moved into the function, so the
979/// value persists after this function call.
980///
981/// This function is not magic; it is literally defined as
982///
983/// ```
984/// pub fn drop<T>(_x: T) {}
985/// ```
986///
987/// Because `_x` is moved into the function, it is automatically [dropped][drop] before
988/// the function returns.
989///
990/// [drop]: Drop
991///
992/// # Examples
993///
994/// Basic usage:
995///
996/// ```
997/// let v = vec![1, 2, 3];
998///
999/// drop(v); // explicitly drop the vector
1000/// ```
1001///
1002/// Since [`RefCell`] enforces the borrow rules at runtime, `drop` can
1003/// release a [`RefCell`] borrow:
1004///
1005/// ```
1006/// use std::cell::RefCell;
1007///
1008/// let x = RefCell::new(1);
1009///
1010/// let mut mutable_borrow = x.borrow_mut();
1011/// *mutable_borrow = 1;
1012///
1013/// drop(mutable_borrow); // relinquish the mutable borrow on this slot
1014///
1015/// let borrow = x.borrow();
1016/// println!("{}", *borrow);
1017/// ```
1018///
1019/// Integers and other types implementing [`Copy`] are unaffected by `drop`.
1020///
1021/// ```
1022/// # #![allow(dropping_copy_types)]
1023/// #[derive(Copy, Clone)]
1024/// struct Foo(u8);
1025///
1026/// let x = 1;
1027/// let y = Foo(2);
1028/// drop(x); // a copy of `x` is moved and dropped
1029/// drop(y); // a copy of `y` is moved and dropped
1030///
1031/// println!("x: {}, y: {}", x, y.0); // still available
1032/// ```
1033///
1034/// [`RefCell`]: crate::cell::RefCell
1035#[inline]
1036#[stable(feature = "rust1", since = "1.0.0")]
1037#[rustc_const_unstable(feature = "const_destruct", issue = "133214")]
1038#[rustc_diagnostic_item = "mem_drop"]
1039pub const fn drop<T>(_x: T)
1040where
1041 T: [const] Destruct,
1042{
1043}
1044
1045/// Bitwise-copies a value.
1046///
1047/// This function is not magic; it is literally defined as
1048/// ```
1049/// pub const fn copy<T: Copy>(x: &T) -> T { *x }
1050/// ```
1051///
1052/// It is useful when you want to pass a function pointer to a combinator, rather than defining a new closure.
1053///
1054/// Example:
1055/// ```
1056/// #![feature(mem_copy_fn)]
1057/// use core::mem::copy;
1058/// let result_from_ffi_function: Result<(), &i32> = Err(&1);
1059/// let result_copied: Result<(), i32> = result_from_ffi_function.map_err(copy);
1060/// ```
1061#[inline]
1062#[unstable(feature = "mem_copy_fn", issue = "98262")]
1063pub const fn copy<T: Copy>(x: &T) -> T {
1064 *x
1065}
1066
1067/// Interprets `src` as having type `&Dst`, and then reads `src` without moving
1068/// the contained value.
1069///
1070/// This function will unsafely assume the pointer `src` is valid for [`size_of::<Dst>`][size_of]
1071/// bytes by transmuting `&Src` to `&Dst` and then reading the `&Dst` (except that this is done
1072/// in a way that is correct even when `&Dst` has stricter alignment requirements than `&Src`).
1073/// It will also unsafely create a copy of the contained value instead of moving out of `src`.
1074///
1075/// It is not a compile-time error if `Src` and `Dst` have different sizes, but it
1076/// is highly encouraged to only invoke this function where `Src` and `Dst` have the
1077/// same size. This function triggers [undefined behavior][ub] if `Dst` is larger than
1078/// `Src`.
1079///
1080/// [ub]: ../../reference/behavior-considered-undefined.html
1081///
1082/// If you have a raw pointer instead of a reference, you might be looking for
1083/// `src.cast::<Dst>().`[`read_unaligned()`](pointer#method.read_unaligned) instead.
1084///
1085/// # Safety
1086///
1087/// - Requires `size_of_val::<Src>(src) >= size_of::<Dst>()`
1088/// - The first `size_of::<Dst>()` bytes behind `src` must be *readable*
1089/// - The first `size_of::<Dst>()` bytes behind `src` must be *[valid]*
1090/// when interpreted as a `Dst`.
1091///
1092/// On top of that, remember that most types have additional invariants beyond merely
1093/// being considered initialized at the type level. For example, a `1`-initialized [`Vec<T>`]
1094/// is considered initialized (under the current implementation; this does not constitute
1095/// a stable guarantee) because the only requirement the compiler knows about it
1096/// is that the data pointer must be non-null. Creating such a `Vec<T>` does not cause
1097/// *immediate* undefined behavior, but will cause undefined behavior with most
1098/// safe operations (including dropping it).
1099///
1100/// [valid]: ../../reference/behavior-considered-undefined.html#r-undefined.validity
1101/// [`Vec<T>`]: ../../std/vec/struct.Vec.html
1102///
1103/// # Examples
1104///
1105/// ```
1106/// use std::mem;
1107///
1108/// #[repr(packed)]
1109/// struct Foo {
1110/// bar: u8,
1111/// }
1112///
1113/// let foo_array = [10u8];
1114///
1115/// unsafe {
1116/// // Copy the data from 'foo_array' and treat it as a 'Foo'
1117/// let mut foo_struct: Foo = mem::transmute_copy(&foo_array);
1118/// assert_eq!(foo_struct.bar, 10);
1119///
1120/// // Modify the copied data
1121/// foo_struct.bar = 20;
1122/// assert_eq!(foo_struct.bar, 20);
1123/// }
1124///
1125/// // The contents of 'foo_array' should not have changed
1126/// assert_eq!(foo_array, [10]);
1127///
1128/// let bytes: &[u8] = &[1, 2, 3, 4, 5, 6, 7];
1129/// assert_eq!(
1130/// unsafe { mem::transmute_copy::<[u8], u32>(bytes) },
1131/// u32::from_ne_bytes(*bytes.first_chunk().unwrap()),
1132/// );
1133/// ```
1134#[inline]
1135#[must_use]
1136#[track_caller]
1137#[stable(feature = "rust1", since = "1.0.0")]
1138#[rustc_const_stable(feature = "const_transmute_copy", since = "1.74.0")]
1139pub const unsafe fn transmute_copy<Src: ?Sized, Dst>(src: &Src) -> Dst {
1140 // library UB because it's possible for the `Src` to be only a subset of the allocation
1141 // and thus for a failure to not be immediate language UB
1142 assert_unsafe_precondition!(
1143 check_library_ub,
1144 "cannot transmute_copy if Dst is larger than Src",
1145 (
1146 src_size: usize = size_of_val::<Src>(src),
1147 dst_size: usize = Dst::SIZE,
1148 ) => src_size >= dst_size
1149 );
1150
1151 // If Dst has a higher alignment requirement, src might not be suitably aligned.
1152 if align_of::<Dst>() > align_of_val::<Src>(src) {
1153 // SAFETY: `src` is a reference which is guaranteed to be valid for reads.
1154 // The caller must guarantee that the actual transmutation is safe.
1155 unsafe { ptr::read_unaligned(src as *const Src as *const Dst) }
1156 } else {
1157 // SAFETY: `src` is a reference which is guaranteed to be valid for reads.
1158 // We just checked that `src as *const Dst` was properly aligned.
1159 // The caller must guarantee that the actual transmutation is safe.
1160 unsafe { ptr::read(src as *const Src as *const Dst) }
1161 }
1162}
1163
1164/// Like [`transmute`], but only initializes the "common prefix" of the first
1165/// `min(size_of::<Src>(), size_of::<Dst>())` bytes of the destination from the
1166/// corresponding bytes of the source.
1167///
1168/// This is equivalent to a "union cast" through a `union` with `#[repr(C)]`.
1169///
1170/// That means some size mismatches are not UB, like `[T; 2]` to `[T; 1]`.
1171/// Increasing size is usually UB from being insufficiently initialized -- like
1172/// `u8` to `u32` -- but isn't always. For example, going from `u8` to
1173/// `#[repr(C, align(4))] AlignedU8(u8);` is sound.
1174///
1175/// Prefer normal `transmute` where possible, for the extra checking, since
1176/// both do exactly the same thing at runtime, if they both compile.
1177///
1178/// # Safety
1179///
1180/// If `size_of::<Src>() >= size_of::<Dst>()`, the first `size_of::<Dst>()` bytes
1181/// of `src` must be be *valid* when interpreted as a `Dst`. (In this case, the
1182/// preconditions are the same as for `transmute_copy(&ManuallyDrop::new(src))`.)
1183///
1184/// If `size_of::<Src>() <= size_of::<Dst>()`, the bytes of `src` padded with
1185/// uninitialized bytes afterwards up to a total size of `size_of::<Dst>()`
1186/// must be *valid* when interpreted as a `Dst`.
1187///
1188/// In both cases, any safety preconditions of the `Dst` type must also be upheld.
1189///
1190/// # Examples
1191///
1192/// ```
1193/// #![feature(transmute_prefix)]
1194/// use std::mem::transmute_prefix;
1195///
1196/// assert_eq!(unsafe { transmute_prefix::<[i32; 4], [i32; 2]>([1, 2, 3, 4]) }, [1, 2]);
1197///
1198/// let expected = if cfg!(target_endian = "little") { 0x34 } else { 0x12 };
1199/// assert_eq!(unsafe { transmute_prefix::<u16, u8>(0x1234) }, expected);
1200///
1201/// // Would be UB because the destination is incompletely initialized.
1202/// // transmute_prefix::<u8, u16>(123)
1203///
1204/// // OK because the destination is allowed to be partially initialized.
1205/// let _: std::mem::MaybeUninit<u16> = unsafe { transmute_prefix(123_u8) };
1206/// ```
1207#[unstable(feature = "transmute_prefix", issue = "155079")]
1208#[rustc_no_writable]
1209pub const unsafe fn transmute_prefix<Src, Dst>(src: Src) -> Dst {
1210 #[repr(C)]
1211 union Transmute<A, B> {
1212 a: ManuallyDrop<A>,
1213 b: ManuallyDrop<B>,
1214 }
1215
1216 match const { Ord::cmp(&Src::SIZE, &Dst::SIZE) } {
1217 // SAFETY: When Dst is bigger, the union is the size of Dst
1218 Ordering::Less => unsafe {
1219 let a = transmute_neo(src);
1220 intrinsics::transmute_unchecked(Transmute::<Src, Dst> { a })
1221 },
1222 // SAFETY: When they're the same size, we can use the MIR primitive
1223 Ordering::Equal => unsafe { intrinsics::transmute_unchecked::<Src, Dst>(src) },
1224 // SAFETY: When Src is bigger, the union is the size of Src
1225 Ordering::Greater => unsafe {
1226 let u: Transmute<Src, Dst> = intrinsics::transmute_unchecked(src);
1227 transmute_neo(u.b)
1228 },
1229 }
1230}
1231
1232/// New version of `transmute`, exposed under this name so it can be iterated upon
1233/// without risking breakage to uses of "real" transmute.
1234///
1235/// Uses a `const`-`assert` to check the sizes instead of typeck hacks,
1236/// but is semantially identical to `transmute` otherwise.
1237///
1238/// It will not be stabilized under this name.
1239///
1240/// # Examples
1241///
1242/// ```
1243/// #![feature(transmute_neo)]
1244/// use std::mem::transmute_neo;
1245///
1246/// assert_eq!(unsafe { transmute_neo::<f32, u32>(0.0) }, 0);
1247/// ```
1248///
1249/// ```compile_fail,E0080
1250/// #![feature(transmute_neo)]
1251/// use std::mem::transmute_neo;
1252///
1253/// unsafe { transmute_neo::<u32, u16>(123) };
1254/// ```
1255#[unstable(feature = "transmute_neo", issue = "155079")]
1256#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
1257#[inline]
1258#[rustc_no_writable]
1259pub const unsafe fn transmute_neo<Src, Dst>(src: Src) -> Dst {
1260 const { assert!(Src::SIZE == Dst::SIZE) };
1261
1262 // SAFETY: the const-assert just checked that they're the same size,
1263 // and any other safety invariants need to be upheld by the caller.
1264 unsafe { intrinsics::transmute_unchecked(src) }
1265}
1266
1267/// Opaque type representing the discriminant of an enum.
1268///
1269/// See the [`discriminant`] function in this module for more information.
1270#[stable(feature = "discriminant_value", since = "1.21.0")]
1271pub struct Discriminant<T>(<T as DiscriminantKind>::Discriminant);
1272
1273// N.B. These trait implementations cannot be derived because we don't want any bounds on T.
1274
1275#[stable(feature = "discriminant_value", since = "1.21.0")]
1276impl<T> Copy for Discriminant<T> {}
1277
1278#[stable(feature = "discriminant_value", since = "1.21.0")]
1279impl<T> clone::Clone for Discriminant<T> {
1280 fn clone(&self) -> Self {
1281 *self
1282 }
1283}
1284
1285#[doc(hidden)]
1286#[unstable(feature = "trivial_clone", issue = "none")]
1287unsafe impl<T> TrivialClone for Discriminant<T> {}
1288
1289#[stable(feature = "discriminant_value", since = "1.21.0")]
1290impl<T> cmp::PartialEq for Discriminant<T> {
1291 fn eq(&self, rhs: &Self) -> bool {
1292 self.0 == rhs.0
1293 }
1294}
1295
1296#[stable(feature = "discriminant_value", since = "1.21.0")]
1297impl<T> cmp::Eq for Discriminant<T> {}
1298
1299#[stable(feature = "discriminant_value", since = "1.21.0")]
1300impl<T> hash::Hash for Discriminant<T> {
1301 fn hash<H: hash::Hasher>(&self, state: &mut H) {
1302 self.0.hash(state);
1303 }
1304}
1305
1306#[stable(feature = "discriminant_value", since = "1.21.0")]
1307impl<T> fmt::Debug for Discriminant<T> {
1308 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1309 fmt.debug_tuple("Discriminant").field(&self.0).finish()
1310 }
1311}
1312
1313/// Returns a value uniquely identifying the enum variant in `v`.
1314///
1315/// If `T` is not an enum, calling this function will not result in undefined behavior, but the
1316/// return value is unspecified.
1317///
1318/// # Stability
1319///
1320/// The discriminant of an enum variant may change if the enum definition changes. A discriminant
1321/// of some variant will not change between compilations with the same compiler. See the [Reference]
1322/// for more information.
1323///
1324/// [Reference]: ../../reference/items/enumerations.html#custom-discriminant-values-for-fieldless-enumerations
1325///
1326/// The value of a [`Discriminant<T>`] is independent of any *free lifetimes* in `T`. As such,
1327/// reading or writing a `Discriminant<Foo<'a>>` as a `Discriminant<Foo<'b>>` (whether via
1328/// [`transmute`] or otherwise) is always sound. Note that this is **not** true for other kinds
1329/// of generic parameters and for higher-ranked lifetimes; `Discriminant<Foo<A>>` and
1330/// `Discriminant<Foo<B>>` as well as `Discriminant<Bar<dyn for<'a> Trait<'a>>>` and
1331/// `Discriminant<Bar<dyn Trait<'static>>>` may be incompatible.
1332///
1333/// # Examples
1334///
1335/// This can be used to compare enums that carry data, while disregarding
1336/// the actual data:
1337///
1338/// ```
1339/// use std::mem;
1340///
1341/// enum Foo { A(&'static str), B(i32), C(i32) }
1342///
1343/// assert_eq!(mem::discriminant(&Foo::A("bar")), mem::discriminant(&Foo::A("baz")));
1344/// assert_eq!(mem::discriminant(&Foo::B(1)), mem::discriminant(&Foo::B(2)));
1345/// assert_ne!(mem::discriminant(&Foo::B(3)), mem::discriminant(&Foo::C(3)));
1346/// ```
1347///
1348/// ## Accessing the numeric value of the discriminant
1349///
1350/// Note that it is *undefined behavior* to [`transmute`] from [`Discriminant`] to a primitive!
1351///
1352/// If an enum has only unit variants, then the numeric value of the discriminant can be accessed
1353/// with an [`as`] cast:
1354///
1355/// ```
1356/// enum Enum {
1357/// Foo,
1358/// Bar,
1359/// Baz,
1360/// }
1361///
1362/// assert_eq!(0, Enum::Foo as isize);
1363/// assert_eq!(1, Enum::Bar as isize);
1364/// assert_eq!(2, Enum::Baz as isize);
1365/// ```
1366///
1367/// If an enum has opted-in to having a [primitive representation] for its discriminant,
1368/// then it's possible to use pointers to read the memory location storing the discriminant.
1369/// That **cannot** be done for enums using the [default representation], however, as it's
1370/// undefined what layout the discriminant has and where it's stored — it might not even be
1371/// stored at all!
1372///
1373/// [`as`]: ../../std/keyword.as.html
1374/// [primitive representation]: ../../reference/type-layout.html#primitive-representations
1375/// [default representation]: ../../reference/type-layout.html#the-default-representation
1376/// ```
1377/// #[repr(u8)]
1378/// enum Enum {
1379/// Unit,
1380/// Tuple(bool),
1381/// Struct { a: bool },
1382/// }
1383///
1384/// impl Enum {
1385/// fn discriminant(&self) -> u8 {
1386/// // SAFETY: Because `Self` is marked `repr(u8)`, its layout is a `repr(C)` `union`
1387/// // between `repr(C)` structs, each of which has the `u8` discriminant as its first
1388/// // field, so we can read the discriminant without offsetting the pointer.
1389/// unsafe { *<*const _>::from(self).cast::<u8>() }
1390/// }
1391/// }
1392///
1393/// let unit_like = Enum::Unit;
1394/// let tuple_like = Enum::Tuple(true);
1395/// let struct_like = Enum::Struct { a: false };
1396/// assert_eq!(0, unit_like.discriminant());
1397/// assert_eq!(1, tuple_like.discriminant());
1398/// assert_eq!(2, struct_like.discriminant());
1399///
1400/// // ⚠️ This is undefined behavior. Don't do this. ⚠️
1401/// // assert_eq!(0, unsafe { std::mem::transmute::<_, u8>(std::mem::discriminant(&unit_like)) });
1402/// ```
1403#[stable(feature = "discriminant_value", since = "1.21.0")]
1404#[rustc_const_stable(feature = "const_discriminant", since = "1.75.0")]
1405#[rustc_diagnostic_item = "mem_discriminant"]
1406#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
1407pub const fn discriminant<T>(v: &T) -> Discriminant<T> {
1408 Discriminant(intrinsics::discriminant_value(v))
1409}
1410
1411/// Returns the number of variants in the enum type `T`.
1412///
1413/// If `T` is not an enum, calling this function will not result in undefined behavior, but the
1414/// return value is unspecified. Equally, if `T` is an enum with more variants than `usize::MAX`
1415/// the return value is unspecified. Uninhabited variants will be counted.
1416///
1417/// Note that an enum may be expanded with additional variants in the future
1418/// as a non-breaking change, for example if it is marked `#[non_exhaustive]`,
1419/// which will change the result of this function.
1420///
1421/// # Examples
1422///
1423/// ```
1424/// # #![feature(never_type)]
1425/// # #![feature(variant_count)]
1426///
1427/// use std::mem;
1428///
1429/// enum Void {}
1430/// enum Foo { A(&'static str), B(i32), C(i32) }
1431///
1432/// assert_eq!(mem::variant_count::<Void>(), 0);
1433/// assert_eq!(mem::variant_count::<Foo>(), 3);
1434///
1435/// assert_eq!(mem::variant_count::<Option<!>>(), 2);
1436/// assert_eq!(mem::variant_count::<Result<!, !>>(), 2);
1437/// ```
1438#[inline(always)]
1439#[must_use]
1440#[unstable(feature = "variant_count", issue = "73662")]
1441#[rustc_const_unstable(feature = "variant_count", issue = "73662")]
1442#[rustc_diagnostic_item = "mem_variant_count"]
1443pub const fn variant_count<T>() -> usize {
1444 const { intrinsics::variant_count::<T>() }
1445}
1446
1447/// Provides associated constants for various useful properties of types,
1448/// to give them a canonical form in our code and make them easier to read.
1449///
1450/// This is here only to simplify all the ZST checks we need in the library.
1451/// It's not on a stabilization track right now.
1452#[doc(hidden)]
1453#[unstable(feature = "sized_type_properties", issue = "none")]
1454pub trait SizedTypeProperties: Sized {
1455 #[doc(hidden)]
1456 #[unstable(feature = "sized_type_properties", issue = "none")]
1457 #[lang = "mem_size_const"]
1458 const SIZE: usize = intrinsics::size_of::<Self>();
1459
1460 #[doc(hidden)]
1461 #[unstable(feature = "sized_type_properties", issue = "none")]
1462 #[lang = "mem_align_const"]
1463 const ALIGN: usize = intrinsics::align_of::<Self>();
1464
1465 #[doc(hidden)]
1466 #[unstable(feature = "ptr_alignment_type", issue = "102070")]
1467 const ALIGNMENT: Alignment = {
1468 // This can't panic since type alignment is always a power of two.
1469 Alignment::new(Self::ALIGN).unwrap()
1470 };
1471
1472 /// `true` if this type requires no storage.
1473 /// `false` if its [size](size_of) is greater than zero.
1474 ///
1475 /// # Examples
1476 ///
1477 /// ```
1478 /// #![feature(sized_type_properties)]
1479 /// use core::mem::SizedTypeProperties;
1480 ///
1481 /// fn do_something_with<T>() {
1482 /// if T::IS_ZST {
1483 /// // ... special approach ...
1484 /// } else {
1485 /// // ... the normal thing ...
1486 /// }
1487 /// }
1488 ///
1489 /// struct MyUnit;
1490 /// assert!(MyUnit::IS_ZST);
1491 ///
1492 /// // For negative checks, consider using UFCS to emphasize the negation
1493 /// assert!(!<i32>::IS_ZST);
1494 /// // As it can sometimes hide in the type otherwise
1495 /// assert!(!String::IS_ZST);
1496 /// ```
1497 #[doc(hidden)]
1498 #[unstable(feature = "sized_type_properties", issue = "none")]
1499 const IS_ZST: bool = Self::SIZE == 0;
1500
1501 #[doc(hidden)]
1502 #[unstable(feature = "sized_type_properties", issue = "none")]
1503 const LAYOUT: Layout = {
1504 // SAFETY: if the type is instantiated, rustc already ensures that its
1505 // layout is valid. Use the unchecked constructor to avoid inserting a
1506 // panicking codepath that needs to be optimized out.
1507 unsafe { Layout::from_size_align_unchecked(Self::SIZE, Self::ALIGN) }
1508 };
1509
1510 /// The largest safe length for a `[Self]`.
1511 ///
1512 /// Anything larger than this would make `size_of_val` overflow `isize::MAX`,
1513 /// which is never allowed for a single object.
1514 #[doc(hidden)]
1515 #[unstable(feature = "sized_type_properties", issue = "none")]
1516 const MAX_SLICE_LEN: usize = match Self::SIZE {
1517 0 => usize::MAX,
1518 n => (isize::MAX as usize) / n,
1519 };
1520}
1521#[doc(hidden)]
1522#[unstable(feature = "sized_type_properties", issue = "none")]
1523impl<T> SizedTypeProperties for T {}
1524
1525/// Expands to the offset in bytes of a field from the beginning of the given type.
1526///
1527/// The type may be a `struct`, `enum`, `union`, or tuple.
1528///
1529/// The field may be a nested field (`field1.field2`), but not an array index.
1530/// The field must be visible to the call site.
1531///
1532/// The offset is returned as a [`usize`].
1533///
1534/// # Offsets of, and in, dynamically sized types
1535///
1536/// The field’s type must be [`Sized`], but it may be located in a [dynamically sized] container.
1537/// If the field type is dynamically sized, then you cannot use `offset_of!` (since the field's
1538/// alignment, and therefore its offset, may also be dynamic) and must take the offset from an
1539/// actual pointer to the container instead.
1540///
1541/// ```
1542/// # use core::mem;
1543/// # use core::fmt::Debug;
1544/// #[repr(C)]
1545/// pub struct Struct<T: ?Sized> {
1546/// a: u8,
1547/// b: T,
1548/// }
1549///
1550/// #[derive(Debug)]
1551/// #[repr(C, align(4))]
1552/// struct Align4(u32);
1553///
1554/// assert_eq!(mem::offset_of!(Struct<dyn Debug>, a), 0); // OK — Sized field
1555/// assert_eq!(mem::offset_of!(Struct<Align4>, b), 4); // OK — not DST
1556///
1557/// // assert_eq!(mem::offset_of!(Struct<dyn Debug>, b), 1);
1558/// // ^^^ error[E0277]: ... cannot be known at compilation time
1559///
1560/// // To obtain the offset of a !Sized field, examine a concrete value
1561/// // instead of using offset_of!.
1562/// let value: Struct<Align4> = Struct { a: 1, b: Align4(2) };
1563/// let ref_unsized: &Struct<dyn Debug> = &value;
1564/// let offset_of_b = unsafe {
1565/// (&raw const ref_unsized.b).byte_offset_from_unsigned(ref_unsized)
1566/// };
1567/// assert_eq!(offset_of_b, 4);
1568/// ```
1569///
1570/// If you need to obtain the offset of a field of a `!Sized` type, then, since the offset may
1571/// depend on the particular value being stored (in particular, `dyn Trait` values have a
1572/// dynamically-determined alignment), you must retrieve the offset from a specific reference
1573/// or pointer, and so you cannot use `offset_of!` to work without one.
1574///
1575/// # Layout is subject to change
1576///
1577/// Note that type layout is, in general, [subject to change and
1578/// platform-specific](https://doc.rust-lang.org/reference/type-layout.html). If
1579/// layout stability is required, consider using an [explicit `repr` attribute].
1580///
1581/// Rust guarantees that the offset of a given field within a given type will not
1582/// change over the lifetime of the program. However, two different compilations of
1583/// the same program may result in different layouts. Also, even within a single
1584/// program execution, no guarantees are made about types which are *similar* but
1585/// not *identical*, e.g.:
1586///
1587/// ```
1588/// struct Wrapper<T, U>(T, U);
1589///
1590/// type A = Wrapper<u8, u8>;
1591/// type B = Wrapper<u8, i8>;
1592///
1593/// // Not necessarily identical even though `u8` and `i8` have the same layout!
1594/// // assert_eq!(mem::offset_of!(A, 1), mem::offset_of!(B, 1));
1595///
1596/// #[repr(transparent)]
1597/// struct U8(u8);
1598///
1599/// type C = Wrapper<u8, U8>;
1600///
1601/// // Not necessarily identical even though `u8` and `U8` have the same layout!
1602/// // assert_eq!(mem::offset_of!(A, 1), mem::offset_of!(C, 1));
1603///
1604/// struct Empty<T>(core::marker::PhantomData<T>);
1605///
1606/// // Not necessarily identical even though `PhantomData` always has the same layout!
1607/// // assert_eq!(mem::offset_of!(Empty<u8>, 0), mem::offset_of!(Empty<i8>, 0));
1608/// ```
1609///
1610/// [explicit `repr` attribute]: https://doc.rust-lang.org/reference/type-layout.html#representations
1611///
1612/// # Unstable features
1613///
1614/// The following unstable features expand the functionality of `offset_of!`:
1615///
1616/// * [`offset_of_enum`] — allows `enum` variants to be traversed as if they were fields.
1617/// * [`offset_of_slice`] — allows getting the offset of a field of type `[T]`.
1618///
1619/// # Examples
1620///
1621/// ```
1622/// use std::mem;
1623/// #[repr(C)]
1624/// struct FieldStruct {
1625/// first: u8,
1626/// second: u16,
1627/// third: u8
1628/// }
1629///
1630/// assert_eq!(mem::offset_of!(FieldStruct, first), 0);
1631/// assert_eq!(mem::offset_of!(FieldStruct, second), 2);
1632/// assert_eq!(mem::offset_of!(FieldStruct, third), 4);
1633///
1634/// #[repr(C)]
1635/// struct NestedA {
1636/// b: NestedB
1637/// }
1638///
1639/// #[repr(C)]
1640/// struct NestedB(u8);
1641///
1642/// assert_eq!(mem::offset_of!(NestedA, b.0), 0);
1643/// ```
1644///
1645/// [dynamically sized]: https://doc.rust-lang.org/reference/dynamically-sized-types.html
1646/// [`offset_of_enum`]: https://doc.rust-lang.org/nightly/unstable-book/language-features/offset-of-enum.html
1647/// [`offset_of_slice`]: https://doc.rust-lang.org/nightly/unstable-book/language-features/offset-of-slice.html
1648#[stable(feature = "offset_of", since = "1.77.0")]
1649#[diagnostic::on_unmatched_args(
1650 note = "this macro expects a container type and a (nested) field path, like `offset_of!(Type, field)`"
1651)]
1652#[doc(alias = "memoffset")]
1653#[allow_internal_unstable(builtin_syntax, core_intrinsics)]
1654pub macro offset_of($Container:ty, $($fields:expr)+ $(,)?) {
1655 // The `{}` is for better error messages
1656 const {builtin # offset_of($Container, $($fields)+)}
1657}
1658
1659/// Create a fresh instance of the inhabited ZST type `T`.
1660///
1661/// Prefer this to [`zeroed`] or [`uninitialized`] or [`transmute_copy`]
1662/// in places where you know that `T` is zero-sized, but don't have a bound
1663/// (such as [`Default`]) that would allow you to instantiate it using safe code.
1664///
1665/// If you're not sure whether `T` is an inhabited ZST, then you should be
1666/// using [`MaybeUninit`], not this function.
1667///
1668/// # Panics
1669///
1670/// If `size_of::<T>() != 0`.
1671///
1672/// # Safety
1673///
1674/// - `T` must be *[inhabited]*, i.e. possible to construct. This means that types
1675/// like zero-variant enums and [`!`] are unsound to conjure.
1676/// - You must use the value only in ways which do not violate any *safety*
1677/// invariants of the type.
1678///
1679/// While it's easy to create a *valid* instance of an inhabited ZST, since having
1680/// no bits in its representation means there's only one possible value, that
1681/// doesn't mean that it's always *sound* to do so.
1682///
1683/// For example, a library could design zero-sized tokens that are `!Default + !Clone`, limiting
1684/// their creation to functions that initialize some state or establish a scope. Conjuring such a
1685/// token could break invariants and lead to unsoundness.
1686///
1687/// # Examples
1688///
1689/// ```
1690/// #![feature(mem_conjure_zst)]
1691/// use std::mem::conjure_zst;
1692///
1693/// assert_eq!(unsafe { conjure_zst::<()>() }, ());
1694/// assert_eq!(unsafe { conjure_zst::<[i32; 0]>() }, []);
1695/// ```
1696///
1697/// [inhabited]: https://doc.rust-lang.org/reference/glossary.html#inhabited
1698#[unstable(feature = "mem_conjure_zst", issue = "95383")]
1699#[rustc_const_unstable(feature = "mem_conjure_zst", issue = "95383")]
1700pub const unsafe fn conjure_zst<T>() -> T {
1701 const_assert!(
1702 T::IS_ZST,
1703 "mem::conjure_zst invoked on a non-zero-sized type",
1704 "mem::conjure_zst invoked on type {name}, which is not zero-sized",
1705 name: &str = crate::any::type_name::<T>()
1706 );
1707
1708 // SAFETY: because the caller must guarantee that it's inhabited and zero-sized,
1709 // there's nothing in the representation that needs to be set.
1710 // `assume_init` calls `assert_inhabited`, so we don't need to here.
1711 unsafe {
1712 #[allow(clippy::uninit_assumed_init)]
1713 MaybeUninit::uninit().assume_init()
1714 }
1715}