core/stdarch/crates/core_arch/src/arm_shared/barrier/
common.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Access types available on all architectures

/// Full system is the required shareability domain, reads and writes are the
/// required access types
#[unstable(feature = "stdarch_arm_barrier", issue = "117219")]
pub struct SY;

dmb_dsb!(SY);

#[unstable(feature = "stdarch_arm_barrier", issue = "117219")]
impl super::super::sealed::Isb for SY {
    #[inline(always)]
    unsafe fn __isb(&self) {
        super::isb(super::arg::SY)
    }
}