Skip to content

Commit 7946445

Browse files
committed
make ptr metadata functions callable from stable const fn
1 parent ea82a96 commit 7946445

File tree

7 files changed

+7
-29
lines changed

7 files changed

+7
-29
lines changed

core/src/intrinsics.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3160,7 +3160,7 @@ pub const fn type_id<T: ?Sized + 'static>() -> u128 {
31603160
/// change the possible layouts of pointers.
31613161
#[rustc_nounwind]
31623162
#[unstable(feature = "core_intrinsics", issue = "none")]
3163-
#[rustc_const_unstable(feature = "ptr_metadata", issue = "81513")]
3163+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
31643164
#[rustc_intrinsic]
31653165
#[rustc_intrinsic_must_be_overridden]
31663166
pub const fn aggregate_raw_ptr<P: AggregateRawPtr<D, Metadata = M>, D, M>(_data: D, _meta: M) -> P {
@@ -3185,7 +3185,7 @@ impl<P: ?Sized, T: ptr::Thin> AggregateRawPtr<*mut T> for *mut P {
31853185
/// This is used to implement functions like `ptr::metadata`.
31863186
#[rustc_nounwind]
31873187
#[unstable(feature = "core_intrinsics", issue = "none")]
3188-
#[rustc_const_unstable(feature = "ptr_metadata", issue = "81513")]
3188+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
31893189
#[rustc_intrinsic]
31903190
#[rustc_intrinsic_must_be_overridden]
31913191
pub const fn ptr_metadata<P: ptr::Pointee<Metadata = M> + ?Sized, M>(_ptr: *const P) -> M {

core/src/ptr/const_ptr.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ impl<T: ?Sized> *const T {
9292
/// }
9393
/// ```
9494
#[unstable(feature = "set_ptr_value", issue = "75091")]
95-
#[rustc_const_unstable(feature = "set_ptr_value", issue = "75091")]
95+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
9696
#[must_use = "returns a new pointer rather than modifying its argument"]
9797
#[inline]
9898
pub const fn with_metadata_of<U>(self, meta: *const U) -> *const U
@@ -412,7 +412,6 @@ impl<T: ?Sized> *const T {
412412
#[inline(always)]
413413
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
414414
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
415-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
416415
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
417416
pub const unsafe fn byte_offset(self, count: isize) -> Self {
418417
// SAFETY: the caller must uphold the safety contract for `offset`.
@@ -495,7 +494,6 @@ impl<T: ?Sized> *const T {
495494
#[inline(always)]
496495
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
497496
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
498-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
499497
pub const fn wrapping_byte_offset(self, count: isize) -> Self {
500498
self.cast::<u8>().wrapping_offset(count).with_metadata_of(self)
501499
}
@@ -645,7 +643,6 @@ impl<T: ?Sized> *const T {
645643
#[inline(always)]
646644
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
647645
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
648-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
649646
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
650647
pub const unsafe fn byte_offset_from<U: ?Sized>(self, origin: *const U) -> isize {
651648
// SAFETY: the caller must uphold the safety contract for `offset_from`.
@@ -873,7 +870,6 @@ impl<T: ?Sized> *const T {
873870
#[inline(always)]
874871
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
875872
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
876-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
877873
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
878874
pub const unsafe fn byte_add(self, count: usize) -> Self {
879875
// SAFETY: the caller must uphold the safety contract for `add`.
@@ -956,7 +952,6 @@ impl<T: ?Sized> *const T {
956952
#[inline(always)]
957953
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
958954
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
959-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
960955
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
961956
pub const unsafe fn byte_sub(self, count: usize) -> Self {
962957
// SAFETY: the caller must uphold the safety contract for `sub`.
@@ -1039,7 +1034,6 @@ impl<T: ?Sized> *const T {
10391034
#[inline(always)]
10401035
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
10411036
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
1042-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
10431037
pub const fn wrapping_byte_add(self, count: usize) -> Self {
10441038
self.cast::<u8>().wrapping_add(count).with_metadata_of(self)
10451039
}
@@ -1120,7 +1114,6 @@ impl<T: ?Sized> *const T {
11201114
#[inline(always)]
11211115
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
11221116
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
1123-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
11241117
pub const fn wrapping_byte_sub(self, count: usize) -> Self {
11251118
self.cast::<u8>().wrapping_sub(count).with_metadata_of(self)
11261119
}
@@ -1554,7 +1547,6 @@ impl<T> *const [T] {
15541547
#[inline]
15551548
#[stable(feature = "slice_ptr_len", since = "1.79.0")]
15561549
#[rustc_const_stable(feature = "const_slice_ptr_len", since = "1.79.0")]
1557-
#[rustc_allow_const_fn_unstable(ptr_metadata)]
15581550
pub const fn len(self) -> usize {
15591551
metadata(self)
15601552
}

core/src/ptr/metadata.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ pub trait Thin = Pointee<Metadata = ()>;
9292
///
9393
/// assert_eq!(std::ptr::metadata("foo"), 3_usize);
9494
/// ```
95-
#[rustc_const_unstable(feature = "ptr_metadata", issue = "81513")]
95+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
9696
#[inline]
9797
pub const fn metadata<T: ?Sized>(ptr: *const T) -> <T as Pointee>::Metadata {
9898
ptr_metadata(ptr)
@@ -106,7 +106,7 @@ pub const fn metadata<T: ?Sized>(ptr: *const T) -> <T as Pointee>::Metadata {
106106
///
107107
/// [`slice::from_raw_parts`]: crate::slice::from_raw_parts
108108
#[unstable(feature = "ptr_metadata", issue = "81513")]
109-
#[rustc_const_unstable(feature = "ptr_metadata", issue = "81513")]
109+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
110110
#[inline]
111111
pub const fn from_raw_parts<T: ?Sized>(
112112
data_pointer: *const impl Thin,
@@ -120,7 +120,7 @@ pub const fn from_raw_parts<T: ?Sized>(
120120
///
121121
/// See the documentation of [`from_raw_parts`] for more details.
122122
#[unstable(feature = "ptr_metadata", issue = "81513")]
123-
#[rustc_const_unstable(feature = "ptr_metadata", issue = "81513")]
123+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
124124
#[inline]
125125
pub const fn from_raw_parts_mut<T: ?Sized>(
126126
data_pointer: *mut impl Thin,

core/src/ptr/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,6 @@ pub unsafe fn drop_in_place<T: ?Sized>(to_drop: *mut T) {
599599
#[stable(feature = "rust1", since = "1.0.0")]
600600
#[rustc_promotable]
601601
#[rustc_const_stable(feature = "const_ptr_null", since = "1.24.0")]
602-
#[rustc_allow_const_fn_unstable(ptr_metadata)]
603602
#[rustc_diagnostic_item = "ptr_null"]
604603
pub const fn null<T: ?Sized + Thin>() -> *const T {
605604
from_raw_parts(without_provenance::<()>(0), ())
@@ -625,7 +624,6 @@ pub const fn null<T: ?Sized + Thin>() -> *const T {
625624
#[stable(feature = "rust1", since = "1.0.0")]
626625
#[rustc_promotable]
627626
#[rustc_const_stable(feature = "const_ptr_null", since = "1.24.0")]
628-
#[rustc_allow_const_fn_unstable(ptr_metadata)]
629627
#[rustc_diagnostic_item = "ptr_null_mut"]
630628
pub const fn null_mut<T: ?Sized + Thin>() -> *mut T {
631629
from_raw_parts_mut(without_provenance_mut::<()>(0), ())
@@ -949,7 +947,6 @@ pub const fn from_mut<T: ?Sized>(r: &mut T) -> *mut T {
949947
#[inline]
950948
#[stable(feature = "slice_from_raw_parts", since = "1.42.0")]
951949
#[rustc_const_stable(feature = "const_slice_from_raw_parts", since = "1.64.0")]
952-
#[rustc_allow_const_fn_unstable(ptr_metadata)]
953950
#[rustc_diagnostic_item = "ptr_slice_from_raw_parts"]
954951
pub const fn slice_from_raw_parts<T>(data: *const T, len: usize) -> *const [T] {
955952
from_raw_parts(data, len)

core/src/ptr/mut_ptr.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ impl<T: ?Sized> *mut T {
7474
/// }
7575
/// ```
7676
#[unstable(feature = "set_ptr_value", issue = "75091")]
77-
#[rustc_const_unstable(feature = "set_ptr_value", issue = "75091")]
77+
#[rustc_const_stable(feature = "ptr_metadata_const", since = "CURRENT_RUSTC_VERSION")]
7878
#[must_use = "returns a new pointer rather than modifying its argument"]
7979
#[inline]
8080
pub const fn with_metadata_of<U>(self, meta: *const U) -> *mut U
@@ -412,7 +412,6 @@ impl<T: ?Sized> *mut T {
412412
#[inline(always)]
413413
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
414414
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
415-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
416415
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
417416
pub const unsafe fn byte_offset(self, count: isize) -> Self {
418417
// SAFETY: the caller must uphold the safety contract for `offset`.
@@ -492,7 +491,6 @@ impl<T: ?Sized> *mut T {
492491
#[inline(always)]
493492
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
494493
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
495-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
496494
pub const fn wrapping_byte_offset(self, count: isize) -> Self {
497495
self.cast::<u8>().wrapping_offset(count).with_metadata_of(self)
498496
}
@@ -808,7 +806,6 @@ impl<T: ?Sized> *mut T {
808806
#[inline(always)]
809807
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
810808
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
811-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
812809
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
813810
pub const unsafe fn byte_offset_from<U: ?Sized>(self, origin: *const U) -> isize {
814811
// SAFETY: the caller must uphold the safety contract for `offset_from`.
@@ -954,7 +951,6 @@ impl<T: ?Sized> *mut T {
954951
#[inline(always)]
955952
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
956953
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
957-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
958954
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
959955
pub const unsafe fn byte_add(self, count: usize) -> Self {
960956
// SAFETY: the caller must uphold the safety contract for `add`.
@@ -1037,7 +1033,6 @@ impl<T: ?Sized> *mut T {
10371033
#[inline(always)]
10381034
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
10391035
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
1040-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
10411036
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
10421037
pub const unsafe fn byte_sub(self, count: usize) -> Self {
10431038
// SAFETY: the caller must uphold the safety contract for `sub`.
@@ -1118,7 +1113,6 @@ impl<T: ?Sized> *mut T {
11181113
#[inline(always)]
11191114
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
11201115
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
1121-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
11221116
pub const fn wrapping_byte_add(self, count: usize) -> Self {
11231117
self.cast::<u8>().wrapping_add(count).with_metadata_of(self)
11241118
}
@@ -1197,7 +1191,6 @@ impl<T: ?Sized> *mut T {
11971191
#[inline(always)]
11981192
#[stable(feature = "pointer_byte_offsets", since = "1.75.0")]
11991193
#[rustc_const_stable(feature = "const_pointer_byte_offsets", since = "1.75.0")]
1200-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
12011194
pub const fn wrapping_byte_sub(self, count: usize) -> Self {
12021195
self.cast::<u8>().wrapping_sub(count).with_metadata_of(self)
12031196
}
@@ -1804,7 +1797,6 @@ impl<T> *mut [T] {
18041797
#[inline(always)]
18051798
#[stable(feature = "slice_ptr_len", since = "1.79.0")]
18061799
#[rustc_const_stable(feature = "const_slice_ptr_len", since = "1.79.0")]
1807-
#[rustc_allow_const_fn_unstable(ptr_metadata)]
18081800
pub const fn len(self) -> usize {
18091801
metadata(self)
18101802
}

core/src/ptr/non_null.rs

-2
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,6 @@ impl<T: ?Sized> NonNull<T> {
567567
#[must_use]
568568
#[inline(always)]
569569
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
570-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
571570
#[stable(feature = "non_null_convenience", since = "1.80.0")]
572571
#[rustc_const_stable(feature = "non_null_convenience", since = "1.80.0")]
573572
pub const unsafe fn byte_add(self, count: usize) -> Self {
@@ -651,7 +650,6 @@ impl<T: ?Sized> NonNull<T> {
651650
#[must_use]
652651
#[inline(always)]
653652
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
654-
#[rustc_allow_const_fn_unstable(set_ptr_value)]
655653
#[stable(feature = "non_null_convenience", since = "1.80.0")]
656654
#[rustc_const_stable(feature = "non_null_convenience", since = "1.80.0")]
657655
pub const unsafe fn byte_sub(self, count: usize) -> Self {

core/src/slice/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ impl<T> [T] {
111111
#[lang = "slice_len_fn"]
112112
#[stable(feature = "rust1", since = "1.0.0")]
113113
#[rustc_const_stable(feature = "const_slice_len", since = "1.39.0")]
114-
#[rustc_allow_const_fn_unstable(ptr_metadata)]
115114
#[inline]
116115
#[must_use]
117116
pub const fn len(&self) -> usize {

0 commit comments

Comments
 (0)