[][src]Enum lucet_runtime_internals::val::RegVal

pub enum RegVal {
    GpReg(u64),
    FpReg(__m128),
}

Register representation of Val.

When mapping Vals to x86_64 registers, we map floating point values into the SSE registers xmmN, and all other values into general-purpose (integer) registers.

Variants

GpReg(u64)
FpReg(__m128)

Trait Implementations

impl From<RegVal> for UntypedRetVal[src]

Auto Trait Implementations

impl RefUnwindSafe for RegVal

impl Send for RegVal

impl Sync for RegVal

impl Unpin for RegVal

impl UnwindSafe for RegVal

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.