Skip to content

Commit 303d8af

Browse files
committedMar 11, 2020
Auto merge of #69914 - Centril:rollup-wtmdinz, r=Centril
Rollup of 10 pull requests Successful merges: - #66059 (mem::zeroed/uninit: panic on types that do not permit zero-initialization) - #69373 (Stabilize const for integer {to,from}_{be,le,ne}_bytes methods) - #69591 (Use TypeRelating for instantiating query responses) - #69625 (Implement nth, last, and count for iter::Copied) - #69645 (const forget tests) - #69766 (Make Point `Copy` in arithmetic documentation) - #69825 (make `mem::discriminant` const) - #69859 (fix #62456) - #69891 (Exhaustiveness checking, `Matrix::push`: recursively expand or-patterns) - #69896 (parse: Tweak the function parameter edition check) Failed merges: r? @ghost
2 parents 1581278 + 6a8683f commit 303d8af

40 files changed

+733
-212
lines changed
 

‎src/libcore/intrinsics.rs

+11
Original file line numberDiff line numberDiff line change
@@ -1007,6 +1007,16 @@ extern "rust-intrinsic" {
10071007
/// This will statically either panic, or do nothing.
10081008
pub fn panic_if_uninhabited<T>();
10091009

1010+
/// A guard for unsafe functions that cannot ever be executed if `T` does not permit
1011+
/// zero-initialization: This will statically either panic, or do nothing.
1012+
#[cfg(not(bootstrap))]
1013+
pub fn panic_if_zero_invalid<T>();
1014+
1015+
/// A guard for unsafe functions that cannot ever be executed if `T` has invalid
1016+
/// bit patterns: This will statically either panic, or do nothing.
1017+
#[cfg(not(bootstrap))]
1018+
pub fn panic_if_any_invalid<T>();
1019+
10101020
/// Gets a reference to a static `Location` indicating where it was called.
10111021
#[rustc_const_unstable(feature = "const_caller_location", issue = "47809")]
10121022
pub fn caller_location() -> &'static crate::panic::Location<'static>;
@@ -1852,6 +1862,7 @@ extern "rust-intrinsic" {
18521862
///
18531863
/// The stabilized version of this intrinsic is
18541864
/// [`std::mem::discriminant`](../../std/mem/fn.discriminant.html)
1865+
#[rustc_const_unstable(feature = "const_discriminant", issue = "69821")]
18551866
pub fn discriminant_value<T>(v: &T) -> u64;
18561867

18571868
/// Rust's "try catch" construct which invokes the function pointer `f` with

‎src/libcore/iter/adapters/mod.rs

+12
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,18 @@ where
200200
{
201201
self.it.fold(init, copy_fold(f))
202202
}
203+
204+
fn nth(&mut self, n: usize) -> Option<T> {
205+
self.it.nth(n).copied()
206+
}
207+
208+
fn last(self) -> Option<T> {
209+
self.it.last().copied()
210+
}
211+
212+
fn count(self) -> usize {
213+
self.it.count()
214+
}
203215
}
204216

205217
#[stable(feature = "iter_copied", since = "1.36.0")]

‎src/libcore/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
#![feature(concat_idents)]
7373
#![feature(const_ascii_ctype_on_intrinsics)]
7474
#![feature(const_alloc_layout)]
75+
#![feature(const_discriminant)]
7576
#![feature(const_if_match)]
7677
#![feature(const_loop)]
7778
#![feature(const_checked_int_methods)]
@@ -130,7 +131,6 @@
130131
#![feature(rtm_target_feature)]
131132
#![feature(f16c_target_feature)]
132133
#![feature(hexagon_target_feature)]
133-
#![feature(const_int_conversion)]
134134
#![feature(const_transmute)]
135135
#![feature(structural_match)]
136136
#![feature(abi_unadjusted)]

‎src/libcore/mem/mod.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,9 @@ pub const fn needs_drop<T>() -> bool {
496496
#[allow(deprecated)]
497497
#[rustc_diagnostic_item = "mem_zeroed"]
498498
pub unsafe fn zeroed<T>() -> T {
499+
#[cfg(not(bootstrap))]
500+
intrinsics::panic_if_zero_invalid::<T>();
501+
#[cfg(bootstrap)]
499502
intrinsics::panic_if_uninhabited::<T>();
500503
intrinsics::init()
501504
}
@@ -529,6 +532,9 @@ pub unsafe fn zeroed<T>() -> T {
529532
#[allow(deprecated)]
530533
#[rustc_diagnostic_item = "mem_uninitialized"]
531534
pub unsafe fn uninitialized<T>() -> T {
535+
#[cfg(not(bootstrap))]
536+
intrinsics::panic_if_any_invalid::<T>();
537+
#[cfg(bootstrap)]
532538
intrinsics::panic_if_uninhabited::<T>();
533539
intrinsics::uninit()
534540
}
@@ -864,6 +870,7 @@ impl<T> fmt::Debug for Discriminant<T> {
864870
/// assert_ne!(mem::discriminant(&Foo::B(3)), mem::discriminant(&Foo::C(3)));
865871
/// ```
866872
#[stable(feature = "discriminant_value", since = "1.21.0")]
867-
pub fn discriminant<T>(v: &T) -> Discriminant<T> {
873+
#[rustc_const_unstable(feature = "const_discriminant", issue = "69821")]
874+
pub const fn discriminant<T>(v: &T) -> Discriminant<T> {
868875
Discriminant(intrinsics::discriminant_value(v), PhantomData)
869876
}

‎src/libcore/num/mod.rs

+48-16
Original file line numberDiff line numberDiff line change
@@ -2154,7 +2154,7 @@ let bytes = ", $swap_op, stringify!($SelfT), ".to_be_bytes();
21542154
assert_eq!(bytes, ", $be_bytes, ");
21552155
```"),
21562156
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
2157-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
2157+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
21582158
#[inline]
21592159
pub const fn to_be_bytes(self) -> [u8; mem::size_of::<Self>()] {
21602160
self.to_be().to_ne_bytes()
@@ -2174,7 +2174,7 @@ let bytes = ", $swap_op, stringify!($SelfT), ".to_le_bytes();
21742174
assert_eq!(bytes, ", $le_bytes, ");
21752175
```"),
21762176
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
2177-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
2177+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
21782178
#[inline]
21792179
pub const fn to_le_bytes(self) -> [u8; mem::size_of::<Self>()] {
21802180
self.to_le().to_ne_bytes()
@@ -2209,12 +2209,20 @@ assert_eq!(
22092209
);
22102210
```"),
22112211
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
2212-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
2212+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
2213+
// SAFETY: const sound because integers are plain old datatypes so we can always
2214+
// transmute them to arrays of bytes
2215+
#[allow_internal_unstable(const_fn_union)]
22132216
#[inline]
22142217
pub const fn to_ne_bytes(self) -> [u8; mem::size_of::<Self>()] {
2218+
#[repr(C)]
2219+
union Bytes {
2220+
val: $SelfT,
2221+
bytes: [u8; mem::size_of::<$SelfT>()],
2222+
}
22152223
// SAFETY: integers are plain old datatypes so we can always transmute them to
22162224
// arrays of bytes
2217-
unsafe { mem::transmute(self) }
2225+
unsafe { Bytes { val: self }.bytes }
22182226
}
22192227
}
22202228

@@ -2243,7 +2251,7 @@ fn read_be_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
22432251
}
22442252
```"),
22452253
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
2246-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
2254+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
22472255
#[inline]
22482256
pub const fn from_be_bytes(bytes: [u8; mem::size_of::<Self>()]) -> Self {
22492257
Self::from_be(Self::from_ne_bytes(bytes))
@@ -2276,7 +2284,7 @@ fn read_le_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
22762284
}
22772285
```"),
22782286
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
2279-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
2287+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
22802288
#[inline]
22812289
pub const fn from_le_bytes(bytes: [u8; mem::size_of::<Self>()]) -> Self {
22822290
Self::from_le(Self::from_ne_bytes(bytes))
@@ -2319,11 +2327,19 @@ fn read_ne_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
23192327
}
23202328
```"),
23212329
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
2322-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
2330+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
2331+
// SAFETY: const sound because integers are plain old datatypes so we can always
2332+
// transmute to them
2333+
#[allow_internal_unstable(const_fn_union)]
23232334
#[inline]
23242335
pub const fn from_ne_bytes(bytes: [u8; mem::size_of::<Self>()]) -> Self {
2336+
#[repr(C)]
2337+
union Bytes {
2338+
val: $SelfT,
2339+
bytes: [u8; mem::size_of::<$SelfT>()],
2340+
}
23252341
// SAFETY: integers are plain old datatypes so we can always transmute to them
2326-
unsafe { mem::transmute(bytes) }
2342+
unsafe { Bytes { bytes }.val }
23272343
}
23282344
}
23292345

@@ -4099,7 +4115,7 @@ let bytes = ", $swap_op, stringify!($SelfT), ".to_be_bytes();
40994115
assert_eq!(bytes, ", $be_bytes, ");
41004116
```"),
41014117
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
4102-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
4118+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
41034119
#[inline]
41044120
pub const fn to_be_bytes(self) -> [u8; mem::size_of::<Self>()] {
41054121
self.to_be().to_ne_bytes()
@@ -4119,7 +4135,7 @@ let bytes = ", $swap_op, stringify!($SelfT), ".to_le_bytes();
41194135
assert_eq!(bytes, ", $le_bytes, ");
41204136
```"),
41214137
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
4122-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
4138+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
41234139
#[inline]
41244140
pub const fn to_le_bytes(self) -> [u8; mem::size_of::<Self>()] {
41254141
self.to_le().to_ne_bytes()
@@ -4154,12 +4170,20 @@ assert_eq!(
41544170
);
41554171
```"),
41564172
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
4157-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
4173+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
4174+
// SAFETY: const sound because integers are plain old datatypes so we can always
4175+
// transmute them to arrays of bytes
4176+
#[allow_internal_unstable(const_fn_union)]
41584177
#[inline]
41594178
pub const fn to_ne_bytes(self) -> [u8; mem::size_of::<Self>()] {
4179+
#[repr(C)]
4180+
union Bytes {
4181+
val: $SelfT,
4182+
bytes: [u8; mem::size_of::<$SelfT>()],
4183+
}
41604184
// SAFETY: integers are plain old datatypes so we can always transmute them to
41614185
// arrays of bytes
4162-
unsafe { mem::transmute(self) }
4186+
unsafe { Bytes { val: self }.bytes }
41634187
}
41644188
}
41654189

@@ -4188,7 +4212,7 @@ fn read_be_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
41884212
}
41894213
```"),
41904214
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
4191-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
4215+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
41924216
#[inline]
41934217
pub const fn from_be_bytes(bytes: [u8; mem::size_of::<Self>()]) -> Self {
41944218
Self::from_be(Self::from_ne_bytes(bytes))
@@ -4221,7 +4245,7 @@ fn read_le_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
42214245
}
42224246
```"),
42234247
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
4224-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
4248+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
42254249
#[inline]
42264250
pub const fn from_le_bytes(bytes: [u8; mem::size_of::<Self>()]) -> Self {
42274251
Self::from_le(Self::from_ne_bytes(bytes))
@@ -4264,11 +4288,19 @@ fn read_ne_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
42644288
}
42654289
```"),
42664290
#[stable(feature = "int_to_from_bytes", since = "1.32.0")]
4267-
#[rustc_const_unstable(feature = "const_int_conversion", issue = "53718")]
4291+
#[rustc_const_stable(feature = "const_int_conversion", since = "1.43.0")]
4292+
// SAFETY: const sound because integers are plain old datatypes so we can always
4293+
// transmute to them
4294+
#[allow_internal_unstable(const_fn_union)]
42684295
#[inline]
42694296
pub const fn from_ne_bytes(bytes: [u8; mem::size_of::<Self>()]) -> Self {
4297+
#[repr(C)]
4298+
union Bytes {
4299+
val: $SelfT,
4300+
bytes: [u8; mem::size_of::<$SelfT>()],
4301+
}
42704302
// SAFETY: integers are plain old datatypes so we can always transmute to them
4271-
unsafe { mem::transmute(bytes) }
4303+
unsafe { Bytes { bytes }.val }
42724304
}
42734305
}
42744306

‎src/libcore/ops/arith.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/// ```
1414
/// use std::ops::Add;
1515
///
16-
/// #[derive(Debug, PartialEq)]
16+
/// #[derive(Debug, Copy, Clone, PartialEq)]
1717
/// struct Point {
1818
/// x: i32,
1919
/// y: i32,
@@ -42,7 +42,7 @@
4242
/// ```
4343
/// use std::ops::Add;
4444
///
45-
/// #[derive(Debug, PartialEq)]
45+
/// #[derive(Debug, Copy, Clone, PartialEq)]
4646
/// struct Point<T> {
4747
/// x: T,
4848
/// y: T,
@@ -115,7 +115,7 @@ add_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
115115
/// ```
116116
/// use std::ops::Sub;
117117
///
118-
/// #[derive(Debug, PartialEq)]
118+
/// #[derive(Debug, Copy, Clone, PartialEq)]
119119
/// struct Point {
120120
/// x: i32,
121121
/// y: i32,
@@ -657,7 +657,7 @@ neg_impl_numeric! { isize i8 i16 i32 i64 i128 f32 f64 }
657657
/// ```
658658
/// use std::ops::AddAssign;
659659
///
660-
/// #[derive(Debug, PartialEq)]
660+
/// #[derive(Debug, Copy, Clone, PartialEq)]
661661
/// struct Point {
662662
/// x: i32,
663663
/// y: i32,
@@ -715,7 +715,7 @@ add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
715715
/// ```
716716
/// use std::ops::SubAssign;
717717
///
718-
/// #[derive(Debug, PartialEq)]
718+
/// #[derive(Debug, Copy, Clone, PartialEq)]
719719
/// struct Point {
720720
/// x: i32,
721721
/// y: i32,

‎src/libcore/ops/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
//! ```rust
4343
//! use std::ops::{Add, Sub};
4444
//!
45-
//! #[derive(Debug, PartialEq)]
45+
//! #[derive(Debug, Copy, Clone, PartialEq)]
4646
//! struct Point {
4747
//! x: i32,
4848
//! y: i32,

‎src/libcore/tests/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
#![feature(never_type)]
4242
#![feature(unwrap_infallible)]
4343
#![feature(leading_trailing_ones)]
44+
#![feature(const_forget)]
4445

4546
extern crate test;
4647

‎src/libcore/tests/mem.rs

+18
Original file line numberDiff line numberDiff line change
@@ -129,3 +129,21 @@ fn test_discriminant_send_sync() {
129129
is_send_sync::<Discriminant<Regular>>();
130130
is_send_sync::<Discriminant<NotSendSync>>();
131131
}
132+
133+
#[test]
134+
fn test_const_forget() {
135+
const _: () = forget(0i32);
136+
const _: () = forget(Vec::<Vec<Box<i32>>>::new());
137+
138+
// Writing this function signature without const-forget
139+
// triggers compiler errors:
140+
// 1) That we use a non-const fn inside a const fn
141+
// 2) without the forget, it complains about the destructor of Box
142+
const fn const_forget_box<T>(x: Box<T>) {
143+
forget(x);
144+
}
145+
146+
// Call the forget_box at runtime,
147+
// as we can't const-construct a box yet.
148+
const_forget_box(Box::new(0i32));
149+
}

‎src/librustc/ty/layout.rs

-30
Original file line numberDiff line numberDiff line change
@@ -1904,36 +1904,6 @@ impl<'tcx, T: HasTyCtxt<'tcx>> HasTyCtxt<'tcx> for LayoutCx<'tcx, T> {
19041904
}
19051905
}
19061906

1907-
pub trait MaybeResult<T> {
1908-
type Error;
1909-
1910-
fn from(x: Result<T, Self::Error>) -> Self;
1911-
fn to_result(self) -> Result<T, Self::Error>;
1912-
}
1913-
1914-
impl<T> MaybeResult<T> for T {
1915-
type Error = !;
1916-
1917-
fn from(x: Result<T, Self::Error>) -> Self {
1918-
let Ok(x) = x;
1919-
x
1920-
}
1921-
fn to_result(self) -> Result<T, Self::Error> {
1922-
Ok(self)
1923-
}
1924-
}
1925-
1926-
impl<T, E> MaybeResult<T> for Result<T, E> {
1927-
type Error = E;
1928-
1929-
fn from(x: Result<T, Self::Error>) -> Self {
1930-
x
1931-
}
1932-
fn to_result(self) -> Result<T, Self::Error> {
1933-
self
1934-
}
1935-
}
1936-
19371907
pub type TyLayout<'tcx> = ::rustc_target::abi::TyLayout<'tcx, Ty<'tcx>>;
19381908

19391909
impl<'tcx> LayoutOf for LayoutCx<'tcx, TyCtxt<'tcx>> {

0 commit comments

Comments
 (0)
Please sign in to comment.