| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #include <gmp.h> |
| #include "gmp-impl.h" |
| #include "longlong.h" |
| |
| #ifndef UMUL_TIME |
| #define UMUL_TIME 1 |
| #endif |
| |
| #ifndef UDIV_TIME |
| #define UDIV_TIME UMUL_TIME |
| #endif |
| |
| |
| |
| |
| mp_limb_t |
| mpn_mod_1 (mp_srcptr dividend_ptr, mp_size_t dividend_size, |
| mp_limb_t divisor_limb) |
| { |
| mp_size_t i; |
| mp_limb_t n1, n0, r; |
| mp_limb_t dummy __attribute__ ((unused)); |
| |
| |
| if (dividend_size == 0) |
| return 0; |
| |
| |
| |
| |
| |
| |
| |
| |
| if (UDIV_TIME > (2 * UMUL_TIME + 6) |
| && (UDIV_TIME - (2 * UMUL_TIME + 6)) * dividend_size > UDIV_TIME) |
| { |
| int normalization_steps; |
| |
| count_leading_zeros (normalization_steps, divisor_limb); |
| if (normalization_steps != 0) |
| { |
| mp_limb_t divisor_limb_inverted; |
| |
| divisor_limb <<= normalization_steps; |
| |
| |
| |
| |
| |
| |
| if (divisor_limb << 1 == 0) |
| divisor_limb_inverted = ~(mp_limb_t) 0; |
| else |
| udiv_qrnnd (divisor_limb_inverted, dummy, |
| -divisor_limb, 0, divisor_limb); |
| |
| n1 = dividend_ptr[dividend_size - 1]; |
| r = n1 >> (BITS_PER_MP_LIMB - normalization_steps); |
| |
| |
| |
| |
| |
| |
| |
| for (i = dividend_size - 2; i >= 0; i--) |
| { |
| n0 = dividend_ptr[i]; |
| udiv_qrnnd_preinv (dummy, r, r, |
| ((n1 << normalization_steps) |
| | (n0 >> (BITS_PER_MP_LIMB - normalization_steps))), |
| divisor_limb, divisor_limb_inverted); |
| n1 = n0; |
| } |
| udiv_qrnnd_preinv (dummy, r, r, |
| n1 << normalization_steps, |
| divisor_limb, divisor_limb_inverted); |
| return r >> normalization_steps; |
| } |
| else |
| { |
| mp_limb_t divisor_limb_inverted; |
| |
| |
| |
| |
| |
| |
| if (divisor_limb << 1 == 0) |
| divisor_limb_inverted = ~(mp_limb_t) 0; |
| else |
| udiv_qrnnd (divisor_limb_inverted, dummy, |
| -divisor_limb, 0, divisor_limb); |
| |
| i = dividend_size - 1; |
| r = dividend_ptr[i]; |
| |
| if (r >= divisor_limb) |
| r = 0; |
| else |
| i--; |
| |
| for (; i >= 0; i--) |
| { |
| n0 = dividend_ptr[i]; |
| udiv_qrnnd_preinv (dummy, r, r, |
| n0, divisor_limb, divisor_limb_inverted); |
| } |
| return r; |
| } |
| } |
| else |
| { |
| if (UDIV_NEEDS_NORMALIZATION) |
| { |
| int normalization_steps; |
| |
| count_leading_zeros (normalization_steps, divisor_limb); |
| if (normalization_steps != 0) |
| { |
| divisor_limb <<= normalization_steps; |
| |
| n1 = dividend_ptr[dividend_size - 1]; |
| r = n1 >> (BITS_PER_MP_LIMB - normalization_steps); |
| |
| |
| |
| |
| |
| |
| |
| for (i = dividend_size - 2; i >= 0; i--) |
| { |
| n0 = dividend_ptr[i]; |
| udiv_qrnnd (dummy, r, r, |
| ((n1 << normalization_steps) |
| | (n0 >> (BITS_PER_MP_LIMB - normalization_steps))), |
| divisor_limb); |
| n1 = n0; |
| } |
| udiv_qrnnd (dummy, r, r, |
| n1 << normalization_steps, |
| divisor_limb); |
| return r >> normalization_steps; |
| } |
| } |
| |
| |
| |
| i = dividend_size - 1; |
| r = dividend_ptr[i]; |
| |
| if (r >= divisor_limb) |
| r = 0; |
| else |
| i--; |
| |
| for (; i >= 0; i--) |
| { |
| n0 = dividend_ptr[i]; |
| udiv_qrnnd (dummy, r, r, n0, divisor_limb); |
| } |
| return r; |
| } |
| } |