Skip to content

Commit 2b78e10

Browse files
committedAug 11, 2019
Auto merge of #63343 - ishitatsuyuki:revert-62150, r=RalfJung
Back out #62150 Ref: #62825 cc @RalfJung
2 parents ee36cfa + 2358e3e commit 2b78e10

File tree

5 files changed

+40
-5
lines changed

5 files changed

+40
-5
lines changed
 

‎src/libcore/intrinsics.rs

+17-2
Original file line numberDiff line numberDiff line change
@@ -707,11 +707,26 @@ extern "rust-intrinsic" {
707707
they should be used through stabilized interfaces \
708708
in the rest of the standard library",
709709
issue = "0")]
710-
#[rustc_deprecated(reason = "no longer used by rustc, will be removed - use MaybeUninit \
711-
instead",
710+
#[rustc_deprecated(reason = "superseded by MaybeUninit, removal planned",
712711
since = "1.38.0")]
713712
pub fn init<T>() -> T;
714713

714+
/// Creates an uninitialized value.
715+
///
716+
/// `uninit` is unsafe because there is no guarantee of what its
717+
/// contents are. In particular its drop-flag may be set to any
718+
/// state, which means it may claim either dropped or
719+
/// undropped. In the general case one must use `ptr::write` to
720+
/// initialize memory previous set to the result of `uninit`.
721+
#[unstable(feature = "core_intrinsics",
722+
reason = "intrinsics are unlikely to ever be stabilized, instead \
723+
they should be used through stabilized interfaces \
724+
in the rest of the standard library",
725+
issue = "0")]
726+
#[rustc_deprecated(reason = "superseded by MaybeUninit, removal planned",
727+
since = "1.38.0")]
728+
pub fn uninit<T>() -> T;
729+
715730
/// Moves a value out of scope without running drop glue.
716731
pub fn forget<T: ?Sized>(_: T);
717732

‎src/libcore/mem/mod.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -452,8 +452,11 @@ pub const fn needs_drop<T>() -> bool {
452452
/// ```
453453
#[inline]
454454
#[stable(feature = "rust1", since = "1.0.0")]
455+
#[cfg_attr(bootstrap, allow(deprecated_in_future))]
456+
#[allow(deprecated)]
455457
pub unsafe fn zeroed<T>() -> T {
456-
MaybeUninit::zeroed().assume_init()
458+
intrinsics::panic_if_uninhabited::<T>();
459+
intrinsics::init()
457460
}
458461

459462
/// Bypasses Rust's normal memory-initialization checks by pretending to
@@ -477,8 +480,11 @@ pub unsafe fn zeroed<T>() -> T {
477480
#[inline]
478481
#[rustc_deprecated(since = "1.39.0", reason = "use `mem::MaybeUninit` instead")]
479482
#[stable(feature = "rust1", since = "1.0.0")]
483+
#[cfg_attr(bootstrap, allow(deprecated_in_future))]
484+
#[allow(deprecated)]
480485
pub unsafe fn uninitialized<T>() -> T {
481-
MaybeUninit::uninit().assume_init()
486+
intrinsics::panic_if_uninhabited::<T>();
487+
intrinsics::uninit()
482488
}
483489

484490
/// Swaps the values at two mutable locations, without deinitializing either one.

‎src/librustc_codegen_llvm/intrinsic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ impl IntrinsicCallMethods<'tcx> for Builder<'a, 'll, 'tcx> {
232232
return;
233233
}
234234
// Effectively no-ops
235-
"forget" => {
235+
"uninit" | "forget" => {
236236
return;
237237
}
238238
"needs_drop" => {

‎src/librustc_typeck/check/intrinsic.rs

+1
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ pub fn check_intrinsic_type(tcx: TyCtxt<'_>, it: &hir::ForeignItem) {
145145
"rustc_peek" => (1, vec![param(0)], param(0)),
146146
"panic_if_uninhabited" => (1, Vec::new(), tcx.mk_unit()),
147147
"init" => (1, Vec::new(), param(0)),
148+
"uninit" => (1, Vec::new(), param(0)),
148149
"forget" => (1, vec![param(0)], tcx.mk_unit()),
149150
"transmute" => (2, vec![ param(0) ], param(1)),
150151
"move_val_init" => {
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// run-pass
2+
// pretty-expanded FIXME #23616
3+
4+
#![feature(intrinsics)]
5+
6+
mod rusti {
7+
extern "rust-intrinsic" {
8+
pub fn uninit<T>() -> T;
9+
}
10+
}
11+
pub fn main() {
12+
let _a : isize = unsafe {rusti::uninit()};
13+
}

0 commit comments

Comments
 (0)