blob: 724ffff394d8ecfd5e686729dcbe8cdca5799cf8 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#pragma once
#include "defaults.h"
#include "platform.h"
#if defined(_win_)
#include <intrin.h>
#pragma intrinsic(__rdtsc)
#endif // _win_
#if defined(_darwin_) && !defined(_x86_)
#include <mach/mach_time.h>
#endif
/// util/system/datetime.h contains only system time providers
/// for handy datetime utilities include util/datetime/base.h
/// Current time in microseconds since epoch
ui64 MicroSeconds() noexcept;
/// Current time in milliseconds since epoch
inline ui64 MilliSeconds() {
return MicroSeconds() / ui64(1000);
}
/// Current time in milliseconds since epoch (deprecated, use MilliSeconds instead)
inline ui64 millisec() {
return MilliSeconds();
}
/// Current time in seconds since epoch
ui32 Seconds() noexcept;
/// Current thread time in microseconds
ui64 ThreadCPUUserTime() noexcept;
ui64 ThreadCPUSystemTime() noexcept;
ui64 ThreadCPUTime() noexcept;
void NanoSleep(ui64 ns) noexcept;
#if defined(_x86_)
namespace NPrivate {
bool HaveRdtscpImpl();
}
#endif
// GetCycleCount guarantees to return synchronous values on different cores
// and provide constant rate only on modern Intel and AMD processors
// NOTE: rdtscp is used to prevent out of order execution
// rdtsc can be reordered, while rdtscp cannot be reordered
// with preceding instructions
// PERFORMANCE: rdtsc - 15 cycles per call , rdtscp - 19 cycles per call
// WARNING: following instruction can be executed out-of-order
Y_FORCE_INLINE ui64 GetCycleCount() noexcept {
#if defined(_MSC_VER)
// Generates the rdtscp instruction, which returns the processor time stamp.
// The processor time stamp records the number of clock cycles since the last reset.
static const bool haveRdtscp = ::NPrivate::HaveRdtscpImpl();
if (haveRdtscp) {
unsigned int aux;
return __rdtscp(&aux);
} else {
return __rdtsc();
}
#elif defined(_x86_64_)
static const bool haveRdtscp = ::NPrivate::HaveRdtscpImpl();
unsigned hi, lo;
if (haveRdtscp) {
__asm__ __volatile__("rdtscp"
: "=a"(lo), "=d"(hi)::"%rcx");
} else {
__asm__ __volatile__("rdtsc"
: "=a"(lo), "=d"(hi));
}
return ((unsigned long long)lo) | (((unsigned long long)hi) << 32);
#elif defined(_i386_)
static const bool haveRdtscp = ::NPrivate::HaveRdtscpImpl();
ui64 x;
if (haveRdtscp) {
__asm__ volatile("rdtscp\n\t"
: "=A"(x)::"%ecx");
} else {
__asm__ volatile("rdtsc\n\t"
: "=A"(x));
}
return x;
#elif defined(_darwin_)
return mach_absolute_time();
#elif defined(__clang__) && !defined(_arm_)
return __builtin_readcyclecounter();
#elif defined(_arm32_)
return MicroSeconds();
#elif defined(_arm64_)
ui64 x;
__asm__ __volatile__("isb; mrs %0, cntvct_el0"
: "=r"(x));
return x;
#else
#error "unsupported arch"
#endif
}
|