1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! Simple support for volatile memory access.

use core::cell::UnsafeCell;
use core::ptr;

/// A value that should be accessed with volatile memory semantics.
#[repr(transparent)]
pub struct Volatile<T> {
    item: UnsafeCell<T>,
}

impl<T> core::fmt::Debug for Volatile<T> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        f.debug_struct("Volatile")
            .field("item", &self.item)
            .finish()
    }
}

impl<T> Volatile<T> {
    /// Construct a new volatile cell.
    pub const fn new(item: T) -> Self {
        Volatile {
            item: UnsafeCell::new(item),
        }
    }

    #[allow(unaligned_references)]
    /// Volatile-read the cell.
    #[inline(always)]
    pub fn get(&self) -> T
    where
        T: Copy,
    {
        #[allow(unaligned_references)]
        unsafe {
            #[allow(unaligned_references)]
            ptr::read_volatile(self.item.get())
        }
    }

    #[allow(unaligned_references)]
    /// Volatile-write the cell.
    #[inline(always)]
    pub fn set(&self, item: T)
    where
        T: Copy,
    {
        unsafe { ptr::write_volatile(self.item.get(), item) }
    }
}