1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
use float::*;
use float::convert::*;
use float::rounding::*;
use util::*;
use super::alias::*;
use super::correct::FloatSlice;
use super::exponent::*;
use super::math::*;
pub(super) const LARGE_POWER_MAX: usize = 1 << 15;
cfg_if! {
if #[cfg(feature = "radix")] {
use lib::Vec;
type DataType = Vec<Limb>;
} else {
use stackvector;
#[cfg(limb_width_32)]
type DataType = stackvector::StackVec<[Limb; 128]>;
#[cfg(limb_width_64)]
type DataType = stackvector::StackVec<[Limb; 64]>;
}}
#[derive(Clone, PartialEq, Eq)]
#[cfg_attr(test, derive(Debug))]
pub(super) struct Bigint {
data: DataType,
}
impl Default for Bigint {
fn default() -> Self {
let mut bigint = Bigint { data: DataType::default() };
bigint.data.reserve(20);
bigint
}
}
impl SharedOps for Bigint {
type StorageType = DataType;
#[inline]
fn data<'a>(&'a self) -> &'a Self::StorageType {
&self.data
}
#[inline]
fn data_mut<'a>(&'a mut self) -> &'a mut Self::StorageType {
&mut self.data
}
}
impl SmallOps for Bigint {
}
impl LargeOps for Bigint {
}
pub(super) fn parse_mantissa(slc: FloatSlice, radix: u32, max_digits: usize)
-> Bigint
{
let small_powers = Bigint::small_powers(radix);
let count = slc.mantissa_digits();
let bits = count / integral_binary_factor(radix).as_usize();
let bytes = bits / Limb::BITS;
let step = small_powers.len() - 2;
let base = as_limb(radix);
let max_digits = max_digits - 1;
let mut counter = 0;
let mut value: Limb = 0;
let mut i: usize = 0;
let mut result = Bigint::default();
result.data.reserve(bytes);
let mut iter = slc.mantissa_iter();
while let Some(&digit) = iter.next() {
if counter == step {
result.imul_small(small_powers[counter]);
result.iadd_small(value);
counter = 0;
value = 0;
}
value *= base;
value += as_limb(char_to_digit(digit));
i += 1;
counter += 1;
if i == max_digits {
break;
}
}
if counter != 0 {
result.imul_small(small_powers[counter]);
result.iadd_small(value);
}
if let Some(_) = iter.next() {
result.imul_small(base);
result.iadd_small(1);
}
result
}
fn max_digits_f32(radix: u32) -> Option<usize> {
match radix {
6 => Some(103),
10 => Some(114),
12 => Some(117),
14 => Some(119),
18 => Some(122),
20 => Some(123),
22 => Some(123),
24 => Some(124),
26 => Some(125),
28 => Some(125),
30 => Some(126),
34 => Some(127),
36 => Some(127),
_ => None,
}
}
fn max_digits_f64(radix: u32) -> Option<usize> {
match radix {
6 => Some(682),
10 => Some(769),
12 => Some(792),
14 => Some(808),
18 => Some(832),
20 => Some(840),
22 => Some(848),
24 => Some(854),
26 => Some(859),
28 => Some(864),
30 => Some(868),
34 => Some(876),
36 => Some(879),
_ => None,
}
}
pub(super) fn max_digits<F>(radix: u32)
-> Option<usize>
where F: Float
{
match F::BITS {
32 => max_digits_f32(radix),
64 => max_digits_f64(radix),
_ => unreachable!(),
}
}
macro_rules! nearest_cb {
($m:tt, $is_truncated:ident, $cb:ident) => {
move | f: &mut ExtendedFloat<$m>, shift: i32 | {
let (mut is_above, mut is_halfway) = round_nearest(f, shift);
if is_halfway && $is_truncated {
is_above = true;
is_halfway = false;
}
$cb::<$m>(f, is_above, is_halfway);
}
};
}
#[cfg(feature = "rounding")]
macro_rules! toward_cb {
($m:tt, $is_truncated:ident, $cb:ident) => {
move | f: &mut ExtendedFloat<$m>, shift: i32 | {
let truncated = round_toward(f, shift);
$cb::<$m>(f, $is_truncated | truncated);
}
};
}
#[allow(unused_variables)]
pub(super) fn round_to_native<F>(fp: &mut ExtendedFloat80, is_truncated: bool, kind: RoundingKind)
where F: FloatType
{
type M = u64;
#[inline(always)]
fn round<F, Cb>(fp: &mut ExtendedFloat80, cb: Cb)
where F: FloatRounding<M>,
Cb: FnOnce(&mut ExtendedFloat<M>, i32)
{
fp.round_to_native::<F, _>(cb);
}
#[cfg(feature = "rounding")]
match kind {
RoundingKind::NearestTieEven => round::<F, _>(fp, nearest_cb!(M, is_truncated, tie_even)),
RoundingKind::NearestTieAwayZero => round::<F, _>(fp, nearest_cb!(M, is_truncated, tie_away_zero)),
RoundingKind::Upward => round::<F, _>(fp, toward_cb!(M, is_truncated, upward)),
RoundingKind::Downward => round::<F, _>(fp, toward_cb!(M, is_truncated, downard)),
_ => unreachable!(),
};
#[cfg(not(feature = "rounding"))]
round::<F, _>(fp, nearest_cb!(M, is_truncated, tie_even));
}
#[inline]
pub(super) fn use_bigcomp(radix: u32, count: usize)
-> bool
{
radix.is_odd() && count > LARGE_POWER_MAX
}
#[inline]
pub(super) fn large_atof<F>(slc: FloatSlice, radix: u32, max_digits: usize, exponent: i32, kind: RoundingKind)
-> F
where F: FloatType
{
let mut bigmant = parse_mantissa(slc, radix, max_digits);
bigmant.imul_power(radix, exponent.as_u32());
let (mant, is_truncated) = bigmant.hi64();
let exp = bigmant.bit_length().as_i32() - u64::BITS.as_i32();
let mut fp = ExtendedFloat { mant: mant, exp: exp };
round_to_native::<F>(&mut fp, is_truncated, kind);
into_float(fp)
}