1// Translated from C to Rust. The original C code can be found at
2// https://github.com/ulfjack/ryu and carries the following license:
3//
4// Copyright 2018 Ulf Adams
5//
6// The contents of this file may be used under the terms of the Apache License,
7// Version 2.0.
8//
9// (See accompanying file LICENSE-Apache or copy at
10// http://www.apache.org/licenses/LICENSE-2.0)
11//
12// Alternatively, the contents of this file may be used under the terms of
13// the Boost Software License, Version 1.0.
14// (See accompanying file LICENSE-Boost or copy at
15// https://www.boost.org/LICENSE_1_0.txt)
16//
17// Unless required by applicable law or agreed to in writing, this software
18// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19// KIND, either express or implied.
2021use crate::d2s;
2223pub const FLOAT_POW5_INV_BITCOUNT: i32 = d2s::DOUBLE_POW5_INV_BITCOUNT - 64;
24pub const FLOAT_POW5_BITCOUNT: i32 = d2s::DOUBLE_POW5_BITCOUNT - 64;
2526#[cfg_attr(feature = "no-panic", inline)]
27fn pow5factor_32(mut value: u32) -> u32 {
28let mut count = 0u32;
29loop {
30if true {
if !(value != 0) {
::core::panicking::panic("assertion failed: value != 0")
};
};debug_assert!(value != 0);
31let q = value / 5;
32let r = value % 5;
33if r != 0 {
34break;
35 }
36value = q;
37count += 1;
38 }
39count40}
4142// Returns true if value is divisible by 5^p.
43#[cfg_attr(feature = "no-panic", inline)]
44pub fn multiple_of_power_of_5_32(value: u32, p: u32) -> bool {
45pow5factor_32(value) >= p46}
4748// Returns true if value is divisible by 2^p.
49#[cfg_attr(feature = "no-panic", inline)]
50pub fn multiple_of_power_of_2_32(value: u32, p: u32) -> bool {
51// __builtin_ctz doesn't appear to be faster here.
52(value & ((1u32 << p) - 1)) == 0
53}
5455// It seems to be slightly faster to avoid uint128_t here, although the
56// generated code for uint128_t looks slightly nicer.
57#[cfg_attr(feature = "no-panic", inline)]
58fn mul_shift_32(m: u32, factor: u64, shift: i32) -> u32 {
59if true {
if !(shift > 32) {
::core::panicking::panic("assertion failed: shift > 32")
};
};debug_assert!(shift > 32);
6061// The casts here help MSVC to avoid calls to the __allmul library
62 // function.
63let factor_lo = factoras u32;
64let factor_hi = (factor >> 32) as u32;
65let bits0 = mas u64 * factor_loas u64;
66let bits1 = mas u64 * factor_hias u64;
6768let sum = (bits0 >> 32) + bits1;
69let shifted_sum = sum >> (shift - 32);
70if true {
if !(shifted_sum <= u32::max_value() as u64) {
::core::panicking::panic("assertion failed: shifted_sum <= u32::max_value() as u64")
};
};debug_assert!(shifted_sum <= u32::max_value() as u64);
71shifted_sumas u3272}
7374#[cfg_attr(feature = "no-panic", inline)]
75pub fn mul_pow5_inv_div_pow2(m: u32, q: u32, j: i32) -> u32 {
76#[cfg(feature = "small")]
77{
78// The inverse multipliers are defined as [2^x / 5^y] + 1; the upper 64
79 // bits from the double lookup table are the correct bits for [2^x /
80 // 5^y], so we have to add 1 here. Note that we rely on the fact that
81 // the added 1 that's already stored in the table never overflows into
82 // the upper 64 bits.
83let pow5 = unsafe { d2s::compute_inv_pow5(q) };
84 mul_shift_32(m, pow5.1 + 1, j)
85 }
8687#[cfg(not(feature = "small"))]
88{
89if true {
if !(q < d2s::DOUBLE_POW5_INV_SPLIT.len() as u32) {
::core::panicking::panic("assertion failed: q < d2s::DOUBLE_POW5_INV_SPLIT.len() as u32")
};
};debug_assert!(q < d2s::DOUBLE_POW5_INV_SPLIT.len() as u32);
90unsafe {
91mul_shift_32(
92m,
93 d2s::DOUBLE_POW5_INV_SPLIT.get_unchecked(qas usize).1 + 1,
94j,
95 )
96 }
97 }
98}
99100#[cfg_attr(feature = "no-panic", inline)]
101pub fn mul_pow5_div_pow2(m: u32, i: u32, j: i32) -> u32 {
102#[cfg(feature = "small")]
103{
104let pow5 = unsafe { d2s::compute_pow5(i) };
105 mul_shift_32(m, pow5.1, j)
106 }
107108#[cfg(not(feature = "small"))]
109{
110if true {
if !(i < d2s::DOUBLE_POW5_SPLIT.len() as u32) {
::core::panicking::panic("assertion failed: i < d2s::DOUBLE_POW5_SPLIT.len() as u32")
};
};debug_assert!(i < d2s::DOUBLE_POW5_SPLIT.len() as u32);
111unsafe { mul_shift_32(m, d2s::DOUBLE_POW5_SPLIT.get_unchecked(ias usize).1, j) }
112 }
113}