[][src]Enum wasmer_runtime_core::state::x64_decl::X64Register

pub enum X64Register {
    GPR(GPR),
    XMM(XMM),
}

A machine register under the x86-64 architecture.

Variants

GPR(GPR)

General-purpose registers.

XMM(XMM)

XMM (floating point/SIMD) registers.

Methods

impl X64Register[src]

pub fn to_index(&self) -> RegisterIndex[src]

Returns the index of the register.

pub fn from_dwarf_regnum(x: u16) -> Option<X64Register>[src]

Converts a DWARD regnum to X64Register.

Trait Implementations

impl Clone for X64Register[src]

impl Copy for X64Register[src]

impl Debug for X64Register[src]

impl Eq for X64Register[src]

impl PartialEq<X64Register> for X64Register[src]

impl StructuralEq for X64Register[src]

impl StructuralPartialEq for X64Register[src]

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.