Enum miri::shims::x86::FloatBinOp

source ·
enum FloatBinOp {
    Arith(BinOp),
    Cmp {
        gt: bool,
        lt: bool,
        eq: bool,
        unord: bool,
    },
    Min,
    Max,
}

Variants§

§

Arith(BinOp)

Arithmetic operation

§

Cmp

Comparison

The semantics of this operator is a case distinction: we compare the two operands, and then we return one of the four booleans gt, lt, eq, unord depending on which class they fall into.

AVX supports all 16 combinations, SSE only a subset

https://www.felixcloutier.com/x86/cmpss https://www.felixcloutier.com/x86/cmpps https://www.felixcloutier.com/x86/cmpsd https://www.felixcloutier.com/x86/cmppd

Fields

§gt: bool

Result when lhs < rhs

§lt: bool

Result when lhs > rhs

§eq: bool

Result when lhs == rhs

§unord: bool

Result when lhs is NaN or rhs is NaN

§

Min

§

Max

Implementations§

source§

impl FloatBinOp

source

fn cmp_from_imm<'tcx>( this: &MiriInterpCx<'_, 'tcx>, imm: i8, intrinsic: Symbol ) -> InterpResult<'tcx, Self>

Convert from the imm argument used to specify the comparison operation in intrinsics such as llvm.x86.sse.cmp.ss.

Trait Implementations§

source§

impl Clone for FloatBinOp

source§

fn clone(&self) -> FloatBinOp

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for FloatBinOp

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 4 bytes

Size for each variant:

  • Arith: 1 byte
  • Cmp: 4 bytes
  • Min: 0 bytes
  • Max: 0 bytes