]> git.lizzy.rs Git - rust.git/blob - src/librustc_apfloat/lib.rs
Rollup merge of #57884 - GuillaumeGomez:update-minifier-array, r=QuietMisdreavus
[rust.git] / src / librustc_apfloat / lib.rs
1 //! Port of LLVM's APFloat software floating-point implementation from the
2 //! following C++ sources (please update commit hash when backporting):
3 //! <https://github.com/llvm-mirror/llvm/tree/23efab2bbd424ed13495a420ad8641cb2c6c28f9>
4 //!
5 //! * `include/llvm/ADT/APFloat.h` -> `Float` and `FloatConvert` traits
6 //! * `lib/Support/APFloat.cpp` -> `ieee` and `ppc` modules
7 //! * `unittests/ADT/APFloatTest.cpp` -> `tests` directory
8 //!
9 //! The port contains no unsafe code, global state, or side-effects in general,
10 //! and the only allocations are in the conversion to/from decimal strings.
11 //!
12 //! Most of the API and the testcases are intact in some form or another,
13 //! with some ergonomic changes, such as idiomatic short names, returning
14 //! new values instead of mutating the receiver, and having separate method
15 //! variants that take a non-default rounding mode (with the suffix `_r`).
16 //! Comments have been preserved where possible, only slightly adapted.
17 //!
18 //! Instead of keeping a pointer to a configuration struct and inspecting it
19 //! dynamically on every operation, types (e.g., `ieee::Double`), traits
20 //! (e.g., `ieee::Semantics`) and associated constants are employed for
21 //! increased type safety and performance.
22 //!
23 //! On-heap bigints are replaced everywhere (except in decimal conversion),
24 //! with short arrays of `type Limb = u128` elements (instead of `u64`),
25 //! This allows fitting the largest supported significands in one integer
26 //! (`ieee::Quad` and `ppc::Fallback` use slightly less than 128 bits).
27 //! All of the functions in the `ieee::sig` module operate on slices.
28 //!
29 //! # Note
30 //!
31 //! This API is completely unstable and subject to change.
32
33 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
34       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
35       html_root_url = "https://doc.rust-lang.org/nightly/")]
36 #![forbid(unsafe_code)]
37 #![deny(rust_2018_idioms)]
38
39 #![feature(try_from)]
40 // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
41 #[allow(unused_extern_crates)]
42 extern crate rustc_cratesio_shim;
43
44 use std::cmp::Ordering;
45 use std::fmt;
46 use std::ops::{Neg, Add, Sub, Mul, Div, Rem};
47 use std::ops::{AddAssign, SubAssign, MulAssign, DivAssign, RemAssign};
48 use std::str::FromStr;
49
50 bitflags::bitflags! {
51     /// IEEE-754R 7: Default exception handling.
52     ///
53     /// UNDERFLOW or OVERFLOW are always returned or-ed with INEXACT.
54     #[must_use]
55     pub struct Status: u8 {
56         const OK = 0x00;
57         const INVALID_OP = 0x01;
58         const DIV_BY_ZERO = 0x02;
59         const OVERFLOW = 0x04;
60         const UNDERFLOW = 0x08;
61         const INEXACT = 0x10;
62     }
63 }
64
65 #[must_use]
66 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Debug)]
67 pub struct StatusAnd<T> {
68     pub status: Status,
69     pub value: T,
70 }
71
72 impl Status {
73     pub fn and<T>(self, value: T) -> StatusAnd<T> {
74         StatusAnd {
75             status: self,
76             value,
77         }
78     }
79 }
80
81 impl<T> StatusAnd<T> {
82     pub fn map<F: FnOnce(T) -> U, U>(self, f: F) -> StatusAnd<U> {
83         StatusAnd {
84             status: self.status,
85             value: f(self.value),
86         }
87     }
88 }
89
90 #[macro_export]
91 macro_rules! unpack {
92     ($status:ident|=, $e:expr) => {
93         match $e {
94             $crate::StatusAnd { status, value } => {
95                 $status |= status;
96                 value
97             }
98         }
99     };
100     ($status:ident=, $e:expr) => {
101         match $e {
102             $crate::StatusAnd { status, value } => {
103                 $status = status;
104                 value
105             }
106         }
107     }
108 }
109
110 /// Category of internally-represented number.
111 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
112 pub enum Category {
113     Infinity,
114     NaN,
115     Normal,
116     Zero,
117 }
118
119 /// IEEE-754R 4.3: Rounding-direction attributes.
120 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
121 pub enum Round {
122     NearestTiesToEven,
123     TowardPositive,
124     TowardNegative,
125     TowardZero,
126     NearestTiesToAway,
127 }
128
129 impl Neg for Round {
130     type Output = Round;
131     fn neg(self) -> Round {
132         match self {
133             Round::TowardPositive => Round::TowardNegative,
134             Round::TowardNegative => Round::TowardPositive,
135             Round::NearestTiesToEven | Round::TowardZero | Round::NearestTiesToAway => self,
136         }
137     }
138 }
139
140 /// A signed type to represent a floating point number's unbiased exponent.
141 pub type ExpInt = i16;
142
143 // \c ilogb error results.
144 pub const IEK_INF: ExpInt = ExpInt::max_value();
145 pub const IEK_NAN: ExpInt = ExpInt::min_value();
146 pub const IEK_ZERO: ExpInt = ExpInt::min_value() + 1;
147
148 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
149 pub struct ParseError(pub &'static str);
150
151 /// A self-contained host- and target-independent arbitrary-precision
152 /// floating-point software implementation.
153 ///
154 /// `apfloat` uses significand bignum integer arithmetic as provided by functions
155 /// in the `ieee::sig`.
156 ///
157 /// Written for clarity rather than speed, in particular with a view to use in
158 /// the front-end of a cross compiler so that target arithmetic can be correctly
159 /// performed on the host. Performance should nonetheless be reasonable,
160 /// particularly for its intended use. It may be useful as a base
161 /// implementation for a run-time library during development of a faster
162 /// target-specific one.
163 ///
164 /// All 5 rounding modes in the IEEE-754R draft are handled correctly for all
165 /// implemented operations. Currently implemented operations are add, subtract,
166 /// multiply, divide, fused-multiply-add, conversion-to-float,
167 /// conversion-to-integer and conversion-from-integer. New rounding modes
168 /// (e.g., away from zero) can be added with three or four lines of code.
169 ///
170 /// Four formats are built-in: IEEE single precision, double precision,
171 /// quadruple precision, and x87 80-bit extended double (when operating with
172 /// full extended precision). Adding a new format that obeys IEEE semantics
173 /// only requires adding two lines of code: a declaration and definition of the
174 /// format.
175 ///
176 /// All operations return the status of that operation as an exception bit-mask,
177 /// so multiple operations can be done consecutively with their results or-ed
178 /// together. The returned status can be useful for compiler diagnostics; e.g.,
179 /// inexact, underflow and overflow can be easily diagnosed on constant folding,
180 /// and compiler optimizers can determine what exceptions would be raised by
181 /// folding operations and optimize, or perhaps not optimize, accordingly.
182 ///
183 /// At present, underflow tininess is detected after rounding; it should be
184 /// straight forward to add support for the before-rounding case too.
185 ///
186 /// The library reads hexadecimal floating point numbers as per C99, and
187 /// correctly rounds if necessary according to the specified rounding mode.
188 /// Syntax is required to have been validated by the caller.
189 ///
190 /// It also reads decimal floating point numbers and correctly rounds according
191 /// to the specified rounding mode.
192 ///
193 /// Non-zero finite numbers are represented internally as a sign bit, a 16-bit
194 /// signed exponent, and the significand as an array of integer limbs. After
195 /// normalization of a number of precision P the exponent is within the range of
196 /// the format, and if the number is not denormal the P-th bit of the
197 /// significand is set as an explicit integer bit. For denormals the most
198 /// significant bit is shifted right so that the exponent is maintained at the
199 /// format's minimum, so that the smallest denormal has just the least
200 /// significant bit of the significand set. The sign of zeros and infinities
201 /// is significant; the exponent and significand of such numbers is not stored,
202 /// but has a known implicit (deterministic) value: 0 for the significands, 0
203 /// for zero exponent, all 1 bits for infinity exponent. For NaNs the sign and
204 /// significand are deterministic, although not really meaningful, and preserved
205 /// in non-conversion operations. The exponent is implicitly all 1 bits.
206 ///
207 /// `apfloat` does not provide any exception handling beyond default exception
208 /// handling. We represent Signaling NaNs via IEEE-754R 2008 6.2.1 should clause
209 /// by encoding Signaling NaNs with the first bit of its trailing significand
210 /// as 0.
211 ///
212 /// Future work
213 /// ===========
214 ///
215 /// Some features that may or may not be worth adding:
216 ///
217 /// Optional ability to detect underflow tininess before rounding.
218 ///
219 /// New formats: x87 in single and double precision mode (IEEE apart from
220 /// extended exponent range) (hard).
221 ///
222 /// New operations: sqrt, nexttoward.
223 ///
224 pub trait Float
225     : Copy
226     + Default
227     + FromStr<Err = ParseError>
228     + PartialOrd
229     + fmt::Display
230     + Neg<Output = Self>
231     + AddAssign
232     + SubAssign
233     + MulAssign
234     + DivAssign
235     + RemAssign
236     + Add<Output = StatusAnd<Self>>
237     + Sub<Output = StatusAnd<Self>>
238     + Mul<Output = StatusAnd<Self>>
239     + Div<Output = StatusAnd<Self>>
240     + Rem<Output = StatusAnd<Self>> {
241     /// Total number of bits in the in-memory format.
242     const BITS: usize;
243
244     /// Number of bits in the significand. This includes the integer bit.
245     const PRECISION: usize;
246
247     /// The largest E such that 2<sup>E</sup> is representable; this matches the
248     /// definition of IEEE 754.
249     const MAX_EXP: ExpInt;
250
251     /// The smallest E such that 2<sup>E</sup> is a normalized number; this
252     /// matches the definition of IEEE 754.
253     const MIN_EXP: ExpInt;
254
255     /// Positive Zero.
256     const ZERO: Self;
257
258     /// Positive Infinity.
259     const INFINITY: Self;
260
261     /// NaN (Not a Number).
262     // FIXME(eddyb) provide a default when qnan becomes const fn.
263     const NAN: Self;
264
265     /// Factory for QNaN values.
266     // FIXME(eddyb) should be const fn.
267     fn qnan(payload: Option<u128>) -> Self;
268
269     /// Factory for SNaN values.
270     // FIXME(eddyb) should be const fn.
271     fn snan(payload: Option<u128>) -> Self;
272
273     /// Largest finite number.
274     // FIXME(eddyb) should be const (but FloatPair::largest is nontrivial).
275     fn largest() -> Self;
276
277     /// Smallest (by magnitude) finite number.
278     /// Might be denormalized, which implies a relative loss of precision.
279     const SMALLEST: Self;
280
281     /// Smallest (by magnitude) normalized finite number.
282     // FIXME(eddyb) should be const (but FloatPair::smallest_normalized is nontrivial).
283     fn smallest_normalized() -> Self;
284
285     // Arithmetic
286
287     fn add_r(self, rhs: Self, round: Round) -> StatusAnd<Self>;
288     fn sub_r(self, rhs: Self, round: Round) -> StatusAnd<Self> {
289         self.add_r(-rhs, round)
290     }
291     fn mul_r(self, rhs: Self, round: Round) -> StatusAnd<Self>;
292     fn mul_add_r(self, multiplicand: Self, addend: Self, round: Round) -> StatusAnd<Self>;
293     fn mul_add(self, multiplicand: Self, addend: Self) -> StatusAnd<Self> {
294         self.mul_add_r(multiplicand, addend, Round::NearestTiesToEven)
295     }
296     fn div_r(self, rhs: Self, round: Round) -> StatusAnd<Self>;
297     /// IEEE remainder.
298     // This is not currently correct in all cases.
299     fn ieee_rem(self, rhs: Self) -> StatusAnd<Self> {
300         let mut v = self;
301
302         let status;
303         v = unpack!(status=, v / rhs);
304         if status == Status::DIV_BY_ZERO {
305             return status.and(self);
306         }
307
308         assert!(Self::PRECISION < 128);
309
310         let status;
311         let x = unpack!(status=, v.to_i128_r(128, Round::NearestTiesToEven, &mut false));
312         if status == Status::INVALID_OP {
313             return status.and(self);
314         }
315
316         let status;
317         let mut v = unpack!(status=, Self::from_i128(x));
318         assert_eq!(status, Status::OK); // should always work
319
320         let status;
321         v = unpack!(status=, v * rhs);
322         assert_eq!(status - Status::INEXACT, Status::OK); // should not overflow or underflow
323
324         let status;
325         v = unpack!(status=, self - v);
326         assert_eq!(status - Status::INEXACT, Status::OK); // likewise
327
328         if v.is_zero() {
329             status.and(v.copy_sign(self)) // IEEE754 requires this
330         } else {
331             status.and(v)
332         }
333     }
334     /// C fmod, or llvm frem.
335     fn c_fmod(self, rhs: Self) -> StatusAnd<Self>;
336     fn round_to_integral(self, round: Round) -> StatusAnd<Self>;
337
338     /// IEEE-754R 2008 5.3.1: nextUp.
339     fn next_up(self) -> StatusAnd<Self>;
340
341     /// IEEE-754R 2008 5.3.1: nextDown.
342     ///
343     /// *NOTE* since nextDown(x) = -nextUp(-x), we only implement nextUp with
344     /// appropriate sign switching before/after the computation.
345     fn next_down(self) -> StatusAnd<Self> {
346         (-self).next_up().map(|r| -r)
347     }
348
349     fn abs(self) -> Self {
350         if self.is_negative() { -self } else { self }
351     }
352     fn copy_sign(self, rhs: Self) -> Self {
353         if self.is_negative() != rhs.is_negative() {
354             -self
355         } else {
356             self
357         }
358     }
359
360     // Conversions
361     fn from_bits(input: u128) -> Self;
362     fn from_i128_r(input: i128, round: Round) -> StatusAnd<Self> {
363         if input < 0 {
364             Self::from_u128_r(input.wrapping_neg() as u128, -round).map(|r| -r)
365         } else {
366             Self::from_u128_r(input as u128, round)
367         }
368     }
369     fn from_i128(input: i128) -> StatusAnd<Self> {
370         Self::from_i128_r(input, Round::NearestTiesToEven)
371     }
372     fn from_u128_r(input: u128, round: Round) -> StatusAnd<Self>;
373     fn from_u128(input: u128) -> StatusAnd<Self> {
374         Self::from_u128_r(input, Round::NearestTiesToEven)
375     }
376     fn from_str_r(s: &str, round: Round) -> Result<StatusAnd<Self>, ParseError>;
377     fn to_bits(self) -> u128;
378
379     /// Convert a floating point number to an integer according to the
380     /// rounding mode. In case of an invalid operation exception,
381     /// deterministic values are returned, namely zero for NaNs and the
382     /// minimal or maximal value respectively for underflow or overflow.
383     /// If the rounded value is in range but the floating point number is
384     /// not the exact integer, the C standard doesn't require an inexact
385     /// exception to be raised. IEEE-854 does require it so we do that.
386     ///
387     /// Note that for conversions to integer type the C standard requires
388     /// round-to-zero to always be used.
389     ///
390     /// The *is_exact output tells whether the result is exact, in the sense
391     /// that converting it back to the original floating point type produces
392     /// the original value. This is almost equivalent to result==Status::OK,
393     /// except for negative zeroes.
394     fn to_i128_r(self, width: usize, round: Round, is_exact: &mut bool) -> StatusAnd<i128> {
395         let status;
396         if self.is_negative() {
397             if self.is_zero() {
398                 // Negative zero can't be represented as an int.
399                 *is_exact = false;
400             }
401             let r = unpack!(status=, (-self).to_u128_r(width, -round, is_exact));
402
403             // Check for values that don't fit in the signed integer.
404             if r > (1 << (width - 1)) {
405                 // Return the most negative integer for the given width.
406                 *is_exact = false;
407                 Status::INVALID_OP.and(-1 << (width - 1))
408             } else {
409                 status.and(r.wrapping_neg() as i128)
410             }
411         } else {
412             // Positive case is simpler, can pretend it's a smaller unsigned
413             // integer, and `to_u128` will take care of all the edge cases.
414             self.to_u128_r(width - 1, round, is_exact).map(
415                 |r| r as i128,
416             )
417         }
418     }
419     fn to_i128(self, width: usize) -> StatusAnd<i128> {
420         self.to_i128_r(width, Round::TowardZero, &mut true)
421     }
422     fn to_u128_r(self, width: usize, round: Round, is_exact: &mut bool) -> StatusAnd<u128>;
423     fn to_u128(self, width: usize) -> StatusAnd<u128> {
424         self.to_u128_r(width, Round::TowardZero, &mut true)
425     }
426
427     fn cmp_abs_normal(self, rhs: Self) -> Ordering;
428
429     /// Bitwise comparison for equality (QNaNs compare equal, 0!=-0).
430     fn bitwise_eq(self, rhs: Self) -> bool;
431
432     // IEEE-754R 5.7.2 General operations.
433
434     /// Implements IEEE minNum semantics. Returns the smaller of the 2 arguments if
435     /// both are not NaN. If either argument is a NaN, returns the other argument.
436     fn min(self, other: Self) -> Self {
437         if self.is_nan() {
438             other
439         } else if other.is_nan() {
440             self
441         } else if other.partial_cmp(&self) == Some(Ordering::Less) {
442             other
443         } else {
444             self
445         }
446     }
447
448     /// Implements IEEE maxNum semantics. Returns the larger of the 2 arguments if
449     /// both are not NaN. If either argument is a NaN, returns the other argument.
450     fn max(self, other: Self) -> Self {
451         if self.is_nan() {
452             other
453         } else if other.is_nan() {
454             self
455         } else if self.partial_cmp(&other) == Some(Ordering::Less) {
456             other
457         } else {
458             self
459         }
460     }
461
462     /// IEEE-754R isSignMinus: Returns true if and only if the current value is
463     /// negative.
464     ///
465     /// This applies to zeros and NaNs as well.
466     fn is_negative(self) -> bool;
467
468     /// IEEE-754R isNormal: Returns true if and only if the current value is normal.
469     ///
470     /// This implies that the current value of the float is not zero, subnormal,
471     /// infinite, or NaN following the definition of normality from IEEE-754R.
472     fn is_normal(self) -> bool {
473         !self.is_denormal() && self.is_finite_non_zero()
474     }
475
476     /// Returns true if and only if the current value is zero, subnormal, or
477     /// normal.
478     ///
479     /// This means that the value is not infinite or NaN.
480     fn is_finite(self) -> bool {
481         !self.is_nan() && !self.is_infinite()
482     }
483
484     /// Returns true if and only if the float is plus or minus zero.
485     fn is_zero(self) -> bool {
486         self.category() == Category::Zero
487     }
488
489     /// IEEE-754R isSubnormal(): Returns true if and only if the float is a
490     /// denormal.
491     fn is_denormal(self) -> bool;
492
493     /// IEEE-754R isInfinite(): Returns true if and only if the float is infinity.
494     fn is_infinite(self) -> bool {
495         self.category() == Category::Infinity
496     }
497
498     /// Returns true if and only if the float is a quiet or signaling NaN.
499     fn is_nan(self) -> bool {
500         self.category() == Category::NaN
501     }
502
503     /// Returns true if and only if the float is a signaling NaN.
504     fn is_signaling(self) -> bool;
505
506     // Simple Queries
507
508     fn category(self) -> Category;
509     fn is_non_zero(self) -> bool {
510         !self.is_zero()
511     }
512     fn is_finite_non_zero(self) -> bool {
513         self.is_finite() && !self.is_zero()
514     }
515     fn is_pos_zero(self) -> bool {
516         self.is_zero() && !self.is_negative()
517     }
518     fn is_neg_zero(self) -> bool {
519         self.is_zero() && self.is_negative()
520     }
521
522     /// Returns true if and only if the number has the smallest possible non-zero
523     /// magnitude in the current semantics.
524     fn is_smallest(self) -> bool {
525         Self::SMALLEST.copy_sign(self).bitwise_eq(self)
526     }
527
528     /// Returns true if and only if the number has the largest possible finite
529     /// magnitude in the current semantics.
530     fn is_largest(self) -> bool {
531         Self::largest().copy_sign(self).bitwise_eq(self)
532     }
533
534     /// Returns true if and only if the number is an exact integer.
535     fn is_integer(self) -> bool {
536         // This could be made more efficient; I'm going for obviously correct.
537         if !self.is_finite() {
538             return false;
539         }
540         self.round_to_integral(Round::TowardZero).value.bitwise_eq(
541             self,
542         )
543     }
544
545     /// If this value has an exact multiplicative inverse, return it.
546     fn get_exact_inverse(self) -> Option<Self>;
547
548     /// Returns the exponent of the internal representation of the Float.
549     ///
550     /// Because the radix of Float is 2, this is equivalent to floor(log2(x)).
551     /// For special Float values, this returns special error codes:
552     ///
553     ///   NaN -> \c IEK_NAN
554     ///   0   -> \c IEK_ZERO
555     ///   Inf -> \c IEK_INF
556     ///
557     fn ilogb(self) -> ExpInt;
558
559     /// Returns: self * 2<sup>exp</sup> for integral exponents.
560     fn scalbn_r(self, exp: ExpInt, round: Round) -> Self;
561     fn scalbn(self, exp: ExpInt) -> Self {
562         self.scalbn_r(exp, Round::NearestTiesToEven)
563     }
564
565     /// Equivalent of C standard library function.
566     ///
567     /// While the C standard says exp is an unspecified value for infinity and nan,
568     /// this returns INT_MAX for infinities, and INT_MIN for NaNs (see `ilogb`).
569     fn frexp_r(self, exp: &mut ExpInt, round: Round) -> Self;
570     fn frexp(self, exp: &mut ExpInt) -> Self {
571         self.frexp_r(exp, Round::NearestTiesToEven)
572     }
573 }
574
575 pub trait FloatConvert<T: Float>: Float {
576     /// Convert a value of one floating point type to another.
577     /// The return value corresponds to the IEEE754 exceptions. *loses_info
578     /// records whether the transformation lost information, i.e., whether
579     /// converting the result back to the original type will produce the
580     /// original value (this is almost the same as return value==Status::OK,
581     /// but there are edge cases where this is not so).
582     fn convert_r(self, round: Round, loses_info: &mut bool) -> StatusAnd<T>;
583     fn convert(self, loses_info: &mut bool) -> StatusAnd<T> {
584         self.convert_r(Round::NearestTiesToEven, loses_info)
585     }
586 }
587
588 macro_rules! float_common_impls {
589     ($ty:ident<$t:tt>) => {
590         impl<$t> Default for $ty<$t> where Self: Float {
591             fn default() -> Self {
592                 Self::ZERO
593             }
594         }
595
596         impl<$t> ::std::str::FromStr for $ty<$t> where Self: Float {
597             type Err = ParseError;
598             fn from_str(s: &str) -> Result<Self, ParseError> {
599                 Self::from_str_r(s, Round::NearestTiesToEven).map(|x| x.value)
600             }
601         }
602
603         // Rounding ties to the nearest even, by default.
604
605         impl<$t> ::std::ops::Add for $ty<$t> where Self: Float {
606             type Output = StatusAnd<Self>;
607             fn add(self, rhs: Self) -> StatusAnd<Self> {
608                 self.add_r(rhs, Round::NearestTiesToEven)
609             }
610         }
611
612         impl<$t> ::std::ops::Sub for $ty<$t> where Self: Float {
613             type Output = StatusAnd<Self>;
614             fn sub(self, rhs: Self) -> StatusAnd<Self> {
615                 self.sub_r(rhs, Round::NearestTiesToEven)
616             }
617         }
618
619         impl<$t> ::std::ops::Mul for $ty<$t> where Self: Float {
620             type Output = StatusAnd<Self>;
621             fn mul(self, rhs: Self) -> StatusAnd<Self> {
622                 self.mul_r(rhs, Round::NearestTiesToEven)
623             }
624         }
625
626         impl<$t> ::std::ops::Div for $ty<$t> where Self: Float {
627             type Output = StatusAnd<Self>;
628             fn div(self, rhs: Self) -> StatusAnd<Self> {
629                 self.div_r(rhs, Round::NearestTiesToEven)
630             }
631         }
632
633         impl<$t> ::std::ops::Rem for $ty<$t> where Self: Float {
634             type Output = StatusAnd<Self>;
635             fn rem(self, rhs: Self) -> StatusAnd<Self> {
636                 self.c_fmod(rhs)
637             }
638         }
639
640         impl<$t> ::std::ops::AddAssign for $ty<$t> where Self: Float {
641             fn add_assign(&mut self, rhs: Self) {
642                 *self = (*self + rhs).value;
643             }
644         }
645
646         impl<$t> ::std::ops::SubAssign for $ty<$t> where Self: Float {
647             fn sub_assign(&mut self, rhs: Self) {
648                 *self = (*self - rhs).value;
649             }
650         }
651
652         impl<$t> ::std::ops::MulAssign for $ty<$t> where Self: Float {
653             fn mul_assign(&mut self, rhs: Self) {
654                 *self = (*self * rhs).value;
655             }
656         }
657
658         impl<$t> ::std::ops::DivAssign for $ty<$t> where Self: Float {
659             fn div_assign(&mut self, rhs: Self) {
660                 *self = (*self / rhs).value;
661             }
662         }
663
664         impl<$t> ::std::ops::RemAssign for $ty<$t> where Self: Float {
665             fn rem_assign(&mut self, rhs: Self) {
666                 *self = (*self % rhs).value;
667             }
668         }
669     }
670 }
671
672 pub mod ieee;
673 pub mod ppc;