Enum capstone_sys::x86_avx_cc
source · #[repr(u32)]pub enum x86_avx_cc {
Show 33 variants
X86_AVX_CC_INVALID = 0,
X86_AVX_CC_EQ = 1,
X86_AVX_CC_LT = 2,
X86_AVX_CC_LE = 3,
X86_AVX_CC_UNORD = 4,
X86_AVX_CC_NEQ = 5,
X86_AVX_CC_NLT = 6,
X86_AVX_CC_NLE = 7,
X86_AVX_CC_ORD = 8,
X86_AVX_CC_EQ_UQ = 9,
X86_AVX_CC_NGE = 10,
X86_AVX_CC_NGT = 11,
X86_AVX_CC_FALSE = 12,
X86_AVX_CC_NEQ_OQ = 13,
X86_AVX_CC_GE = 14,
X86_AVX_CC_GT = 15,
X86_AVX_CC_TRUE = 16,
X86_AVX_CC_EQ_OS = 17,
X86_AVX_CC_LT_OQ = 18,
X86_AVX_CC_LE_OQ = 19,
X86_AVX_CC_UNORD_S = 20,
X86_AVX_CC_NEQ_US = 21,
X86_AVX_CC_NLT_UQ = 22,
X86_AVX_CC_NLE_UQ = 23,
X86_AVX_CC_ORD_S = 24,
X86_AVX_CC_EQ_US = 25,
X86_AVX_CC_NGE_UQ = 26,
X86_AVX_CC_NGT_UQ = 27,
X86_AVX_CC_FALSE_OS = 28,
X86_AVX_CC_NEQ_OS = 29,
X86_AVX_CC_GE_OQ = 30,
X86_AVX_CC_GT_OQ = 31,
X86_AVX_CC_TRUE_US = 32,
}
Expand description
AVX Code Condition type
Variants§
X86_AVX_CC_INVALID = 0
< Uninitialized.
X86_AVX_CC_EQ = 1
X86_AVX_CC_LT = 2
X86_AVX_CC_LE = 3
X86_AVX_CC_UNORD = 4
X86_AVX_CC_NEQ = 5
X86_AVX_CC_NLT = 6
X86_AVX_CC_NLE = 7
X86_AVX_CC_ORD = 8
X86_AVX_CC_EQ_UQ = 9
X86_AVX_CC_NGE = 10
X86_AVX_CC_NGT = 11
X86_AVX_CC_FALSE = 12
X86_AVX_CC_NEQ_OQ = 13
X86_AVX_CC_GE = 14
X86_AVX_CC_GT = 15
X86_AVX_CC_TRUE = 16
X86_AVX_CC_EQ_OS = 17
X86_AVX_CC_LT_OQ = 18
X86_AVX_CC_LE_OQ = 19
X86_AVX_CC_UNORD_S = 20
X86_AVX_CC_NEQ_US = 21
X86_AVX_CC_NLT_UQ = 22
X86_AVX_CC_NLE_UQ = 23
X86_AVX_CC_ORD_S = 24
X86_AVX_CC_EQ_US = 25
X86_AVX_CC_NGE_UQ = 26
X86_AVX_CC_NGT_UQ = 27
X86_AVX_CC_FALSE_OS = 28
X86_AVX_CC_NEQ_OS = 29
X86_AVX_CC_GE_OQ = 30
X86_AVX_CC_GT_OQ = 31
X86_AVX_CC_TRUE_US = 32
Trait Implementations§
source§impl Clone for x86_avx_cc
impl Clone for x86_avx_cc
source§fn clone(&self) -> x86_avx_cc
fn clone(&self) -> x86_avx_cc
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for x86_avx_cc
impl Debug for x86_avx_cc
source§impl Hash for x86_avx_cc
impl Hash for x86_avx_cc
source§impl PartialEq for x86_avx_cc
impl PartialEq for x86_avx_cc
source§fn eq(&self, other: &x86_avx_cc) -> bool
fn eq(&self, other: &x86_avx_cc) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for x86_avx_cc
impl Eq for x86_avx_cc
impl StructuralPartialEq for x86_avx_cc
Auto Trait Implementations§
impl RefUnwindSafe for x86_avx_cc
impl Send for x86_avx_cc
impl Sync for x86_avx_cc
impl Unpin for x86_avx_cc
impl UnwindSafe for x86_avx_cc
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more