[][src]Enum rustc_ap_rustc_target::asm::X86InlineAsmRegClass

pub enum X86InlineAsmRegClass {
    reg,
    reg_abcd,
    reg_byte,
    xmm_reg,
    ymm_reg,
    zmm_reg,
    kreg,
}

Variants

reg
reg_abcd
reg_byte
xmm_reg
ymm_reg
zmm_reg
kreg

Implementations

impl X86InlineAsmRegClass[src]

pub fn name(self) -> &'static str[src]

pub fn parse(_arch: InlineAsmArch, name: &str) -> Result<Self, &'static str>[src]

impl X86InlineAsmRegClass[src]

pub fn valid_modifiers(self, arch: InlineAsmArch) -> &'static [char][src]

pub fn suggest_class(
    self,
    _arch: InlineAsmArch,
    ty: InlineAsmType
) -> Option<Self>
[src]

pub fn suggest_modifier(
    self,
    arch: InlineAsmArch,
    ty: InlineAsmType
) -> Option<(char, &'static str)>
[src]

pub fn default_modifier(
    self,
    arch: InlineAsmArch
) -> Option<(char, &'static str)>
[src]

pub fn supported_types(
    self,
    arch: InlineAsmArch
) -> &'static [(InlineAsmType, Option<&'static str>)]
[src]

Trait Implementations

impl Clone for X86InlineAsmRegClass[src]

impl Copy for X86InlineAsmRegClass[src]

impl Debug for X86InlineAsmRegClass[src]

impl Decodable for X86InlineAsmRegClass[src]

impl Encodable for X86InlineAsmRegClass[src]

impl Eq for X86InlineAsmRegClass[src]

impl Hash for X86InlineAsmRegClass[src]

impl<__CTX> HashStable<__CTX> for X86InlineAsmRegClass where
    __CTX: HashStableContext
[src]

impl PartialEq<X86InlineAsmRegClass> for X86InlineAsmRegClass[src]

impl StructuralEq for X86InlineAsmRegClass[src]

impl StructuralPartialEq for X86InlineAsmRegClass[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<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]

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

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

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

type Error = !

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<E> SpecializationError for E[src]

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.