]> git.lizzy.rs Git - rust.git/blob - src/libcore/num/dec2flt/mod.rs
8bde41fefd5b162c479e1b1ece2cae6275fb8187
[rust.git] / src / libcore / num / dec2flt / mod.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Converting decimal strings into IEEE 754 binary floating point numbers.
12 //!
13 //! # Problem statement
14 //!
15 //! We are given a decimal string such as `12.34e56`. This string consists of integral (`12`),
16 //! fractional (`45`), and exponent (`56`) parts. All parts are optional and interpreted as zero
17 //! when missing.
18 //!
19 //! We seek the IEEE 754 floating point number that is closest to the exact value of the decimal
20 //! string. It is well-known that many decimal strings do not have terminating representations in
21 //! base two, so we round to 0.5 units in the last place (in other words, as well as possible).
22 //! Ties, decimal values exactly half-way between two consecutive floats, are resolved with the
23 //! half-to-even strategy, also known as banker's rounding.
24 //!
25 //! Needless to say, this is quite hard, both in terms of implementation complexity and in terms
26 //! of CPU cycles taken.
27 //!
28 //! # Implementation
29 //!
30 //! First, we ignore signs. Or rather, we remove it at the very beginning of the conversion
31 //! process and re-apply it at the very end. This is correct in all edge cases since IEEE
32 //! floats are symmetric around zero, negating one simply flips the first bit.
33 //!
34 //! Then we remove the decimal point by adjusting the exponent: Conceptually, `12.34e56` turns
35 //! into `1234e54`, which we describe with a positive integer `f = 1234` and an integer `e = 54`.
36 //! The `(f, e)` representation is used by almost all code past the parsing stage.
37 //!
38 //! We then try a long chain of progressively more general and expensive special cases using
39 //! machine-sized integers and small, fixed-sized floating point numbers (first `f32`/`f64`, then
40 //! a type with 64 bit significand, `Fp`). When all these fail, we bite the bullet and resort to a
41 //! simple but very slow algorithm that involved computing `f * 10^e` fully and doing an iterative
42 //! search for the best approximation.
43 //!
44 //! Primarily, this module and its children implement the algorithms described in:
45 //! "How to Read Floating Point Numbers Accurately" by William D. Clinger,
46 //! available online: http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.45.4152
47 //!
48 //! In addition, there are numerous helper functions that are used in the paper but not available
49 //! in Rust (or at least in core). Our version is additionally complicated by the need to handle
50 //! overflow and underflow and the desire to handle subnormal numbers.  Bellerophon and
51 //! Algorithm R have trouble with overflow, subnormals, and underflow. We conservatively switch to
52 //! Algorithm M (with the modifications described in section 8 of the paper) well before the
53 //! inputs get into the critical region.
54 //!
55 //! Another aspect that needs attention is the ``RawFloat`` trait by which almost all functions
56 //! are parametrized. One might think that it's enough to parse to `f64` and cast the result to
57 //! `f32`. Unfortunately this is not the world we live in, and this has nothing to do with using
58 //! base two or half-to-even rounding.
59 //!
60 //! Consider for example two types `d2` and `d4` representing a decimal type with two decimal
61 //! digits and four decimal digits each and take "0.01499" as input. Let's use half-up rounding.
62 //! Going directly to two decimal digits gives `0.01`, but if we round to four digits first,
63 //! we get `0.0150`, which is then rounded up to `0.02`. The same principle applies to other
64 //! operations as well, if you want 0.5 ULP accuracy you need to do *everything* in full precision
65 //! and round *exactly once, at the end*, by considering all truncated bits at once.
66 //!
67 //! FIXME Although some code duplication is necessary, perhaps parts of the code could be shuffled
68 //! around such that less code is duplicated. Large parts of the algorithms are independent of the
69 //! float type to output, or only needs access to a few constants, which could be passed in as
70 //! parameters.
71 //!
72 //! # Other
73 //!
74 //! The conversion should *never* panic. There are assertions and explicit panics in the code,
75 //! but they should never be triggered and only serve as internal sanity checks. Any panics should
76 //! be considered a bug.
77 //!
78 //! There are unit tests but they are woefully inadequate at ensuring correctness, they only cover
79 //! a small percentage of possible errors. Far more extensive tests are located in the directory
80 //! `src/etc/test-float-parse` as a Python script.
81 //!
82 //! A note on integer overflow: Many parts of this file perform arithmetic with the decimal
83 //! exponent `e`. Primarily, we shift the decimal point around: Before the first decimal digit,
84 //! after the last decimal digit, and so on. This could overflow if done carelessly. We rely on
85 //! the parsing submodule to only hand out sufficiently small exponents, where "sufficient" means
86 //! "such that the exponent +/- the number of decimal digits fits into a 64 bit integer".
87 //! Larger exponents are accepted, but we don't do arithmetic with them, they are immediately
88 //! turned into {positive,negative} {zero,infinity}.
89
90 #![doc(hidden)]
91 #![unstable(feature = "dec2flt",
92             reason = "internal routines only exposed for testing",
93             issue = "0")]
94
95 use fmt;
96 use str::FromStr;
97
98 use self::parse::{parse_decimal, Decimal, Sign, ParseResult};
99 use self::num::digits_to_big;
100 use self::rawfp::RawFloat;
101
102 mod algorithm;
103 mod table;
104 mod num;
105 // These two have their own tests.
106 pub mod rawfp;
107 pub mod parse;
108
109 macro_rules! from_str_float_impl {
110     ($t:ty) => {
111         #[stable(feature = "rust1", since = "1.0.0")]
112         impl FromStr for $t {
113             type Err = ParseFloatError;
114
115             /// Converts a string in base 10 to a float.
116             /// Accepts an optional decimal exponent.
117             ///
118             /// This function accepts strings such as
119             ///
120             /// * '3.14'
121             /// * '-3.14'
122             /// * '2.5E10', or equivalently, '2.5e10'
123             /// * '2.5E-10'
124             /// * '5.'
125             /// * '.5', or, equivalently, '0.5'
126             /// * 'inf', '-inf', 'NaN'
127             ///
128             /// Leading and trailing whitespace represent an error.
129             ///
130             /// # Grammar
131             ///
132             /// [EBNF]: https://www.w3.org/TR/REC-xml/#sec-notation
133             ///
134             /// All strings that adhere to the following [EBNF] grammar
135             /// will result in an [`Ok`] being returned:
136             ///
137             /// ```txt
138             /// Float  ::= Sign? ( 'inf' | 'NaN' | Number )
139             /// Number ::= ( Digit+ |
140             ///              Digit+ '.' Digit* |
141             ///              Digit* '.' Digit+ ) Exp?
142             /// Exp    ::= [eE] Sign? Digit+
143             /// Sign   ::= [+-]
144             /// Digit  ::= [0-9]
145             /// ```
146             ///
147             /// # Known bugs
148             ///
149             /// In some situations, some strings that should create a valid float
150             /// instead return an error. See [issue #31407] for details.
151             ///
152             /// [issue #31407]: https://github.com/rust-lang/rust/issues/31407
153             ///
154             /// # Arguments
155             ///
156             /// * src - A string
157             ///
158             /// # Return value
159             ///
160             /// `Err(ParseFloatError)` if the string did not represent a valid
161             /// number.  Otherwise, `Ok(n)` where `n` is the floating-point
162             /// number represented by `src`.
163             #[inline]
164             fn from_str(src: &str) -> Result<Self, ParseFloatError> {
165                 dec2flt(src)
166             }
167         }
168     }
169 }
170 from_str_float_impl!(f32);
171 from_str_float_impl!(f64);
172
173 /// An error which can be returned when parsing a float.
174 ///
175 /// This error is used as the error type for the [`FromStr`] implementation
176 /// for [`f32`] and [`f64`].
177 ///
178 /// [`FromStr`]: ../str/trait.FromStr.html
179 /// [`f32`]: ../../std/primitive.f32.html
180 /// [`f64`]: ../../std/primitive.f64.html
181 #[derive(Debug, Clone, PartialEq, Eq)]
182 #[stable(feature = "rust1", since = "1.0.0")]
183 pub struct ParseFloatError {
184     kind: FloatErrorKind
185 }
186
187 #[derive(Debug, Clone, PartialEq, Eq)]
188 enum FloatErrorKind {
189     Empty,
190     Invalid,
191 }
192
193 impl ParseFloatError {
194     #[unstable(feature = "int_error_internals",
195                reason = "available through Error trait and this method should \
196                          not be exposed publicly",
197                issue = "0")]
198     #[doc(hidden)]
199     pub fn __description(&self) -> &str {
200         match self.kind {
201             FloatErrorKind::Empty => "cannot parse float from empty string",
202             FloatErrorKind::Invalid => "invalid float literal",
203         }
204     }
205 }
206
207 #[stable(feature = "rust1", since = "1.0.0")]
208 impl fmt::Display for ParseFloatError {
209     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
210         self.__description().fmt(f)
211     }
212 }
213
214 fn pfe_empty() -> ParseFloatError {
215     ParseFloatError { kind: FloatErrorKind::Empty }
216 }
217
218 fn pfe_invalid() -> ParseFloatError {
219     ParseFloatError { kind: FloatErrorKind::Invalid }
220 }
221
222 /// Split decimal string into sign and the rest, without inspecting or validating the rest.
223 fn extract_sign(s: &str) -> (Sign, &str) {
224     match s.as_bytes()[0] {
225         b'+' => (Sign::Positive, &s[1..]),
226         b'-' => (Sign::Negative, &s[1..]),
227         // If the string is invalid, we never use the sign, so we don't need to validate here.
228         _ => (Sign::Positive, s),
229     }
230 }
231
232 /// Convert a decimal string into a floating point number.
233 fn dec2flt<T: RawFloat>(s: &str) -> Result<T, ParseFloatError> {
234     if s.is_empty() {
235         return Err(pfe_empty())
236     }
237     let (sign, s) = extract_sign(s);
238     let flt = match parse_decimal(s) {
239         ParseResult::Valid(decimal) => convert(decimal)?,
240         ParseResult::ShortcutToInf => T::INFINITY,
241         ParseResult::ShortcutToZero => T::ZERO,
242         ParseResult::Invalid => match s {
243             "inf" => T::INFINITY,
244             "NaN" => T::NAN,
245             _ => { return Err(pfe_invalid()); }
246         }
247     };
248
249     match sign {
250         Sign::Positive => Ok(flt),
251         Sign::Negative => Ok(-flt),
252     }
253 }
254
255 /// The main workhorse for the decimal-to-float conversion: Orchestrate all the preprocessing
256 /// and figure out which algorithm should do the actual conversion.
257 fn convert<T: RawFloat>(mut decimal: Decimal) -> Result<T, ParseFloatError> {
258     simplify(&mut decimal);
259     if let Some(x) = trivial_cases(&decimal) {
260         return Ok(x);
261     }
262     // Remove/shift out the decimal point.
263     let e = decimal.exp - decimal.fractional.len() as i64;
264     if let Some(x) = algorithm::fast_path(decimal.integral, decimal.fractional, e) {
265         return Ok(x);
266     }
267     // Big32x40 is limited to 1280 bits, which translates to about 385 decimal digits.
268     // If we exceed this, we'll crash, so we error out before getting too close (within 10^10).
269     let upper_bound = bound_intermediate_digits(&decimal, e);
270     if upper_bound > 375 {
271         return Err(pfe_invalid());
272     }
273     let f = digits_to_big(decimal.integral, decimal.fractional);
274
275     // Now the exponent certainly fits in 16 bit, which is used throughout the main algorithms.
276     let e = e as i16;
277     // FIXME These bounds are rather conservative. A more careful analysis of the failure modes
278     // of Bellerophon could allow using it in more cases for a massive speed up.
279     let exponent_in_range = table::MIN_E <= e && e <= table::MAX_E;
280     let value_in_range = upper_bound <= T::MAX_NORMAL_DIGITS as u64;
281     if exponent_in_range && value_in_range {
282         Ok(algorithm::bellerophon(&f, e))
283     } else {
284         Ok(algorithm::algorithm_m(&f, e))
285     }
286 }
287
288 // As written, this optimizes badly (see #27130, though it refers to an old version of the code).
289 // `inline(always)` is a workaround for that. There are only two call sites overall and it doesn't
290 // make code size worse.
291
292 /// Strip zeros where possible, even when this requires changing the exponent
293 #[inline(always)]
294 fn simplify(decimal: &mut Decimal) {
295     let is_zero = &|&&d: &&u8| -> bool { d == b'0' };
296     // Trimming these zeros does not change anything but may enable the fast path (< 15 digits).
297     let leading_zeros = decimal.integral.iter().take_while(is_zero).count();
298     decimal.integral = &decimal.integral[leading_zeros..];
299     let trailing_zeros = decimal.fractional.iter().rev().take_while(is_zero).count();
300     let end = decimal.fractional.len() - trailing_zeros;
301     decimal.fractional = &decimal.fractional[..end];
302     // Simplify numbers of the form 0.0...x and x...0.0, adjusting the exponent accordingly.
303     // This may not always be a win (possibly pushes some numbers out of the fast path), but it
304     // simplifies other parts significantly (notably, approximating the magnitude of the value).
305     if decimal.integral.is_empty() {
306         let leading_zeros = decimal.fractional.iter().take_while(is_zero).count();
307         decimal.fractional = &decimal.fractional[leading_zeros..];
308         decimal.exp -= leading_zeros as i64;
309     } else if decimal.fractional.is_empty() {
310         let trailing_zeros = decimal.integral.iter().rev().take_while(is_zero).count();
311         let end = decimal.integral.len() - trailing_zeros;
312         decimal.integral = &decimal.integral[..end];
313         decimal.exp += trailing_zeros as i64;
314     }
315 }
316
317 /// Quick and dirty upper bound on the size (log10) of the largest value that Algorithm R and
318 /// Algorithm M will compute while working on the given decimal.
319 fn bound_intermediate_digits(decimal: &Decimal, e: i64) -> u64 {
320     // We don't need to worry too much about overflow here thanks to trivial_cases() and the
321     // parser, which filter out the most extreme inputs for us.
322     let f_len: u64 = decimal.integral.len() as u64 + decimal.fractional.len() as u64;
323     if e >= 0 {
324         // In the case e >= 0, both algorithms compute about `f * 10^e`. Algorithm R proceeds to
325         // do some complicated calculations with this but we can ignore that for the upper bound
326         // because it also reduces the fraction beforehand, so we have plenty of buffer there.
327         f_len + (e as u64)
328     } else {
329         // If e < 0, Algorithm R does roughly the same thing, but Algorithm M differs:
330         // It tries to find a positive number k such that `f << k / 10^e` is an in-range
331         // significand. This will result in about `2^53 * f * 10^e` < `10^17 * f * 10^e`.
332         // One input that triggers this is 0.33...33 (375 x 3).
333         f_len + (e.abs() as u64) + 17
334     }
335 }
336
337 /// Detect obvious overflows and underflows without even looking at the decimal digits.
338 fn trivial_cases<T: RawFloat>(decimal: &Decimal) -> Option<T> {
339     // There were zeros but they were stripped by simplify()
340     if decimal.integral.is_empty() && decimal.fractional.is_empty() {
341         return Some(T::ZERO);
342     }
343     // This is a crude approximation of ceil(log10(the real value)). We don't need to worry too
344     // much about overflow here because the input length is tiny (at least compared to 2^64) and
345     // the parser already handles exponents whose absolute value is greater than 10^18
346     // (which is still 10^19 short of 2^64).
347     let max_place = decimal.exp + decimal.integral.len() as i64;
348     if max_place > T::INF_CUTOFF {
349         return Some(T::INFINITY);
350     } else if max_place < T::ZERO_CUTOFF {
351         return Some(T::ZERO);
352     }
353     None
354 }