Enum capstone_sys::arm64_prefetch_op
source · #[repr(u32)]pub enum arm64_prefetch_op {
Show 19 variants
ARM64_PRFM_INVALID = 0,
ARM64_PRFM_PLDL1KEEP = 1,
ARM64_PRFM_PLDL1STRM = 2,
ARM64_PRFM_PLDL2KEEP = 3,
ARM64_PRFM_PLDL2STRM = 4,
ARM64_PRFM_PLDL3KEEP = 5,
ARM64_PRFM_PLDL3STRM = 6,
ARM64_PRFM_PLIL1KEEP = 9,
ARM64_PRFM_PLIL1STRM = 10,
ARM64_PRFM_PLIL2KEEP = 11,
ARM64_PRFM_PLIL2STRM = 12,
ARM64_PRFM_PLIL3KEEP = 13,
ARM64_PRFM_PLIL3STRM = 14,
ARM64_PRFM_PSTL1KEEP = 17,
ARM64_PRFM_PSTL1STRM = 18,
ARM64_PRFM_PSTL2KEEP = 19,
ARM64_PRFM_PSTL2STRM = 20,
ARM64_PRFM_PSTL3KEEP = 21,
ARM64_PRFM_PSTL3STRM = 22,
}
Expand description
Prefetch operations (PRFM)
Variants§
ARM64_PRFM_INVALID = 0
ARM64_PRFM_PLDL1KEEP = 1
ARM64_PRFM_PLDL1STRM = 2
ARM64_PRFM_PLDL2KEEP = 3
ARM64_PRFM_PLDL2STRM = 4
ARM64_PRFM_PLDL3KEEP = 5
ARM64_PRFM_PLDL3STRM = 6
ARM64_PRFM_PLIL1KEEP = 9
ARM64_PRFM_PLIL1STRM = 10
ARM64_PRFM_PLIL2KEEP = 11
ARM64_PRFM_PLIL2STRM = 12
ARM64_PRFM_PLIL3KEEP = 13
ARM64_PRFM_PLIL3STRM = 14
ARM64_PRFM_PSTL1KEEP = 17
ARM64_PRFM_PSTL1STRM = 18
ARM64_PRFM_PSTL2KEEP = 19
ARM64_PRFM_PSTL2STRM = 20
ARM64_PRFM_PSTL3KEEP = 21
ARM64_PRFM_PSTL3STRM = 22
Trait Implementations§
source§impl Clone for arm64_prefetch_op
impl Clone for arm64_prefetch_op
source§fn clone(&self) -> arm64_prefetch_op
fn clone(&self) -> arm64_prefetch_op
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 arm64_prefetch_op
impl Debug for arm64_prefetch_op
source§impl Hash for arm64_prefetch_op
impl Hash for arm64_prefetch_op
source§impl PartialEq for arm64_prefetch_op
impl PartialEq for arm64_prefetch_op
source§fn eq(&self, other: &arm64_prefetch_op) -> bool
fn eq(&self, other: &arm64_prefetch_op) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for arm64_prefetch_op
impl Eq for arm64_prefetch_op
impl StructuralPartialEq for arm64_prefetch_op
Auto Trait Implementations§
impl RefUnwindSafe for arm64_prefetch_op
impl Send for arm64_prefetch_op
impl Sync for arm64_prefetch_op
impl Unpin for arm64_prefetch_op
impl UnwindSafe for arm64_prefetch_op
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