maybe_uninit.rs 33.7 KB
Newer Older
P
Peter Todd 已提交
1 2
use crate::any::type_name;
use crate::fmt;
3 4
use crate::intrinsics;
use crate::mem::ManuallyDrop;
M
Mara Bos 已提交
5
use crate::ptr;
6 7 8 9 10

/// A wrapper type to construct uninitialized instances of `T`.
///
/// # Initialization invariant
///
11 12 13 14 15 16
/// The compiler, in general, assumes that a variable is properly initialized
/// according to the requirements of the variable's type. For example, a variable of
/// reference type must be aligned and non-NULL. This is an invariant that must
/// *always* be upheld, even in unsafe code. As a consequence, zero-initializing a
/// variable of reference type causes instantaneous [undefined behavior][ub],
/// no matter whether that reference ever gets used to access memory:
17 18
///
/// ```rust,no_run
19
/// # #![allow(invalid_value)]
20 21
/// use std::mem::{self, MaybeUninit};
///
R
Ralf Jung 已提交
22
/// let x: &i32 = unsafe { mem::zeroed() }; // undefined behavior! ⚠️
23
/// // The equivalent code with `MaybeUninit<&i32>`:
R
Ralf Jung 已提交
24
/// let x: &i32 = unsafe { MaybeUninit::zeroed().assume_init() }; // undefined behavior! ⚠️
25 26 27 28 29 30 31 32 33
/// ```
///
/// This is exploited by the compiler for various optimizations, such as eliding
/// run-time checks and optimizing `enum` layout.
///
/// Similarly, entirely uninitialized memory may have any content, while a `bool` must
/// always be `true` or `false`. Hence, creating an uninitialized `bool` is undefined behavior:
///
/// ```rust,no_run
34
/// # #![allow(invalid_value)]
35 36
/// use std::mem::{self, MaybeUninit};
///
R
Ralf Jung 已提交
37
/// let b: bool = unsafe { mem::uninitialized() }; // undefined behavior! ⚠️
38
/// // The equivalent code with `MaybeUninit<bool>`:
R
Ralf Jung 已提交
39
/// let b: bool = unsafe { MaybeUninit::uninit().assume_init() }; // undefined behavior! ⚠️
40 41 42 43 44 45 46 47
/// ```
///
/// Moreover, uninitialized memory is special in that the compiler knows that
/// it does not have a fixed value. This makes it undefined behavior to have
/// uninitialized data in a variable even if that variable has an integer type,
/// which otherwise can hold any *fixed* bit pattern:
///
/// ```rust,no_run
48
/// # #![allow(invalid_value)]
49 50
/// use std::mem::{self, MaybeUninit};
///
R
Ralf Jung 已提交
51
/// let x: i32 = unsafe { mem::uninitialized() }; // undefined behavior! ⚠️
52
/// // The equivalent code with `MaybeUninit<i32>`:
R
Ralf Jung 已提交
53
/// let x: i32 = unsafe { MaybeUninit::uninit().assume_init() }; // undefined behavior! ⚠️
54 55 56 57 58 59
/// ```
/// (Notice that the rules around uninitialized integers are not finalized yet, but
/// until they are, it is advisable to avoid them.)
///
/// On top of that, remember that most types have additional invariants beyond merely
/// being considered initialized at the type level. For example, a `1`-initialized [`Vec<T>`]
R
clarify  
Ralf Jung 已提交
60
/// is considered initialized (under the current implementation; this does not constitute
61
/// a stable guarantee) because the only requirement the compiler knows about it
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
/// is that the data pointer must be non-null. Creating such a `Vec<T>` does not cause
/// *immediate* undefined behavior, but will cause undefined behavior with most
/// safe operations (including dropping it).
///
/// [`Vec<T>`]: ../../std/vec/struct.Vec.html
///
/// # Examples
///
/// `MaybeUninit<T>` serves to enable unsafe code to deal with uninitialized data.
/// It is a signal to the compiler indicating that the data here might *not*
/// be initialized:
///
/// ```rust
/// use std::mem::MaybeUninit;
///
/// // Create an explicitly uninitialized reference. The compiler knows that data inside
/// // a `MaybeUninit<T>` may be invalid, and hence this is not UB:
/// let mut x = MaybeUninit::<&i32>::uninit();
/// // Set it to a valid value.
/// unsafe { x.as_mut_ptr().write(&0); }
/// // Extract the initialized data -- this is only allowed *after* properly
/// // initializing `x`!
/// let x = unsafe { x.assume_init() };
/// ```
///
/// The compiler then knows to not make any incorrect assumptions or optimizations on this code.
///
/// You can think of `MaybeUninit<T>` as being a bit like `Option<T>` but without
/// any of the run-time tracking and without any of the safety checks.
///
/// ## out-pointers
///
/// You can use `MaybeUninit<T>` to implement "out-pointers": instead of returning data
/// from a function, pass it a pointer to some (uninitialized) memory to put the
/// result into. This can be useful when it is important for the caller to control
/// how the memory the result is stored in gets allocated, and you want to avoid
/// unnecessary moves.
///
/// ```
/// use std::mem::MaybeUninit;
///
/// unsafe fn make_vec(out: *mut Vec<i32>) {
///     // `write` does not drop the old contents, which is important.
///     out.write(vec![1, 2, 3]);
/// }
///
/// let mut v = MaybeUninit::uninit();
/// unsafe { make_vec(v.as_mut_ptr()); }
/// // Now we know `v` is initialized! This also makes sure the vector gets
/// // properly dropped.
/// let v = unsafe { v.assume_init() };
/// assert_eq!(&v, &[1, 2, 3]);
/// ```
///
/// ## Initializing an array element-by-element
///
/// `MaybeUninit<T>` can be used to initialize a large array element-by-element:
///
/// ```
/// use std::mem::{self, MaybeUninit};
///
/// let data = {
///     // Create an uninitialized array of `MaybeUninit`. The `assume_init` is
///     // safe because the type we are claiming to have initialized here is a
///     // bunch of `MaybeUninit`s, which do not require initialization.
///     let mut data: [MaybeUninit<Vec<u32>>; 1000] = unsafe {
///         MaybeUninit::uninit().assume_init()
///     };
///
131 132 133 134 135
///     // Dropping a `MaybeUninit` does nothing. Thus using raw pointer
///     // assignment instead of `ptr::write` does not cause the old
///     // uninitialized value to be dropped. Also if there is a panic during
///     // this loop, we have a memory leak, but there is no memory safety
///     // issue.
136
///     for elem in &mut data[..] {
137
///         *elem = MaybeUninit::new(vec![42]);
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
///     }
///
///     // Everything is initialized. Transmute the array to the
///     // initialized type.
///     unsafe { mem::transmute::<_, [Vec<u32>; 1000]>(data) }
/// };
///
/// assert_eq!(&data[0], &[42]);
/// ```
///
/// You can also work with partially initialized arrays, which could
/// be found in low-level datastructures.
///
/// ```
/// use std::mem::MaybeUninit;
/// use std::ptr;
///
/// // Create an uninitialized array of `MaybeUninit`. The `assume_init` is
/// // safe because the type we are claiming to have initialized here is a
/// // bunch of `MaybeUninit`s, which do not require initialization.
/// let mut data: [MaybeUninit<String>; 1000] = unsafe { MaybeUninit::uninit().assume_init() };
/// // Count the number of elements we have assigned.
/// let mut data_len: usize = 0;
///
/// for elem in &mut data[0..500] {
163
///     *elem = MaybeUninit::new(String::from("hello"));
164 165 166 167 168
///     data_len += 1;
/// }
///
/// // For each item in the array, drop if we allocated it.
/// for elem in &mut data[0..data_len] {
D
fix  
DPC 已提交
169
///     unsafe { ptr::drop_in_place(elem.as_mut_ptr()); }
170 171 172 173 174 175 176 177 178 179 180 181 182 183
/// }
/// ```
///
/// ## Initializing a struct field-by-field
///
/// There is currently no supported way to create a raw pointer or reference
/// to a field of a struct inside `MaybeUninit<Struct>`. That means it is not possible
/// to create a struct by calling `MaybeUninit::uninit::<Struct>()` and then writing
/// to its fields.
///
/// [ub]: ../../reference/behavior-considered-undefined.html
///
/// # Layout
///
184
/// `MaybeUninit<T>` is guaranteed to have the same size, alignment, and ABI as `T`:
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
///
/// ```rust
/// use std::mem::{MaybeUninit, size_of, align_of};
/// assert_eq!(size_of::<MaybeUninit<u64>>(), size_of::<u64>());
/// assert_eq!(align_of::<MaybeUninit<u64>>(), align_of::<u64>());
/// ```
///
/// However remember that a type *containing* a `MaybeUninit<T>` is not necessarily the same
/// layout; Rust does not in general guarantee that the fields of a `Foo<T>` have the same order as
/// a `Foo<U>` even if `T` and `U` have the same size and alignment. Furthermore because any bit
/// value is valid for a `MaybeUninit<T>` the compiler can't apply non-zero/niche-filling
/// optimizations, potentially resulting in a larger size:
///
/// ```rust
/// # use std::mem::{MaybeUninit, size_of};
/// assert_eq!(size_of::<Option<bool>>(), 1);
/// assert_eq!(size_of::<Option<MaybeUninit<bool>>>(), 2);
/// ```
203 204 205 206 207 208 209 210 211 212 213 214 215
///
/// If `T` is FFI-safe, then so is `MaybeUninit<T>`.
///
/// While `MaybeUninit` is `#[repr(transparent)]` (indicating it guarantees the same size,
/// alignment, and ABI as `T`), this does *not* change any of the previous caveats. `Option<T>` and
/// `Option<MaybeUninit<T>>` may still have different sizes, and types containing a field of type
/// `T` may be laid out (and sized) differently than if that field were `MaybeUninit<T>`.
/// `MaybeUninit` is a union type, and `#[repr(transparent)]` on unions is unstable (see [the
/// tracking issue](https://github.com/rust-lang/rust/issues/60405)). Over time, the exact
/// guarantees of `#[repr(transparent)]` on unions may evolve, and `MaybeUninit` may or may not
/// remain `#[repr(transparent)]`. That said, `MaybeUninit<T>` will *always* guarantee that it has
/// the same size, alignment, and ABI as `T`; it's just that the way `MaybeUninit` implements that
/// guarantee may evolve.
216
#[stable(feature = "maybe_uninit", since = "1.36.0")]
217
// Lang item so we can wrap other types in it. This is useful for generators.
M
Mark Rousskov 已提交
218
#[lang = "maybe_uninit"]
219
#[derive(Copy)]
M
Mark Rousskov 已提交
220
#[repr(transparent)]
221 222 223 224 225 226 227 228 229 230 231 232 233 234
pub union MaybeUninit<T> {
    uninit: (),
    value: ManuallyDrop<T>,
}

#[stable(feature = "maybe_uninit", since = "1.36.0")]
impl<T: Copy> Clone for MaybeUninit<T> {
    #[inline(always)]
    fn clone(&self) -> Self {
        // Not calling `T::clone()`, we cannot know if we are initialized enough for that.
        *self
    }
}

P
Peter Todd 已提交
235 236 237 238 239 240 241
#[stable(feature = "maybe_uninit_debug", since = "1.41.0")]
impl<T> fmt::Debug for MaybeUninit<T> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.pad(type_name::<Self>())
    }
}

242 243 244 245 246 247 248
impl<T> MaybeUninit<T> {
    /// Creates a new `MaybeUninit<T>` initialized with the given value.
    /// It is safe to call [`assume_init`] on the return value of this function.
    ///
    /// Note that dropping a `MaybeUninit<T>` will never call `T`'s drop code.
    /// It is your responsibility to make sure `T` gets dropped if it got initialized.
    ///
249 250 251 252 253 254 255 256
    /// # Example
    ///
    /// ```
    /// use std::mem::MaybeUninit;
    ///
    /// let v: MaybeUninit<Vec<u8>> = MaybeUninit::new(vec![42]);
    /// ```
    ///
257
    /// [`assume_init`]: MaybeUninit::assume_init
258
    #[stable(feature = "maybe_uninit", since = "1.36.0")]
M
Mark Rousskov 已提交
259
    #[rustc_const_stable(feature = "const_maybe_uninit", since = "1.36.0")]
260 261 262 263 264 265 266 267 268 269
    #[inline(always)]
    pub const fn new(val: T) -> MaybeUninit<T> {
        MaybeUninit { value: ManuallyDrop::new(val) }
    }

    /// Creates a new `MaybeUninit<T>` in an uninitialized state.
    ///
    /// Note that dropping a `MaybeUninit<T>` will never call `T`'s drop code.
    /// It is your responsibility to make sure `T` gets dropped if it got initialized.
    ///
270 271 272 273 274 275
    /// See the [type-level documentation][MaybeUninit] for some examples.
    ///
    /// # Example
    ///
    /// ```
    /// use std::mem::MaybeUninit;
276
    ///
277 278
    /// let v: MaybeUninit<String> = MaybeUninit::uninit();
    /// ```
279
    #[stable(feature = "maybe_uninit", since = "1.36.0")]
M
Mark Rousskov 已提交
280
    #[rustc_const_stable(feature = "const_maybe_uninit", since = "1.36.0")]
281
    #[inline(always)]
M
Mark Rousskov 已提交
282
    #[rustc_diagnostic_item = "maybe_uninit_uninit"]
283 284 285 286
    pub const fn uninit() -> MaybeUninit<T> {
        MaybeUninit { uninit: () }
    }

287 288
    /// Create a new array of `MaybeUninit<T>` items, in an uninitialized state.
    ///
289 290 291 292 293
    /// Note: in a future Rust version this method may become unnecessary
    /// when array literal syntax allows
    /// [repeating const expressions](https://github.com/rust-lang/rust/issues/49147).
    /// The example below could then use `let mut buf = [MaybeUninit::<u8>::uninit(); 32];`.
    ///
294 295
    /// # Examples
    ///
296
    /// ```no_run
R
Ralf Jung 已提交
297
    /// #![feature(maybe_uninit_uninit_array, maybe_uninit_extra, maybe_uninit_slice)]
298
    ///
299 300
    /// use std::mem::MaybeUninit;
    ///
301 302 303
    /// extern "C" {
    ///     fn read_into_buffer(ptr: *mut u8, max_len: usize) -> usize;
    /// }
304
    ///
305 306 307 308
    /// /// Returns a (possibly smaller) slice of data that was actually read
    /// fn read(buf: &mut [MaybeUninit<u8>]) -> &[u8] {
    ///     unsafe {
    ///         let len = read_into_buffer(buf.as_mut_ptr() as *mut u8, buf.len());
R
Ralf Jung 已提交
309
    ///         MaybeUninit::slice_assume_init_ref(&buf[..len])
310 311
    ///     }
    /// }
312
    ///
313 314
    /// let mut buf: [MaybeUninit<u8>; 32] = MaybeUninit::uninit_array();
    /// let data = read(&mut buf);
315
    /// ```
316
    #[unstable(feature = "maybe_uninit_uninit_array", issue = "none")]
317 318
    #[inline(always)]
    pub fn uninit_array<const LEN: usize>() -> [Self; LEN] {
R
Ralf Jung 已提交
319
        // SAFETY: An uninitialized `[MaybeUninit<_>; LEN]` is valid.
M
Mark Rousskov 已提交
320
        unsafe { MaybeUninit::<[MaybeUninit<T>; LEN]>::uninit().assume_init() }
321 322
    }

323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
    /// Creates a new `MaybeUninit<T>` in an uninitialized state, with the memory being
    /// filled with `0` bytes. It depends on `T` whether that already makes for
    /// proper initialization. For example, `MaybeUninit<usize>::zeroed()` is initialized,
    /// but `MaybeUninit<&'static i32>::zeroed()` is not because references must not
    /// be null.
    ///
    /// Note that dropping a `MaybeUninit<T>` will never call `T`'s drop code.
    /// It is your responsibility to make sure `T` gets dropped if it got initialized.
    ///
    /// # Example
    ///
    /// Correct usage of this function: initializing a struct with zero, where all
    /// fields of the struct can hold the bit-pattern 0 as a valid value.
    ///
    /// ```rust
    /// use std::mem::MaybeUninit;
    ///
    /// let x = MaybeUninit::<(u8, bool)>::zeroed();
    /// let x = unsafe { x.assume_init() };
    /// assert_eq!(x, (0, false));
    /// ```
    ///
345 346
    /// *Incorrect* usage of this function: calling `x.zeroed().assume_init()`
    /// when `0` is not a valid bit-pattern for the type:
347 348 349 350 351 352 353 354 355
    ///
    /// ```rust,no_run
    /// use std::mem::MaybeUninit;
    ///
    /// enum NotZero { One = 1, Two = 2 };
    ///
    /// let x = MaybeUninit::<(u8, NotZero)>::zeroed();
    /// let x = unsafe { x.assume_init() };
    /// // Inside a pair, we create a `NotZero` that does not have a valid discriminant.
R
Ralf Jung 已提交
356
    /// // This is undefined behavior. ⚠️
357 358 359
    /// ```
    #[stable(feature = "maybe_uninit", since = "1.36.0")]
    #[inline]
M
Mark Rousskov 已提交
360
    #[rustc_diagnostic_item = "maybe_uninit_zeroed"]
361 362
    pub fn zeroed() -> MaybeUninit<T> {
        let mut u = MaybeUninit::<T>::uninit();
363
        // SAFETY: `u.as_mut_ptr()` points to allocated memory.
364 365 366 367 368 369 370 371 372 373
        unsafe {
            u.as_mut_ptr().write_bytes(0u8, 1);
        }
        u
    }

    /// Sets the value of the `MaybeUninit<T>`. This overwrites any previous value
    /// without dropping it, so be careful not to use this twice unless you want to
    /// skip running the destructor. For your convenience, this also returns a mutable
    /// reference to the (now safely initialized) contents of `self`.
374
    #[unstable(feature = "maybe_uninit_extra", issue = "63567")]
375 376
    #[inline(always)]
    pub fn write(&mut self, val: T) -> &mut T {
377 378 379
        *self = MaybeUninit::new(val);
        // SAFETY: We just initialized this value.
        unsafe { self.assume_init_mut() }
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
    }

    /// Gets a pointer to the contained value. Reading from this pointer or turning it
    /// into a reference is undefined behavior unless the `MaybeUninit<T>` is initialized.
    /// Writing to memory that this pointer (non-transitively) points to is undefined behavior
    /// (except inside an `UnsafeCell<T>`).
    ///
    /// # Examples
    ///
    /// Correct usage of this method:
    ///
    /// ```rust
    /// use std::mem::MaybeUninit;
    ///
    /// let mut x = MaybeUninit::<Vec<u32>>::uninit();
395
    /// unsafe { x.as_mut_ptr().write(vec![0, 1, 2]); }
396 397 398 399 400 401 402 403 404 405 406 407
    /// // Create a reference into the `MaybeUninit<T>`. This is okay because we initialized it.
    /// let x_vec = unsafe { &*x.as_ptr() };
    /// assert_eq!(x_vec.len(), 3);
    /// ```
    ///
    /// *Incorrect* usage of this method:
    ///
    /// ```rust,no_run
    /// use std::mem::MaybeUninit;
    ///
    /// let x = MaybeUninit::<Vec<u32>>::uninit();
    /// let x_vec = unsafe { &*x.as_ptr() };
R
Ralf Jung 已提交
408
    /// // We have created a reference to an uninitialized vector! This is undefined behavior. ⚠️
409 410 411 412 413
    /// ```
    ///
    /// (Notice that the rules around references to uninitialized data are not finalized yet, but
    /// until they are, it is advisable to avoid them.)
    #[stable(feature = "maybe_uninit", since = "1.36.0")]
R
Ralf Jung 已提交
414
    #[rustc_const_unstable(feature = "const_maybe_uninit_as_ptr", issue = "75251")]
415
    #[inline(always)]
R
Ralf Jung 已提交
416 417 418
    pub const fn as_ptr(&self) -> *const T {
        // `MaybeUninit` and `ManuallyDrop` are both `repr(transparent)` so we can cast the pointer.
        self as *const _ as *const T
419 420 421 422 423 424 425 426 427 428 429 430 431
    }

    /// Gets a mutable pointer to the contained value. Reading from this pointer or turning it
    /// into a reference is undefined behavior unless the `MaybeUninit<T>` is initialized.
    ///
    /// # Examples
    ///
    /// Correct usage of this method:
    ///
    /// ```rust
    /// use std::mem::MaybeUninit;
    ///
    /// let mut x = MaybeUninit::<Vec<u32>>::uninit();
432
    /// unsafe { x.as_mut_ptr().write(vec![0, 1, 2]); }
433 434 435 436 437 438 439 440 441 442 443 444 445 446
    /// // Create a reference into the `MaybeUninit<Vec<u32>>`.
    /// // This is okay because we initialized it.
    /// let x_vec = unsafe { &mut *x.as_mut_ptr() };
    /// x_vec.push(3);
    /// assert_eq!(x_vec.len(), 4);
    /// ```
    ///
    /// *Incorrect* usage of this method:
    ///
    /// ```rust,no_run
    /// use std::mem::MaybeUninit;
    ///
    /// let mut x = MaybeUninit::<Vec<u32>>::uninit();
    /// let x_vec = unsafe { &mut *x.as_mut_ptr() };
R
Ralf Jung 已提交
447
    /// // We have created a reference to an uninitialized vector! This is undefined behavior. ⚠️
448 449 450 451 452
    /// ```
    ///
    /// (Notice that the rules around references to uninitialized data are not finalized yet, but
    /// until they are, it is advisable to avoid them.)
    #[stable(feature = "maybe_uninit", since = "1.36.0")]
R
Ralf Jung 已提交
453
    #[rustc_const_unstable(feature = "const_maybe_uninit_as_ptr", issue = "75251")]
454
    #[inline(always)]
R
Ralf Jung 已提交
455 456 457
    pub const fn as_mut_ptr(&mut self) -> *mut T {
        // `MaybeUninit` and `ManuallyDrop` are both `repr(transparent)` so we can cast the pointer.
        self as *mut _ as *mut T
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
    }

    /// Extracts the value from the `MaybeUninit<T>` container. This is a great way
    /// to ensure that the data will get dropped, because the resulting `T` is
    /// subject to the usual drop handling.
    ///
    /// # Safety
    ///
    /// It is up to the caller to guarantee that the `MaybeUninit<T>` really is in an initialized
    /// state. Calling this when the content is not yet fully initialized causes immediate undefined
    /// behavior. The [type-level documentation][inv] contains more information about
    /// this initialization invariant.
    ///
    /// [inv]: #initialization-invariant
    ///
473 474
    /// On top of that, remember that most types have additional invariants beyond merely
    /// being considered initialized at the type level. For example, a `1`-initialized [`Vec<T>`]
R
clarify  
Ralf Jung 已提交
475
    /// is considered initialized (under the current implementation; this does not constitute
476
    /// a stable guarantee) because the only requirement the compiler knows about it
477 478 479 480
    /// is that the data pointer must be non-null. Creating such a `Vec<T>` does not cause
    /// *immediate* undefined behavior, but will cause undefined behavior with most
    /// safe operations (including dropping it).
    ///
M
Mara Bos 已提交
481 482
    /// [`Vec<T>`]: ../../std/vec/struct.Vec.html
    ///
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
    /// # Examples
    ///
    /// Correct usage of this method:
    ///
    /// ```rust
    /// use std::mem::MaybeUninit;
    ///
    /// let mut x = MaybeUninit::<bool>::uninit();
    /// unsafe { x.as_mut_ptr().write(true); }
    /// let x_init = unsafe { x.assume_init() };
    /// assert_eq!(x_init, true);
    /// ```
    ///
    /// *Incorrect* usage of this method:
    ///
    /// ```rust,no_run
    /// use std::mem::MaybeUninit;
    ///
    /// let x = MaybeUninit::<Vec<u32>>::uninit();
    /// let x_init = unsafe { x.assume_init() };
R
Ralf Jung 已提交
503
    /// // `x` had not been initialized yet, so this last line caused undefined behavior. ⚠️
504 505 506
    /// ```
    #[stable(feature = "maybe_uninit", since = "1.36.0")]
    #[inline(always)]
M
Mark Rousskov 已提交
507
    #[rustc_diagnostic_item = "assume_init"]
508
    pub unsafe fn assume_init(self) -> T {
509 510 511 512 513 514
        // SAFETY: the caller must guarantee that `self` is initialized.
        // This also means that `self` must be a `value` variant.
        unsafe {
            intrinsics::assert_inhabited::<T>();
            ManuallyDrop::into_inner(self.value)
        }
515 516 517 518 519
    }

    /// Reads the value from the `MaybeUninit<T>` container. The resulting `T` is subject
    /// to the usual drop handling.
    ///
B
Bruce Mitchener 已提交
520
    /// Whenever possible, it is preferable to use [`assume_init`] instead, which
521 522 523 524 525 526 527 528 529 530
    /// prevents duplicating the content of the `MaybeUninit<T>`.
    ///
    /// # Safety
    ///
    /// It is up to the caller to guarantee that the `MaybeUninit<T>` really is in an initialized
    /// state. Calling this when the content is not yet fully initialized causes undefined
    /// behavior. The [type-level documentation][inv] contains more information about
    /// this initialization invariant.
    ///
    /// Moreover, this leaves a copy of the same data behind in the `MaybeUninit<T>`. When using
531 532
    /// multiple copies of the data (by calling `assume_init_read` multiple times, or first
    /// calling `assume_init_read` and then [`assume_init`]), it is your responsibility
533 534 535
    /// to ensure that that data may indeed be duplicated.
    ///
    /// [inv]: #initialization-invariant
536
    /// [`assume_init`]: MaybeUninit::assume_init
537 538 539 540 541 542 543 544 545 546 547
    ///
    /// # Examples
    ///
    /// Correct usage of this method:
    ///
    /// ```rust
    /// #![feature(maybe_uninit_extra)]
    /// use std::mem::MaybeUninit;
    ///
    /// let mut x = MaybeUninit::<u32>::uninit();
    /// x.write(13);
548
    /// let x1 = unsafe { x.assume_init_read() };
549
    /// // `u32` is `Copy`, so we may read multiple times.
550
    /// let x2 = unsafe { x.assume_init_read() };
551 552 553 554
    /// assert_eq!(x1, x2);
    ///
    /// let mut x = MaybeUninit::<Option<Vec<u32>>>::uninit();
    /// x.write(None);
555
    /// let x1 = unsafe { x.assume_init_read() };
556
    /// // Duplicating a `None` value is okay, so we may read multiple times.
557
    /// let x2 = unsafe { x.assume_init_read() };
558 559 560 561 562 563 564 565 566 567
    /// assert_eq!(x1, x2);
    /// ```
    ///
    /// *Incorrect* usage of this method:
    ///
    /// ```rust,no_run
    /// #![feature(maybe_uninit_extra)]
    /// use std::mem::MaybeUninit;
    ///
    /// let mut x = MaybeUninit::<Option<Vec<u32>>>::uninit();
568
    /// x.write(Some(vec![0, 1, 2]));
569 570
    /// let x1 = unsafe { x.assume_init_read() };
    /// let x2 = unsafe { x.assume_init_read() };
R
Ralf Jung 已提交
571
    /// // We now created two copies of the same vector, leading to a double-free ⚠️ when
572 573
    /// // they both get dropped!
    /// ```
574
    #[unstable(feature = "maybe_uninit_extra", issue = "63567")]
575
    #[inline(always)]
576
    pub unsafe fn assume_init_read(&self) -> T {
577 578 579 580 581 582
        // SAFETY: the caller must guarantee that `self` is initialized.
        // Reading from `self.as_ptr()` is safe since `self` should be initialized.
        unsafe {
            intrinsics::assert_inhabited::<T>();
            self.as_ptr().read()
        }
583 584
    }

M
Mara Bos 已提交
585 586
    /// Drops the contained value in place.
    ///
M
Mara Bos 已提交
587
    /// If you have ownership of the `MaybeUninit`, you can use [`assume_init`] instead.
M
Mara Bos 已提交
588 589 590
    ///
    /// # Safety
    ///
591 592 593 594 595 596 597 598 599 600 601
    /// It is up to the caller to guarantee that the `MaybeUninit<T>` really is
    /// in an initialized state. Calling this when the content is not yet fully
    /// initialized causes undefined behavior.
    ///
    /// On top of that, all additional invariants of the type `T` must be
    /// satisfied, as the `Drop` implementation of `T` (or its members) may
    /// rely on this. For example, a `1`-initialized [`Vec<T>`] is considered
    /// initialized (under the current implementation; this does not constitute
    /// a stable guarantee) because the only requirement the compiler knows
    /// about it is that the data pointer must be non-null. Dropping such a
    /// `Vec<T>` however will cause undefined behaviour.
M
Mara Bos 已提交
602 603
    ///
    /// [`assume_init`]: MaybeUninit::assume_init
M
Mara Bos 已提交
604
    /// [`Vec<T>`]: ../../std/vec/struct.Vec.html
M
Mara Bos 已提交
605
    #[unstable(feature = "maybe_uninit_extra", issue = "63567")]
606
    pub unsafe fn assume_init_drop(&mut self) {
607 608
        // SAFETY: the caller must guarantee that `self` is initialized and
        // satisfies all invariants of `T`.
M
Mara Bos 已提交
609 610 611 612
        // Dropping the value in place is safe if that is the case.
        unsafe { ptr::drop_in_place(self.as_mut_ptr()) }
    }

613 614 615 616 617
    /// Gets a shared reference to the contained value.
    ///
    /// This can be useful when we want to access a `MaybeUninit` that has been
    /// initialized but don't have ownership of the `MaybeUninit` (preventing the use
    /// of `.assume_init()`).
618 619 620
    ///
    /// # Safety
    ///
621 622 623 624 625 626 627 628 629
    /// Calling this when the content is not yet fully initialized causes undefined
    /// behavior: it is up to the caller to guarantee that the `MaybeUninit<T>` really
    /// is in an initialized state.
    ///
    /// # Examples
    ///
    /// ### Correct usage of this method:
    ///
    /// ```rust
D
Daniel Henry-Mantilla 已提交
630
    /// #![feature(maybe_uninit_ref)]
D
Daniel Henry-Mantilla 已提交
631
    /// use std::mem::MaybeUninit;
632 633 634 635 636 637 638
    ///
    /// let mut x = MaybeUninit::<Vec<u32>>::uninit();
    /// // Initialize `x`:
    /// unsafe { x.as_mut_ptr().write(vec![1, 2, 3]); }
    /// // Now that our `MaybeUninit<_>` is known to be initialized, it is okay to
    /// // create a shared reference to it:
    /// let x: &Vec<u32> = unsafe {
F
Flying-Toast 已提交
639
    ///     // SAFETY: `x` has been initialized.
640
    ///     x.assume_init_ref()
641 642 643 644 645 646 647
    /// };
    /// assert_eq!(x, &vec![1, 2, 3]);
    /// ```
    ///
    /// ### *Incorrect* usages of this method:
    ///
    /// ```rust,no_run
D
Daniel Henry-Mantilla 已提交
648
    /// #![feature(maybe_uninit_ref)]
649 650 651
    /// use std::mem::MaybeUninit;
    ///
    /// let x = MaybeUninit::<Vec<u32>>::uninit();
652
    /// let x_vec: &Vec<u32> = unsafe { x.assume_init_ref() };
R
Ralf Jung 已提交
653
    /// // We have created a reference to an uninitialized vector! This is undefined behavior. ⚠️
654 655 656
    /// ```
    ///
    /// ```rust,no_run
D
Daniel Henry-Mantilla 已提交
657
    /// #![feature(maybe_uninit_ref)]
658 659 660 661 662
    /// use std::{cell::Cell, mem::MaybeUninit};
    ///
    /// let b = MaybeUninit::<Cell<bool>>::uninit();
    /// // Initialize the `MaybeUninit` using `Cell::set`:
    /// unsafe {
663
    ///     b.assume_init_ref().set(true);
D
DPC 已提交
664 665
    ///    // ^^^^^^^^^^^^^^^
    ///    // Reference to an uninitialized `Cell<bool>`: UB!
666 667
    /// }
    /// ```
668
    #[unstable(feature = "maybe_uninit_ref", issue = "63568")]
669
    #[inline(always)]
670
    pub unsafe fn assume_init_ref(&self) -> &T {
671 672 673 674 675 676
        // SAFETY: the caller must guarantee that `self` is initialized.
        // This also means that `self` must be a `value` variant.
        unsafe {
            intrinsics::assert_inhabited::<T>();
            &*self.value
        }
677 678
    }

679 680 681 682 683
    /// Gets a mutable (unique) reference to the contained value.
    ///
    /// This can be useful when we want to access a `MaybeUninit` that has been
    /// initialized but don't have ownership of the `MaybeUninit` (preventing the use
    /// of `.assume_init()`).
684 685 686
    ///
    /// # Safety
    ///
687 688
    /// Calling this when the content is not yet fully initialized causes undefined
    /// behavior: it is up to the caller to guarantee that the `MaybeUninit<T>` really
689
    /// is in an initialized state. For instance, `.assume_init_mut()` cannot be used to
690 691 692 693 694 695 696
    /// initialize a `MaybeUninit`.
    ///
    /// # Examples
    ///
    /// ### Correct usage of this method:
    ///
    /// ```rust
D
Daniel Henry-Mantilla 已提交
697
    /// #![feature(maybe_uninit_ref)]
D
Daniel Henry-Mantilla 已提交
698
    /// use std::mem::MaybeUninit;
699
    ///
D
Daniel Henry-Mantilla 已提交
700
    /// # unsafe extern "C" fn initialize_buffer(buf: *mut [u8; 2048]) { *buf = [0; 2048] }
701 702 703
    /// # #[cfg(FALSE)]
    /// extern "C" {
    ///     /// Initializes *all* the bytes of the input buffer.
D
Daniel Henry-Mantilla 已提交
704
    ///     fn initialize_buffer(buf: *mut [u8; 2048]);
705 706 707
    /// }
    ///
    /// let mut buf = MaybeUninit::<[u8; 2048]>::uninit();
D
Daniel Henry-Mantilla 已提交
708
    ///
709 710
    /// // Initialize `buf`:
    /// unsafe { initialize_buffer(buf.as_mut_ptr()); }
D
Daniel Henry-Mantilla 已提交
711
    /// // Now we know that `buf` has been initialized, so we could `.assume_init()` it.
712 713 714 715
    /// // However, using `.assume_init()` may trigger a `memcpy` of the 2048 bytes.
    /// // To assert our buffer has been initialized without copying it, we upgrade
    /// // the `&mut MaybeUninit<[u8; 2048]>` to a `&mut [u8; 2048]`:
    /// let buf: &mut [u8; 2048] = unsafe {
F
Flying-Toast 已提交
716
    ///     // SAFETY: `buf` has been initialized.
D
DPC 已提交
717
    ///     buf.assume_init_mut()
718
    /// };
D
Daniel Henry-Mantilla 已提交
719
    ///
720 721
    /// // Now we can use `buf` as a normal slice:
    /// buf.sort_unstable();
D
Daniel Henry-Mantilla 已提交
722
    /// assert!(
723
    ///     buf.windows(2).all(|pair| pair[0] <= pair[1]),
D
Daniel Henry-Mantilla 已提交
724 725
    ///     "buffer is sorted",
    /// );
726 727 728 729
    /// ```
    ///
    /// ### *Incorrect* usages of this method:
    ///
730
    /// You cannot use `.assume_init_mut()` to initialize a value:
731 732
    ///
    /// ```rust,no_run
D
Daniel Henry-Mantilla 已提交
733
    /// #![feature(maybe_uninit_ref)]
734 735 736 737
    /// use std::mem::MaybeUninit;
    ///
    /// let mut b = MaybeUninit::<bool>::uninit();
    /// unsafe {
738
    ///     *b.assume_init_mut() = true;
739
    ///     // We have created a (mutable) reference to an uninitialized `bool`!
R
Ralf Jung 已提交
740
    ///     // This is undefined behavior. ⚠️
741 742 743
    /// }
    /// ```
    ///
D
Daniel Henry-Mantilla 已提交
744
    /// For instance, you cannot [`Read`] into an uninitialized buffer:
745 746 747 748
    ///
    /// [`Read`]: https://doc.rust-lang.org/std/io/trait.Read.html
    ///
    /// ```rust,no_run
D
Daniel Henry-Mantilla 已提交
749
    /// #![feature(maybe_uninit_ref)]
750 751 752 753 754
    /// use std::{io, mem::MaybeUninit};
    ///
    /// fn read_chunk (reader: &'_ mut dyn io::Read) -> io::Result<[u8; 64]>
    /// {
    ///     let mut buffer = MaybeUninit::<[u8; 64]>::uninit();
755
    ///     reader.read_exact(unsafe { buffer.assume_init_mut() })?;
D
DPC 已提交
756
    ///                             // ^^^^^^^^^^^^^^^^^^^^^^^^
757 758
    ///                             // (mutable) reference to uninitialized memory!
    ///                             // This is undefined behavior.
D
Daniel Henry-Mantilla 已提交
759
    ///     Ok(unsafe { buffer.assume_init() })
760 761 762
    /// }
    /// ```
    ///
D
Daniel Henry-Mantilla 已提交
763
    /// Nor can you use direct field access to do field-by-field gradual initialization:
764 765
    ///
    /// ```rust,no_run
D
Daniel Henry-Mantilla 已提交
766 767
    /// #![feature(maybe_uninit_ref)]
    /// use std::{mem::MaybeUninit, ptr};
768 769 770 771 772 773 774
    ///
    /// struct Foo {
    ///     a: u32,
    ///     b: u8,
    /// }
    ///
    /// let foo: Foo = unsafe {
D
Daniel Henry-Mantilla 已提交
775
    ///     let mut foo = MaybeUninit::<Foo>::uninit();
776
    ///     ptr::write(&mut foo.assume_init_mut().a as *mut u32, 1337);
D
DPC 已提交
777
    ///                  // ^^^^^^^^^^^^^^^^^^^^^
778 779
    ///                  // (mutable) reference to uninitialized memory!
    ///                  // This is undefined behavior.
780
    ///     ptr::write(&mut foo.assume_init_mut().b as *mut u8, 42);
D
DPC 已提交
781
    ///                  // ^^^^^^^^^^^^^^^^^^^^^
782 783
    ///                  // (mutable) reference to uninitialized memory!
    ///                  // This is undefined behavior.
D
DPC 已提交
784
    ///     foo.assume_init()
785 786
    /// };
    /// ```
D
DPC 已提交
787
    // FIXME(#76092): We currently rely on the above being incorrect, i.e., we have references
788 789
    // to uninitialized data (e.g., in `libcore/fmt/float.rs`).  We should make
    // a final decision about the rules before stabilization.
790
    #[unstable(feature = "maybe_uninit_ref", issue = "63568")]
791
    #[inline(always)]
792
    pub unsafe fn assume_init_mut(&mut self) -> &mut T {
793 794 795 796 797 798
        // SAFETY: the caller must guarantee that `self` is initialized.
        // This also means that `self` must be a `value` variant.
        unsafe {
            intrinsics::assert_inhabited::<T>();
            &mut *self.value
        }
799 800
    }

S
Simon Sapin 已提交
801
    /// Assuming all the elements are initialized, get a slice to them.
802 803 804
    ///
    /// # Safety
    ///
S
Simon Sapin 已提交
805
    /// It is up to the caller to guarantee that the `MaybeUninit<T>` elements
806 807
    /// really are in an initialized state.
    /// Calling this when the content is not yet fully initialized causes undefined behavior.
R
Ralf Jung 已提交
808 809 810 811 812
    ///
    /// See [`assume_init_ref`] for more details and examples.
    ///
    /// [`assume_init_ref`]: MaybeUninit::assume_init_ref
    #[unstable(feature = "maybe_uninit_slice", issue = "63569")]
813
    #[inline(always)]
R
Ralf Jung 已提交
814
    pub unsafe fn slice_assume_init_ref(slice: &[Self]) -> &[T] {
815 816 817 818 819
        // SAFETY: casting slice to a `*const [T]` is safe since the caller guarantees that
        // `slice` is initialized, and`MaybeUninit` is guaranteed to have the same layout as `T`.
        // The pointer obtained is valid since it refers to memory owned by `slice` which is a
        // reference and thus guaranteed to be valid for reads.
        unsafe { &*(slice as *const [Self] as *const [T]) }
820 821
    }

S
Simon Sapin 已提交
822
    /// Assuming all the elements are initialized, get a mutable slice to them.
823 824 825
    ///
    /// # Safety
    ///
S
Simon Sapin 已提交
826
    /// It is up to the caller to guarantee that the `MaybeUninit<T>` elements
827 828
    /// really are in an initialized state.
    /// Calling this when the content is not yet fully initialized causes undefined behavior.
R
Ralf Jung 已提交
829 830 831 832 833
    ///
    /// See [`assume_init_mut`] for more details and examples.
    ///
    /// [`assume_init_mut`]: MaybeUninit::assume_init_mut
    #[unstable(feature = "maybe_uninit_slice", issue = "63569")]
834
    #[inline(always)]
R
Ralf Jung 已提交
835
    pub unsafe fn slice_assume_init_mut(slice: &mut [Self]) -> &mut [T] {
836 837 838
        // SAFETY: similar to safety notes for `slice_get_ref`, but we have a
        // mutable reference which is also guaranteed to be valid for writes.
        unsafe { &mut *(slice as *mut [Self] as *mut [T]) }
839 840
    }

841
    /// Gets a pointer to the first element of the array.
842
    #[unstable(feature = "maybe_uninit_slice", issue = "63569")]
843
    #[inline(always)]
R
Ralf Jung 已提交
844
    pub fn slice_as_ptr(this: &[MaybeUninit<T>]) -> *const T {
845
        this.as_ptr() as *const T
846 847 848
    }

    /// Gets a mutable pointer to the first element of the array.
849
    #[unstable(feature = "maybe_uninit_slice", issue = "63569")]
850
    #[inline(always)]
R
Ralf Jung 已提交
851
    pub fn slice_as_mut_ptr(this: &mut [MaybeUninit<T>]) -> *mut T {
852
        this.as_mut_ptr() as *mut T
853 854
    }
}