Skip to content

Commit b362019

Browse files
authored
Rollup merge of rust-lang#130972 - RalfJung:const_cell_into_inner, r=dtolnay
stabilize const_cell_into_inner This const-stabilizes - `UnsafeCell::into_inner` - `Cell::into_inner` - `RefCell::into_inner` - `OnceCell::into_inner` `@rust-lang/wg-const-eval` this uses `rustc_allow_const_fn_unstable(const_precise_live_drops)`, so we'd be comitting to always finding *some* way to accept this code. IMO that's fine -- what these functions do is to move out the only field of a struct, and that struct has no destructor itself. The field's destructor does not get run as it gets returned to the caller. `@rust-lang/libs-api` this was FCP'd already [years ago](rust-lang#78729 (comment)), except that `OnceCell::into_inner` was added to the same feature gate since then (Cc `@tgross35).` Does that mean we have to re-run the FCP? If yes, I'd honestly prefer to move `OnceCell` into its own feature gate to not risk missing the next release. (That's why it's not great to add new functions to an already FCP'd feature gate.) OTOH if this needs an FCP either way since the previous FCP was so long ago, then we might as well do it all at once.
2 parents 109f270 + b8c2a2a commit b362019

File tree

5 files changed

+11
-51
lines changed

5 files changed

+11
-51
lines changed

core/src/cell.rs

+6-45
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,8 @@ impl<T> Cell<T> {
514514
/// assert_eq!(five, 5);
515515
/// ```
516516
#[stable(feature = "move_cell", since = "1.17.0")]
517-
#[rustc_const_unstable(feature = "const_cell_into_inner", issue = "78729")]
517+
#[rustc_const_stable(feature = "const_cell_into_inner", since = "CURRENT_RUSTC_VERSION")]
518+
#[rustc_allow_const_fn_unstable(const_precise_live_drops)]
518519
pub const fn into_inner(self) -> T {
519520
self.value.into_inner()
520521
}
@@ -857,7 +858,8 @@ impl<T> RefCell<T> {
857858
/// let five = c.into_inner();
858859
/// ```
859860
#[stable(feature = "rust1", since = "1.0.0")]
860-
#[rustc_const_unstable(feature = "const_cell_into_inner", issue = "78729")]
861+
#[rustc_const_stable(feature = "const_cell_into_inner", since = "CURRENT_RUSTC_VERSION")]
862+
#[rustc_allow_const_fn_unstable(const_precise_live_drops)]
861863
#[inline]
862864
pub const fn into_inner(self) -> T {
863865
// Since this function takes `self` (the `RefCell`) by value, the
@@ -2100,8 +2102,8 @@ impl<T> UnsafeCell<T> {
21002102
/// ```
21012103
#[inline(always)]
21022104
#[stable(feature = "rust1", since = "1.0.0")]
2103-
// When this is const stabilized, please remove `primitive_into_inner` below.
2104-
#[rustc_const_unstable(feature = "const_cell_into_inner", issue = "78729")]
2105+
#[rustc_const_stable(feature = "const_cell_into_inner", since = "CURRENT_RUSTC_VERSION")]
2106+
#[rustc_allow_const_fn_unstable(const_precise_live_drops)]
21052107
pub const fn into_inner(self) -> T {
21062108
self.value
21072109
}
@@ -2247,47 +2249,6 @@ impl<T: CoerceUnsized<U>, U> CoerceUnsized<UnsafeCell<U>> for UnsafeCell<T> {}
22472249
#[unstable(feature = "dispatch_from_dyn", issue = "none")]
22482250
impl<T: DispatchFromDyn<U>, U> DispatchFromDyn<UnsafeCell<U>> for UnsafeCell<T> {}
22492251

2250-
// Special cases of UnsafeCell::into_inner where T is a primitive. These are
2251-
// used by Atomic*::into_inner.
2252-
//
2253-
// The real UnsafeCell::into_inner cannot be used yet in a stable const function.
2254-
// That is blocked on a "precise drop analysis" unstable const feature.
2255-
// https://github.com/rust-lang/rust/issues/73255
2256-
macro_rules! unsafe_cell_primitive_into_inner {
2257-
($($primitive:ident $atomic:literal)*) => {
2258-
$(
2259-
#[cfg(target_has_atomic_load_store = $atomic)]
2260-
impl UnsafeCell<$primitive> {
2261-
pub(crate) const fn primitive_into_inner(self) -> $primitive {
2262-
self.value
2263-
}
2264-
}
2265-
)*
2266-
};
2267-
}
2268-
2269-
unsafe_cell_primitive_into_inner! {
2270-
i8 "8"
2271-
u8 "8"
2272-
i16 "16"
2273-
u16 "16"
2274-
i32 "32"
2275-
u32 "32"
2276-
i64 "64"
2277-
u64 "64"
2278-
i128 "128"
2279-
u128 "128"
2280-
isize "ptr"
2281-
usize "ptr"
2282-
}
2283-
2284-
#[cfg(target_has_atomic_load_store = "ptr")]
2285-
impl<T> UnsafeCell<*mut T> {
2286-
pub(crate) const fn primitive_into_inner(self) -> *mut T {
2287-
self.value
2288-
}
2289-
}
2290-
22912252
/// [`UnsafeCell`], but [`Sync`].
22922253
///
22932254
/// This is just an `UnsafeCell`, except it implements `Sync`

core/src/cell/once.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@ impl<T> OnceCell<T> {
309309
/// ```
310310
#[inline]
311311
#[stable(feature = "once_cell", since = "1.70.0")]
312-
#[rustc_const_unstable(feature = "const_cell_into_inner", issue = "78729")]
312+
#[rustc_const_stable(feature = "const_cell_into_inner", since = "CURRENT_RUSTC_VERSION")]
313+
#[rustc_allow_const_fn_unstable(const_precise_live_drops)]
313314
pub const fn into_inner(self) -> Option<T> {
314315
// Because `into_inner` takes `self` by value, the compiler statically verifies
315316
// that it is not currently borrowed. So it is safe to move out `Option<T>`.

core/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@
118118
#![feature(const_array_into_iter_constructors)]
119119
#![feature(const_bigint_helper_methods)]
120120
#![feature(const_black_box)]
121-
#![feature(const_cell_into_inner)]
122121
#![feature(const_char_encode_utf16)]
123122
#![feature(const_char_encode_utf8)]
124123
#![feature(const_eval_select)]

core/src/sync/atomic.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ impl AtomicBool {
596596
#[stable(feature = "atomic_access", since = "1.15.0")]
597597
#[rustc_const_stable(feature = "const_atomic_into_inner", since = "1.79.0")]
598598
pub const fn into_inner(self) -> bool {
599-
self.v.primitive_into_inner() != 0
599+
self.v.into_inner() != 0
600600
}
601601

602602
/// Loads a value from the bool.
@@ -1413,7 +1413,7 @@ impl<T> AtomicPtr<T> {
14131413
#[stable(feature = "atomic_access", since = "1.15.0")]
14141414
#[rustc_const_stable(feature = "const_atomic_into_inner", since = "1.79.0")]
14151415
pub const fn into_inner(self) -> *mut T {
1416-
self.p.primitive_into_inner()
1416+
self.p.into_inner()
14171417
}
14181418

14191419
/// Loads a value from the pointer.
@@ -2408,7 +2408,7 @@ macro_rules! atomic_int {
24082408
#[$stable_access]
24092409
#[rustc_const_stable(feature = "const_atomic_into_inner", since = "1.79.0")]
24102410
pub const fn into_inner(self) -> $int_type {
2411-
self.v.primitive_into_inner()
2411+
self.v.into_inner()
24122412
}
24132413

24142414
/// Loads a value from the atomic integer.

core/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#![feature(const_align_offset)]
1919
#![feature(const_array_from_ref)]
2020
#![feature(const_black_box)]
21-
#![feature(const_cell_into_inner)]
2221
#![feature(const_hash)]
2322
#![feature(const_heap)]
2423
#![feature(const_ip)]

0 commit comments

Comments
 (0)