aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/hp_timer.h
blob: 0a4c252ec268da87140cbccdc51b6f057d0e2ef1 (plain) (blame)
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
#pragma once

#include "defaults.h"

namespace NHPTimer {
    using STime = i64;
    // May delay for ~50ms to compute frequency
    double GetSeconds(const STime& a) noexcept;
    // Returns the current time
    void GetTime(STime* pTime) noexcept;
    // Returns the time passed since *pTime, and writes the current time into *pTime.
    double GetTimePassed(STime* pTime) noexcept;
    // Get TSC frequency, may delay for ~50ms to compute frequency
    double GetClockRate() noexcept;
    // same as GetClockRate, but in integer
    ui64 GetCyclesPerSecond() noexcept;
}

struct THPTimer {
    THPTimer() noexcept {
        Reset();
    }
    void Reset() noexcept {
        NHPTimer::GetTime(&Start);
    }
    double Passed() const noexcept {
        NHPTimer::STime tmp = Start;
        return NHPTimer::GetTimePassed(&tmp);
    }
    double PassedReset() noexcept {
        return NHPTimer::GetTimePassed(&Start);
    }

private:
    NHPTimer::STime Start;
};