Enum capstone_sys::arm64_cc [−][src]
#[repr(u32)]
pub enum arm64_cc {
Show variants
ARM64_CC_INVALID,
ARM64_CC_EQ,
ARM64_CC_NE,
ARM64_CC_HS,
ARM64_CC_LO,
ARM64_CC_MI,
ARM64_CC_PL,
ARM64_CC_VS,
ARM64_CC_VC,
ARM64_CC_HI,
ARM64_CC_LS,
ARM64_CC_GE,
ARM64_CC_LT,
ARM64_CC_GT,
ARM64_CC_LE,
ARM64_CC_AL,
ARM64_CC_NV,
}Expand description
ARM64 condition code
Variants
< Equal
< Not equal: Not equal, or unordered
< Unsigned higher or same: >, ==, or unordered
< Unsigned lower or same: Less than
< Minus, negative: Less than
< Plus, positive or zero: >, ==, or unordered
< Overflow: Unordered
< No overflow: Ordered
< Unsigned higher: Greater than, or unordered
< Unsigned lower or same: Less than or equal
< Greater than or equal: Greater than or equal
< Less than: Less than, or unordered
< Signed greater than: Greater than
< Signed less than or equal: <, ==, or unordered
< Always (unconditional): Always (unconditional)
< Always (unconditional): Always (unconditional)