Skip to content

Commit

Permalink
Use widening_mul
Browse files Browse the repository at this point in the history
  • Loading branch information
TDecking authored and gitbot committed Feb 20, 2025
1 parent 428b7c7 commit bc61def
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions core/src/fmt/num.rs
Original file line number Diff line number Diff line change
Expand Up @@ -733,28 +733,9 @@ fn udiv_1e19(n: u128) -> (u128, u64) {
let quot = if n < 1 << 83 {
((n >> 19) as u64 / (DIV >> 19)) as u128
} else {
u128_mulhi(n, FACTOR) >> 62
n.widening_mul(FACTOR).1 >> 62
};

let rem = (n - quot * DIV as u128) as u64;
(quot, rem)
}

/// Multiply unsigned 128 bit integers, return upper 128 bits of the result
#[inline]
fn u128_mulhi(x: u128, y: u128) -> u128 {
let x_lo = x as u64;
let x_hi = (x >> 64) as u64;
let y_lo = y as u64;
let y_hi = (y >> 64) as u64;

// handle possibility of overflow
let carry = (x_lo as u128 * y_lo as u128) >> 64;
let m = x_lo as u128 * y_hi as u128 + carry;
let high1 = m >> 64;

let m_lo = m as u64;
let high2 = (x_hi as u128 * y_lo as u128 + m_lo as u128) >> 64;

x_hi as u128 * y_hi as u128 + high1 + high2
}

0 comments on commit bc61def

Please sign in to comment.