Skip to content

Commit ee85bfd

Browse files
committedMay 16, 2018
Make core::nonzero private
It is now an implementation detail of ptr::NonNull and num::NonZero*
1 parent 2a3f536 commit ee85bfd

File tree

5 files changed

+10
-110
lines changed

5 files changed

+10
-110
lines changed
 

‎src/libcore/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ pub mod prelude;
171171

172172
pub mod intrinsics;
173173
pub mod mem;
174-
pub mod nonzero;
175174
pub mod ptr;
176175
pub mod hint;
177176

@@ -221,6 +220,7 @@ pub mod heap {
221220

222221
// note: does not need to be public
223222
mod iter_private;
223+
mod nonzero;
224224
mod tuple;
225225
mod unit;
226226

‎src/libcore/nonzero.rs

+3-93
Original file line numberDiff line numberDiff line change
@@ -9,103 +9,13 @@
99
// except according to those terms.
1010

1111
//! Exposes the NonZero lang item which provides optimization hints.
12-
#![unstable(feature = "nonzero", reason = "deprecated", issue = "49137")]
13-
#![rustc_deprecated(reason = "use `std::ptr::NonNull` or `std::num::NonZero*` instead",
14-
since = "1.26.0")]
15-
#![allow(deprecated)]
1612
1713
use ops::CoerceUnsized;
1814

19-
/// Unsafe trait to indicate what types are usable with the NonZero struct
20-
pub unsafe trait Zeroable {
21-
/// Whether this value is zero
22-
fn is_zero(&self) -> bool;
23-
}
24-
25-
macro_rules! impl_zeroable_for_pointer_types {
26-
( $( $Ptr: ty )+ ) => {
27-
$(
28-
/// For fat pointers to be considered "zero", only the "data" part needs to be null.
29-
unsafe impl<T: ?Sized> Zeroable for $Ptr {
30-
#[inline]
31-
fn is_zero(&self) -> bool {
32-
(*self).is_null()
33-
}
34-
}
35-
)+
36-
}
37-
}
38-
39-
macro_rules! impl_zeroable_for_integer_types {
40-
( $( $Int: ty )+ ) => {
41-
$(
42-
unsafe impl Zeroable for $Int {
43-
#[inline]
44-
fn is_zero(&self) -> bool {
45-
*self == 0
46-
}
47-
}
48-
)+
49-
}
50-
}
51-
52-
impl_zeroable_for_pointer_types! {
53-
*const T
54-
*mut T
55-
}
56-
57-
impl_zeroable_for_integer_types! {
58-
usize u8 u16 u32 u64 u128
59-
isize i8 i16 i32 i64 i128
60-
}
61-
6215
/// A wrapper type for raw pointers and integers that will never be
6316
/// NULL or 0 that might allow certain optimizations.
6417
#[lang = "non_zero"]
65-
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Debug, Hash)]
66-
pub struct NonZero<T: Zeroable>(pub(crate) T);
67-
68-
impl<T: Zeroable> NonZero<T> {
69-
/// Creates an instance of NonZero with the provided value.
70-
/// You must indeed ensure that the value is actually "non-zero".
71-
#[inline]
72-
pub const unsafe fn new_unchecked(inner: T) -> Self {
73-
NonZero(inner)
74-
}
75-
76-
/// Creates an instance of NonZero with the provided value.
77-
#[inline]
78-
pub fn new(inner: T) -> Option<Self> {
79-
if inner.is_zero() {
80-
None
81-
} else {
82-
Some(NonZero(inner))
83-
}
84-
}
85-
86-
/// Gets the inner value.
87-
pub fn get(self) -> T {
88-
self.0
89-
}
90-
}
91-
92-
impl<T: Zeroable+CoerceUnsized<U>, U: Zeroable> CoerceUnsized<NonZero<U>> for NonZero<T> {}
93-
94-
impl<'a, T: ?Sized> From<&'a mut T> for NonZero<*mut T> {
95-
fn from(reference: &'a mut T) -> Self {
96-
NonZero(reference)
97-
}
98-
}
99-
100-
impl<'a, T: ?Sized> From<&'a mut T> for NonZero<*const T> {
101-
fn from(reference: &'a mut T) -> Self {
102-
let ptr: *mut T = reference;
103-
NonZero(ptr)
104-
}
105-
}
18+
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
19+
pub(crate) struct NonZero<T>(pub(crate) T);
10620

107-
impl<'a, T: ?Sized> From<&'a T> for NonZero<*const T> {
108-
fn from(reference: &'a T) -> Self {
109-
NonZero(reference)
110-
}
111-
}
21+
impl<T: CoerceUnsized<U>, U> CoerceUnsized<NonZero<U>> for NonZero<T> {}

‎src/libcore/num/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use convert::TryFrom;
1616
use fmt;
1717
use intrinsics;
1818
use mem;
19-
#[allow(deprecated)] use nonzero::NonZero;
19+
use nonzero::NonZero;
2020
use ops;
2121
use str::FromStr;
2222

@@ -49,11 +49,9 @@ macro_rules! nonzero_integers {
4949
/// ```
5050
#[$stability]
5151
#[$deprecation]
52-
#[allow(deprecated)]
5352
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
5453
pub struct $Ty(NonZero<$Int>);
5554

56-
#[allow(deprecated)]
5755
impl $Ty {
5856
/// Create a non-zero without checking the value.
5957
///

‎src/libcore/ptr.rs

+2-9
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use fmt;
2323
use hash;
2424
use marker::{PhantomData, Unsize};
2525
use mem;
26-
#[allow(deprecated)] use nonzero::NonZero;
26+
use nonzero::NonZero;
2727

2828
use cmp::Ordering::{self, Less, Equal, Greater};
2929

@@ -2742,7 +2742,6 @@ impl<T: ?Sized> PartialOrd for *mut T {
27422742
#[unstable(feature = "ptr_internals", issue = "0",
27432743
reason = "use NonNull instead and consider PhantomData<T> \
27442744
(if you also use #[may_dangle]), Send, and/or Sync")]
2745-
#[allow(deprecated)]
27462745
#[doc(hidden)]
27472746
pub struct Unique<T: ?Sized> {
27482747
pointer: NonZero<*const T>,
@@ -2790,7 +2789,6 @@ impl<T: Sized> Unique<T> {
27902789
}
27912790

27922791
#[unstable(feature = "ptr_internals", issue = "0")]
2793-
#[allow(deprecated)]
27942792
impl<T: ?Sized> Unique<T> {
27952793
/// Creates a new `Unique`.
27962794
///
@@ -2855,15 +2853,13 @@ impl<T: ?Sized> fmt::Pointer for Unique<T> {
28552853
}
28562854

28572855
#[unstable(feature = "ptr_internals", issue = "0")]
2858-
#[allow(deprecated)]
28592856
impl<'a, T: ?Sized> From<&'a mut T> for Unique<T> {
28602857
fn from(reference: &'a mut T) -> Self {
28612858
Unique { pointer: NonZero(reference as _), _marker: PhantomData }
28622859
}
28632860
}
28642861

28652862
#[unstable(feature = "ptr_internals", issue = "0")]
2866-
#[allow(deprecated)]
28672863
impl<'a, T: ?Sized> From<&'a T> for Unique<T> {
28682864
fn from(reference: &'a T) -> Self {
28692865
Unique { pointer: NonZero(reference as _), _marker: PhantomData }
@@ -2896,7 +2892,7 @@ impl<'a, T: ?Sized> From<NonNull<T>> for Unique<T> {
28962892
/// provide a public API that follows the normal shared XOR mutable rules of Rust.
28972893
#[stable(feature = "nonnull", since = "1.25.0")]
28982894
pub struct NonNull<T: ?Sized> {
2899-
#[allow(deprecated)] pointer: NonZero<*const T>,
2895+
pointer: NonZero<*const T>,
29002896
}
29012897

29022898
/// `NonNull` pointers are not `Send` because the data they reference may be aliased.
@@ -2923,7 +2919,6 @@ impl<T: Sized> NonNull<T> {
29232919
}
29242920
}
29252921

2926-
#[allow(deprecated)]
29272922
impl<T: ?Sized> NonNull<T> {
29282923
/// Creates a new `NonNull`.
29292924
///
@@ -3054,15 +3049,13 @@ impl<T: ?Sized> From<Unique<T>> for NonNull<T> {
30543049
}
30553050

30563051
#[stable(feature = "nonnull", since = "1.25.0")]
3057-
#[allow(deprecated)]
30583052
impl<'a, T: ?Sized> From<&'a mut T> for NonNull<T> {
30593053
fn from(reference: &'a mut T) -> Self {
30603054
NonNull { pointer: NonZero(reference as _) }
30613055
}
30623056
}
30633057

30643058
#[stable(feature = "nonnull", since = "1.25.0")]
3065-
#[allow(deprecated)]
30663059
impl<'a, T: ?Sized> From<&'a T> for NonNull<T> {
30673060
fn from(reference: &'a T) -> Self {
30683061
NonNull { pointer: NonZero(reference as _) }

‎src/test/run-pass/ctfe/tuple-struct-constructors.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@
1010

1111
// https://github.com/rust-lang/rust/issues/41898
1212

13-
#![feature(nonzero, const_fn)]
14-
extern crate core;
15-
use core::nonzero::NonZero;
13+
#![feature(nonzero)]
14+
use std::num::NonZeroU64;
1615

1716
fn main() {
18-
const FOO: NonZero<u64> = unsafe { NonZero::new_unchecked(2) };
17+
const FOO: NonZeroU64 = unsafe { NonZeroU64::new_unchecked(2) };
1918
if let FOO = FOO {}
2019
}

0 commit comments

Comments
 (0)
Please sign in to comment.