@@ -94,7 +94,13 @@ depending on the target pointer size.
94
94
}
95
95
96
96
macro_rules! widening_impl {
97
- ( $SelfT: ty, $WideT: ty, $BITS: literal) => {
97
+ ( $SelfT: ty, $WideT: ty, $BITS: literal, unsigned) => {
98
+ widening_impl!( $SelfT, $WideT, $BITS, "" ) ;
99
+ } ;
100
+ ( $SelfT: ty, $WideT: ty, $BITS: literal, signed) => {
101
+ widening_impl!( $SelfT, $WideT, $BITS, "# //" ) ;
102
+ } ;
103
+ ( $SelfT: ty, $WideT: ty, $BITS: literal, $AdaptiveTestPrefix: literal) => {
98
104
/// Calculates the complete product `self * rhs` without the possibility to overflow.
99
105
///
100
106
/// This returns the low-order (wrapping) bits and the high-order (overflow) bits
@@ -148,6 +154,33 @@ macro_rules! widening_impl {
148
154
/// assert_eq!(5u32.carrying_mul(2, 10), (20, 0));
149
155
/// assert_eq!(1_000_000_000u32.carrying_mul(10, 0), (1410065408, 2));
150
156
/// assert_eq!(1_000_000_000u32.carrying_mul(10, 10), (1410065418, 2));
157
+ #[ doc = concat!( $AdaptiveTestPrefix, "assert_eq!(" ,
158
+ stringify!( $SelfT) , "::MAX.carrying_mul(" , stringify!( $SelfT) , "::MAX, " , stringify!( $SelfT) , "::MAX), " ,
159
+ "(0, " , stringify!( $SelfT) , "::MAX));"
160
+ ) ]
161
+ /// ```
162
+ ///
163
+ /// If `carry` is zero, this is similar to [`overflowing_mul`](Self::overflowing_mul),
164
+ /// except that it gives the value of the overflow instead of just whether one happened:
165
+ ///
166
+ /// ```
167
+ /// #![feature(bigint_helper_methods)]
168
+ /// let r = u8::carrying_mul(7, 13, 0);
169
+ /// assert_eq!((r.0, r.1 != 0), u8::overflowing_mul(7, 13));
170
+ /// let r = u8::carrying_mul(13, 42, 0);
171
+ /// assert_eq!((r.0, r.1 != 0), u8::overflowing_mul(13, 42));
172
+ /// ```
173
+ ///
174
+ /// The value of the first field in the returned tuple matches what you'd get
175
+ /// by combining the [`wrapping_mul`](Self::wrapping_mul) and
176
+ /// [`wrapping_add`](Self::wrapping_add) methods:
177
+ ///
178
+ /// ```
179
+ /// #![feature(bigint_helper_methods)]
180
+ /// assert_eq!(
181
+ /// 789_u16.carrying_mul(456, 123).0,
182
+ /// 789_u16.wrapping_mul(456).wrapping_add(123),
183
+ /// );
151
184
/// ```
152
185
#[ unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
153
186
#[ rustc_const_unstable( feature = "bigint_helper_methods" , issue = "85532" ) ]
@@ -168,29 +201,29 @@ macro_rules! widening_impl {
168
201
169
202
#[ lang = "i8" ]
170
203
impl i8 {
171
- widening_impl ! { i8 , i16 , 8 }
204
+ widening_impl ! { i8 , i16 , 8 , signed }
172
205
int_impl ! { i8 , i8 , u8 , 8 , 7 , -128 , 127 , 2 , "-0x7e" , "0xa" , "0x12" , "0x12" , "0x48" ,
173
206
"[0x12]" , "[0x12]" , "" , "" }
174
207
}
175
208
176
209
#[ lang = "i16" ]
177
210
impl i16 {
178
- widening_impl ! { i16 , i32 , 16 }
211
+ widening_impl ! { i16 , i32 , 16 , signed }
179
212
int_impl ! { i16 , i16 , u16 , 16 , 15 , -32768 , 32767 , 4 , "-0x5ffd" , "0x3a" , "0x1234" , "0x3412" ,
180
213
"0x2c48" , "[0x34, 0x12]" , "[0x12, 0x34]" , "" , "" }
181
214
}
182
215
183
216
#[ lang = "i32" ]
184
217
impl i32 {
185
- widening_impl ! { i32 , i64 , 32 }
218
+ widening_impl ! { i32 , i64 , 32 , signed }
186
219
int_impl ! { i32 , i32 , u32 , 32 , 31 , -2147483648 , 2147483647 , 8 , "0x10000b3" , "0xb301" ,
187
220
"0x12345678" , "0x78563412" , "0x1e6a2c48" , "[0x78, 0x56, 0x34, 0x12]" ,
188
221
"[0x12, 0x34, 0x56, 0x78]" , "" , "" }
189
222
}
190
223
191
224
#[ lang = "i64" ]
192
225
impl i64 {
193
- widening_impl ! { i64 , i128 , 64 }
226
+ widening_impl ! { i64 , i128 , 64 , signed }
194
227
int_impl ! { i64 , i64 , u64 , 64 , 63 , -9223372036854775808 , 9223372036854775807 , 12 ,
195
228
"0xaa00000000006e1" , "0x6e10aa" , "0x1234567890123456" , "0x5634129078563412" ,
196
229
"0x6a2c48091e6a2c48" , "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]" ,
@@ -212,7 +245,7 @@ impl i128 {
212
245
#[ cfg( target_pointer_width = "16" ) ]
213
246
#[ lang = "isize" ]
214
247
impl isize {
215
- widening_impl ! { isize , i32 , 16 }
248
+ widening_impl ! { isize , i32 , 16 , signed }
216
249
int_impl ! { isize , i16 , usize , 16 , 15 , -32768 , 32767 , 4 , "-0x5ffd" , "0x3a" , "0x1234" ,
217
250
"0x3412" , "0x2c48" , "[0x34, 0x12]" , "[0x12, 0x34]" ,
218
251
usize_isize_to_xe_bytes_doc!( ) , usize_isize_from_xe_bytes_doc!( ) }
@@ -221,7 +254,7 @@ impl isize {
221
254
#[ cfg( target_pointer_width = "32" ) ]
222
255
#[ lang = "isize" ]
223
256
impl isize {
224
- widening_impl ! { isize , i64 , 32 }
257
+ widening_impl ! { isize , i64 , 32 , signed }
225
258
int_impl ! { isize , i32 , usize , 32 , 31 , -2147483648 , 2147483647 , 8 , "0x10000b3" , "0xb301" ,
226
259
"0x12345678" , "0x78563412" , "0x1e6a2c48" , "[0x78, 0x56, 0x34, 0x12]" ,
227
260
"[0x12, 0x34, 0x56, 0x78]" ,
@@ -231,7 +264,7 @@ impl isize {
231
264
#[ cfg( target_pointer_width = "64" ) ]
232
265
#[ lang = "isize" ]
233
266
impl isize {
234
- widening_impl ! { isize , i128 , 64 }
267
+ widening_impl ! { isize , i128 , 64 , signed }
235
268
int_impl ! { isize , i64 , usize , 64 , 63 , -9223372036854775808 , 9223372036854775807 ,
236
269
12 , "0xaa00000000006e1" , "0x6e10aa" , "0x1234567890123456" , "0x5634129078563412" ,
237
270
"0x6a2c48091e6a2c48" , "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]" ,
@@ -244,7 +277,7 @@ const ASCII_CASE_MASK: u8 = 0b0010_0000;
244
277
245
278
#[ lang = "u8" ]
246
279
impl u8 {
247
- widening_impl ! { u8 , u16 , 8 }
280
+ widening_impl ! { u8 , u16 , 8 , unsigned }
248
281
uint_impl ! { u8 , u8 , i8 , 8 , 255 , 2 , "0x82" , "0xa" , "0x12" , "0x12" , "0x48" , "[0x12]" ,
249
282
"[0x12]" , "" , "" }
250
283
@@ -793,21 +826,21 @@ impl u8 {
793
826
794
827
#[ lang = "u16" ]
795
828
impl u16 {
796
- widening_impl ! { u16 , u32 , 16 }
829
+ widening_impl ! { u16 , u32 , 16 , unsigned }
797
830
uint_impl ! { u16 , u16 , i16 , 16 , 65535 , 4 , "0xa003" , "0x3a" , "0x1234" , "0x3412" , "0x2c48" ,
798
831
"[0x34, 0x12]" , "[0x12, 0x34]" , "" , "" }
799
832
}
800
833
801
834
#[ lang = "u32" ]
802
835
impl u32 {
803
- widening_impl ! { u32 , u64 , 32 }
836
+ widening_impl ! { u32 , u64 , 32 , unsigned }
804
837
uint_impl ! { u32 , u32 , i32 , 32 , 4294967295 , 8 , "0x10000b3" , "0xb301" , "0x12345678" ,
805
838
"0x78563412" , "0x1e6a2c48" , "[0x78, 0x56, 0x34, 0x12]" , "[0x12, 0x34, 0x56, 0x78]" , "" , "" }
806
839
}
807
840
808
841
#[ lang = "u64" ]
809
842
impl u64 {
810
- widening_impl ! { u64 , u128 , 64 }
843
+ widening_impl ! { u64 , u128 , 64 , unsigned }
811
844
uint_impl ! { u64 , u64 , i64 , 64 , 18446744073709551615 , 12 , "0xaa00000000006e1" , "0x6e10aa" ,
812
845
"0x1234567890123456" , "0x5634129078563412" , "0x6a2c48091e6a2c48" ,
813
846
"[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]" ,
@@ -830,15 +863,15 @@ impl u128 {
830
863
#[ cfg( target_pointer_width = "16" ) ]
831
864
#[ lang = "usize" ]
832
865
impl usize {
833
- widening_impl ! { usize , u32 , 16 }
866
+ widening_impl ! { usize , u32 , 16 , unsigned }
834
867
uint_impl ! { usize , u16 , isize , 16 , 65535 , 4 , "0xa003" , "0x3a" , "0x1234" , "0x3412" , "0x2c48" ,
835
868
"[0x34, 0x12]" , "[0x12, 0x34]" ,
836
869
usize_isize_to_xe_bytes_doc!( ) , usize_isize_from_xe_bytes_doc!( ) }
837
870
}
838
871
#[ cfg( target_pointer_width = "32" ) ]
839
872
#[ lang = "usize" ]
840
873
impl usize {
841
- widening_impl ! { usize , u64 , 32 }
874
+ widening_impl ! { usize , u64 , 32 , unsigned }
842
875
uint_impl ! { usize , u32 , isize , 32 , 4294967295 , 8 , "0x10000b3" , "0xb301" , "0x12345678" ,
843
876
"0x78563412" , "0x1e6a2c48" , "[0x78, 0x56, 0x34, 0x12]" , "[0x12, 0x34, 0x56, 0x78]" ,
844
877
usize_isize_to_xe_bytes_doc!( ) , usize_isize_from_xe_bytes_doc!( ) }
@@ -847,7 +880,7 @@ impl usize {
847
880
#[ cfg( target_pointer_width = "64" ) ]
848
881
#[ lang = "usize" ]
849
882
impl usize {
850
- widening_impl ! { usize , u128 , 64 }
883
+ widening_impl ! { usize , u128 , 64 , unsigned }
851
884
uint_impl ! { usize , u64 , isize , 64 , 18446744073709551615 , 12 , "0xaa00000000006e1" , "0x6e10aa" ,
852
885
"0x1234567890123456" , "0x5634129078563412" , "0x6a2c48091e6a2c48" ,
853
886
"[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]" ,
0 commit comments