|
| 1 | +/* @(#)fdlibm.h 5.1 93/09/24 */ |
| 2 | +/* |
| 3 | + * ==================================================== |
| 4 | + * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 5 | + * |
| 6 | + * Developed at SunPro, a Sun Microsystems, Inc. business. |
| 7 | + * Permission to use, copy, modify, and distribute this |
| 8 | + * software is freely granted, provided that this notice |
| 9 | + * is preserved. |
| 10 | + * ==================================================== |
| 11 | + */ |
| 12 | + |
| 13 | +#![allow(dead_code)] // not deadcode, just for debug and warnings |
| 14 | + |
| 15 | +/* Most routines need to check whether a float is finite, infinite, or not a |
| 16 | +number, and many need to know whether the result of an operation will |
| 17 | +overflow. These conditions depend on whether the largest exponent is |
| 18 | +used for NaNs & infinities, or whether it's used for finite numbers. */ |
| 19 | + |
| 20 | +/// True if a positive float with bitmask X is finite. |
| 21 | +#[inline] |
| 22 | +#[allow(non_snake_case)] |
| 23 | +pub fn FLT_UWORD_IS_FINITE(x: u32) -> bool { |
| 24 | + x < 0x7f80_0000 |
| 25 | +} |
| 26 | + |
| 27 | +/// True if a positive float with bitmask X is not a number. |
| 28 | +#[inline] |
| 29 | +#[allow(non_snake_case)] |
| 30 | +pub fn FLT_UWORD_IS_NAN(x: u32) -> bool { |
| 31 | + x > 0x7f80_0000 |
| 32 | +} |
| 33 | + |
| 34 | +/// True if a positive float with bitmask X is +infinity. |
| 35 | +#[inline] |
| 36 | +#[allow(non_snake_case)] |
| 37 | +pub fn FLT_UWORD_IS_INFINITE(x: u32) -> bool { |
| 38 | + x == 0x7f80_0000 |
| 39 | +} |
| 40 | + |
| 41 | +/// The bitmask of FLT_MAX. |
| 42 | +pub const FLT_UWORD_MAX: u32 = 0x7f7f_ffff; |
| 43 | +/// The bitmask of FLT_MAX/2. |
| 44 | +pub const FLT_UWORD_HALF_MAX: u32 = FLT_UWORD_MAX - (1 << 23); |
| 45 | +/// The bitmask of the largest finite exponent (129 if the largest |
| 46 | +/// exponent is used for finite numbers, 128 otherwise). |
| 47 | +pub const FLT_UWORD_EXP_MAX: u32 = 0x4300_0000; |
| 48 | +/// The bitmask of log(FLT_MAX), rounded down. This value is the largest |
| 49 | +/// input that can be passed to exp() without producing overflow. |
| 50 | +pub const FLT_UWORD_LOG_MAX: u32 = 0x42b1_7217; |
| 51 | +/// The bitmask of log(2*FLT_MAX), rounded down. This value is the |
| 52 | +/// largest input than can be passed to cosh() without producing |
| 53 | +/// overflow. |
| 54 | +pub const FLT_UWORD_LOG_2MAX: u32 = 0x42b2_d4fc; |
| 55 | +/// The largest biased exponent that can be used for finite numbers |
| 56 | +/// (255 if the largest exponent is used for finite numbers, 254 |
| 57 | +/// otherwise) |
| 58 | +pub const FLT_LARGEST_EXP: u32 = FLT_UWORD_MAX >> 23; |
| 59 | +pub const HUGE: f32 = 3.402_823_466_385_288_60e+38; |
| 60 | + |
| 61 | +/* Many routines check for zero and subnormal numbers. Such things depend |
| 62 | +on whether the target supports denormals or not */ |
| 63 | + |
| 64 | +/// True if a positive float with bitmask X is +0. Without denormals, |
| 65 | +/// any float with a zero exponent is a +0 representation. With |
| 66 | +/// denormals, the only +0 representation is a 0 bitmask. |
| 67 | +#[inline] |
| 68 | +#[allow(non_snake_case)] |
| 69 | +pub fn FLT_UWORD_IS_ZERO(x: u32) -> bool { |
| 70 | + x == 0 |
| 71 | +} |
| 72 | + |
| 73 | +/// True if a non-zero positive float with bitmask X is subnormal. |
| 74 | +/// (Routines should check for zeros first.) |
| 75 | +#[inline] |
| 76 | +#[allow(non_snake_case)] |
| 77 | +pub fn FLT_UWORD_IS_SUBNORMAL(x: u32) -> bool { |
| 78 | + x < 0x0080_0000 |
| 79 | +} |
| 80 | + |
| 81 | +/// The bitmask of the smallest float above +0. Call this number REAL_FLT_MIN... |
| 82 | +pub const FLT_UWORD_MIN: usize = 0x0000_0001; |
| 83 | +/// The bitmask of the float representation of REAL_FLT_MIN's exponent. |
| 84 | +pub const FLT_UWORD_EXP_MIN: usize = 0x4316_0000; |
| 85 | +/// The bitmask of |log(REAL_FLT_MIN)|, rounding down. |
| 86 | +pub const FLT_UWORD_LOG_MIN: usize = 0x42cf_f1b5; |
| 87 | +/// REAL_FLT_MIN's exponent - EXP_BIAS (1 if denormals are not supported, |
| 88 | +/// -22 if they are). |
| 89 | +pub const FLT_SMALLEST_EXP: isize = -22; |
0 commit comments