forked from tideways/php-xhprof-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.h
235 lines (194 loc) · 5.29 KB
/
timer.h
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#ifndef TRACER_TIMER_H
#define TRACER_TIMER_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef PHP_WIN32
#include "win32/time.h"
#include "win32/unistd.h"
#include "win32/getrusage.h"
#elif __APPLE__
#include <mach/mach_init.h>
#include <mach/mach_time.h>
#else
#include "sys/time.h"
#include <sys/resource.h>
#endif
static int determine_clock_source(int clock_use_rdtsc) {
#if defined(__APPLE__)
return TIDEWAYS_XHPROF_CLOCK_MACH;
#elif defined(__powerpc__) || defined(__ppc__)
return TIDEWAYS_XHPROF_CLOCK_TSC;
#elif defined(__s390__) // Covers both s390 and s390x.
return TIDEWAYS_XHPROF_CLOCK_TSC;
#elif defined(__ARM_ARCH)
return TIDEWAYS_XHPROF_CLOCK_GTOD;
#elif defined(PHP_WIN32)
return TIDEWAYS_XHPROF_CLOCK_QPC;
#else
struct timespec res;
if (clock_use_rdtsc == 1) {
return TIDEWAYS_XHPROF_CLOCK_TSC;
}
#if HAVE_CLOCK_GETTIME
if (clock_gettime(CLOCK_MONOTONIC, &res) == 0) {
return TIDEWAYS_XHPROF_CLOCK_CGT;
}
#endif
#if HAVE_GETTIMEOFDAY
return TIDEWAYS_XHPROF_CLOCK_GTOD;
#endif
return TIDEWAYS_XHPROF_CLOCK_TSC;
#endif
}
static zend_always_inline uint64 current_timestamp() {
struct timeval tv;
if (gettimeofday(&tv, NULL)) {
php_error(E_ERROR, "tracer: Cannot acquire gettimeofday");
zend_bailout();
}
return 1000 * (uint64) tv.tv_sec + (uint64) tv.tv_usec / 1000;
}
static zend_always_inline uint64 time_milliseconds_cgt()
{
#if HAVE_CLOCK_GETTIME
struct timespec s;
if (clock_gettime(CLOCK_MONOTONIC, &s) == 0) {
return s.tv_sec * 1000000 + s.tv_nsec / 1000;
}
#endif
return 0;
}
static zend_always_inline uint64 time_milliseconds_gtod()
{
#if HAVE_GETTIMEOFDAY
struct timeval now;
if (gettimeofday(&now, NULL) == 0) {
return now.tv_sec * 1000000 + now.tv_usec;
}
#endif
return 0;
}
static zend_always_inline uint64 time_milliseconds_tsc_query()
{
#if defined(__s390__) // Covers both s390 and s390x.
uint64_t tsc;
// Return the CPU clock.
asm("stck %0" : "=Q" (tsc) : : "cc");
return tsc;
#elif defined(__i386__)
int64_t ret;
__asm__ volatile("rdtsc" : "=A"(ret));
return ret;
#elif defined(__x86_64__) || defined(__amd64__)
uint64 val;
uint32 a, d;
asm volatile("rdtsc" : "=a" (a), "=d" (d));
(val) = ((uint64)a) | (((uint64)d)<<32);
return val;
#elif defined(__powerpc__) || defined(__ppc__)
uint64 val;
asm volatile ("mftb %0" : "=r" (val));
return val;
#else
return 0;
#endif
}
/**
* Get the current wallclock timer
*
* @return 64 bit unsigned integer
* @author cjiang
*/
static zend_always_inline uint64 time_milliseconds(int source, double timebase_factor)
{
#if defined(__APPLE__)
return mach_absolute_time() / timebase_factor;
#elif defined(PHP_WIN32)
LARGE_INTEGER count;
if (!QueryPerformanceCounter(&count)) {
return 0;
}
return (double)(count.QuadPart) / timebase_factor;
#else
if (source == TIDEWAYS_XHPROF_CLOCK_TSC) {
return time_milliseconds_tsc_query() / timebase_factor;
} else if (source == TIDEWAYS_XHPROF_CLOCK_GTOD) {
return time_milliseconds_gtod();
} else if (source == TIDEWAYS_XHPROF_CLOCK_CGT) {
return time_milliseconds_cgt();
}
#endif
return 0;
}
/**
* Get time delta in microseconds.
*/
static long get_us_interval(struct timeval *start, struct timeval *end)
{
return (((end->tv_sec - start->tv_sec) * 1000000)
+ (end->tv_usec - start->tv_usec));
}
static zend_always_inline double get_timebase_factor_tsc()
{
struct timeval start;
struct timeval end;
uint64 tsc_start;
uint64 tsc_end;
volatile int i;
if (gettimeofday(&start, 0)) {
perror("gettimeofday");
return 0.0;
}
tsc_start = time_milliseconds_tsc_query();
/* Busy loop for 5 miliseconds. */
do {
for (i = 0; i < 1000000; i++);
if (gettimeofday(&end, 0)) {
perror("gettimeofday");
return 0.0;
}
tsc_end = time_milliseconds_tsc_query();
} while (get_us_interval(&start, &end) < 5000);
return (tsc_end - tsc_start) * 1.0 / (get_us_interval(&start, &end));
}
/**
* Get the timebase factor necessary to divide by in time_milliseconds()
*/
static zend_always_inline double get_timebase_factor(int source)
{
#if defined(__APPLE__)
mach_timebase_info_data_t sTimebaseInfo;
(void) mach_timebase_info(&sTimebaseInfo);
return (sTimebaseInfo.numer / sTimebaseInfo.denom) * 1000;
#elif defined(PHP_WIN32)
unsigned __int64 frequency;
if (!QueryPerformanceFrequency( (LARGE_INTEGER*)&frequency)) {
zend_error(E_ERROR, "QueryPerformanceFrequency");
}
return (double)frequency/1000000.0;
#else
if (source == TIDEWAYS_XHPROF_CLOCK_TSC) {
return get_timebase_factor_tsc();
}
return 1.0;
#endif
}
/**
* Get the current real CPU clock timer
*/
static uint64 cpu_timer() {
struct rusage ru;
#if defined(CLOCK_PROCESS_CPUTIME_ID)
struct timespec s;
if (clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &s) == 0) {
return s.tv_sec * 1000000 + s.tv_nsec / 1000;
}
#endif
if (getrusage(RUSAGE_SELF, &ru) == 0) {
return ru.ru_utime.tv_sec * 1000000 + ru.ru_utime.tv_usec +
ru.ru_stime.tv_sec * 1000000 + ru.ru_stime.tv_usec;
}
return 0;
}
#endif