Skip to main content

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 safe to call if the pointer is safe to reborrow as `&T`
424/// (in which case you could also call [`size_of_val`]).
425/// Otherwise, the following conditions must hold:
426///
427/// - If `T` is `Sized`, this function is always safe to call.
428/// - If the unsized tail of `T` is:
429///     - a [slice], then the length of the slice tail must be an initialized
430///       integer, and the size of the *entire value*
431///       (dynamic tail length + statically sized prefix) must fit in `isize`.
432///       For the special case where the dynamic tail length is 0, this function
433///       is safe to call.
434//        NOTE: the reason this is safe is that if an overflow were to occur already with size 0,
435//        then we would stop compilation as even the "statically known" part of the type would
436//        already be too big (or the call may be in dead code and optimized away, but then it
437//        doesn't matter).
438///     - a [trait object], then the vtable part of the pointer must point
439///       to a valid vtable acquired by an unsizing coercion, and the size
440///       of the *entire value* (dynamic tail length + statically sized prefix)
441///       must fit in `isize`.
442///     - an (unstable) [extern type], then this function is always safe to
443///       call, but may panic or otherwise return the wrong value, as the
444///       extern type's layout is not known. This is the same behavior as
445///       [`size_of_val`] on a reference to a type with an extern type tail.
446///     - otherwise, it is conservatively not allowed to call this function.
447///
448/// [`size_of::<T>()`]: size_of
449/// [trait object]: ../../book/ch17-02-trait-objects.html
450/// [extern type]: ../../unstable-book/language-features/extern-types.html
451///
452/// # Examples
453///
454/// ```
455/// #![feature(layout_for_ptr)]
456/// use std::mem;
457///
458/// assert_eq!(4, size_of_val(&5i32));
459///
460/// let x: [u8; 13] = [0; 13];
461/// let y: &[u8] = &x;
462/// assert_eq!(13, unsafe { mem::size_of_val_raw(y) });
463/// ```
464#[inline]
465#[must_use]
466#[unstable(feature = "layout_for_ptr", issue = "69835")]
467pub const unsafe fn size_of_val_raw<T: ?Sized>(val: *const T) -> usize {
468    // SAFETY: the caller must provide a valid raw pointer
469    unsafe { intrinsics::size_of_val(val) }
470}
471
472/// Returns the [ABI]-required minimum alignment of a type in bytes.
473///
474/// Every reference to a value of the type `T` must be a multiple of this number.
475///
476/// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
477///
478/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
479///
480/// # Examples
481///
482/// ```
483/// # #![allow(deprecated)]
484/// use std::mem;
485///
486/// assert_eq!(4, mem::min_align_of::<i32>());
487/// ```
488#[inline]
489#[must_use]
490#[stable(feature = "rust1", since = "1.0.0")]
491#[deprecated(note = "use `align_of` instead", since = "1.2.0", suggestion = "align_of")]
492pub fn min_align_of<T>() -> usize {
493    <T as SizedTypeProperties>::ALIGN
494}
495
496/// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to in
497/// bytes.
498///
499/// Every reference to a value of the type `T` must be a multiple of this number.
500///
501/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
502///
503/// # Examples
504///
505/// ```
506/// # #![allow(deprecated)]
507/// use std::mem;
508///
509/// assert_eq!(4, mem::min_align_of_val(&5i32));
510/// ```
511#[inline]
512#[must_use]
513#[stable(feature = "rust1", since = "1.0.0")]
514#[deprecated(note = "use `align_of_val` instead", since = "1.2.0", suggestion = "align_of_val")]
515pub fn min_align_of_val<T: ?Sized>(val: &T) -> usize {
516    // SAFETY: val is a reference, so it's a valid raw pointer
517    unsafe { intrinsics::align_of_val(val) }
518}
519
520/// Returns the [ABI]-required minimum alignment of a type, in bytes.
521///
522/// Every reference to a value of the type `T` must be a multiple of this number.
523///
524/// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
525///
526/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
527///
528/// # Examples
529///
530/// ```
531/// assert_eq!(4, align_of::<i32>());
532/// ```
533///
534/// (Caution: [it is not guaranteed][type-layout] that the alignment of `i32` is `4`;
535/// that is, the above assertion does not pass on all platforms.)
536///
537/// [type-layout]: ../../reference/type-layout.html#r-layout.primitive
538#[inline(always)]
539#[must_use]
540#[stable(feature = "rust1", since = "1.0.0")]
541#[rustc_promotable]
542#[rustc_const_stable(feature = "const_align_of", since = "1.24.0")]
543#[rustc_diagnostic_item = "mem_align_of"]
544pub const fn align_of<T>() -> usize {
545    <T as SizedTypeProperties>::ALIGN
546}
547
548/// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to, in
549/// bytes.
550///
551/// This function is identical to [`align_of::<T>()`][align_of] whenever <code>T: [Sized]</code>,
552/// but also supports determining the alignment required by a `dyn Trait` value, which is the
553/// alignment of the underlying concrete type.
554///
555/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
556///
557/// # Examples
558///
559/// ```
560/// assert_eq!(4, align_of_val(&5i32));
561/// ```
562///
563/// (Caution: [it is not guaranteed][type-layout] that the alignment of `i32` is `4`;
564/// that is, this example assertion does not pass on all platforms.)
565///
566/// `dyn` types may have different alignments for different values;
567/// `align_of_val` can be used to learn those alignments:
568///
569/// ```
570/// let a: &dyn ToString = &1234u16;
571/// let b: &dyn ToString = &String::from("abcd");
572///
573/// assert_eq!(align_of_val(a), align_of::<u16>());
574/// assert_eq!(align_of_val(b), align_of::<String>());
575/// ```
576///
577/// [type-layout]: ../../reference/type-layout.html#r-layout.primitive
578#[inline]
579#[must_use]
580#[stable(feature = "rust1", since = "1.0.0")]
581#[rustc_const_stable(feature = "const_align_of_val", since = "1.85.0")]
582pub const fn align_of_val<T: ?Sized>(val: &T) -> usize {
583    // SAFETY: val is a reference, so it's a valid raw pointer
584    unsafe { intrinsics::align_of_val(val) }
585}
586
587/// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to, in
588/// bytes.
589///
590/// This function is identical to [`align_of_val()`], except that it can be used with raw pointers
591/// in situations where it would be unsound or undesirable to convert them to
592/// [`&` references][primitive@reference] and impose the aliasing rules that come with that.
593///
594/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
595///
596/// # Safety
597///
598/// This function is safe to call if the pointer is safe to reborrow as `&T`
599/// (in which case you could also call [`align_of_val`]).
600/// Otherwise, the following conditions must hold:
601///
602/// - If `T` is `Sized`, this function is always safe to call.
603/// - If the unsized tail of `T` is:
604///     - a [slice], then the length of the slice tail must be an initialized
605///       integer, and the size of the *entire value*
606///       (dynamic tail length + statically sized prefix) must fit in `isize`.
607///       For the special case where the dynamic tail length is 0, this function
608///       is safe to call.
609///     - a [trait object], then the vtable part of the pointer must point
610///       to a valid vtable acquired by an unsizing coercion, and the size
611///       of the *entire value* (dynamic tail length + statically sized prefix)
612///       must fit in `isize`.
613///     - an (unstable) [extern type], then this function is always safe to
614///       call, but may panic or otherwise return the wrong value, as the
615///       extern type's layout is not known. This is the same behavior as
616///       [`align_of_val`] on a reference to a type with an extern type tail.
617///     - otherwise, it is conservatively not allowed to call this function.
618///
619/// [trait object]: ../../book/ch17-02-trait-objects.html
620/// [extern type]: ../../unstable-book/language-features/extern-types.html
621///
622/// # Examples
623///
624/// ```
625/// #![feature(layout_for_ptr)]
626/// use std::mem;
627///
628/// assert_eq!(4, unsafe { mem::align_of_val_raw(&5i32) });
629/// ```
630///
631/// (Caution: [it is not guaranteed][type-layout] that the alignment of `i32` is `4`;
632/// that is, the above assertion does not pass on all platforms.)
633///
634/// [type-layout]: ../../reference/type-layout.html#r-layout.primitive
635#[inline]
636#[must_use]
637#[unstable(feature = "layout_for_ptr", issue = "69835")]
638pub const unsafe fn align_of_val_raw<T: ?Sized>(val: *const T) -> usize {
639    // SAFETY: the caller must provide a valid raw pointer
640    unsafe { intrinsics::align_of_val(val) }
641}
642
643/// Returns `true` if dropping values of type `T` matters.
644///
645/// This is purely an optimization hint, and may be implemented conservatively:
646/// it may return `true` for types that don't actually need to be dropped.
647/// As such always returning `true` would be a valid implementation of
648/// this function. However if this function actually returns `false`, then you
649/// can be certain dropping `T` has no side effect.
650///
651/// Low level implementations of things like collections, which need to manually
652/// drop their data, should use this function to avoid unnecessarily
653/// trying to drop all their contents when they are destroyed. This might not
654/// make a difference in release builds (where a loop that has no side-effects
655/// is easily detected and eliminated), but is often a big win for debug builds.
656///
657/// Note that [`drop_in_place`] already performs this check, so if your workload
658/// can be reduced to some small number of [`drop_in_place`] calls, using this is
659/// unnecessary. In particular note that you can [`drop_in_place`] a slice, and that
660/// will do a single needs_drop check for all the values.
661///
662/// Types like Vec therefore just `drop_in_place(&mut self[..])` without using
663/// `needs_drop` explicitly. Types like [`HashMap`], on the other hand, have to drop
664/// values one at a time and should use this API.
665///
666/// [`drop_in_place`]: crate::ptr::drop_in_place
667/// [`HashMap`]: ../../std/collections/struct.HashMap.html
668///
669/// # Examples
670///
671/// Here's an example of how a collection might make use of `needs_drop`:
672///
673/// ```
674/// use std::{mem, ptr};
675///
676/// pub struct MyCollection<T> {
677/// #   data: [T; 1],
678///     /* ... */
679/// }
680/// # impl<T> MyCollection<T> {
681/// #   fn iter_mut(&mut self) -> &mut [T] { &mut self.data }
682/// #   fn free_buffer(&mut self) {}
683/// # }
684///
685/// impl<T> Drop for MyCollection<T> {
686///     fn drop(&mut self) {
687///         unsafe {
688///             // drop the data
689///             if mem::needs_drop::<T>() {
690///                 for x in self.iter_mut() {
691///                     ptr::drop_in_place(x);
692///                 }
693///             }
694///             self.free_buffer();
695///         }
696///     }
697/// }
698/// ```
699#[inline]
700#[must_use]
701#[stable(feature = "needs_drop", since = "1.21.0")]
702#[rustc_const_stable(feature = "const_mem_needs_drop", since = "1.36.0")]
703#[rustc_diagnostic_item = "needs_drop"]
704pub const fn needs_drop<T: ?Sized>() -> bool {
705    const { intrinsics::needs_drop::<T>() }
706}
707
708/// Returns the value of type `T` represented by the all-zero byte-pattern.
709///
710/// This means that, for example, the padding byte in `(u8, u16)` is not
711/// necessarily zeroed.
712///
713/// There is no guarantee that an all-zero byte-pattern represents a valid value
714/// of some type `T`. For example, the all-zero byte-pattern is not a valid value
715/// for reference types (`&T`, `&mut T`) and function pointers. Using `zeroed`
716/// on such types causes immediate [undefined behavior][ub] because [the Rust
717/// compiler assumes][inv] that there always is a valid value in a variable it
718/// considers initialized.
719///
720/// This has the same effect as [`MaybeUninit::zeroed().assume_init()`][zeroed].
721/// It is useful for FFI sometimes, but should generally be avoided.
722///
723/// [zeroed]: MaybeUninit::zeroed
724/// [ub]: ../../reference/behavior-considered-undefined.html
725/// [inv]: MaybeUninit#initialization-invariant
726///
727/// # Examples
728///
729/// Correct usage of this function: initializing an integer with zero.
730///
731/// ```
732/// use std::mem;
733///
734/// let x: i32 = unsafe { mem::zeroed() };
735/// assert_eq!(0, x);
736/// ```
737///
738/// *Incorrect* usage of this function: initializing a reference with zero.
739///
740/// ```rust,no_run
741/// # #![allow(invalid_value)]
742/// use std::mem;
743///
744/// let _x: &i32 = unsafe { mem::zeroed() }; // Undefined behavior!
745/// let _y: fn() = unsafe { mem::zeroed() }; // And again!
746/// ```
747#[inline(always)]
748#[must_use]
749#[stable(feature = "rust1", since = "1.0.0")]
750#[rustc_diagnostic_item = "mem_zeroed"]
751#[track_caller]
752#[rustc_const_stable(feature = "const_mem_zeroed", since = "1.75.0")]
753pub const unsafe fn zeroed<T>() -> T {
754    // SAFETY: the caller must guarantee that an all-zero value is valid for `T`.
755    unsafe {
756        intrinsics::assert_zero_valid::<T>();
757        MaybeUninit::zeroed().assume_init()
758    }
759}
760
761/// Bypasses Rust's normal memory-initialization checks by pretending to
762/// produce a value of type `T`, while doing nothing at all.
763///
764/// **This function is deprecated.** Use [`MaybeUninit<T>`] instead.
765/// It also might be slower than using `MaybeUninit<T>` due to mitigations that were put in place to
766/// limit the potential harm caused by incorrect use of this function in legacy code.
767///
768/// The reason for deprecation is that the function basically cannot be used
769/// correctly: it has the same effect as [`MaybeUninit::uninit().assume_init()`][uninit].
770/// As the [`assume_init` documentation][assume_init] explains,
771/// [the Rust compiler assumes][inv] that values are properly initialized.
772///
773/// Truly uninitialized memory like what gets returned here
774/// is special in that the compiler knows that it does not have a fixed value.
775/// This makes it undefined behavior to have uninitialized data in a variable even
776/// if that variable has an integer type.
777///
778/// Therefore, it is immediate undefined behavior to call this function on nearly all types,
779/// including integer types and arrays of integer types, and even if the result is unused.
780///
781/// [uninit]: MaybeUninit::uninit
782/// [assume_init]: MaybeUninit::assume_init
783/// [inv]: MaybeUninit#initialization-invariant
784#[inline(always)]
785#[must_use]
786#[deprecated(since = "1.39.0", note = "use `mem::MaybeUninit` instead")]
787#[stable(feature = "rust1", since = "1.0.0")]
788#[rustc_diagnostic_item = "mem_uninitialized"]
789#[track_caller]
790pub unsafe fn uninitialized<T>() -> T {
791    // SAFETY: the caller must guarantee that an uninitialized value is valid for `T`.
792    unsafe {
793        intrinsics::assert_mem_uninitialized_valid::<T>();
794        let mut val = MaybeUninit::<T>::uninit();
795
796        // Fill memory with 0x01, as an imperfect mitigation for old code that uses this function on
797        // bool, nonnull, and noundef types. But don't do this if we actively want to detect UB.
798        if !cfg!(any(miri, sanitize = "memory")) {
799            val.as_mut_ptr().write_bytes(0x01, 1);
800        }
801
802        val.assume_init()
803    }
804}
805
806/// Swaps the values at two mutable locations, without deinitializing either one.
807///
808/// * If you want to swap with a default or dummy value, see [`take`].
809/// * If you want to swap with a passed value, returning the old value, see [`replace`].
810///
811/// # Examples
812///
813/// ```
814/// use std::mem;
815///
816/// let mut x = 5;
817/// let mut y = 42;
818///
819/// mem::swap(&mut x, &mut y);
820///
821/// assert_eq!(42, x);
822/// assert_eq!(5, y);
823/// ```
824#[inline]
825#[stable(feature = "rust1", since = "1.0.0")]
826#[rustc_const_stable(feature = "const_swap", since = "1.85.0")]
827#[rustc_diagnostic_item = "mem_swap"]
828pub const fn swap<T>(x: &mut T, y: &mut T) {
829    // SAFETY: `&mut` guarantees these are typed readable and writable
830    // as well as non-overlapping.
831    unsafe { intrinsics::typed_swap_nonoverlapping(x, y) }
832}
833
834/// Replaces `dest` with the default value of `T`, returning the previous `dest` value.
835///
836/// * If you want to replace the values of two variables, see [`swap`].
837/// * If you want to replace with a passed value instead of the default value, see [`replace`].
838///
839/// # Examples
840///
841/// A simple example:
842///
843/// ```
844/// use std::mem;
845///
846/// let mut v: Vec<i32> = vec![1, 2];
847///
848/// let old_v = mem::take(&mut v);
849/// assert_eq!(vec![1, 2], old_v);
850/// assert!(v.is_empty());
851/// ```
852///
853/// `take` allows taking ownership of a struct field by replacing it with an "empty" value.
854/// Without `take` you can run into issues like these:
855///
856/// ```compile_fail,E0507
857/// struct Buffer<T> { buf: Vec<T> }
858///
859/// impl<T> Buffer<T> {
860///     fn get_and_reset(&mut self) -> Vec<T> {
861///         // error: cannot move out of dereference of `&mut`-pointer
862///         let buf = self.buf;
863///         self.buf = Vec::new();
864///         buf
865///     }
866/// }
867/// ```
868///
869/// Note that `T` does not necessarily implement [`Clone`], so it can't even clone and reset
870/// `self.buf`. But `take` can be used to disassociate the original value of `self.buf` from
871/// `self`, allowing it to be returned:
872///
873/// ```
874/// use std::mem;
875///
876/// # struct Buffer<T> { buf: Vec<T> }
877/// impl<T> Buffer<T> {
878///     fn get_and_reset(&mut self) -> Vec<T> {
879///         mem::take(&mut self.buf)
880///     }
881/// }
882///
883/// let mut buffer = Buffer { buf: vec![0, 1] };
884/// assert_eq!(buffer.buf.len(), 2);
885///
886/// assert_eq!(buffer.get_and_reset(), vec![0, 1]);
887/// assert_eq!(buffer.buf.len(), 0);
888/// ```
889#[inline]
890#[stable(feature = "mem_take", since = "1.40.0")]
891#[rustc_const_unstable(feature = "const_default", issue = "143894")]
892pub const fn take<T: [const] Default>(dest: &mut T) -> T {
893    replace(dest, T::default())
894}
895
896/// Moves `src` into the referenced `dest`, returning the previous `dest` value.
897///
898/// Neither value is dropped.
899///
900/// * If you want to replace the values of two variables, see [`swap`].
901/// * If you want to replace with a default value, see [`take`].
902///
903/// # Examples
904///
905/// A simple example:
906///
907/// ```
908/// use std::mem;
909///
910/// let mut v: Vec<i32> = vec![1, 2];
911///
912/// let old_v = mem::replace(&mut v, vec![3, 4, 5]);
913/// assert_eq!(vec![1, 2], old_v);
914/// assert_eq!(vec![3, 4, 5], v);
915/// ```
916///
917/// `replace` allows consumption of a struct field by replacing it with another value.
918/// Without `replace` you can run into issues like these:
919///
920/// ```compile_fail,E0507
921/// struct Buffer<T> { buf: Vec<T> }
922///
923/// impl<T> Buffer<T> {
924///     fn replace_index(&mut self, i: usize, v: T) -> T {
925///         // error: cannot move out of dereference of `&mut`-pointer
926///         let t = self.buf[i];
927///         self.buf[i] = v;
928///         t
929///     }
930/// }
931/// ```
932///
933/// Note that `T` does not necessarily implement [`Clone`], so we can't even clone `self.buf[i]` to
934/// avoid the move. But `replace` can be used to disassociate the original value at that index from
935/// `self`, allowing it to be returned:
936///
937/// ```
938/// # #![allow(dead_code)]
939/// use std::mem;
940///
941/// # struct Buffer<T> { buf: Vec<T> }
942/// impl<T> Buffer<T> {
943///     fn replace_index(&mut self, i: usize, v: T) -> T {
944///         mem::replace(&mut self.buf[i], v)
945///     }
946/// }
947///
948/// let mut buffer = Buffer { buf: vec![0, 1] };
949/// assert_eq!(buffer.buf[0], 0);
950///
951/// assert_eq!(buffer.replace_index(0, 2), 0);
952/// assert_eq!(buffer.buf[0], 2);
953/// ```
954#[inline]
955#[stable(feature = "rust1", since = "1.0.0")]
956#[must_use = "if you don't need the old value, you can just assign the new value directly"]
957#[rustc_const_stable(feature = "const_replace", since = "1.83.0")]
958#[rustc_diagnostic_item = "mem_replace"]
959pub const fn replace<T>(dest: &mut T, src: T) -> T {
960    // It may be tempting to use `swap` to avoid `unsafe` here. Don't!
961    // The compiler optimizes the implementation below to two `memcpy`s
962    // while `swap` would require at least three. See PR#83022 for details.
963
964    // SAFETY: We read from `dest` but directly write `src` into it afterwards,
965    // such that the old value is not duplicated. Nothing is dropped and
966    // nothing here can panic.
967    unsafe {
968        // Ideally we wouldn't use the intrinsics here, but going through the
969        // `ptr` methods introduces two unnecessary UbChecks, so until we can
970        // remove those for pointers that come from references, this uses the
971        // intrinsics instead so this stays very cheap in MIR (and debug).
972
973        let result = crate::intrinsics::read_via_copy(dest);
974        crate::intrinsics::write_via_move(dest, src);
975        result
976    }
977}
978
979/// Disposes of a value.
980///
981/// This effectively does nothing for types which implement `Copy`, e.g.
982/// integers. Such values are copied and _then_ moved into the function, so the
983/// value persists after this function call.
984///
985/// This function is not magic; it is literally defined as
986///
987/// ```
988/// pub fn drop<T>(_x: T) {}
989/// ```
990///
991/// Because `_x` is moved into the function, it is automatically [dropped][drop] before
992/// the function returns.
993///
994/// [drop]: Drop
995///
996/// # Examples
997///
998/// Basic usage:
999///
1000/// ```
1001/// let v = vec![1, 2, 3];
1002///
1003/// drop(v); // explicitly drop the vector
1004/// ```
1005///
1006/// Since [`RefCell`] enforces the borrow rules at runtime, `drop` can
1007/// release a [`RefCell`] borrow:
1008///
1009/// ```
1010/// use std::cell::RefCell;
1011///
1012/// let x = RefCell::new(1);
1013///
1014/// let mut mutable_borrow = x.borrow_mut();
1015/// *mutable_borrow = 1;
1016///
1017/// drop(mutable_borrow); // relinquish the mutable borrow on this slot
1018///
1019/// let borrow = x.borrow();
1020/// println!("{}", *borrow);
1021/// ```
1022///
1023/// Integers and other types implementing [`Copy`] are unaffected by `drop`.
1024///
1025/// ```
1026/// # #![allow(dropping_copy_types)]
1027/// #[derive(Copy, Clone)]
1028/// struct Foo(u8);
1029///
1030/// let x = 1;
1031/// let y = Foo(2);
1032/// drop(x); // a copy of `x` is moved and dropped
1033/// drop(y); // a copy of `y` is moved and dropped
1034///
1035/// println!("x: {}, y: {}", x, y.0); // still available
1036/// ```
1037///
1038/// [`RefCell`]: crate::cell::RefCell
1039#[inline]
1040#[stable(feature = "rust1", since = "1.0.0")]
1041#[rustc_const_unstable(feature = "const_destruct", issue = "133214")]
1042#[rustc_diagnostic_item = "mem_drop"]
1043pub const fn drop<T>(_x: T)
1044where
1045    T: [const] Destruct,
1046{
1047}
1048
1049/// Bitwise-copies a value.
1050///
1051/// This function is not magic; it is literally defined as
1052/// ```
1053/// pub const fn copy<T: Copy>(x: &T) -> T { *x }
1054/// ```
1055///
1056/// It is useful when you want to pass a function pointer to a combinator, rather than defining a new closure.
1057///
1058/// Example:
1059/// ```
1060/// #![feature(mem_copy_fn)]
1061/// use core::mem::copy;
1062/// let result_from_ffi_function: Result<(), &i32> = Err(&1);
1063/// let result_copied: Result<(), i32> = result_from_ffi_function.map_err(copy);
1064/// ```
1065#[inline]
1066#[unstable(feature = "mem_copy_fn", issue = "98262")]
1067pub const fn copy<T: Copy>(x: &T) -> T {
1068    *x
1069}
1070
1071/// Interprets `src` as having type `&Dst`, and then reads `src` without moving
1072/// the contained value.
1073///
1074/// This function will unsafely assume the pointer `src` is valid for [`size_of::<Dst>`][size_of]
1075/// bytes by transmuting `&Src` to `&Dst` and then reading the `&Dst` (except that this is done
1076/// in a way that is correct even when `&Dst` has stricter alignment requirements than `&Src`).
1077/// It will also unsafely create a copy of the contained value instead of moving out of `src`.
1078///
1079/// It is not a compile-time error if `Src` and `Dst` have different sizes, but it
1080/// is highly encouraged to only invoke this function where `Src` and `Dst` have the
1081/// same size. This function triggers [undefined behavior][ub] if `Dst` is larger than
1082/// `Src`.
1083///
1084/// [ub]: ../../reference/behavior-considered-undefined.html
1085///
1086/// If you have a raw pointer instead of a reference, you might be looking for
1087/// `src.cast::<Dst>().`[`read_unaligned()`](pointer#method.read_unaligned) instead.
1088///
1089/// # Safety
1090///
1091/// - Requires `size_of_val::<Src>(src) >= size_of::<Dst>()`
1092/// - The first `size_of::<Dst>()` bytes behind `src` must be *readable*
1093/// - The first `size_of::<Dst>()` bytes behind `src` must be *[valid]*
1094///   when interpreted as a `Dst`.
1095///
1096/// On top of that, remember that most types have additional invariants beyond merely
1097/// being considered initialized at the type level. For example, a `1`-initialized [`Vec<T>`]
1098/// is considered initialized (under the current implementation; this does not constitute
1099/// a stable guarantee) because the only requirement the compiler knows about it
1100/// is that the data pointer must be non-null. Creating such a `Vec<T>` does not cause
1101/// *immediate* undefined behavior, but will cause undefined behavior with most
1102/// safe operations (including dropping it).
1103///
1104/// [valid]: ../../reference/behavior-considered-undefined.html#r-undefined.validity
1105/// [`Vec<T>`]: ../../std/vec/struct.Vec.html
1106///
1107/// # Examples
1108///
1109/// ```
1110/// use std::mem;
1111///
1112/// #[repr(packed)]
1113/// struct Foo {
1114///     bar: u8,
1115/// }
1116///
1117/// let foo_array = [10u8];
1118///
1119/// unsafe {
1120///     // Copy the data from 'foo_array' and treat it as a 'Foo'
1121///     let mut foo_struct: Foo = mem::transmute_copy(&foo_array);
1122///     assert_eq!(foo_struct.bar, 10);
1123///
1124///     // Modify the copied data
1125///     foo_struct.bar = 20;
1126///     assert_eq!(foo_struct.bar, 20);
1127/// }
1128///
1129/// // The contents of 'foo_array' should not have changed
1130/// assert_eq!(foo_array, [10]);
1131///
1132/// let bytes: &[u8] = &[1, 2, 3, 4, 5, 6, 7];
1133/// assert_eq!(
1134///     unsafe { mem::transmute_copy::<[u8], u32>(bytes) },
1135///     u32::from_ne_bytes(*bytes.first_chunk().unwrap()),
1136/// );
1137/// ```
1138#[inline]
1139#[must_use]
1140#[track_caller]
1141#[stable(feature = "rust1", since = "1.0.0")]
1142#[rustc_const_stable(feature = "const_transmute_copy", since = "1.74.0")]
1143pub const unsafe fn transmute_copy<Src: ?Sized, Dst>(src: &Src) -> Dst {
1144    // library UB because it's possible for the `Src` to be only a subset of the allocation
1145    // and thus for a failure to not be immediate language UB
1146    assert_unsafe_precondition!(
1147        check_library_ub,
1148        "cannot transmute_copy if Dst is larger than Src",
1149        (
1150            src_size: usize = size_of_val::<Src>(src),
1151            dst_size: usize = Dst::SIZE,
1152        ) => src_size >= dst_size
1153    );
1154
1155    // If Dst has a higher alignment requirement, src might not be suitably aligned.
1156    if align_of::<Dst>() > align_of_val::<Src>(src) {
1157        // SAFETY: `src` is a reference which is guaranteed to be valid for reads.
1158        // The caller must guarantee that the actual transmutation is safe.
1159        unsafe { ptr::read_unaligned(src as *const Src as *const Dst) }
1160    } else {
1161        // SAFETY: `src` is a reference which is guaranteed to be valid for reads.
1162        // We just checked that `src as *const Dst` was properly aligned.
1163        // The caller must guarantee that the actual transmutation is safe.
1164        unsafe { ptr::read(src as *const Src as *const Dst) }
1165    }
1166}
1167
1168/// Like [`transmute`], but only initializes the "common prefix" of the first
1169/// `min(size_of::<Src>(), size_of::<Dst>())` bytes of the destination from the
1170/// corresponding bytes of the source.
1171///
1172/// This is equivalent to a "union cast" through a `union` with `#[repr(C)]`.
1173///
1174/// That means some size mismatches are not UB, like `[T; 2]` to `[T; 1]`.
1175/// Increasing size is usually UB from being insufficiently initialized -- like
1176/// `u8` to `u32` -- but isn't always.  For example, going from `u8` to
1177/// `#[repr(C, align(4))] AlignedU8(u8);` is sound.
1178///
1179/// Prefer normal `transmute` where possible, for the extra checking, since
1180/// both do exactly the same thing at runtime, if they both compile.
1181///
1182/// # Safety
1183///
1184/// If `size_of::<Src>() >= size_of::<Dst>()`, the first `size_of::<Dst>()` bytes
1185/// of `src` must be be *valid* when interpreted as a `Dst`.  (In this case, the
1186/// preconditions are the same as for `transmute_copy(&ManuallyDrop::new(src))`.)
1187///
1188/// If `size_of::<Src>() <= size_of::<Dst>()`, the bytes of `src` padded with
1189/// uninitialized bytes afterwards up to a total size of `size_of::<Dst>()`
1190/// must be *valid* when interpreted as a `Dst`.
1191///
1192/// In both cases, any safety preconditions of the `Dst` type must also be upheld.
1193///
1194/// # Examples
1195///
1196/// ```
1197/// #![feature(transmute_prefix)]
1198/// use std::mem::transmute_prefix;
1199///
1200/// assert_eq!(unsafe { transmute_prefix::<[i32; 4], [i32; 2]>([1, 2, 3, 4]) }, [1, 2]);
1201///
1202/// let expected = if cfg!(target_endian = "little") { 0x34 } else { 0x12 };
1203/// assert_eq!(unsafe { transmute_prefix::<u16, u8>(0x1234) }, expected);
1204///
1205/// // Would be UB because the destination is incompletely initialized.
1206/// // transmute_prefix::<u8, u16>(123)
1207///
1208/// // OK because the destination is allowed to be partially initialized.
1209/// let _: std::mem::MaybeUninit<u16> = unsafe { transmute_prefix(123_u8) };
1210/// ```
1211#[unstable(feature = "transmute_prefix", issue = "155079")]
1212#[rustc_no_writable]
1213pub const unsafe fn transmute_prefix<Src, Dst>(src: Src) -> Dst {
1214    #[repr(C)]
1215    union Transmute<A, B> {
1216        a: ManuallyDrop<A>,
1217        b: ManuallyDrop<B>,
1218    }
1219
1220    match const { Ord::cmp(&Src::SIZE, &Dst::SIZE) } {
1221        // SAFETY: When Dst is bigger, the union is the size of Dst
1222        Ordering::Less => unsafe {
1223            let a = transmute_neo(src);
1224            intrinsics::transmute_unchecked(Transmute::<Src, Dst> { a })
1225        },
1226        // SAFETY: When they're the same size, we can use the MIR primitive
1227        Ordering::Equal => unsafe { intrinsics::transmute_unchecked::<Src, Dst>(src) },
1228        // SAFETY: When Src is bigger, the union is the size of Src
1229        Ordering::Greater => unsafe {
1230            let u: Transmute<Src, Dst> = intrinsics::transmute_unchecked(src);
1231            transmute_neo(u.b)
1232        },
1233    }
1234}
1235
1236/// New version of `transmute`, exposed under this name so it can be iterated upon
1237/// without risking breakage to uses of "real" transmute.
1238///
1239/// Uses a `const`-`assert` to check the sizes instead of typeck hacks,
1240/// but is semantially identical to `transmute` otherwise.
1241///
1242/// It will not be stabilized under this name.
1243///
1244/// # Examples
1245///
1246/// ```
1247/// #![feature(transmute_neo)]
1248/// use std::mem::transmute_neo;
1249///
1250/// assert_eq!(unsafe { transmute_neo::<f32, u32>(0.0) }, 0);
1251/// ```
1252///
1253/// ```compile_fail,E0080
1254/// #![feature(transmute_neo)]
1255/// use std::mem::transmute_neo;
1256///
1257/// unsafe { transmute_neo::<u32, u16>(123) };
1258/// ```
1259#[unstable(feature = "transmute_neo", issue = "155079")]
1260#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
1261#[inline]
1262#[rustc_no_writable]
1263pub const unsafe fn transmute_neo<Src, Dst>(src: Src) -> Dst {
1264    const { assert!(Src::SIZE == Dst::SIZE) };
1265
1266    // SAFETY: the const-assert just checked that they're the same size,
1267    // and any other safety invariants need to be upheld by the caller.
1268    unsafe { intrinsics::transmute_unchecked(src) }
1269}
1270
1271/// Opaque type representing the discriminant of an enum.
1272///
1273/// See the [`discriminant`] function in this module for more information.
1274#[stable(feature = "discriminant_value", since = "1.21.0")]
1275pub struct Discriminant<T>(<T as DiscriminantKind>::Discriminant);
1276
1277// N.B. These trait implementations cannot be derived because we don't want any bounds on T.
1278
1279#[stable(feature = "discriminant_value", since = "1.21.0")]
1280impl<T> Copy for Discriminant<T> {}
1281
1282#[stable(feature = "discriminant_value", since = "1.21.0")]
1283impl<T> clone::Clone for Discriminant<T> {
1284    fn clone(&self) -> Self {
1285        *self
1286    }
1287}
1288
1289#[doc(hidden)]
1290#[unstable(feature = "trivial_clone", issue = "none")]
1291unsafe impl<T> TrivialClone for Discriminant<T> {}
1292
1293#[stable(feature = "discriminant_value", since = "1.21.0")]
1294impl<T> cmp::PartialEq for Discriminant<T> {
1295    fn eq(&self, rhs: &Self) -> bool {
1296        self.0 == rhs.0
1297    }
1298}
1299
1300#[stable(feature = "discriminant_value", since = "1.21.0")]
1301impl<T> cmp::Eq for Discriminant<T> {}
1302
1303#[stable(feature = "discriminant_value", since = "1.21.0")]
1304impl<T> hash::Hash for Discriminant<T> {
1305    fn hash<H: hash::Hasher>(&self, state: &mut H) {
1306        self.0.hash(state);
1307    }
1308}
1309
1310#[stable(feature = "discriminant_value", since = "1.21.0")]
1311impl<T> fmt::Debug for Discriminant<T> {
1312    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1313        fmt.debug_tuple("Discriminant").field(&self.0).finish()
1314    }
1315}
1316
1317/// Returns a value uniquely identifying the enum variant in `v`.
1318///
1319/// If `T` is not an enum, calling this function will not result in undefined behavior, but the
1320/// return value is unspecified.
1321///
1322/// # Stability
1323///
1324/// The discriminant of an enum variant may change if the enum definition changes. A discriminant
1325/// of some variant will not change between compilations with the same compiler. See the [Reference]
1326/// for more information.
1327///
1328/// [Reference]: ../../reference/items/enumerations.html#custom-discriminant-values-for-fieldless-enumerations
1329///
1330/// The value of a [`Discriminant<T>`] is independent of any *free lifetimes* in `T`. As such,
1331/// reading or writing a `Discriminant<Foo<'a>>` as a `Discriminant<Foo<'b>>` (whether via
1332/// [`transmute`] or otherwise) is always sound. Note that this is **not** true for other kinds
1333/// of generic parameters and for higher-ranked lifetimes; `Discriminant<Foo<A>>` and
1334/// `Discriminant<Foo<B>>` as well as `Discriminant<Bar<dyn for<'a> Trait<'a>>>` and
1335/// `Discriminant<Bar<dyn Trait<'static>>>` may be incompatible.
1336///
1337/// # Examples
1338///
1339/// This can be used to compare enums that carry data, while disregarding
1340/// the actual data:
1341///
1342/// ```
1343/// use std::mem;
1344///
1345/// enum Foo { A(&'static str), B(i32), C(i32) }
1346///
1347/// assert_eq!(mem::discriminant(&Foo::A("bar")), mem::discriminant(&Foo::A("baz")));
1348/// assert_eq!(mem::discriminant(&Foo::B(1)), mem::discriminant(&Foo::B(2)));
1349/// assert_ne!(mem::discriminant(&Foo::B(3)), mem::discriminant(&Foo::C(3)));
1350/// ```
1351///
1352/// ## Accessing the numeric value of the discriminant
1353///
1354/// Note that it is *undefined behavior* to [`transmute`] from [`Discriminant`] to a primitive!
1355///
1356/// If an enum has only unit variants, then the numeric value of the discriminant can be accessed
1357/// with an [`as`] cast:
1358///
1359/// ```
1360/// enum Enum {
1361///     Foo,
1362///     Bar,
1363///     Baz,
1364/// }
1365///
1366/// assert_eq!(0, Enum::Foo as isize);
1367/// assert_eq!(1, Enum::Bar as isize);
1368/// assert_eq!(2, Enum::Baz as isize);
1369/// ```
1370///
1371/// If an enum has opted-in to having a [primitive representation] for its discriminant,
1372/// then it's possible to use pointers to read the memory location storing the discriminant.
1373/// That **cannot** be done for enums using the [default representation], however, as it's
1374/// undefined what layout the discriminant has and where it's stored — it might not even be
1375/// stored at all!
1376///
1377/// [`as`]: ../../std/keyword.as.html
1378/// [primitive representation]: ../../reference/type-layout.html#primitive-representations
1379/// [default representation]: ../../reference/type-layout.html#the-default-representation
1380/// ```
1381/// #[repr(u8)]
1382/// enum Enum {
1383///     Unit,
1384///     Tuple(bool),
1385///     Struct { a: bool },
1386/// }
1387///
1388/// impl Enum {
1389///     fn discriminant(&self) -> u8 {
1390///         // SAFETY: Because `Self` is marked `repr(u8)`, its layout is a `repr(C)` `union`
1391///         // between `repr(C)` structs, each of which has the `u8` discriminant as its first
1392///         // field, so we can read the discriminant without offsetting the pointer.
1393///         unsafe { *<*const _>::from(self).cast::<u8>() }
1394///     }
1395/// }
1396///
1397/// let unit_like = Enum::Unit;
1398/// let tuple_like = Enum::Tuple(true);
1399/// let struct_like = Enum::Struct { a: false };
1400/// assert_eq!(0, unit_like.discriminant());
1401/// assert_eq!(1, tuple_like.discriminant());
1402/// assert_eq!(2, struct_like.discriminant());
1403///
1404/// // ⚠️ This is undefined behavior. Don't do this. ⚠️
1405/// // assert_eq!(0, unsafe { std::mem::transmute::<_, u8>(std::mem::discriminant(&unit_like)) });
1406/// ```
1407#[stable(feature = "discriminant_value", since = "1.21.0")]
1408#[rustc_const_stable(feature = "const_discriminant", since = "1.75.0")]
1409#[rustc_diagnostic_item = "mem_discriminant"]
1410#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
1411pub const fn discriminant<T>(v: &T) -> Discriminant<T> {
1412    Discriminant(intrinsics::discriminant_value(v))
1413}
1414
1415/// Returns the number of variants in the enum type `T`.
1416///
1417/// If `T` is not an enum, calling this function will not result in undefined behavior, but the
1418/// return value is unspecified. Equally, if `T` is an enum with more variants than `usize::MAX`
1419/// the return value is unspecified. Uninhabited variants will be counted.
1420///
1421/// Note that an enum may be expanded with additional variants in the future
1422/// as a non-breaking change, for example if it is marked `#[non_exhaustive]`,
1423/// which will change the result of this function.
1424///
1425/// # Examples
1426///
1427/// ```
1428/// # #![feature(never_type)]
1429/// # #![feature(variant_count)]
1430///
1431/// use std::mem;
1432///
1433/// enum Void {}
1434/// enum Foo { A(&'static str), B(i32), C(i32) }
1435///
1436/// assert_eq!(mem::variant_count::<Void>(), 0);
1437/// assert_eq!(mem::variant_count::<Foo>(), 3);
1438///
1439/// assert_eq!(mem::variant_count::<Option<!>>(), 2);
1440/// assert_eq!(mem::variant_count::<Result<!, !>>(), 2);
1441/// ```
1442#[inline(always)]
1443#[must_use]
1444#[unstable(feature = "variant_count", issue = "73662")]
1445#[rustc_const_unstable(feature = "variant_count", issue = "73662")]
1446#[rustc_diagnostic_item = "mem_variant_count"]
1447pub const fn variant_count<T>() -> usize {
1448    const { intrinsics::variant_count::<T>() }
1449}
1450
1451/// Provides associated constants for various useful properties of types,
1452/// to give them a canonical form in our code and make them easier to read.
1453///
1454/// This is here only to simplify all the ZST checks we need in the library.
1455/// It's not on a stabilization track right now.
1456#[doc(hidden)]
1457#[unstable(feature = "sized_type_properties", issue = "none")]
1458pub trait SizedTypeProperties: Sized {
1459    #[doc(hidden)]
1460    #[unstable(feature = "sized_type_properties", issue = "none")]
1461    #[lang = "mem_size_const"]
1462    const SIZE: usize = intrinsics::size_of::<Self>();
1463
1464    #[doc(hidden)]
1465    #[unstable(feature = "sized_type_properties", issue = "none")]
1466    #[lang = "mem_align_const"]
1467    const ALIGN: usize = intrinsics::align_of::<Self>();
1468
1469    #[doc(hidden)]
1470    #[unstable(feature = "ptr_alignment_type", issue = "102070")]
1471    const ALIGNMENT: Alignment = {
1472        // This can't panic since type alignment is always a power of two.
1473        Alignment::new(Self::ALIGN).unwrap()
1474    };
1475
1476    /// `true` if this type requires no storage.
1477    /// `false` if its [size](size_of) is greater than zero.
1478    ///
1479    /// # Examples
1480    ///
1481    /// ```
1482    /// #![feature(sized_type_properties)]
1483    /// use core::mem::SizedTypeProperties;
1484    ///
1485    /// fn do_something_with<T>() {
1486    ///     if T::IS_ZST {
1487    ///         // ... special approach ...
1488    ///     } else {
1489    ///         // ... the normal thing ...
1490    ///     }
1491    /// }
1492    ///
1493    /// struct MyUnit;
1494    /// assert!(MyUnit::IS_ZST);
1495    ///
1496    /// // For negative checks, consider using UFCS to emphasize the negation
1497    /// assert!(!<i32>::IS_ZST);
1498    /// // As it can sometimes hide in the type otherwise
1499    /// assert!(!String::IS_ZST);
1500    /// ```
1501    #[doc(hidden)]
1502    #[unstable(feature = "sized_type_properties", issue = "none")]
1503    const IS_ZST: bool = Self::SIZE == 0;
1504
1505    #[doc(hidden)]
1506    #[unstable(feature = "sized_type_properties", issue = "none")]
1507    const LAYOUT: Layout = {
1508        // SAFETY: if the type is instantiated, rustc already ensures that its
1509        // layout is valid. Use the unchecked constructor to avoid inserting a
1510        // panicking codepath that needs to be optimized out.
1511        unsafe { Layout::from_size_align_unchecked(Self::SIZE, Self::ALIGN) }
1512    };
1513
1514    /// The largest safe length for a `[Self]`.
1515    ///
1516    /// Anything larger than this would make `size_of_val` overflow `isize::MAX`,
1517    /// which is never allowed for a single object.
1518    #[doc(hidden)]
1519    #[unstable(feature = "sized_type_properties", issue = "none")]
1520    const MAX_SLICE_LEN: usize = match Self::SIZE {
1521        0 => usize::MAX,
1522        n => (isize::MAX as usize) / n,
1523    };
1524}
1525#[doc(hidden)]
1526#[unstable(feature = "sized_type_properties", issue = "none")]
1527impl<T> SizedTypeProperties for T {}
1528
1529/// Expands to the offset in bytes of a field from the beginning of the given type.
1530///
1531/// The type may be a `struct`, `enum`, `union`, or tuple.
1532///
1533/// The field may be a nested field (`field1.field2`), but not an array index.
1534/// The field must be visible to the call site.
1535///
1536/// The offset is returned as a [`usize`].
1537///
1538/// # Offsets of, and in, dynamically sized types
1539///
1540/// The field’s type must be [`Sized`], but it may be located in a [dynamically sized] container.
1541/// If the field type is dynamically sized, then you cannot use `offset_of!` (since the field's
1542/// alignment, and therefore its offset, may also be dynamic) and must take the offset from an
1543/// actual pointer to the container instead.
1544///
1545/// ```
1546/// # use core::mem;
1547/// # use core::fmt::Debug;
1548/// #[repr(C)]
1549/// pub struct Struct<T: ?Sized> {
1550///     a: u8,
1551///     b: T,
1552/// }
1553///
1554/// #[derive(Debug)]
1555/// #[repr(C, align(4))]
1556/// struct Align4(u32);
1557///
1558/// assert_eq!(mem::offset_of!(Struct<dyn Debug>, a), 0); // OK — Sized field
1559/// assert_eq!(mem::offset_of!(Struct<Align4>, b), 4); // OK — not DST
1560///
1561/// // assert_eq!(mem::offset_of!(Struct<dyn Debug>, b), 1);
1562/// // ^^^ error[E0277]: ... cannot be known at compilation time
1563///
1564/// // To obtain the offset of a !Sized field, examine a concrete value
1565/// // instead of using offset_of!.
1566/// let value: Struct<Align4> = Struct { a: 1, b: Align4(2) };
1567/// let ref_unsized: &Struct<dyn Debug> = &value;
1568/// let offset_of_b = unsafe {
1569///     (&raw const ref_unsized.b).byte_offset_from_unsigned(ref_unsized)
1570/// };
1571/// assert_eq!(offset_of_b, 4);
1572/// ```
1573///
1574/// If you need to obtain the offset of a field of a `!Sized` type, then, since the offset may
1575/// depend on the particular value being stored (in particular, `dyn Trait` values have a
1576/// dynamically-determined alignment), you must retrieve the offset from a specific reference
1577/// or pointer, and so you cannot use `offset_of!` to work without one.
1578///
1579/// # Layout is subject to change
1580///
1581/// Note that type layout is, in general, [subject to change and
1582/// platform-specific](https://doc.rust-lang.org/reference/type-layout.html). If
1583/// layout stability is required, consider using an [explicit `repr` attribute].
1584///
1585/// Rust guarantees that the offset of a given field within a given type will not
1586/// change over the lifetime of the program. However, two different compilations of
1587/// the same program may result in different layouts. Also, even within a single
1588/// program execution, no guarantees are made about types which are *similar* but
1589/// not *identical*, e.g.:
1590///
1591/// ```
1592/// struct Wrapper<T, U>(T, U);
1593///
1594/// type A = Wrapper<u8, u8>;
1595/// type B = Wrapper<u8, i8>;
1596///
1597/// // Not necessarily identical even though `u8` and `i8` have the same layout!
1598/// // assert_eq!(mem::offset_of!(A, 1), mem::offset_of!(B, 1));
1599///
1600/// #[repr(transparent)]
1601/// struct U8(u8);
1602///
1603/// type C = Wrapper<u8, U8>;
1604///
1605/// // Not necessarily identical even though `u8` and `U8` have the same layout!
1606/// // assert_eq!(mem::offset_of!(A, 1), mem::offset_of!(C, 1));
1607///
1608/// struct Empty<T>(core::marker::PhantomData<T>);
1609///
1610/// // Not necessarily identical even though `PhantomData` always has the same layout!
1611/// // assert_eq!(mem::offset_of!(Empty<u8>, 0), mem::offset_of!(Empty<i8>, 0));
1612/// ```
1613///
1614/// [explicit `repr` attribute]: https://doc.rust-lang.org/reference/type-layout.html#representations
1615///
1616/// # Unstable features
1617///
1618/// The following unstable features expand the functionality of `offset_of!`:
1619///
1620/// * [`offset_of_enum`] — allows `enum` variants to be traversed as if they were fields.
1621/// * [`offset_of_slice`] — allows getting the offset of a field of type `[T]`.
1622///
1623/// # Examples
1624///
1625/// ```
1626/// use std::mem;
1627/// #[repr(C)]
1628/// struct FieldStruct {
1629///     first: u8,
1630///     second: u16,
1631///     third: u8
1632/// }
1633///
1634/// assert_eq!(mem::offset_of!(FieldStruct, first), 0);
1635/// assert_eq!(mem::offset_of!(FieldStruct, second), 2);
1636/// assert_eq!(mem::offset_of!(FieldStruct, third), 4);
1637///
1638/// #[repr(C)]
1639/// struct NestedA {
1640///     b: NestedB
1641/// }
1642///
1643/// #[repr(C)]
1644/// struct NestedB(u8);
1645///
1646/// assert_eq!(mem::offset_of!(NestedA, b.0), 0);
1647/// ```
1648///
1649/// [dynamically sized]: https://doc.rust-lang.org/reference/dynamically-sized-types.html
1650/// [`offset_of_enum`]: https://doc.rust-lang.org/nightly/unstable-book/language-features/offset-of-enum.html
1651/// [`offset_of_slice`]: https://doc.rust-lang.org/nightly/unstable-book/language-features/offset-of-slice.html
1652#[stable(feature = "offset_of", since = "1.77.0")]
1653#[diagnostic::on_unmatched_args(
1654    note = "this macro expects a container type and a (nested) field path, like `offset_of!(Type, field)`"
1655)]
1656#[doc(alias = "memoffset")]
1657#[allow_internal_unstable(builtin_syntax, core_intrinsics)]
1658#[diagnostic::opaque]
1659pub macro offset_of($Container:ty, $($fields:expr)+ $(,)?) {
1660    const { builtin # offset_of($Container, $($fields)+) }
1661}
1662
1663/// Create a fresh instance of the inhabited ZST type `T`.
1664///
1665/// Prefer this to [`zeroed`] or [`uninitialized`] or [`transmute_copy`]
1666/// in places where you know that `T` is zero-sized, but don't have a bound
1667/// (such as [`Default`]) that would allow you to instantiate it using safe code.
1668///
1669/// If you're not sure whether `T` is an inhabited ZST, then you should be
1670/// using [`MaybeUninit`], not this function.
1671///
1672/// # Panics
1673///
1674/// If `size_of::<T>() != 0`.
1675///
1676/// # Safety
1677///
1678/// - `T` must be *[inhabited]*, i.e. possible to construct. This means that types
1679///   like zero-variant enums and [`!`] are unsound to conjure.
1680/// - You must use the value only in ways which do not violate any *safety*
1681///   invariants of the type.
1682///
1683/// While it's easy to create a *valid* instance of an inhabited ZST, since having
1684/// no bits in its representation means there's only one possible value, that
1685/// doesn't mean that it's always *sound* to do so.
1686///
1687/// For example, a library could design zero-sized tokens that are `!Default + !Clone`, limiting
1688/// their creation to functions that initialize some state or establish a scope. Conjuring such a
1689/// token could break invariants and lead to unsoundness.
1690///
1691/// # Examples
1692///
1693/// ```
1694/// #![feature(mem_conjure_zst)]
1695/// use std::mem::conjure_zst;
1696///
1697/// assert_eq!(unsafe { conjure_zst::<()>() }, ());
1698/// assert_eq!(unsafe { conjure_zst::<[i32; 0]>() }, []);
1699/// ```
1700///
1701/// [inhabited]: https://doc.rust-lang.org/reference/glossary.html#inhabited
1702#[unstable(feature = "mem_conjure_zst", issue = "95383")]
1703#[rustc_const_unstable(feature = "mem_conjure_zst", issue = "95383")]
1704pub const unsafe fn conjure_zst<T>() -> T {
1705    const_assert!(
1706        T::IS_ZST,
1707        "mem::conjure_zst invoked on a non-zero-sized type",
1708        "mem::conjure_zst invoked on type {name}, which is not zero-sized",
1709        name: &str = crate::any::type_name::<T>()
1710    );
1711
1712    // SAFETY: because the caller must guarantee that it's inhabited and zero-sized,
1713    // there's nothing in the representation that needs to be set.
1714    // `assume_init` calls `assert_inhabited`, so we don't need to here.
1715    unsafe {
1716        #[allow(clippy::uninit_assumed_init)]
1717        MaybeUninit::uninit().assume_init()
1718    }
1719}