mirror of
https://github.com/google/benchmark.git
synced 2024-12-27 13:00:36 +08:00
Add RISC-V support in cycleclock::Now (#833)
The RISC-V implementation of `cycleclock::Now` uses the user-space `rdcycle` instruction to query how many cycles have happened since the core started. The only complexity here is on 32-bit RISC-V, where `rdcycle` can only read the lower 32 bits of the 64-bit hardware counter. In this case, `rdcycleh` reads the higher 32 bits of the counter. We match the powerpc implementation to detect and correct for overflow in the high bits.
This commit is contained in:
parent
04a9343fc9
commit
4abdfbb802
@ -164,6 +164,21 @@ inline BENCHMARK_ALWAYS_INLINE int64_t Now() {
|
||||
uint64_t tsc;
|
||||
asm("stck %0" : "=Q"(tsc) : : "cc");
|
||||
return tsc;
|
||||
#elif defined(__riscv) // RISC-V
|
||||
// Use RDCYCLE (and RDCYCLEH on riscv32)
|
||||
#if __riscv_xlen == 32
|
||||
uint64_t cycles_low, cycles_hi0, cycles_hi1;
|
||||
asm("rdcycleh %0" : "=r"(cycles_hi0));
|
||||
asm("rdcycle %0" : "=r"(cycles_lo));
|
||||
asm("rdcycleh %0" : "=r"(cycles_hi1));
|
||||
// This matches the PowerPC overflow detection, above
|
||||
cycles_lo &= -static_cast<int64_t>(cycles_hi0 == cycles_hi1);
|
||||
return (cycles_hi1 << 32) | cycles_lo;
|
||||
#else
|
||||
uint64_t cycles;
|
||||
asm("rdcycle %0" : "=r"(cycles));
|
||||
return cycles;
|
||||
#endif
|
||||
#else
|
||||
// The soft failover to a generic implementation is automatic only for ARM.
|
||||
// For other platforms the developer is expected to make an attempt to create
|
||||
|
Loading…
Reference in New Issue
Block a user