[][src]Enum capstone_sys::sparc_cc

#[repr(u32)]
pub enum sparc_cc { SPARC_CC_INVALID, SPARC_CC_ICC_A, SPARC_CC_ICC_N, SPARC_CC_ICC_NE, SPARC_CC_ICC_E, SPARC_CC_ICC_G, SPARC_CC_ICC_LE, SPARC_CC_ICC_GE, SPARC_CC_ICC_L, SPARC_CC_ICC_GU, SPARC_CC_ICC_LEU, SPARC_CC_ICC_CC, SPARC_CC_ICC_CS, SPARC_CC_ICC_POS, SPARC_CC_ICC_NEG, SPARC_CC_ICC_VC, SPARC_CC_ICC_VS, SPARC_CC_FCC_A, SPARC_CC_FCC_N, SPARC_CC_FCC_U, SPARC_CC_FCC_G, SPARC_CC_FCC_UG, SPARC_CC_FCC_L, SPARC_CC_FCC_UL, SPARC_CC_FCC_LG, SPARC_CC_FCC_NE, SPARC_CC_FCC_E, SPARC_CC_FCC_UE, SPARC_CC_FCC_GE, SPARC_CC_FCC_UGE, SPARC_CC_FCC_LE, SPARC_CC_FCC_ULE, SPARC_CC_FCC_O, }

Enums corresponding to Sparc condition codes, both icc's and fcc's.

Variants

SPARC_CC_INVALID

< invalid CC (default)

SPARC_CC_ICC_A

< Always

SPARC_CC_ICC_N

< Never

SPARC_CC_ICC_NE

< Not Equal

SPARC_CC_ICC_E

< Equal

SPARC_CC_ICC_G

< Greater

SPARC_CC_ICC_LE

< Less or Equal

SPARC_CC_ICC_GE

< Greater or Equal

SPARC_CC_ICC_L

< Less

SPARC_CC_ICC_GU

< Greater Unsigned

SPARC_CC_ICC_LEU

< Less or Equal Unsigned

SPARC_CC_ICC_CC

< Carry Clear/Great or Equal Unsigned

SPARC_CC_ICC_CS

< Carry Set/Less Unsigned

SPARC_CC_ICC_POS

< Positive

SPARC_CC_ICC_NEG

< Negative

SPARC_CC_ICC_VC

< Overflow Clear

SPARC_CC_ICC_VS

< Overflow Set

SPARC_CC_FCC_A

< Always

SPARC_CC_FCC_N

< Never

SPARC_CC_FCC_U

< Unordered

SPARC_CC_FCC_G

< Greater

SPARC_CC_FCC_UG

< Unordered or Greater

SPARC_CC_FCC_L

< Less

SPARC_CC_FCC_UL

< Unordered or Less

SPARC_CC_FCC_LG

< Less or Greater

SPARC_CC_FCC_NE

< Not Equal

SPARC_CC_FCC_E

< Equal

SPARC_CC_FCC_UE

< Unordered or Equal

SPARC_CC_FCC_GE

< Greater or Equal

SPARC_CC_FCC_UGE

< Unordered or Greater or Equal

SPARC_CC_FCC_LE

< Less or Equal

SPARC_CC_FCC_ULE

< Unordered or Less or Equal

SPARC_CC_FCC_O

< Ordered

Trait Implementations

impl Eq for sparc_cc[src]

impl Copy for sparc_cc[src]

impl PartialEq<sparc_cc> for sparc_cc[src]

#[must_use]
default fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for sparc_cc[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for sparc_cc[src]

impl Hash for sparc_cc[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for sparc_cc

impl Sync for sparc_cc

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.