Skip to content

Commit 1930f26

Browse files
committed
Auto merge of #117905 - RalfJung:no-const-mut, r=<try>
revert stabilization of const_intrinsic_copy `@rust-lang/wg-const-eval` I don't know what we were thinking when we approved #97276... const-eval isn't supposed to be able to mutate anything yet! It's also near impossible to actually call `copy` in const on stable since `&mut` expressions are generally unstable. However, there's one exception... ```rust static mut INT: i32 = unsafe { let val = &mut [1]; // `&mut` on arrays is allowed in `static mut` (val as *mut [i32; 1]).copy_from(&[42], 1); val[0] }; fn main() { unsafe { dbg!(INT); } } ``` Inside `static mut`, we accept some `&mut` since ~forever, to make `static mut FOO: &mut [T] = &mut [...];` work. We reject any attempt to actually write to that mutable reference though... except for the `copy` functions. I think we should revert stabilizing these functions that take `*mut`, and then re-stabilize them together with `ptr.write` once mutable references are stable. (This will likely fail on PowerPC until rust-lang/stdarch#1497 lands. But we'll need a crater run first anyway.)
2 parents d97bb19 + 215e10e commit 1930f26

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed

library/core/src/intrinsics.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2665,13 +2665,13 @@ pub(crate) fn is_nonoverlapping<T>(src: *const T, dst: *const T, count: usize) -
26652665
#[doc(alias = "memcpy")]
26662666
#[stable(feature = "rust1", since = "1.0.0")]
26672667
#[rustc_allowed_through_unstable_modules]
2668-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
2668+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
26692669
#[inline(always)]
26702670
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
26712671
#[rustc_diagnostic_item = "ptr_copy_nonoverlapping"]
26722672
pub const unsafe fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize) {
26732673
extern "rust-intrinsic" {
2674-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
2674+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
26752675
#[rustc_nounwind]
26762676
pub fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize);
26772677
}
@@ -2761,13 +2761,13 @@ pub const unsafe fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: us
27612761
#[doc(alias = "memmove")]
27622762
#[stable(feature = "rust1", since = "1.0.0")]
27632763
#[rustc_allowed_through_unstable_modules]
2764-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
2764+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
27652765
#[inline(always)]
27662766
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
27672767
#[rustc_diagnostic_item = "ptr_copy"]
27682768
pub const unsafe fn copy<T>(src: *const T, dst: *mut T, count: usize) {
27692769
extern "rust-intrinsic" {
2770-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
2770+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
27712771
#[rustc_nounwind]
27722772
fn copy<T>(src: *const T, dst: *mut T, count: usize);
27732773
}

library/core/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
#![feature(const_heap)]
136136
#![feature(const_index_range_slice_index)]
137137
#![feature(const_int_unchecked_arith)]
138+
#![feature(const_intrinsic_copy)]
138139
#![feature(const_intrinsic_forget)]
139140
#![feature(const_ipv4)]
140141
#![feature(const_ipv6)]

library/core/src/ptr/const_ptr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ impl<T: ?Sized> *const T {
12831283
/// See [`ptr::copy`] for safety concerns and examples.
12841284
///
12851285
/// [`ptr::copy`]: crate::ptr::copy()
1286-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
1286+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
12871287
#[stable(feature = "pointer_methods", since = "1.26.0")]
12881288
#[inline]
12891289
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
@@ -1303,7 +1303,7 @@ impl<T: ?Sized> *const T {
13031303
/// See [`ptr::copy_nonoverlapping`] for safety concerns and examples.
13041304
///
13051305
/// [`ptr::copy_nonoverlapping`]: crate::ptr::copy_nonoverlapping()
1306-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
1306+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
13071307
#[stable(feature = "pointer_methods", since = "1.26.0")]
13081308
#[inline]
13091309
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces

library/core/src/ptr/mod.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,6 @@ pub const unsafe fn replace<T>(dst: *mut T, mut src: T) -> T {
11611161
#[inline]
11621162
#[stable(feature = "rust1", since = "1.0.0")]
11631163
#[rustc_const_stable(feature = "const_ptr_read", since = "1.71.0")]
1164-
#[rustc_allow_const_fn_unstable(const_mut_refs, const_maybe_uninit_as_mut_ptr)]
11651164
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
11661165
#[rustc_diagnostic_item = "ptr_read"]
11671166
pub const unsafe fn read<T>(src: *const T) -> T {
@@ -1279,7 +1278,11 @@ pub const unsafe fn read<T>(src: *const T) -> T {
12791278
#[inline]
12801279
#[stable(feature = "ptr_unaligned", since = "1.17.0")]
12811280
#[rustc_const_stable(feature = "const_ptr_read", since = "1.71.0")]
1282-
#[rustc_allow_const_fn_unstable(const_mut_refs, const_maybe_uninit_as_mut_ptr)]
1281+
#[rustc_allow_const_fn_unstable(
1282+
const_mut_refs,
1283+
const_maybe_uninit_as_mut_ptr,
1284+
const_intrinsic_copy
1285+
)]
12831286
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
12841287
#[rustc_diagnostic_item = "ptr_read_unaligned"]
12851288
pub const unsafe fn read_unaligned<T>(src: *const T) -> T {

library/core/src/ptr/mut_ptr.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,7 @@ impl<T: ?Sized> *mut T {
13841384
/// See [`ptr::copy`] for safety concerns and examples.
13851385
///
13861386
/// [`ptr::copy`]: crate::ptr::copy()
1387-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
1387+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
13881388
#[stable(feature = "pointer_methods", since = "1.26.0")]
13891389
#[inline(always)]
13901390
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
@@ -1404,7 +1404,7 @@ impl<T: ?Sized> *mut T {
14041404
/// See [`ptr::copy_nonoverlapping`] for safety concerns and examples.
14051405
///
14061406
/// [`ptr::copy_nonoverlapping`]: crate::ptr::copy_nonoverlapping()
1407-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
1407+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
14081408
#[stable(feature = "pointer_methods", since = "1.26.0")]
14091409
#[inline(always)]
14101410
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
@@ -1424,7 +1424,7 @@ impl<T: ?Sized> *mut T {
14241424
/// See [`ptr::copy`] for safety concerns and examples.
14251425
///
14261426
/// [`ptr::copy`]: crate::ptr::copy()
1427-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
1427+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
14281428
#[stable(feature = "pointer_methods", since = "1.26.0")]
14291429
#[inline(always)]
14301430
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
@@ -1444,7 +1444,7 @@ impl<T: ?Sized> *mut T {
14441444
/// See [`ptr::copy_nonoverlapping`] for safety concerns and examples.
14451445
///
14461446
/// [`ptr::copy_nonoverlapping`]: crate::ptr::copy_nonoverlapping()
1447-
#[rustc_const_stable(feature = "const_intrinsic_copy", since = "1.63.0")]
1447+
#[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
14481448
#[stable(feature = "pointer_methods", since = "1.26.0")]
14491449
#[inline(always)]
14501450
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces

library/core/tests/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#![feature(const_cell_into_inner)]
1515
#![feature(const_hash)]
1616
#![feature(const_heap)]
17+
#![feature(const_intrinsic_copy)]
1718
#![feature(const_maybe_uninit_as_mut_ptr)]
1819
#![feature(const_nonnull_new)]
1920
#![feature(const_pointer_is_aligned)]

0 commit comments

Comments
 (0)