2016-10-11 09:21:11 +08:00
|
|
|
use core::intrinsics;
|
2016-08-18 04:50:24 +08:00
|
|
|
use int::{Int, LargeInt};
|
2016-08-13 16:51:54 +08:00
|
|
|
|
|
|
|
/// Returns `n / d`
|
2016-09-27 04:55:11 +08:00
|
|
|
#[cfg(not(all(feature = "c", target_arch = "arm", not(target_os = "ios"), not(thumbv6m))))]
|
2016-08-13 16:51:54 +08:00
|
|
|
#[cfg_attr(not(test), no_mangle)]
|
|
|
|
pub extern "C" fn __udivsi3(n: u32, d: u32) -> u32 {
|
|
|
|
// Special cases
|
|
|
|
if d == 0 {
|
2016-10-01 06:30:05 +08:00
|
|
|
// NOTE This should be unreachable in safe Rust because the program will panic before
|
|
|
|
// this intrinsic is called
|
|
|
|
unsafe {
|
|
|
|
intrinsics::abort()
|
|
|
|
}
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if n == 0 {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut sr = d.leading_zeros().wrapping_sub(n.leading_zeros());
|
|
|
|
|
|
|
|
// d > n
|
|
|
|
if sr > u32::bits() - 1 {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// d == 1
|
|
|
|
if sr == u32::bits() - 1 {
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
sr += 1;
|
|
|
|
|
|
|
|
// 1 <= sr <= u32::bits() - 1
|
|
|
|
let mut q = n << (u32::bits() - sr);
|
|
|
|
let mut r = n >> sr;
|
|
|
|
|
|
|
|
let mut carry = 0;
|
|
|
|
for _ in 0..sr {
|
|
|
|
// r:q = ((r:q) << 1) | carry
|
|
|
|
r = (r << 1) | (q >> (u32::bits() - 1));
|
|
|
|
q = (q << 1) | carry;
|
|
|
|
|
|
|
|
// carry = 0;
|
|
|
|
// if r > d {
|
|
|
|
// r -= d;
|
|
|
|
// carry = 1;
|
|
|
|
// }
|
|
|
|
|
|
|
|
let s = (d.wrapping_sub(r).wrapping_sub(1)) as i32 >> (u32::bits() - 1);
|
|
|
|
carry = (s & 1) as u32;
|
|
|
|
r -= d & s as u32;
|
|
|
|
}
|
|
|
|
|
|
|
|
(q << 1) | carry
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `n % d`
|
2016-09-27 04:55:11 +08:00
|
|
|
#[cfg(not(all(feature = "c", target_arch = "arm", not(target_os = "ios"))))]
|
2016-08-13 16:51:54 +08:00
|
|
|
#[cfg_attr(not(test), no_mangle)]
|
|
|
|
pub extern "C" fn __umodsi3(n: u32, d: u32) -> u32 {
|
2016-09-27 04:55:11 +08:00
|
|
|
#[cfg(all(feature = "c", target_arch = "arm", not(target_os = "ios")))]
|
|
|
|
extern "C" {
|
|
|
|
fn __udivsi3(n: u32, d: u32) -> u32;
|
|
|
|
}
|
|
|
|
|
2016-10-11 08:45:34 +08:00
|
|
|
let q = match () {
|
|
|
|
#[cfg(all(feature = "c", target_arch = "arm", not(target_os = "ios")))]
|
|
|
|
() => unsafe { __udivsi3(n, d) },
|
|
|
|
#[cfg(not(all(feature = "c", target_arch = "arm", not(target_os = "ios"))))]
|
|
|
|
() => __udivsi3(n, d),
|
|
|
|
};
|
|
|
|
|
|
|
|
n - q * d
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `n / d` and sets `*rem = n % d`
|
2016-09-27 04:55:11 +08:00
|
|
|
#[cfg(not(all(feature = "c", target_arch = "arm", not(target_os = "ios"), not(thumbv6m))))]
|
2016-08-13 16:51:54 +08:00
|
|
|
#[cfg_attr(not(test), no_mangle)]
|
|
|
|
pub extern "C" fn __udivmodsi4(n: u32, d: u32, rem: Option<&mut u32>) -> u32 {
|
2016-09-27 04:55:11 +08:00
|
|
|
#[cfg(all(feature = "c", target_arch = "arm", not(target_os = "ios")))]
|
|
|
|
extern "C" {
|
|
|
|
fn __udivsi3(n: u32, d: u32) -> u32;
|
|
|
|
}
|
|
|
|
|
2016-10-11 08:45:34 +08:00
|
|
|
let q = match () {
|
|
|
|
#[cfg(all(feature = "c", target_arch = "arm", not(target_os = "ios")))]
|
|
|
|
() => unsafe { __udivsi3(n, d) },
|
|
|
|
#[cfg(not(all(feature = "c", target_arch = "arm", not(target_os = "ios"))))]
|
|
|
|
() => __udivsi3(n, d),
|
|
|
|
};
|
2016-08-13 16:51:54 +08:00
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = n - (q * d);
|
|
|
|
}
|
|
|
|
q
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `n / d`
|
|
|
|
#[cfg_attr(not(test), no_mangle)]
|
2016-09-27 04:55:11 +08:00
|
|
|
#[cfg(not(all(feature = "c", target_arch = "x86")))]
|
2016-08-13 16:51:54 +08:00
|
|
|
pub extern "C" fn __udivdi3(n: u64, d: u64) -> u64 {
|
|
|
|
__udivmoddi4(n, d, None)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `n % d`
|
2016-09-27 04:55:11 +08:00
|
|
|
#[cfg(not(all(feature = "c", target_arch = "x86")))]
|
2016-08-13 16:51:54 +08:00
|
|
|
#[cfg_attr(not(test), no_mangle)]
|
|
|
|
pub extern "C" fn __umoddi3(a: u64, b: u64) -> u64 {
|
2016-10-11 09:21:11 +08:00
|
|
|
use core::mem;
|
|
|
|
|
2016-08-13 16:51:54 +08:00
|
|
|
let mut rem = unsafe { mem::uninitialized() };
|
|
|
|
__udivmoddi4(a, b, Some(&mut rem));
|
|
|
|
rem
|
|
|
|
}
|
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
macro_rules! udivmod_inner {
|
|
|
|
($n:expr, $d:expr, $rem:expr, $ty:ty) => {{
|
|
|
|
let (n, d, rem) = ($n, $d, $rem);
|
|
|
|
// NOTE X is unknown, K != 0
|
|
|
|
if n.high() == 0 {
|
|
|
|
if d.high() == 0 {
|
|
|
|
// 0 X
|
|
|
|
// ---
|
|
|
|
// 0 X
|
|
|
|
|
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = <$ty>::from(urem!(n.low(), d.low()));
|
|
|
|
}
|
|
|
|
return <$ty>::from(udiv!(n.low(), d.low()));
|
|
|
|
} else {
|
|
|
|
// 0 X
|
|
|
|
// ---
|
|
|
|
// K X
|
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = n;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
}
|
2016-10-06 09:45:40 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
let mut sr;
|
|
|
|
let mut q;
|
|
|
|
let mut r;
|
|
|
|
|
|
|
|
if d.low() == 0 {
|
|
|
|
if d.high() == 0 {
|
|
|
|
// K X
|
|
|
|
// ---
|
|
|
|
// 0 0
|
|
|
|
// NOTE This should be unreachable in safe Rust because the program will panic before
|
|
|
|
// this intrinsic is called
|
|
|
|
unsafe {
|
|
|
|
intrinsics::abort()
|
|
|
|
}
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
if n.low() == 0 {
|
|
|
|
// K 0
|
|
|
|
// ---
|
|
|
|
// K 0
|
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = <$ty>::from_parts(0, urem!(n.high(), d.high()));
|
|
|
|
}
|
|
|
|
return <$ty>::from(udiv!(n.high(), d.high()));
|
2016-10-01 06:30:05 +08:00
|
|
|
}
|
2016-08-13 16:51:54 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
// K K
|
2016-08-13 16:51:54 +08:00
|
|
|
// ---
|
|
|
|
// K 0
|
2017-01-05 09:22:44 +08:00
|
|
|
|
|
|
|
if d.high().is_power_of_two() {
|
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = <$ty>::from_parts(n.low(), n.high() & (d.high() - 1));
|
|
|
|
}
|
|
|
|
return <$ty>::from(n.high() >> d.high().trailing_zeros());
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
sr = d.high().leading_zeros().wrapping_sub(n.high().leading_zeros());
|
2016-08-13 16:51:54 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
// D > N
|
|
|
|
if sr > <hty!($ty)>::bits() - 2 {
|
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = n;
|
|
|
|
}
|
|
|
|
return 0;
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
sr += 1;
|
2016-08-13 16:51:54 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
// 1 <= sr <= <hty!($ty)>::bits() - 1
|
|
|
|
q = n << (<$ty>::bits() - sr);
|
|
|
|
r = n >> sr;
|
|
|
|
} else if d.high() == 0 {
|
|
|
|
// K X
|
|
|
|
// ---
|
|
|
|
// 0 K
|
|
|
|
if d.low().is_power_of_two() {
|
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = <$ty>::from(n.low() & (d.low() - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.low() == 1 {
|
|
|
|
return n;
|
|
|
|
} else {
|
|
|
|
let sr = d.low().trailing_zeros();
|
|
|
|
return n >> sr;
|
|
|
|
};
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
sr = 1 + <hty!($ty)>::bits() + d.low().leading_zeros() - n.high().leading_zeros();
|
2016-08-13 16:51:54 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
// 2 <= sr <= u64::bits() - 1
|
|
|
|
q = n << (<$ty>::bits() - sr);
|
|
|
|
r = n >> sr;
|
|
|
|
} else {
|
|
|
|
// K X
|
|
|
|
// ---
|
|
|
|
// K K
|
|
|
|
sr = d.high().leading_zeros().wrapping_sub(n.high().leading_zeros());
|
|
|
|
|
|
|
|
// D > N
|
|
|
|
if sr > <hty!($ty)>::bits() - 1 {
|
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = n;
|
|
|
|
}
|
|
|
|
return 0;
|
2016-10-16 19:53:31 +08:00
|
|
|
}
|
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
sr += 1;
|
2016-10-16 19:53:31 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
// 1 <= sr <= <hty!($ty)>::bits()
|
|
|
|
q = n << (<$ty>::bits() - sr);
|
|
|
|
r = n >> sr;
|
|
|
|
}
|
2016-08-13 16:51:54 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
// Not a special case
|
|
|
|
// q and r are initialized with
|
|
|
|
// q = n << (u64::bits() - sr)
|
|
|
|
// r = n >> sr
|
|
|
|
// 1 <= sr <= u64::bits() - 1
|
|
|
|
let mut carry = 0;
|
|
|
|
|
|
|
|
for _ in 0..sr {
|
|
|
|
// r:q = ((r:q) << 1) | carry
|
|
|
|
r = (r << 1) | (q >> (<$ty>::bits() - 1));
|
|
|
|
q = (q << 1) | carry as $ty;
|
|
|
|
|
|
|
|
// carry = 0
|
|
|
|
// if r >= d {
|
|
|
|
// r -= d;
|
|
|
|
// carry = 1;
|
|
|
|
// }
|
|
|
|
let s = (d.wrapping_sub(r).wrapping_sub(1)) as os_ty!($ty) >> (<$ty>::bits() - 1);
|
|
|
|
carry = (s & 1) as hty!($ty);
|
|
|
|
r -= d & s as $ty;
|
|
|
|
}
|
2016-08-13 16:51:54 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
if let Some(rem) = rem {
|
|
|
|
*rem = r;
|
|
|
|
}
|
|
|
|
(q << 1) | carry as $ty
|
|
|
|
}}
|
|
|
|
}
|
2016-08-13 16:51:54 +08:00
|
|
|
|
2017-01-05 09:22:44 +08:00
|
|
|
/// Returns `n / d` and sets `*rem = n % d`
|
|
|
|
#[cfg_attr(not(test), no_mangle)]
|
|
|
|
pub extern "C" fn __udivmoddi4(n: u64, d: u64, rem: Option<&mut u64>) -> u64 {
|
|
|
|
udivmod_inner!(n, d, rem, u64)
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2016-09-22 10:38:06 +08:00
|
|
|
use qc::{U32, U64};
|
|
|
|
|
2016-09-27 13:22:10 +08:00
|
|
|
check! {
|
|
|
|
fn __udivdi3(f: extern fn(u64, u64) -> u64, n: U64, d: U64) -> Option<u64> {
|
2016-08-14 05:58:44 +08:00
|
|
|
let (n, d) = (n.0, d.0);
|
2016-08-13 16:51:54 +08:00
|
|
|
if d == 0 {
|
2016-09-27 13:22:10 +08:00
|
|
|
None
|
2016-08-13 16:51:54 +08:00
|
|
|
} else {
|
2016-09-27 13:22:10 +08:00
|
|
|
Some(f(n, d))
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 13:22:10 +08:00
|
|
|
fn __umoddi3(f: extern fn(u64, u64) -> u64, n: U64, d: U64) -> Option<u64> {
|
2016-08-14 05:58:44 +08:00
|
|
|
let (n, d) = (n.0, d.0);
|
2016-08-13 16:51:54 +08:00
|
|
|
if d == 0 {
|
2016-09-27 13:22:10 +08:00
|
|
|
None
|
2016-08-13 16:51:54 +08:00
|
|
|
} else {
|
2016-09-27 13:22:10 +08:00
|
|
|
Some(f(n, d))
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 13:22:10 +08:00
|
|
|
fn __udivmoddi4(f: extern fn(u64, u64, Option<&mut u64>) -> u64,
|
|
|
|
n: U64,
|
|
|
|
d: U64) -> Option<(u64, u64)> {
|
2016-08-14 05:58:44 +08:00
|
|
|
let (n, d) = (n.0, d.0);
|
2016-08-13 16:51:54 +08:00
|
|
|
if d == 0 {
|
2016-09-27 13:22:10 +08:00
|
|
|
None
|
2016-08-13 16:51:54 +08:00
|
|
|
} else {
|
|
|
|
let mut r = 0;
|
2016-09-27 13:22:10 +08:00
|
|
|
let q = f(n, d, Some(&mut r));
|
|
|
|
Some((q, r))
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 13:22:10 +08:00
|
|
|
fn __udivsi3(f: extern fn(u32, u32) -> u32, n: U32, d: U32) -> Option<u32> {
|
2016-08-14 05:58:44 +08:00
|
|
|
let (n, d) = (n.0, d.0);
|
2016-08-13 16:51:54 +08:00
|
|
|
if d == 0 {
|
2016-09-27 13:22:10 +08:00
|
|
|
None
|
2016-08-13 16:51:54 +08:00
|
|
|
} else {
|
2016-09-27 13:22:10 +08:00
|
|
|
Some(f(n, d))
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 13:22:10 +08:00
|
|
|
fn __umodsi3(f: extern fn(u32, u32) -> u32, n: U32, d: U32) -> Option<u32> {
|
2016-08-14 05:58:44 +08:00
|
|
|
let (n, d) = (n.0, d.0);
|
2016-08-13 16:51:54 +08:00
|
|
|
if d == 0 {
|
2016-09-27 13:22:10 +08:00
|
|
|
None
|
2016-08-13 16:51:54 +08:00
|
|
|
} else {
|
2016-09-27 13:22:10 +08:00
|
|
|
Some(f(n, d))
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 13:22:10 +08:00
|
|
|
fn __udivmodsi4(f: extern fn(u32, u32, Option<&mut u32>) -> u32,
|
|
|
|
n: U32,
|
|
|
|
d: U32) -> Option<(u32, u32)> {
|
2016-08-14 05:58:44 +08:00
|
|
|
let (n, d) = (n.0, d.0);
|
2016-08-13 16:51:54 +08:00
|
|
|
if d == 0 {
|
2016-09-27 13:22:10 +08:00
|
|
|
None
|
2016-08-13 16:51:54 +08:00
|
|
|
} else {
|
|
|
|
let mut r = 0;
|
2016-09-27 13:22:10 +08:00
|
|
|
let q = f(n, d, Some(&mut r));
|
|
|
|
Some((q, r))
|
2016-08-13 16:51:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|