Skip to content

Commit edf2e37

Browse files
committed
Use unsigned_abs throughout repository
1 parent 8539425 commit edf2e37

File tree

5 files changed

+6
-15
lines changed

5 files changed

+6
-15
lines changed

compiler/rustc_middle/src/mir/interpret/mod.rs

-9
Original file line numberDiff line numberDiff line change
@@ -588,12 +588,3 @@ pub fn read_target_uint(endianness: Endian, mut source: &[u8]) -> Result<u128, i
588588
debug_assert!(source.len() == 0); // We should have consumed the source buffer.
589589
uint
590590
}
591-
592-
/// Computes the unsigned absolute value without wrapping or panicking.
593-
#[inline]
594-
pub fn uabs(value: i64) -> u64 {
595-
// The only tricky part here is if value == i64::MIN. In that case,
596-
// wrapping_abs() returns i64::MIN == -2^63. Casting this value to a u64
597-
// gives 2^63, the correct value.
598-
value.wrapping_abs() as u64
599-
}

compiler/rustc_middle/src/mir/interpret/pointer.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use super::{uabs, AllocId, InterpResult};
1+
use super::{AllocId, InterpResult};
22

33
use rustc_macros::HashStable;
44
use rustc_target::abi::{HasDataLayout, Size};
@@ -57,7 +57,7 @@ pub trait PointerArithmetic: HasDataLayout {
5757
#[inline]
5858
fn overflowing_signed_offset(&self, val: u64, i: i64) -> (u64, bool) {
5959
// We need to make sure that i fits in a machine isize.
60-
let n = uabs(i);
60+
let n = i.unsigned_abs();
6161
if i >= 0 {
6262
let (val, over) = self.overflowing_offset(val, n);
6363
(val, over || i > self.machine_isize_max())

compiler/rustc_mir/src/interpret/intrinsics.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::convert::TryFrom;
77
use rustc_hir::def_id::DefId;
88
use rustc_middle::mir::{
99
self,
10-
interpret::{uabs, ConstValue, GlobalId, InterpResult, Scalar},
10+
interpret::{ConstValue, GlobalId, InterpResult, Scalar},
1111
BinOp,
1212
};
1313
use rustc_middle::ty;
@@ -542,7 +542,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
542542
// memory between these pointers must be accessible. Note that we do not require the
543543
// pointers to be properly aligned (unlike a read/write operation).
544544
let min_ptr = if offset_bytes >= 0 { ptr } else { offset_ptr };
545-
let size: u64 = uabs(offset_bytes);
545+
let size = offset_bytes.unsigned_abs();
546546
// This call handles checking for integer/NULL pointers.
547547
self.memory.check_ptr_access_align(
548548
min_ptr,

compiler/rustc_symbol_mangling/src/v0.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ impl Printer<'tcx> for SymbolMangler<'tcx> {
531531
if val < 0 {
532532
neg = true;
533533
}
534-
Some(val.wrapping_abs() as u128)
534+
Some(val.unsigned_abs())
535535
})
536536
}
537537
_ => {

library/core/src/num/dec2flt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ fn bound_intermediate_digits(decimal: &Decimal<'_>, e: i64) -> u64 {
332332
// It tries to find a positive number k such that `f << k / 10^e` is an in-range
333333
// significand. This will result in about `2^53 * f * 10^e` < `10^17 * f * 10^e`.
334334
// One input that triggers this is 0.33...33 (375 x 3).
335-
f_len + (e.abs() as u64) + 17
335+
f_len + e.unsigned_abs() + 17
336336
}
337337
}
338338

0 commit comments

Comments
 (0)