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
#[derive(Clone, Debug, Default)]
pub struct Counter;

#[cfg(all(target_arch = "x86_64", target_feature = "sse2"))]
impl Counter {
    pub fn now(&self) -> u64 {
        unsafe { ::core::arch::x86_64::_rdtsc() }
    }
}

#[cfg(target_arch = "aarch64")]
impl Counter {
    pub fn now(&self) -> u64 {
        let count: u64;

        unsafe {
            ::core::arch::asm!("mrs {}, cntvct_el0", out(reg) count);
        }

        count
    }
}

#[cfg(not(any(
    all(target_arch = "x86_64", target_feature = "sse2"),
    target_arch = "aarch64",
)))]
impl Counter {
    pub fn now(&self) -> u64 {
        panic!("can't use counter without TSC (x86_64) or system counter (ARM) support");
    }
}