-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMPVTimer.cpp
435 lines (368 loc) · 9.99 KB
/
MPVTimer.cpp
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
/** <pre>
* The Multi-Purpose Viewer
* Copyright (c) 2004 The Boeing Company
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* FILENAME: MPVTimer.cpp
* LANGUAGE: C++
* CLASS: UNCLASSIFIED
* PROJECT: Multi-Purpose Viewer
*
* PROGRAM DESCRIPTION:
* This class contains the data and methods necessary to
* manage the timing measurements.
*
* MODIFICATION NOTES:
* DATE NAME SCR NUMBER
* DESCRIPTION OF CHANGE........................
*
* 03/29/2004 Greg Basler MPV_CR_DR_1
* Initial Release.
* </pre>
* The Boeing Company
* 1.0
*/
#include <iostream>
#include <fstream>
#include <string>
#ifdef __linux__
#include <errno.h>
#include <string.h>
#endif
#include "MPVTimer.h"
// ================================================
// MPVTimerInit
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
void MPVTimer::MPVTimerInit(std::string NameIn, bool MainTimerIn, GenerateID *genIDIn)
{
MainTimer = MainTimerIn;
name = NameIn;
if(genIDIn)
{
GenID = genIDIn;
TmrID = GenID->GetNextID("Timer");
}
else
{
GenID = NULL;
TmrID = 1;
}
#if TIMER_TYPE == TIMER_TYPE_WIN32
if(MainTimer)
{
LARGE_INTEGER tFreq;
double dFreq;
if(QueryPerformanceFrequency(&tFreq))
{
dFreq = (double)tFreq.QuadPart;
TimerPeriod = 1.0/dFreq;
TmrPVld = true;
}
else
{
TimerPeriod = 0.0;
TmrPVld = false;
}
}
else
{
TmrPVld = false;
}
RecordedClockTicks = 0;
#elif TIMER_TYPE == TIMER_TYPE_PAPI
// FIXME - need some way to ensure that this only gets called once ever for the lifetime of the program
PapiError = false;
if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT)
{
printf( "There was an error while initializing the PAPI library.\n" );
printf( "The PAPI library is used for performance timing; timers will not work.\n" );
PapiError = true;
// exit(1);
}
RecordedUSecs = 0;
#elif TIMER_TYPE == TIMER_TYPE_x86_GCC_ASM
if(MainTimer)
{
double dFreq = GetMHz()*1e6;
if( dFreq < 0. )
{
TimerPeriod = 0.0;
TmrPVld = false;
}
else
{
TimerPeriod = 1.0/dFreq;
TmrPVld = true;
}
}
else
{
TmrPVld = false;
}
RecordedClockTicks = 0;
#endif
CurrentTime = 0.0;
PrevTime = 0.0;
ParentTimer = NULL;
}
// ================================================
// ~MPVTimer
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
MPVTimer::~MPVTimer()
{
ClearSubTimers( );
}
// ================================================
// Begin
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
void MPVTimer::Begin(void)
{
Time();
}
// ================================================
// Time
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
void MPVTimer::Time(void)
{
#if TIMER_TYPE == TIMER_TYPE_WIN32
LARGE_INTEGER tcnt;
if(TmrPVld)
{
if(TimeVld = (QueryPerformanceCounter(&tcnt) != 0))
RecordedClockTicks = tcnt.QuadPart;
else
RecordedClockTicks = 0;
}
else
{
RecordedClockTicks = 0;
TimeVld = false;
}
#elif TIMER_TYPE == TIMER_TYPE_PAPI
if( PapiError )
{
RecordedUSecs = 0;
TimeVld = false;
}
else
{
RecordedUSecs = PAPI_get_real_usec();
TimeVld = true;
}
#elif TIMER_TYPE == TIMER_TYPE_x86_GCC_ASM
if(TmrPVld)
{
#ifdef __i386
// Treat eax and edx as one 64 bit register
__asm__ __volatile__("rdtsc" : "=A" (RecordedClockTicks));
#elif defined(__x86_64)
unsigned long high;
/* Registers must be read individually then combined as there just
* isn't an instruction to read the TSC into one 64 bit register.
* The trick for 32 bit systems doesn't work because the registers
* are already 64 bits.
* =a is EAX, the low 32 bits, -d is EDX the high 32 bits
*/
__asm__ __volatile__("rdtsc" : "=a" (RecordedClockTicks), "=d" (high));
RecordedClockTicks|=high<<32;
#endif
TimeVld = true;
}
else
{
RecordedClockTicks = 0;
TimeVld = false;
}
#else
TimeVld = false;
#endif
}
// ================================================
// End
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
void MPVTimer::End(void)
{
PrevTime = CurrentTime;
if(MainTimer)
{
MPVTimer *PrevTmr = this;
for(std::list<MPVTimer *>::iterator Iter=SubTimers.begin();
Iter != SubTimers.end(); Iter++)
{
(*Iter)->End(PrevTmr);
PrevTmr = *Iter;
}
// PrevTmr now points to the *last* subtimer
if(TimeVld && PrevTmr->TimeVld)
{
#if TIMER_TYPE == TIMER_TYPE_WIN32
__int64 tTime = 0;
if(RecordedClockTicks < PrevTmr->RecordedClockTicks)
tTime = PrevTmr->RecordedClockTicks - RecordedClockTicks;
// else
// tTime = RecordedClockTicks + (??? - PrevTimer->RecordedClockTicks);
else
printf("MainTimer Time Problem: a=%d : b=%d\n",RecordedClockTicks,PrevTmr->RecordedClockTicks);
CurrentTime = (double)tTime * TimerPeriod;
#elif TIMER_TYPE == TIMER_TYPE_PAPI
long_long deltaT;
deltaT = RecordedUSecs - PrevTmr->RecordedUSecs;
CurrentTime = (double)deltaT / 1000000.0;
#elif TIMER_TYPE == TIMER_TYPE_x86_GCC_ASM
unsigned long long tTime = 0;
if(RecordedClockTicks < PrevTmr->RecordedClockTicks)
tTime = PrevTmr->RecordedClockTicks - RecordedClockTicks;
else
printf("MainTimer Time Problem: %s=%lli : %s=%lli\n", name.c_str(), RecordedClockTicks, PrevTmr->name.c_str(), PrevTmr->RecordedClockTicks);
CurrentTime = (double)tTime * TimerPeriod;
#else
CurrentTime = 0.0;
#endif
}
else
CurrentTime = 0.0;
}
}
void MPVTimer::AddSubTimer( std::string &NameIn )
{
AttachSubTimer( new MPVTimer(NameIn,false,GenID) );
}
void MPVTimer::ClearSubTimers( )
{
// Delete and clear the subtimers
for(std::list<MPVTimer *>::iterator Iter=SubTimers.begin();
Iter != SubTimers.end(); Iter++)
{
delete (*Iter);
}
SubTimers.clear();
}
// ================================================
// End - protected
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
void MPVTimer::End(MPVTimer *PrevTimer)
{
PrevTime = CurrentTime;
if(!MainTimer)
{
if(TimeVld && PrevTimer->TimeVld)
{
#if TIMER_TYPE == TIMER_TYPE_WIN32
__int64 tTime = 0;
if(RecordedClockTicks > PrevTimer->RecordedClockTicks)
tTime = RecordedClockTicks - PrevTimer->RecordedClockTicks;
// else
// tTime = PrevTimer->RecordedClockTicks + (??? - RecordedClockTicks);
else
printf("Sub-Timer Time Problem: a=%d : b=%d\n",RecordedClockTicks,PrevTimer->RecordedClockTicks);
CurrentTime = (double)tTime * TimerPeriod;
#elif TIMER_TYPE == TIMER_TYPE_PAPI
long_long deltaT;
deltaT = RecordedUSecs - PrevTimer->RecordedUSecs;
CurrentTime = (double)deltaT / 1000000.0;
#elif TIMER_TYPE == TIMER_TYPE_x86_GCC_ASM
unsigned long long tTime = 0;
if(RecordedClockTicks > PrevTimer->RecordedClockTicks)
tTime = PrevTimer->RecordedClockTicks - RecordedClockTicks;
else
printf("Sub-Timer Time Problem: %s=%lli : %s=%lli\n", name.c_str(), RecordedClockTicks, PrevTimer->name.c_str(), PrevTimer->RecordedClockTicks);
CurrentTime = (double)tTime * TimerPeriod;
#else
CurrentTime = 0.0;
#endif
}
else
CurrentTime = 0.0;
}
}
// ================================================
// AttachSubTimer - protected
// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
void MPVTimer::AttachSubTimer(MPVTimer *Timer)
{
SubTimers.push_back(Timer);
Timer->ParentTimer = this;
#if TIMER_TYPE == TIMER_TYPE_WIN32 || TIMER_TYPE == TIMER_TYPE_x86_GCC_ASM
Timer->TimerPeriod = TimerPeriod;
Timer->TmrPVld = TmrPVld;
#endif
}
double MPVTimer::GetMHz()
{
#ifdef __linux__
// Should modify this value from the drift from adjtimex
const char *cpuinfo ="/proc/cpuinfo";
std::ifstream input(cpuinfo);
if(!input)
{
fprintf(stderr, "Error opening %s: %s\n", cpuinfo,
strerror(errno));
return 0;
}
std::string data;
double MHz=-1;
while(!input.eof())
{
input >> data;
if( !input.eof() && data == "cpu")
{
input >> data;
if(!input.eof() && data == "MHz")
{
char colon;
input >> colon;
if(!input.eof() && colon == ':')
{
input >> MHz;
break;
}
}
}
}
if(MHz == -1)
{
fprintf(stderr, "Error MHz not found in %s\n", cpuinfo);
return -1;
}
if(MHz < 1)
{
fprintf(stderr, "Error invalid MHz %f MHz found, "
"even an Apple ][c would beat this one\n",
MHz);
return -1;
}
printf("MHz %.3f as read from %s\n", MHz, cpuinfo);
struct timex adj;
adj.modes=0;
if(adjtimex(&adj) == -1)
{
perror("Error reading kernel clock information, timing will "
"not be adjusted");
return MHz;
}
// frequency/65536 is the parts per million that the system is off
// negative numbers adjust it slower positive makes it faster
// tick is in parts per 10,000
double factor = 1 - adj.freq/65536.0/1000000.0 -
(adj.tick-10000)/10000.0;
MHz *= factor;
printf("MHz %.3f as adjusted\n", MHz);
return MHz;
#else
// not on Linux
return -1;
#endif
}