2019-02-02 04:43:42 -06:00
|
|
|
From d723688cb9f94c7c90617eb96b1d64fd968a02c3 Mon Sep 17 00:00:00 2001
|
2018-07-18 05:25:01 -05:00
|
|
|
From: bjorn3 <bjorn3@users.noreply.github.com>
|
2019-02-02 04:43:42 -06:00
|
|
|
Date: Sat, 2 Feb 2019 11:30:28 +0100
|
2018-07-18 05:25:01 -05:00
|
|
|
Subject: [PATCH] Disable u128 and i128 in libcore
|
|
|
|
|
|
|
|
---
|
2019-01-29 13:28:04 -06:00
|
|
|
src/libcore/clone.rs | 4 +-
|
|
|
|
src/libcore/cmp.rs | 6 +-
|
|
|
|
src/libcore/default.rs | 2 -
|
|
|
|
src/libcore/fmt/num.rs | 6 +-
|
|
|
|
src/libcore/hash/mod.rs | 20 -------
|
|
|
|
src/libcore/iter/range.rs | 1 -
|
|
|
|
src/libcore/iter/traits/accum.rs | 2 +-
|
|
|
|
src/libcore/lib.rs | 2 -
|
|
|
|
src/libcore/marker.rs | 4 +-
|
|
|
|
src/libcore/mem.rs | 2 -
|
|
|
|
src/libcore/num/mod.rs | 100 +++++++++----------------------
|
|
|
|
src/libcore/num/wrapping.rs | 14 ++---
|
|
|
|
src/libcore/ops/arith.rs | 22 +++----
|
|
|
|
src/libcore/ops/bit.rs | 30 ++++------
|
2019-02-02 04:43:42 -06:00
|
|
|
src/libcore/sync/atomic.rs | 30 ----------
|
2019-01-29 13:28:04 -06:00
|
|
|
src/libcore/tests/iter.rs | 15 -----
|
|
|
|
src/libcore/tests/num/mod.rs | 18 ------
|
|
|
|
src/libcore/time.rs | 123 ---------------------------------------
|
|
|
|
src/libstd/lib.rs | 4 --
|
|
|
|
src/libstd/net/ip.rs | 20 -------
|
|
|
|
src/libstd/num.rs | 2 +-
|
|
|
|
src/libstd/panic.rs | 6 --
|
2019-02-02 04:43:42 -06:00
|
|
|
22 files changed, 63 insertions(+), 370 deletions(-)
|
2018-07-18 05:25:01 -05:00
|
|
|
|
|
|
|
diff --git a/src/libcore/clone.rs b/src/libcore/clone.rs
|
2019-01-26 04:59:34 -06:00
|
|
|
index ed90b7d..1739f91 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/clone.rs
|
|
|
|
+++ b/src/libcore/clone.rs
|
2019-01-26 04:59:34 -06:00
|
|
|
@@ -173,8 +173,8 @@ mod impls {
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
impl_clone! {
|
|
|
|
- usize u8 u16 u32 u64 u128
|
|
|
|
- isize i8 i16 i32 i64 i128
|
|
|
|
+ usize u8 u16 u32 u64
|
|
|
|
+ isize i8 i16 i32 i64
|
|
|
|
f32 f64
|
|
|
|
bool char
|
|
|
|
}
|
|
|
|
diff --git a/src/libcore/cmp.rs b/src/libcore/cmp.rs
|
2019-01-26 04:59:34 -06:00
|
|
|
index d43a5c1..268e5f1 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/cmp.rs
|
|
|
|
+++ b/src/libcore/cmp.rs
|
2019-01-26 04:59:34 -06:00
|
|
|
@@ -876,7 +876,7 @@ mod impls {
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
partial_eq_impl! {
|
|
|
|
- bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64
|
|
|
|
+ bool char usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! eq_impl {
|
2019-01-26 04:59:34 -06:00
|
|
|
@@ -886,7 +886,7 @@ mod impls {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
- eq_impl! { () bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+ eq_impl! { () bool char usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! partial_ord_impl {
|
|
|
|
($($t:ty)*) => ($(
|
2019-01-26 04:59:34 -06:00
|
|
|
@@ -975,7 +975,7 @@ mod impls {
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
- ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+ ord_impl! { char usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
#[unstable(feature = "never_type", issue = "35121")]
|
|
|
|
impl PartialEq for ! {
|
|
|
|
diff --git a/src/libcore/default.rs b/src/libcore/default.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
index 0e47c2f..570b949 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/default.rs
|
|
|
|
+++ b/src/libcore/default.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -135,14 +135,12 @@ default_impl! { u8, 0, "Returns the default value of `0`" }
|
2018-07-18 05:25:01 -05:00
|
|
|
default_impl! { u16, 0, "Returns the default value of `0`" }
|
|
|
|
default_impl! { u32, 0, "Returns the default value of `0`" }
|
|
|
|
default_impl! { u64, 0, "Returns the default value of `0`" }
|
|
|
|
-default_impl! { u128, 0, "Returns the default value of `0`" }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
default_impl! { isize, 0, "Returns the default value of `0`" }
|
|
|
|
default_impl! { i8, 0, "Returns the default value of `0`" }
|
|
|
|
default_impl! { i16, 0, "Returns the default value of `0`" }
|
|
|
|
default_impl! { i32, 0, "Returns the default value of `0`" }
|
|
|
|
default_impl! { i64, 0, "Returns the default value of `0`" }
|
|
|
|
-default_impl! { i128, 0, "Returns the default value of `0`" }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
default_impl! { f32, 0.0f32, "Returns the default value of `0.0`" }
|
|
|
|
default_impl! { f64, 0.0f64, "Returns the default value of `0.0`" }
|
|
|
|
diff --git a/src/libcore/fmt/num.rs b/src/libcore/fmt/num.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
index 3a81233..f889d57 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/fmt/num.rs
|
|
|
|
+++ b/src/libcore/fmt/num.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -17,7 +17,6 @@ trait Int: PartialEq + PartialOrd + Div<Output=Self> + Rem<Output=Self> +
|
2018-07-18 05:25:01 -05:00
|
|
|
fn to_u16(&self) -> u16;
|
|
|
|
fn to_u32(&self) -> u32;
|
|
|
|
fn to_u64(&self) -> u64;
|
|
|
|
- fn to_u128(&self) -> u128;
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! doit {
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -28,10 +27,9 @@ macro_rules! doit {
|
2018-07-18 05:25:01 -05:00
|
|
|
fn to_u16(&self) -> u16 { *self as u16 }
|
|
|
|
fn to_u32(&self) -> u32 { *self as u32 }
|
|
|
|
fn to_u64(&self) -> u64 { *self as u64 }
|
|
|
|
- fn to_u128(&self) -> u128 { *self as u128 }
|
|
|
|
})*)
|
|
|
|
}
|
|
|
|
-doit! { i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize }
|
|
|
|
+doit! { i8 i16 i32 i64 isize u8 u16 u32 u64 usize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// A type that represents a specific radix
|
|
|
|
#[doc(hidden)]
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -176,7 +174,6 @@ integer! { i8, u8 }
|
2018-07-18 05:25:01 -05:00
|
|
|
integer! { i16, u16 }
|
|
|
|
integer! { i32, u32 }
|
|
|
|
integer! { i64, u64 }
|
|
|
|
-integer! { i128, u128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
const DEC_DIGITS_LUT: &'static[u8] =
|
|
|
|
b"0001020304050607080910111213141516171819\
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -252,7 +249,6 @@ macro_rules! impl_Display {
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
impl_Display!(i8, u8, i16, u16, i32, u32: to_u32);
|
|
|
|
impl_Display!(i64, u64: to_u64);
|
|
|
|
-impl_Display!(i128, u128: to_u128);
|
|
|
|
#[cfg(target_pointer_width = "16")]
|
|
|
|
impl_Display!(isize, usize: to_u16);
|
|
|
|
#[cfg(target_pointer_width = "32")]
|
|
|
|
diff --git a/src/libcore/hash/mod.rs b/src/libcore/hash/mod.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
index d5d29c9..f98f382 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/hash/mod.rs
|
|
|
|
+++ b/src/libcore/hash/mod.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -296,12 +296,6 @@ pub trait Hasher {
|
2018-07-18 05:25:01 -05:00
|
|
|
fn write_u64(&mut self, i: u64) {
|
|
|
|
self.write(&unsafe { mem::transmute::<_, [u8; 8]>(i) })
|
|
|
|
}
|
|
|
|
- /// Writes a single `u128` into this hasher.
|
|
|
|
- #[inline]
|
|
|
|
- #[stable(feature = "i128", since = "1.26.0")]
|
|
|
|
- fn write_u128(&mut self, i: u128) {
|
|
|
|
- self.write(&unsafe { mem::transmute::<_, [u8; 16]>(i) })
|
|
|
|
- }
|
|
|
|
/// Writes a single `usize` into this hasher.
|
|
|
|
#[inline]
|
|
|
|
#[stable(feature = "hasher_write", since = "1.3.0")]
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -336,12 +330,6 @@ pub trait Hasher {
|
2018-07-18 05:25:01 -05:00
|
|
|
fn write_i64(&mut self, i: i64) {
|
|
|
|
self.write_u64(i as u64)
|
|
|
|
}
|
|
|
|
- /// Writes a single `i128` into this hasher.
|
|
|
|
- #[inline]
|
|
|
|
- #[stable(feature = "i128", since = "1.26.0")]
|
|
|
|
- fn write_i128(&mut self, i: i128) {
|
|
|
|
- self.write_u128(i as u128)
|
|
|
|
- }
|
|
|
|
/// Writes a single `isize` into this hasher.
|
|
|
|
#[inline]
|
|
|
|
#[stable(feature = "hasher_write", since = "1.3.0")]
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -370,9 +358,6 @@ impl<H: Hasher + ?Sized> Hasher for &mut H {
|
2018-07-18 05:25:01 -05:00
|
|
|
fn write_u64(&mut self, i: u64) {
|
|
|
|
(**self).write_u64(i)
|
|
|
|
}
|
|
|
|
- fn write_u128(&mut self, i: u128) {
|
|
|
|
- (**self).write_u128(i)
|
|
|
|
- }
|
|
|
|
fn write_usize(&mut self, i: usize) {
|
|
|
|
(**self).write_usize(i)
|
|
|
|
}
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -388,9 +373,6 @@ impl<H: Hasher + ?Sized> Hasher for &mut H {
|
2018-07-18 05:25:01 -05:00
|
|
|
fn write_i64(&mut self, i: i64) {
|
|
|
|
(**self).write_i64(i)
|
|
|
|
}
|
|
|
|
- fn write_i128(&mut self, i: i128) {
|
|
|
|
- (**self).write_i128(i)
|
|
|
|
- }
|
|
|
|
fn write_isize(&mut self, i: isize) {
|
|
|
|
(**self).write_isize(i)
|
|
|
|
}
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -577,8 +559,6 @@ mod impls {
|
2018-07-18 05:25:01 -05:00
|
|
|
(i32, write_i32),
|
|
|
|
(i64, write_i64),
|
|
|
|
(isize, write_isize),
|
|
|
|
- (u128, write_u128),
|
|
|
|
- (i128, write_i128),
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
diff --git a/src/libcore/iter/range.rs b/src/libcore/iter/range.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
index 66c09a0..1b8c5c9 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/iter/range.rs
|
|
|
|
+++ b/src/libcore/iter/range.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -173,7 +173,6 @@ step_impl_signed!([i64: u64]);
|
2018-07-18 05:25:01 -05:00
|
|
|
// assume here that it is less than 64-bits.
|
|
|
|
#[cfg(not(target_pointer_width = "64"))]
|
|
|
|
step_impl_no_between!(u64 i64);
|
|
|
|
-step_impl_no_between!(u128 i128);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! range_exact_iter_impl {
|
|
|
|
($($t:ty)*) => ($(
|
2019-01-29 13:28:04 -06:00
|
|
|
diff --git a/src/libcore/iter/traits/accum.rs b/src/libcore/iter/traits/accum.rs
|
|
|
|
index dfe1d2a..06cc578 100644
|
|
|
|
--- a/src/libcore/iter/traits/accum.rs
|
|
|
|
+++ b/src/libcore/iter/traits/accum.rs
|
|
|
|
@@ -111,7 +111,7 @@ macro_rules! float_sum_product {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-integer_sum_product! { i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize }
|
|
|
|
+integer_sum_product! { i8 i16 i32 i64 isize u8 u16 u32 u64 usize }
|
|
|
|
float_sum_product! { f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// An iterator adapter that produces output as long as the underlying
|
|
|
|
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
index 97b07aa..9e1e9a6 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/lib.rs
|
|
|
|
+++ b/src/libcore/lib.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -149,14 +149,12 @@ mod uint_macros;
|
2018-07-18 05:25:01 -05:00
|
|
|
#[path = "num/i16.rs"] pub mod i16;
|
|
|
|
#[path = "num/i32.rs"] pub mod i32;
|
|
|
|
#[path = "num/i64.rs"] pub mod i64;
|
|
|
|
-#[path = "num/i128.rs"] pub mod i128;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
#[path = "num/usize.rs"] pub mod usize;
|
|
|
|
#[path = "num/u8.rs"] pub mod u8;
|
|
|
|
#[path = "num/u16.rs"] pub mod u16;
|
|
|
|
#[path = "num/u32.rs"] pub mod u32;
|
|
|
|
#[path = "num/u64.rs"] pub mod u64;
|
|
|
|
-#[path = "num/u128.rs"] pub mod u128;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
#[path = "num/f32.rs"] pub mod f32;
|
|
|
|
#[path = "num/f64.rs"] pub mod f64;
|
|
|
|
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
|
2019-01-29 13:28:04 -06:00
|
|
|
index 457d556..91425fb 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/marker.rs
|
|
|
|
+++ b/src/libcore/marker.rs
|
2019-01-29 13:28:04 -06:00
|
|
|
@@ -664,8 +664,8 @@ mod copy_impls {
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
impl_copy! {
|
|
|
|
- usize u8 u16 u32 u64 u128
|
|
|
|
- isize i8 i16 i32 i64 i128
|
|
|
|
+ usize u8 u16 u32 u64
|
|
|
|
+ isize i8 i16 i32 i64
|
|
|
|
f32 f64
|
|
|
|
bool char
|
|
|
|
}
|
|
|
|
diff --git a/src/libcore/mem.rs b/src/libcore/mem.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
index 8b6d9d8..8023dc1 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/mem.rs
|
|
|
|
+++ b/src/libcore/mem.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -163,12 +163,10 @@ pub fn forget_unsized<T: ?Sized>(t: T) {
|
2018-07-18 05:25:01 -05:00
|
|
|
/// u16 | 2
|
|
|
|
/// u32 | 4
|
|
|
|
/// u64 | 8
|
|
|
|
-/// u128 | 16
|
|
|
|
/// i8 | 1
|
|
|
|
/// i16 | 2
|
|
|
|
/// i32 | 4
|
|
|
|
/// i64 | 8
|
|
|
|
-/// i128 | 16
|
|
|
|
/// f32 | 4
|
|
|
|
/// f64 | 8
|
|
|
|
/// char | 4
|
|
|
|
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
index f80f839..eed1241 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/num/mod.rs
|
|
|
|
+++ b/src/libcore/num/mod.rs
|
2019-01-26 04:59:34 -06:00
|
|
|
@@ -102,13 +102,11 @@ nonzero_integers! {
|
|
|
|
#[stable(feature = "nonzero", since = "1.28.0")] NonZeroU16(u16);
|
|
|
|
#[stable(feature = "nonzero", since = "1.28.0")] NonZeroU32(u32);
|
|
|
|
#[stable(feature = "nonzero", since = "1.28.0")] NonZeroU64(u64);
|
|
|
|
- #[stable(feature = "nonzero", since = "1.28.0")] NonZeroU128(u128);
|
|
|
|
#[stable(feature = "nonzero", since = "1.28.0")] NonZeroUsize(usize);
|
|
|
|
#[stable(feature = "signed_nonzero", since = "1.34.0")] NonZeroI8(i8);
|
|
|
|
#[stable(feature = "signed_nonzero", since = "1.34.0")] NonZeroI16(i16);
|
|
|
|
#[stable(feature = "signed_nonzero", since = "1.34.0")] NonZeroI32(i32);
|
|
|
|
#[stable(feature = "signed_nonzero", since = "1.34.0")] NonZeroI64(i64);
|
|
|
|
- #[stable(feature = "signed_nonzero", since = "1.34.0")] NonZeroI128(i128);
|
|
|
|
#[stable(feature = "signed_nonzero", since = "1.34.0")] NonZeroIsize(isize);
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -2084,18 +2082,6 @@ impl i64 {
|
2018-09-08 04:11:46 -05:00
|
|
|
"[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]" }
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-#[lang = "i128"]
|
|
|
|
-impl i128 {
|
|
|
|
- int_impl! { i128, i128, u128, 128, -170141183460469231731687303715884105728,
|
2018-08-14 03:02:28 -05:00
|
|
|
- 170141183460469231731687303715884105727, "", "", 16,
|
|
|
|
- "0x13f40000000000000000000000004f76", "0x4f7613f4", "0x12345678901234567890123456789012",
|
2018-09-08 04:11:46 -05:00
|
|
|
- "0x12907856341290785634129078563412", "0x48091e6a2c48091e6a2c48091e6a2c48",
|
|
|
|
- "[0x12, 0x90, 0x78, 0x56, 0x34, 0x12, 0x90, 0x78, \
|
|
|
|
- 0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]",
|
|
|
|
- "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56, \
|
|
|
|
- 0x78, 0x90, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12]" }
|
2018-07-18 05:25:01 -05:00
|
|
|
-}
|
|
|
|
-
|
|
|
|
#[cfg(target_pointer_width = "16")]
|
|
|
|
#[lang = "isize"]
|
|
|
|
impl isize {
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -4336,17 +4322,6 @@ impl u64 {
|
2018-09-08 04:11:46 -05:00
|
|
|
"[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]" }
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-#[lang = "u128"]
|
|
|
|
-impl u128 {
|
2018-08-14 03:02:28 -05:00
|
|
|
- uint_impl! { u128, u128, 128, 340282366920938463463374607431768211455, "", "", 16,
|
|
|
|
- "0x13f40000000000000000000000004f76", "0x4f7613f4", "0x12345678901234567890123456789012",
|
2018-09-08 04:11:46 -05:00
|
|
|
- "0x12907856341290785634129078563412", "0x48091e6a2c48091e6a2c48091e6a2c48",
|
|
|
|
- "[0x12, 0x90, 0x78, 0x56, 0x34, 0x12, 0x90, 0x78, \
|
|
|
|
- 0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]",
|
|
|
|
- "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56, \
|
|
|
|
- 0x78, 0x90, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12]" }
|
2018-07-18 05:25:01 -05:00
|
|
|
-}
|
|
|
|
-
|
|
|
|
#[cfg(target_pointer_width = "16")]
|
|
|
|
#[lang = "usize"]
|
|
|
|
impl usize {
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -4430,7 +4405,7 @@ macro_rules! from_str_radix_int_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
|
|
|
)*}
|
|
|
|
}
|
|
|
|
-from_str_radix_int_impl! { isize i8 i16 i32 i64 i128 usize u8 u16 u32 u64 u128 }
|
|
|
|
+from_str_radix_int_impl! { isize i8 i16 i32 i64 usize u8 u16 u32 u64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The error type returned when a checked integral type conversion fails.
|
|
|
|
#[unstable(feature = "try_from", issue = "33417")]
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -4546,30 +4521,25 @@ macro_rules! rev {
|
2018-07-18 05:25:01 -05:00
|
|
|
try_from_upper_bounded!(u16, u8);
|
|
|
|
try_from_upper_bounded!(u32, u16, u8);
|
|
|
|
try_from_upper_bounded!(u64, u32, u16, u8);
|
|
|
|
-try_from_upper_bounded!(u128, u64, u32, u16, u8);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
try_from_both_bounded!(i16, i8);
|
|
|
|
try_from_both_bounded!(i32, i16, i8);
|
|
|
|
try_from_both_bounded!(i64, i32, i16, i8);
|
|
|
|
-try_from_both_bounded!(i128, i64, i32, i16, i8);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// unsigned-to-signed
|
|
|
|
try_from_upper_bounded!(u8, i8);
|
|
|
|
try_from_upper_bounded!(u16, i8, i16);
|
|
|
|
try_from_upper_bounded!(u32, i8, i16, i32);
|
|
|
|
try_from_upper_bounded!(u64, i8, i16, i32, i64);
|
|
|
|
-try_from_upper_bounded!(u128, i8, i16, i32, i64, i128);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// signed-to-unsigned
|
|
|
|
-try_from_lower_bounded!(i8, u8, u16, u32, u64, u128);
|
|
|
|
-try_from_lower_bounded!(i16, u16, u32, u64, u128);
|
|
|
|
-try_from_lower_bounded!(i32, u32, u64, u128);
|
|
|
|
-try_from_lower_bounded!(i64, u64, u128);
|
|
|
|
-try_from_lower_bounded!(i128, u128);
|
|
|
|
+try_from_lower_bounded!(i8, u8, u16, u32, u64);
|
|
|
|
+try_from_lower_bounded!(i16, u16, u32, u64);
|
|
|
|
+try_from_lower_bounded!(i32, u32, u64);
|
|
|
|
+try_from_lower_bounded!(i64, u64);
|
|
|
|
try_from_both_bounded!(i16, u8);
|
|
|
|
try_from_both_bounded!(i32, u16, u8);
|
|
|
|
try_from_both_bounded!(i64, u32, u16, u8);
|
|
|
|
-try_from_both_bounded!(i128, u64, u32, u16, u8);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// usize/isize
|
|
|
|
try_from_upper_bounded!(usize, isize);
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -4581,21 +4551,21 @@ mod ptr_try_from_impls {
|
2018-07-18 05:25:01 -05:00
|
|
|
use convert::TryFrom;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_upper_bounded!(usize, u8);
|
|
|
|
- try_from_unbounded!(usize, u16, u32, u64, u128);
|
|
|
|
+ try_from_unbounded!(usize, u16, u32, u64);
|
|
|
|
try_from_upper_bounded!(usize, i8, i16);
|
|
|
|
- try_from_unbounded!(usize, i32, i64, i128);
|
|
|
|
+ try_from_unbounded!(usize, i32, i64);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_both_bounded!(isize, u8);
|
2018-07-18 05:25:01 -05:00
|
|
|
- try_from_lower_bounded!(isize, u16, u32, u64, u128);
|
|
|
|
+ try_from_lower_bounded!(isize, u16, u32, u64);
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_both_bounded!(isize, i8);
|
|
|
|
- try_from_unbounded!(isize, i16, i32, i64, i128);
|
|
|
|
+ try_from_unbounded!(isize, i16, i32, i64);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
- rev!(try_from_upper_bounded, usize, u32, u64, u128);
|
|
|
|
+ rev!(try_from_upper_bounded, usize, u32, u64);
|
2018-07-18 05:25:01 -05:00
|
|
|
rev!(try_from_lower_bounded, usize, i8, i16);
|
|
|
|
- rev!(try_from_both_bounded, usize, i32, i64, i128);
|
|
|
|
+ rev!(try_from_both_bounded, usize, i32, i64);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
- rev!(try_from_upper_bounded, isize, u16, u32, u64, u128);
|
|
|
|
- rev!(try_from_both_bounded, isize, i32, i64, i128);
|
|
|
|
+ rev!(try_from_upper_bounded, isize, u16, u32, u64);
|
|
|
|
+ rev!(try_from_both_bounded, isize, i32, i64);
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
#[cfg(target_pointer_width = "32")]
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -4604,24 +4574,24 @@ mod ptr_try_from_impls {
|
2018-07-19 11:41:37 -05:00
|
|
|
use convert::TryFrom;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_upper_bounded!(usize, u8, u16);
|
|
|
|
- try_from_unbounded!(usize, u32, u64, u128);
|
|
|
|
+ try_from_unbounded!(usize, u32, u64);
|
|
|
|
try_from_upper_bounded!(usize, i8, i16, i32);
|
|
|
|
- try_from_unbounded!(usize, i64, i128);
|
|
|
|
+ try_from_unbounded!(usize, i64);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_both_bounded!(isize, u8, u16);
|
2018-07-18 05:25:01 -05:00
|
|
|
- try_from_lower_bounded!(isize, u32, u64, u128);
|
|
|
|
+ try_from_lower_bounded!(isize, u32, u64);
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_both_bounded!(isize, i8, i16);
|
|
|
|
- try_from_unbounded!(isize, i32, i64, i128);
|
|
|
|
+ try_from_unbounded!(isize, i32, i64);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
rev!(try_from_unbounded, usize, u32);
|
|
|
|
- rev!(try_from_upper_bounded, usize, u64, u128);
|
|
|
|
+ rev!(try_from_upper_bounded, usize, u64);
|
2018-07-18 05:25:01 -05:00
|
|
|
rev!(try_from_lower_bounded, usize, i8, i16, i32);
|
|
|
|
- rev!(try_from_both_bounded, usize, i64, i128);
|
|
|
|
+ rev!(try_from_both_bounded, usize, i64);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
rev!(try_from_unbounded, isize, u16);
|
|
|
|
- rev!(try_from_upper_bounded, isize, u32, u64, u128);
|
|
|
|
+ rev!(try_from_upper_bounded, isize, u32, u64);
|
|
|
|
rev!(try_from_unbounded, isize, i32);
|
|
|
|
- rev!(try_from_both_bounded, isize, i64, i128);
|
|
|
|
+ rev!(try_from_both_bounded, isize, i64);
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
#[cfg(target_pointer_width = "64")]
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -4630,24 +4600,20 @@ mod ptr_try_from_impls {
|
2018-07-19 11:41:37 -05:00
|
|
|
use convert::TryFrom;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_upper_bounded!(usize, u8, u16, u32);
|
|
|
|
- try_from_unbounded!(usize, u64, u128);
|
|
|
|
+ try_from_unbounded!(usize, u64);
|
|
|
|
try_from_upper_bounded!(usize, i8, i16, i32, i64);
|
|
|
|
- try_from_unbounded!(usize, i128);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_both_bounded!(isize, u8, u16, u32);
|
2018-07-18 05:25:01 -05:00
|
|
|
- try_from_lower_bounded!(isize, u64, u128);
|
|
|
|
+ try_from_lower_bounded!(isize, u64);
|
2018-07-19 11:41:37 -05:00
|
|
|
try_from_both_bounded!(isize, i8, i16, i32);
|
|
|
|
- try_from_unbounded!(isize, i64, i128);
|
|
|
|
+ try_from_unbounded!(isize, i64);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
rev!(try_from_unbounded, usize, u32, u64);
|
|
|
|
- rev!(try_from_upper_bounded, usize, u128);
|
2018-07-18 05:25:01 -05:00
|
|
|
rev!(try_from_lower_bounded, usize, i8, i16, i32, i64);
|
|
|
|
- rev!(try_from_both_bounded, usize, i128);
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
rev!(try_from_unbounded, isize, u16, u32);
|
|
|
|
- rev!(try_from_upper_bounded, isize, u64, u128);
|
|
|
|
+ rev!(try_from_upper_bounded, isize, u64);
|
|
|
|
rev!(try_from_unbounded, isize, i32, i64);
|
|
|
|
- rev!(try_from_both_bounded, isize, i128);
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
#[doc(hidden)]
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -4682,7 +4648,7 @@ macro_rules! doit {
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
|
|
|
})*)
|
|
|
|
}
|
|
|
|
-doit! { i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize }
|
|
|
|
+doit! { i8 i16 i32 i64 isize u8 u16 u32 u64 usize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
fn from_str_radix<T: FromStrRadixHelper>(src: &str, radix: u32) -> Result<T, ParseIntError> {
|
|
|
|
use self::IntErrorKind::*;
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -4873,52 +4839,38 @@ impl_from_bool! { u8, #[stable(feature = "from_bool", since = "1.28.0")] }
|
2018-07-18 05:25:01 -05:00
|
|
|
impl_from_bool! { u16, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
impl_from_bool! { u32, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
impl_from_bool! { u64, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
-impl_from_bool! { u128, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
impl_from_bool! { usize, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
impl_from_bool! { i8, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
impl_from_bool! { i16, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
impl_from_bool! { i32, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
impl_from_bool! { i64, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
-impl_from_bool! { i128, #[stable(feature = "from_bool", since = "1.28.0")] }
|
|
|
|
impl_from_bool! { isize, #[stable(feature = "from_bool", since = "1.28.0")] }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// Unsigned -> Unsigned
|
|
|
|
impl_from! { u8, u16, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { u8, u32, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { u8, u64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { u8, u128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
impl_from! { u8, usize, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { u16, u32, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { u16, u64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { u16, u128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
impl_from! { u32, u64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { u32, u128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
-impl_from! { u64, u128, #[stable(feature = "i128", since = "1.26.0")] }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// Signed -> Signed
|
|
|
|
impl_from! { i8, i16, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { i8, i32, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { i8, i64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { i8, i128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
impl_from! { i8, isize, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { i16, i32, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { i16, i64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { i16, i128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
impl_from! { i32, i64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { i32, i128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
-impl_from! { i64, i128, #[stable(feature = "i128", since = "1.26.0")] }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// Unsigned -> Signed
|
|
|
|
impl_from! { u8, i16, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { u8, i32, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { u8, i64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { u8, i128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
impl_from! { u16, i32, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
impl_from! { u16, i64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { u16, i128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
impl_from! { u32, i64, #[stable(feature = "lossless_int_conv", since = "1.5.0")] }
|
|
|
|
-impl_from! { u32, i128, #[stable(feature = "i128", since = "1.26.0")] }
|
|
|
|
-impl_from! { u64, i128, #[stable(feature = "i128", since = "1.26.0")] }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// The C99 standard defines bounds on INTPTR_MIN, INTPTR_MAX, and UINTPTR_MAX
|
|
|
|
// which imply that pointer-sized integers must be at least 16 bits:
|
|
|
|
diff --git a/src/libcore/num/wrapping.rs b/src/libcore/num/wrapping.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
index 50e189c..2da3b35 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/num/wrapping.rs
|
|
|
|
+++ b/src/libcore/num/wrapping.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -102,19 +102,17 @@ macro_rules! sh_impl_all {
|
2018-07-18 05:25:01 -05:00
|
|
|
//sh_impl_unsigned! { $t, u16 }
|
|
|
|
//sh_impl_unsigned! { $t, u32 }
|
|
|
|
//sh_impl_unsigned! { $t, u64 }
|
|
|
|
- //sh_impl_unsigned! { $t, u128 }
|
|
|
|
sh_impl_unsigned! { $t, usize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
//sh_impl_signed! { $t, i8 }
|
|
|
|
//sh_impl_signed! { $t, i16 }
|
|
|
|
//sh_impl_signed! { $t, i32 }
|
|
|
|
//sh_impl_signed! { $t, i64 }
|
|
|
|
- //sh_impl_signed! { $t, i128 }
|
|
|
|
//sh_impl_signed! { $t, isize }
|
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
|
|
|
|
+sh_impl_all! { u8 u16 u32 u64 usize i8 i16 i32 i64 isize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// FIXME(30524): impl Op<T> for Wrapping<T>, impl OpAssign<T> for Wrapping<T>
|
|
|
|
macro_rules! wrapping_impl {
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -313,7 +311,7 @@ macro_rules! wrapping_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+wrapping_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! wrapping_int_impl {
|
|
|
|
($($t:ty)*) => ($(
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -675,7 +673,7 @@ assert_eq!(Wrapping(3i8).pow(6), Wrapping(-39));
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-wrapping_int_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+wrapping_int_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! wrapping_int_impl_signed {
|
|
|
|
($($t:ty)*) => ($(
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -804,7 +802,7 @@ assert!(!Wrapping(10", stringify!($t), ").is_negative());
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-wrapping_int_impl_signed! { isize i8 i16 i32 i64 i128 }
|
|
|
|
+wrapping_int_impl_signed! { isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! wrapping_int_impl_unsigned {
|
|
|
|
($($t:ty)*) => ($(
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -881,7 +879,7 @@ assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-wrapping_int_impl_unsigned! { usize u8 u16 u32 u64 u128 }
|
|
|
|
+wrapping_int_impl_unsigned! { usize u8 u16 u32 u64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
mod shift_max {
|
|
|
|
#![allow(non_upper_case_globals)]
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -908,13 +906,11 @@ mod shift_max {
|
2018-07-18 05:25:01 -05:00
|
|
|
pub const i16: u32 = (1 << 4) - 1;
|
|
|
|
pub const i32: u32 = (1 << 5) - 1;
|
|
|
|
pub const i64: u32 = (1 << 6) - 1;
|
|
|
|
- pub const i128: u32 = (1 << 7) - 1;
|
|
|
|
pub use self::platform::isize;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
pub const u8: u32 = i8;
|
|
|
|
pub const u16: u32 = i16;
|
|
|
|
pub const u32: u32 = i32;
|
|
|
|
pub const u64: u32 = i64;
|
|
|
|
- pub const u128: u32 = i128;
|
|
|
|
pub use self::platform::usize;
|
|
|
|
}
|
|
|
|
diff --git a/src/libcore/ops/arith.rs b/src/libcore/ops/arith.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
index 7d8bf18..91fd879 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/ops/arith.rs
|
|
|
|
+++ b/src/libcore/ops/arith.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -104,7 +104,7 @@ macro_rules! add_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-add_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+add_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The subtraction operator `-`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -202,7 +202,7 @@ macro_rules! sub_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-sub_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+sub_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The multiplication operator `*`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -322,7 +322,7 @@ macro_rules! mul_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-mul_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+mul_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The division operator `/`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -447,7 +447,7 @@ macro_rules! div_impl_integer {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-div_impl_integer! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+div_impl_integer! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! div_impl_float {
|
|
|
|
($($t:ty)*) => ($(
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -532,7 +532,7 @@ macro_rules! rem_impl_integer {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-rem_impl_integer! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+rem_impl_integer! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
macro_rules! rem_impl_float {
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -631,7 +631,7 @@ macro_rules! neg_impl_unsigned {
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// neg_impl_unsigned! { usize u8 u16 u32 u64 }
|
|
|
|
-neg_impl_numeric! { isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+neg_impl_numeric! { isize i8 i16 i32 i64 f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The addition assignment operator `+=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -687,7 +687,7 @@ macro_rules! add_assign_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)+)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+add_assign_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The subtraction assignment operator `-=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -743,7 +743,7 @@ macro_rules! sub_assign_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)+)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+sub_assign_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The multiplication assignment operator `*=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -790,7 +790,7 @@ macro_rules! mul_assign_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)+)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+mul_assign_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The division assignment operator `/=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -836,7 +836,7 @@ macro_rules! div_assign_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)+)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+div_assign_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The remainder assignment operator `%=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -886,4 +886,4 @@ macro_rules! rem_assign_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)+)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
|
|
|
|
+rem_assign_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }
|
|
|
|
diff --git a/src/libcore/ops/bit.rs b/src/libcore/ops/bit.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
index 2c9bf24..af2ab6f 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/ops/bit.rs
|
|
|
|
+++ b/src/libcore/ops/bit.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -55,7 +55,7 @@ macro_rules! not_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-not_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+not_impl! { bool usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The bitwise AND operator `&`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -139,7 +139,7 @@ macro_rules! bitand_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-bitand_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+bitand_impl! { bool usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The bitwise OR operator `|`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -223,7 +223,7 @@ macro_rules! bitor_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-bitor_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+bitor_impl! { bool usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The bitwise XOR operator `^`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -310,7 +310,7 @@ macro_rules! bitxor_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-bitxor_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+bitxor_impl! { bool usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The left shift operator `<<`. Note that because this trait is implemented
|
|
|
|
/// for all integer types with multiple right-hand-side types, Rust's type
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -407,19 +407,17 @@ macro_rules! shl_impl_all {
|
2018-07-18 05:25:01 -05:00
|
|
|
shl_impl! { $t, u16 }
|
|
|
|
shl_impl! { $t, u32 }
|
|
|
|
shl_impl! { $t, u64 }
|
|
|
|
- shl_impl! { $t, u128 }
|
|
|
|
shl_impl! { $t, usize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
shl_impl! { $t, i8 }
|
|
|
|
shl_impl! { $t, i16 }
|
|
|
|
shl_impl! { $t, i32 }
|
|
|
|
shl_impl! { $t, i64 }
|
|
|
|
- shl_impl! { $t, i128 }
|
|
|
|
shl_impl! { $t, isize }
|
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-shl_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 isize i128 }
|
|
|
|
+shl_impl_all! { u8 u16 u32 u64 usize i8 i16 i32 i64 isize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The right shift operator `>>`. Note that because this trait is implemented
|
|
|
|
/// for all integer types with multiple right-hand-side types, Rust's type
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -516,19 +514,17 @@ macro_rules! shr_impl_all {
|
2018-07-18 05:25:01 -05:00
|
|
|
shr_impl! { $t, u16 }
|
|
|
|
shr_impl! { $t, u32 }
|
|
|
|
shr_impl! { $t, u64 }
|
|
|
|
- shr_impl! { $t, u128 }
|
|
|
|
shr_impl! { $t, usize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
shr_impl! { $t, i8 }
|
|
|
|
shr_impl! { $t, i16 }
|
|
|
|
shr_impl! { $t, i32 }
|
|
|
|
shr_impl! { $t, i64 }
|
|
|
|
- shr_impl! { $t, i128 }
|
|
|
|
shr_impl! { $t, isize }
|
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-shr_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
|
|
|
|
+shr_impl_all! { u8 u16 u32 u64 usize i8 i16 i32 i64 isize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The bitwise AND assignment operator `&=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -616,7 +612,7 @@ macro_rules! bitand_assign_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)+)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+bitand_assign_impl! { bool usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The bitwise OR assignment operator `|=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -665,7 +661,7 @@ macro_rules! bitor_assign_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)+)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+bitor_assign_impl! { bool usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The bitwise XOR assignment operator `^=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -714,7 +710,7 @@ macro_rules! bitxor_assign_impl {
|
2018-07-18 05:25:01 -05:00
|
|
|
)+)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
|
|
|
|
+bitxor_assign_impl! { bool usize u8 u16 u32 u64 isize i8 i16 i32 i64 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The left shift assignment operator `<<=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -770,19 +766,17 @@ macro_rules! shl_assign_impl_all {
|
2018-07-18 05:25:01 -05:00
|
|
|
shl_assign_impl! { $t, u16 }
|
|
|
|
shl_assign_impl! { $t, u32 }
|
|
|
|
shl_assign_impl! { $t, u64 }
|
|
|
|
- shl_assign_impl! { $t, u128 }
|
|
|
|
shl_assign_impl! { $t, usize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
shl_assign_impl! { $t, i8 }
|
|
|
|
shl_assign_impl! { $t, i16 }
|
|
|
|
shl_assign_impl! { $t, i32 }
|
|
|
|
shl_assign_impl! { $t, i64 }
|
|
|
|
- shl_assign_impl! { $t, i128 }
|
|
|
|
shl_assign_impl! { $t, isize }
|
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
|
|
|
|
+shl_assign_impl_all! { u8 u16 u32 u64 usize i8 i16 i32 i64 isize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
/// The right shift assignment operator `>>=`.
|
|
|
|
///
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -838,16 +832,14 @@ macro_rules! shr_assign_impl_all {
|
2018-07-18 05:25:01 -05:00
|
|
|
shr_assign_impl! { $t, u16 }
|
|
|
|
shr_assign_impl! { $t, u32 }
|
|
|
|
shr_assign_impl! { $t, u64 }
|
|
|
|
- shr_assign_impl! { $t, u128 }
|
|
|
|
shr_assign_impl! { $t, usize }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
shr_assign_impl! { $t, i8 }
|
|
|
|
shr_assign_impl! { $t, i16 }
|
|
|
|
shr_assign_impl! { $t, i32 }
|
|
|
|
shr_assign_impl! { $t, i64 }
|
|
|
|
- shr_assign_impl! { $t, i128 }
|
|
|
|
shr_assign_impl! { $t, isize }
|
|
|
|
)*)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
-shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize }
|
|
|
|
+shr_assign_impl_all! { u8 u16 u32 u64 usize i8 i16 i32 i64 isize }
|
2018-11-10 03:52:23 -06:00
|
|
|
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
index 8c5dde7..8122120 100644
|
2018-11-10 03:52:23 -06:00
|
|
|
--- a/src/libcore/sync/atomic.rs
|
|
|
|
+++ b/src/libcore/sync/atomic.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -2003,36 +2003,6 @@ atomic_int! {
|
|
|
|
"AtomicU64::new(0)",
|
2018-11-10 03:52:23 -06:00
|
|
|
u64 AtomicU64 ATOMIC_U64_INIT
|
|
|
|
}
|
2018-12-15 07:46:58 -06:00
|
|
|
-#[cfg(target_has_atomic = "128")]
|
2018-11-10 03:52:23 -06:00
|
|
|
-atomic_int! {
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- "i128", "../../../std/primitive.i128.html",
|
|
|
|
- "#![feature(integer_atomics)]\n\n",
|
|
|
|
- atomic_min, atomic_max,
|
|
|
|
- 16,
|
2019-02-02 04:43:42 -06:00
|
|
|
- "AtomicI128::new(0)",
|
2018-11-10 03:52:23 -06:00
|
|
|
- i128 AtomicI128 ATOMIC_I128_INIT
|
|
|
|
-}
|
2018-12-15 07:46:58 -06:00
|
|
|
-#[cfg(target_has_atomic = "128")]
|
2018-11-10 03:52:23 -06:00
|
|
|
-atomic_int! {
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- unstable(feature = "integer_atomics", issue = "32976"),
|
|
|
|
- "u128", "../../../std/primitive.u128.html",
|
|
|
|
- "#![feature(integer_atomics)]\n\n",
|
|
|
|
- atomic_umin, atomic_umax,
|
|
|
|
- 16,
|
2019-02-02 04:43:42 -06:00
|
|
|
- "AtomicU128::new(0)",
|
2018-11-10 03:52:23 -06:00
|
|
|
- u128 AtomicU128 ATOMIC_U128_INIT
|
|
|
|
-}
|
|
|
|
#[cfg(target_pointer_width = "16")]
|
|
|
|
macro_rules! ptr_width {
|
|
|
|
() => { 2 }
|
2018-07-18 05:25:01 -05:00
|
|
|
diff --git a/src/libcore/tests/iter.rs b/src/libcore/tests/iter.rs
|
2019-01-26 04:59:34 -06:00
|
|
|
index 0fa9974..75b44b1 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/tests/iter.rs
|
|
|
|
+++ b/src/libcore/tests/iter.rs
|
2019-01-26 04:59:34 -06:00
|
|
|
@@ -215,8 +215,6 @@ fn test_iterator_step_by_nth_overflow() {
|
2018-07-18 05:25:01 -05:00
|
|
|
type Bigger = u32;
|
|
|
|
#[cfg(target_pointer_width = "32")]
|
|
|
|
type Bigger = u64;
|
|
|
|
- #[cfg(target_pointer_width = "64")]
|
|
|
|
- type Bigger = u128;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
#[derive(Clone)]
|
|
|
|
struct Test(Bigger);
|
2019-01-29 13:28:04 -06:00
|
|
|
@@ -1969,19 +1967,6 @@ fn test_step_replace_signed() {
|
2018-07-18 05:25:01 -05:00
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2019-01-29 13:28:04 -06:00
|
|
|
#[test]
|
2018-07-18 05:25:01 -05:00
|
|
|
-fn test_step_replace_no_between() {
|
|
|
|
- let mut x = 4u128;
|
|
|
|
- let y = x.replace_zero();
|
|
|
|
- assert_eq!(x, 0);
|
|
|
|
- assert_eq!(y, 4);
|
|
|
|
-
|
|
|
|
- x = 5;
|
|
|
|
- let y = x.replace_one();
|
|
|
|
- assert_eq!(x, 1);
|
|
|
|
- assert_eq!(y, 5);
|
|
|
|
-}
|
|
|
|
-
|
2019-01-29 13:28:04 -06:00
|
|
|
-#[test]
|
2018-07-18 05:25:01 -05:00
|
|
|
fn test_rev_try_folds() {
|
|
|
|
let f = &|acc, x| i32::checked_add(2*acc, x);
|
2019-01-29 13:28:04 -06:00
|
|
|
assert_eq!((1..10).rev().try_fold(7, f), (1..10).try_rfold(7, f));
|
2018-07-18 05:25:01 -05:00
|
|
|
diff --git a/src/libcore/tests/num/mod.rs b/src/libcore/tests/num/mod.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
index a17c094..3c36d10 100644
|
2018-07-18 05:25:01 -05:00
|
|
|
--- a/src/libcore/tests/num/mod.rs
|
|
|
|
+++ b/src/libcore/tests/num/mod.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -178,12 +178,10 @@ test_impl_from! { test_boolu8, bool, u8 }
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_from! { test_boolu16, bool, u16 }
|
|
|
|
test_impl_from! { test_boolu32, bool, u32 }
|
|
|
|
test_impl_from! { test_boolu64, bool, u64 }
|
|
|
|
-test_impl_from! { test_boolu128, bool, u128 }
|
|
|
|
test_impl_from! { test_booli8, bool, i8 }
|
|
|
|
test_impl_from! { test_booli16, bool, i16 }
|
|
|
|
test_impl_from! { test_booli32, bool, i32 }
|
|
|
|
test_impl_from! { test_booli64, bool, i64 }
|
|
|
|
-test_impl_from! { test_booli128, bool, i128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
// Signed -> Float
|
|
|
|
test_impl_from! { test_i8f32, i8, f32 }
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -265,51 +263,35 @@ test_impl_try_from_always_ok! { test_try_u8u8, u8, u8 }
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_u8u16, u8, u16 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u8u32, u8, u32 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u8u64, u8, u64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u8u128, u8, u128 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u8i16, u8, i16 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u8i32, u8, i32 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u8i64, u8, i64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u8i128, u8, i128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_u16u16, u16, u16 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u16u32, u16, u32 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u16u64, u16, u64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u16u128, u16, u128 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u16i32, u16, i32 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u16i64, u16, i64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u16i128, u16, i128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_u32u32, u32, u32 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u32u64, u32, u64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u32u128, u32, u128 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_u32i64, u32, i64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u32i128, u32, i128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_u64u64, u64, u64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u64u128, u64, u128 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u64i128, u64, i128 }
|
|
|
|
-
|
|
|
|
-test_impl_try_from_always_ok! { test_try_u128u128, u128, u128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_i8i8, i8, i8 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_i8i16, i8, i16 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_i8i32, i8, i32 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_i8i64, i8, i64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_i8i128, i8, i128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_i16i16, i16, i16 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_i16i32, i16, i32 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_i16i64, i16, i64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_i16i128, i16, i128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_i32i32, i32, i32 }
|
|
|
|
test_impl_try_from_always_ok! { test_try_i32i64, i32, i64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_i32i128, i32, i128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_i64i64, i64, i64 }
|
|
|
|
-test_impl_try_from_always_ok! { test_try_i64i128, i64, i128 }
|
|
|
|
-
|
|
|
|
-test_impl_try_from_always_ok! { test_try_i128i128, i128, i128 }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-07-18 05:25:01 -05:00
|
|
|
test_impl_try_from_always_ok! { test_try_usizeusize, usize, usize }
|
|
|
|
test_impl_try_from_always_ok! { test_try_isizeisize, isize, isize }
|
2018-10-06 06:04:29 -05:00
|
|
|
diff --git a/src/libcore/time.rs b/src/libcore/time.rs
|
2019-01-26 04:59:34 -06:00
|
|
|
index a751965..5d162cb 100644
|
2018-10-06 06:04:29 -05:00
|
|
|
--- a/src/libcore/time.rs
|
|
|
|
+++ b/src/libcore/time.rs
|
2018-12-28 03:44:32 -06:00
|
|
|
@@ -21,7 +21,6 @@ const NANOS_PER_MILLI: u32 = 1_000_000;
|
2018-10-06 06:04:29 -05:00
|
|
|
const NANOS_PER_MICRO: u32 = 1_000;
|
|
|
|
const MILLIS_PER_SEC: u64 = 1_000;
|
|
|
|
const MICROS_PER_SEC: u64 = 1_000_000;
|
|
|
|
-const MAX_NANOS_F64: f64 = ((u64::MAX as u128 + 1)*(NANOS_PER_SEC as u128)) as f64;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2019-01-08 08:08:46 -06:00
|
|
|
/// The duration of one second.
|
|
|
|
#[unstable(feature = "duration_constants", issue = "57391")]
|
2019-01-26 04:59:34 -06:00
|
|
|
@@ -276,54 +275,6 @@ impl Duration {
|
2018-10-06 06:04:29 -05:00
|
|
|
#[inline]
|
|
|
|
pub const fn subsec_nanos(&self) -> u32 { self.nanos }
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-10-06 06:04:29 -05:00
|
|
|
- /// Returns the total number of whole milliseconds contained by this `Duration`.
|
|
|
|
- ///
|
|
|
|
- /// # Examples
|
|
|
|
- ///
|
|
|
|
- /// ```
|
|
|
|
- /// use std::time::Duration;
|
|
|
|
- ///
|
|
|
|
- /// let duration = Duration::new(5, 730023852);
|
|
|
|
- /// assert_eq!(duration.as_millis(), 5730);
|
|
|
|
- /// ```
|
2018-12-28 03:44:32 -06:00
|
|
|
- #[stable(feature = "duration_as_u128", since = "1.33.0")]
|
2018-10-06 06:04:29 -05:00
|
|
|
- #[inline]
|
2018-11-13 11:25:21 -06:00
|
|
|
- pub const fn as_millis(&self) -> u128 {
|
2018-10-06 06:04:29 -05:00
|
|
|
- self.secs as u128 * MILLIS_PER_SEC as u128 + (self.nanos / NANOS_PER_MILLI) as u128
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /// Returns the total number of whole microseconds contained by this `Duration`.
|
|
|
|
- ///
|
|
|
|
- /// # Examples
|
|
|
|
- ///
|
|
|
|
- /// ```
|
|
|
|
- /// use std::time::Duration;
|
|
|
|
- ///
|
|
|
|
- /// let duration = Duration::new(5, 730023852);
|
|
|
|
- /// assert_eq!(duration.as_micros(), 5730023);
|
|
|
|
- /// ```
|
2018-12-28 03:44:32 -06:00
|
|
|
- #[stable(feature = "duration_as_u128", since = "1.33.0")]
|
2018-10-06 06:04:29 -05:00
|
|
|
- #[inline]
|
2018-11-13 11:25:21 -06:00
|
|
|
- pub const fn as_micros(&self) -> u128 {
|
2018-10-06 06:04:29 -05:00
|
|
|
- self.secs as u128 * MICROS_PER_SEC as u128 + (self.nanos / NANOS_PER_MICRO) as u128
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /// Returns the total number of nanoseconds contained by this `Duration`.
|
|
|
|
- ///
|
|
|
|
- /// # Examples
|
|
|
|
- ///
|
|
|
|
- /// ```
|
|
|
|
- /// use std::time::Duration;
|
|
|
|
- ///
|
|
|
|
- /// let duration = Duration::new(5, 730023852);
|
|
|
|
- /// assert_eq!(duration.as_nanos(), 5730023852);
|
|
|
|
- /// ```
|
2018-12-28 03:44:32 -06:00
|
|
|
- #[stable(feature = "duration_as_u128", since = "1.33.0")]
|
2018-10-06 06:04:29 -05:00
|
|
|
- #[inline]
|
2018-11-13 11:25:21 -06:00
|
|
|
- pub const fn as_nanos(&self) -> u128 {
|
2018-10-06 06:04:29 -05:00
|
|
|
- self.secs as u128 * NANOS_PER_SEC as u128 + self.nanos as u128
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
/// Checked `Duration` addition. Computes `self + other`, returning [`None`]
|
|
|
|
/// if overflow occurred.
|
|
|
|
///
|
2019-01-26 04:59:34 -06:00
|
|
|
@@ -482,80 +433,6 @@ impl Duration {
|
2018-10-06 06:04:29 -05:00
|
|
|
(self.secs as f64) + (self.nanos as f64) / (NANOS_PER_SEC as f64)
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-10-06 06:04:29 -05:00
|
|
|
- /// Creates a new `Duration` from the specified number of seconds.
|
|
|
|
- ///
|
|
|
|
- /// # Panics
|
|
|
|
- /// This constructor will panic if `secs` is not finite, negative or overflows `Duration`.
|
|
|
|
- ///
|
|
|
|
- /// # Examples
|
|
|
|
- /// ```
|
|
|
|
- /// #![feature(duration_float)]
|
|
|
|
- /// use std::time::Duration;
|
|
|
|
- ///
|
|
|
|
- /// let dur = Duration::from_float_secs(2.7);
|
|
|
|
- /// assert_eq!(dur, Duration::new(2, 700_000_000));
|
|
|
|
- /// ```
|
|
|
|
- #[unstable(feature = "duration_float", issue = "54361")]
|
|
|
|
- #[inline]
|
|
|
|
- pub fn from_float_secs(secs: f64) -> Duration {
|
|
|
|
- let nanos = secs * (NANOS_PER_SEC as f64);
|
|
|
|
- if !nanos.is_finite() {
|
|
|
|
- panic!("got non-finite value when converting float to duration");
|
|
|
|
- }
|
|
|
|
- if nanos >= MAX_NANOS_F64 {
|
|
|
|
- panic!("overflow when converting float to duration");
|
|
|
|
- }
|
|
|
|
- if nanos < 0.0 {
|
|
|
|
- panic!("underflow when converting float to duration");
|
|
|
|
- }
|
|
|
|
- let nanos = nanos as u128;
|
|
|
|
- Duration {
|
|
|
|
- secs: (nanos / (NANOS_PER_SEC as u128)) as u64,
|
|
|
|
- nanos: (nanos % (NANOS_PER_SEC as u128)) as u32,
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /// Multiply `Duration` by `f64`.
|
|
|
|
- ///
|
|
|
|
- /// # Panics
|
|
|
|
- /// This method will panic if result is not finite, negative or overflows `Duration`.
|
|
|
|
- ///
|
|
|
|
- /// # Examples
|
|
|
|
- /// ```
|
|
|
|
- /// #![feature(duration_float)]
|
|
|
|
- /// use std::time::Duration;
|
|
|
|
- ///
|
|
|
|
- /// let dur = Duration::new(2, 700_000_000);
|
|
|
|
- /// assert_eq!(dur.mul_f64(3.14), Duration::new(8, 478_000_000));
|
|
|
|
- /// assert_eq!(dur.mul_f64(3.14e5), Duration::new(847_800, 0));
|
|
|
|
- /// ```
|
|
|
|
- #[unstable(feature = "duration_float", issue = "54361")]
|
|
|
|
- #[inline]
|
|
|
|
- pub fn mul_f64(self, rhs: f64) -> Duration {
|
|
|
|
- Duration::from_float_secs(rhs * self.as_float_secs())
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /// Divide `Duration` by `f64`.
|
|
|
|
- ///
|
|
|
|
- /// # Panics
|
|
|
|
- /// This method will panic if result is not finite, negative or overflows `Duration`.
|
|
|
|
- ///
|
|
|
|
- /// # Examples
|
|
|
|
- /// ```
|
|
|
|
- /// #![feature(duration_float)]
|
|
|
|
- /// use std::time::Duration;
|
|
|
|
- ///
|
|
|
|
- /// let dur = Duration::new(2, 700_000_000);
|
|
|
|
- /// assert_eq!(dur.div_f64(3.14), Duration::new(0, 859_872_611));
|
|
|
|
- /// // note that truncation is used, not rounding
|
|
|
|
- /// assert_eq!(dur.div_f64(3.14e5), Duration::new(0, 8_598));
|
|
|
|
- /// ```
|
|
|
|
- #[unstable(feature = "duration_float", issue = "54361")]
|
|
|
|
- #[inline]
|
|
|
|
- pub fn div_f64(self, rhs: f64) -> Duration {
|
|
|
|
- Duration::from_float_secs(self.as_float_secs() / rhs)
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
/// Divide `Duration` by `Duration` and return `f64`.
|
|
|
|
///
|
|
|
|
/// # Examples
|
2018-12-28 03:44:32 -06:00
|
|
|
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
index f269fda..07c3680 100644
|
2018-12-28 03:44:32 -06:00
|
|
|
--- a/src/libstd/lib.rs
|
|
|
|
+++ b/src/libstd/lib.rs
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -397,8 +397,6 @@ pub use core::i16;
|
2018-12-28 03:44:32 -06:00
|
|
|
pub use core::i32;
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use core::i64;
|
|
|
|
-#[stable(feature = "i128", since = "1.26.0")]
|
|
|
|
-pub use core::i128;
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use core::usize;
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2019-02-02 04:43:42 -06:00
|
|
|
@@ -431,8 +429,6 @@ pub use alloc_crate::string;
|
2018-12-28 03:44:32 -06:00
|
|
|
pub use alloc_crate::vec;
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
pub use core::char;
|
|
|
|
-#[stable(feature = "i128", since = "1.26.0")]
|
|
|
|
-pub use core::u128;
|
|
|
|
#[stable(feature = "core_hint", since = "1.27.0")]
|
|
|
|
pub use core::hint;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-12-28 03:44:32 -06:00
|
|
|
diff --git a/src/libstd/net/ip.rs b/src/libstd/net/ip.rs
|
2019-01-29 13:28:04 -06:00
|
|
|
index f45cd8b..cf5ba85 100644
|
2018-12-28 03:44:32 -06:00
|
|
|
--- a/src/libstd/net/ip.rs
|
|
|
|
+++ b/src/libstd/net/ip.rs
|
2019-01-29 13:28:04 -06:00
|
|
|
@@ -1381,26 +1381,6 @@ impl FromInner<c::in6_addr> for Ipv6Addr {
|
2018-12-28 03:44:32 -06:00
|
|
|
}
|
|
|
|
}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-12-28 03:44:32 -06:00
|
|
|
-#[stable(feature = "i128", since = "1.26.0")]
|
|
|
|
-impl From<Ipv6Addr> for u128 {
|
|
|
|
- fn from(ip: Ipv6Addr) -> u128 {
|
|
|
|
- let ip = ip.segments();
|
|
|
|
- ((ip[0] as u128) << 112) + ((ip[1] as u128) << 96) + ((ip[2] as u128) << 80) +
|
|
|
|
- ((ip[3] as u128) << 64) + ((ip[4] as u128) << 48) + ((ip[5] as u128) << 32) +
|
|
|
|
- ((ip[6] as u128) << 16) + (ip[7] as u128)
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-#[stable(feature = "i128", since = "1.26.0")]
|
|
|
|
-impl From<u128> for Ipv6Addr {
|
|
|
|
- fn from(ip: u128) -> Ipv6Addr {
|
|
|
|
- Ipv6Addr::new(
|
|
|
|
- (ip >> 112) as u16, (ip >> 96) as u16, (ip >> 80) as u16,
|
|
|
|
- (ip >> 64) as u16, (ip >> 48) as u16, (ip >> 32) as u16,
|
|
|
|
- (ip >> 16) as u16, ip as u16,
|
|
|
|
- )
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
#[stable(feature = "ipv6_from_octets", since = "1.9.0")]
|
|
|
|
impl From<[u8; 16]> for Ipv6Addr {
|
|
|
|
fn from(octets: [u8; 16]) -> Ipv6Addr {
|
|
|
|
diff --git a/src/libstd/num.rs b/src/libstd/num.rs
|
|
|
|
index c80b9a5..e32a6b3 100644
|
|
|
|
--- a/src/libstd/num.rs
|
|
|
|
+++ b/src/libstd/num.rs
|
|
|
|
@@ -12,7 +12,7 @@ pub use core::num::{FpCategory, ParseIntError, ParseFloatError, TryFromIntError}
|
|
|
|
pub use core::num::Wrapping;
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-12-28 03:44:32 -06:00
|
|
|
#[stable(feature = "nonzero", since = "1.28.0")]
|
|
|
|
-pub use core::num::{NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU128, NonZeroUsize};
|
|
|
|
+pub use core::num::{NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroUsize};
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-12-28 03:44:32 -06:00
|
|
|
#[cfg(test)] use fmt;
|
|
|
|
#[cfg(test)] use ops::{Add, Sub, Mul, Div, Rem};
|
|
|
|
diff --git a/src/libstd/panic.rs b/src/libstd/panic.rs
|
|
|
|
index d27f6ca..8ac2a44 100644
|
|
|
|
--- a/src/libstd/panic.rs
|
|
|
|
+++ b/src/libstd/panic.rs
|
|
|
|
@@ -254,9 +254,6 @@ impl RefUnwindSafe for atomic::AtomicI32 {}
|
|
|
|
#[cfg(target_has_atomic = "64")]
|
|
|
|
#[unstable(feature = "integer_atomics", issue = "32976")]
|
|
|
|
impl RefUnwindSafe for atomic::AtomicI64 {}
|
|
|
|
-#[cfg(target_has_atomic = "128")]
|
|
|
|
-#[unstable(feature = "integer_atomics", issue = "32976")]
|
|
|
|
-impl RefUnwindSafe for atomic::AtomicI128 {}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-12-28 03:44:32 -06:00
|
|
|
#[cfg(target_has_atomic = "ptr")]
|
|
|
|
#[stable(feature = "unwind_safe_atomic_refs", since = "1.14.0")]
|
|
|
|
@@ -273,9 +270,6 @@ impl RefUnwindSafe for atomic::AtomicU32 {}
|
|
|
|
#[cfg(target_has_atomic = "64")]
|
|
|
|
#[unstable(feature = "integer_atomics", issue = "32976")]
|
|
|
|
impl RefUnwindSafe for atomic::AtomicU64 {}
|
|
|
|
-#[cfg(target_has_atomic = "128")]
|
|
|
|
-#[unstable(feature = "integer_atomics", issue = "32976")]
|
|
|
|
-impl RefUnwindSafe for atomic::AtomicU128 {}
|
2019-01-26 04:59:34 -06:00
|
|
|
|
2018-12-28 03:44:32 -06:00
|
|
|
#[cfg(target_has_atomic = "8")]
|
|
|
|
#[stable(feature = "unwind_safe_atomic_refs", since = "1.14.0")]
|
2019-01-26 04:59:34 -06:00
|
|
|
--
|
2019-01-29 13:28:04 -06:00
|
|
|
2.11.0
|
2019-01-26 04:59:34 -06:00
|
|
|
|