#[cfg(not(portable_atomic_no_asm))]
use core::arch::asm;
pub(super) use super::super::riscv as atomic;
#[cfg(not(portable_atomic_s_mode))]
macro_rules! status {
() => {
"mstatus"
};
}
#[cfg(portable_atomic_s_mode)]
macro_rules! status {
() => {
"sstatus"
};
}
#[cfg(not(portable_atomic_s_mode))]
const MASK: usize = 0x8;
#[cfg(not(portable_atomic_s_mode))]
macro_rules! mask {
() => {
"0x8"
};
}
#[cfg(portable_atomic_s_mode)]
const MASK: usize = 0x2;
#[cfg(portable_atomic_s_mode)]
macro_rules! mask {
() => {
"0x2"
};
}
#[derive(Clone, Copy)]
pub(super) struct State(usize);
#[inline]
pub(super) fn disable() -> State {
let r: usize;
unsafe {
asm!(concat!("csrrci {0}, ", status!(), ", ", mask!()), out(reg) r, options(nostack, preserves_flags));
}
State(r)
}
#[inline]
pub(super) unsafe fn restore(State(r): State) {
if r & MASK != 0 {
unsafe {
asm!(concat!("csrsi ", status!(), ", ", mask!()), options(nostack, preserves_flags));
}
}
}