Skip to content

Commit

Permalink
Update to use the now legacy format by using llvm_asm
Browse files Browse the repository at this point in the history
  • Loading branch information
jlb6740 committed Jul 25, 2020
1 parent 7564a33 commit 6ac95f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpucounter.rs
@@ -1,3 +1,4 @@
#![feature(llvm_asm)]
use super::timestamp::*;
pub(crate) struct CPUCounter;

Expand All @@ -10,14 +11,13 @@ unsafe fn cpucounter() -> u64 {
(high << 32) | low
}


// https://github.com/google/benchmark/blob/v1.1.0/src/cycleclock.h#L116
#[cfg(asm)]
#[inline]
#[cfg(any(target_arch = "aarch64"))]
unsafe fn cpucounter() -> u64 {
let (vtm): (u64);
asm!("mrs %0, cntvct_el0" : "=r"(vtm));
llvm_asm!("mrs %0, cntvct_el0" : "=r"(vtm));
vtm
}

Expand Down

0 comments on commit 6ac95f9

Please sign in to comment.