Struct cranelift_codegen::ir::immediates::Ieee64 [−][src]
#[repr(C)]pub struct Ieee64(_);
An IEEE binary64 immediate floating point value, represented as a u64 containing the bit pattern.
All bit patterns are allowed.
Implementations
impl Ieee64
[src]
impl Ieee64
[src]pub fn with_bits(x: u64) -> Self
[src]
Create a new Ieee64
containing the bits of x
.
pub fn pow2<I: Into<i64>>(n: I) -> Self
[src]
Create an Ieee64
number representing 2.0^n
.
pub fn fcvt_to_sint_negative_overflow<I: Into<i64>>(n: I) -> Self
[src]
Create an Ieee64
number representing the greatest negative value
not convertable from f64 to a signed integer with width n.
pub fn neg(self) -> Self
[src]
Return self negated.
pub fn with_float(x: f64) -> Self
[src]
Create a new Ieee64
representing the number x
.
pub fn bits(self) -> u64
[src]
Get the bitwise representation.
pub fn is_nan(&self) -> bool
[src]
Check if the value is a NaN. For Ieee64, this means checking that the 11 exponent bits are all set.
Trait Implementations
impl PartialOrd<Ieee64> for Ieee64
[src]
impl PartialOrd<Ieee64> for Ieee64
[src]impl Copy for Ieee64
[src]
impl Eq for Ieee64
[src]
impl StructuralEq for Ieee64
[src]
impl StructuralPartialEq for Ieee64
[src]
Auto Trait Implementations
impl RefUnwindSafe for Ieee64
impl Send for Ieee64
impl Sync for Ieee64
impl Unpin for Ieee64
impl UnwindSafe for Ieee64
Blanket Implementations
impl<T> CallHasher for T where
T: Hash,
[src]
impl<T> CallHasher for T where
T: Hash,
[src]impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]