-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathK10PerformanceCounters.cpp
More file actions
509 lines (385 loc) · 15 KB
/
K10PerformanceCounters.cpp
File metadata and controls
509 lines (385 loc) · 15 KB
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
/*
* K10PerformanceCounters.cpp
*
* Collection of static method to exploit performance counters. Since many architectures shares the same
* performance counter structure, counting and registers, we use this technique to not repeat a lot of times
* the same common code
*
* Created on: 31/lug/2011
* Author: paolo
*/
#include "Processor.h"
#include "PerformanceCounter.h"
#include "PCIRegObject.h"
#include "MSRObject.h"
#include "Signal.h"
void Processor::K10PerformanceCounters::perfMonitorCPUUsage(class Processor *p)
{
PerformanceCounter *perfCounter;
MSRObject *tscCounter; //We need the timestamp counter too to determine the cpu usage in percentage
DWORD cpuIndex, nodeId, coreId;
PROCESSORMASK cpuMask;
unsigned int perfCounterSlot;
uint64_t usage;
// These two pointers will refer to two arrays containing previous performance counter values
// and previous Time Stamp counters. We need these to obtain instantaneous CPU usage information
uint64_t *prevPerfCounters;
uint64_t *prevTSCCounters;
try
{
p->setNode(p->ALL_NODES);
p->setCore(p->ALL_CORES);
cpuMask = p->getMask();
/* We do this to do some "caching" of the mask, instead of calculating each time
we need to retrieve the time stamp counter */
// Allocating space for previous values of counters.
prevPerfCounters = (uint64_t *) calloc(p->getProcessorCores() * p->getProcessorNodes(), sizeof(uint64_t));
prevTSCCounters = (uint64_t *) calloc(p->getProcessorCores() * p->getProcessorNodes(), sizeof(uint64_t));
// MSR Object to retrieve the time stamp counter for all the nodes and all the processors
tscCounter = new MSRObject();
//Creates a new performance counter, for now we set slot 0, but we will
//use the findAvailable slot method to find an available method to be used
perfCounter = new PerformanceCounter(cpuMask, 0, p->getMaxSlots());
//Event 0x76 is Idle Counter
perfCounter->setEventSelect(0x76);
perfCounter->setCountOsMode(true);
perfCounter->setCountUserMode(true);
perfCounter->setCounterMask(0);
perfCounter->setEdgeDetect(false);
perfCounter->setEnableAPICInterrupt(false);
perfCounter->setInvertCntMask(false);
perfCounter->setUnitMask(0);
perfCounter->setMaxSlots(p->getMaxSlots());
//Finds an available slot for our purpose
perfCounterSlot = perfCounter->findAvailableSlot();
//findAvailableSlot() returns -2 in case of error
if (perfCounterSlot == 0xfffffffe)
throw "unable to access performance counter slots";
//findAvailableSlot() returns -1 in case there aren't available slots
if (perfCounterSlot == 0xffffffff)
throw "unable to find an available performance counter slot";
printf("Performance counter will use slot #%d\n", perfCounterSlot);
//In case there are no errors, we program the object with the slot itself has found
perfCounter->setSlot(perfCounterSlot);
// Program the counter slot
if (!perfCounter->program())
throw "unable to program performance counter parameters";
// Enable the counter slot
if (!perfCounter->enable())
throw "unable to enable performance counters";
/* Here we take a snapshot of the performance counter and a snapshot of the time
* stamp counter to initialize the arrays to let them not show erratic huge numbers
* on first step
*/
if (!perfCounter->takeSnapshot())
{
throw "unable to retrieve performance counter data";
return;
}
if (!tscCounter->readMSR(TIME_STAMP_COUNTER_REG, cpuMask))
{
throw "unable to retrieve time stamp counter";
return;
}
cpuIndex = 0;
for (nodeId = 0; nodeId < p->getProcessorNodes(); nodeId++)
{
for (coreId = 0; coreId < p->getProcessorCores(); coreId++)
{
prevPerfCounters[cpuIndex] = perfCounter->getCounter(cpuIndex);
prevTSCCounters[cpuIndex] = tscCounter->getBits(cpuIndex, 0, 64);
cpuIndex++;
}
}
Signal::activateUserSignalsHandler();
printf("Values >100%% can be expected if the CPU is in a Boosted State\n");
while (!Signal::getSignalStatus())
{
if (!perfCounter->takeSnapshot())
{
throw "unable to retrieve performance counter data";
return;
}
if (!tscCounter->readMSR(TIME_STAMP_COUNTER_REG, cpuMask))
{
throw "unable to retrieve time stamp counter";
return;
}
cpuIndex = 0;
for (nodeId = 0; nodeId < p->getProcessorNodes(); nodeId++)
{
printf("\nNode %d -", nodeId);
for (coreId = 0x0; coreId < p->getProcessorCores(); coreId++)
{
usage = ((perfCounter->getCounter(cpuIndex)) - prevPerfCounters[cpuIndex]) * 100;
usage /= tscCounter->getBits(cpuIndex, 0, 64) - prevTSCCounters[cpuIndex];
printf(" c%d:%d%%", coreId, (unsigned int) usage);
prevPerfCounters[cpuIndex] = perfCounter->getCounter(cpuIndex);
prevTSCCounters[cpuIndex] = tscCounter->getBits(cpuIndex, 0, 64);
cpuIndex++;
}
}
fflush(stdout);
Sleep(1000);
}
perfCounter->disable();
} catch (char const *str) {
if (perfCounter->getEnabled()) perfCounter->disable();
printf("K10PerformanceCounters.cpp::perfMonitorCPUUsage - %s\n", str);
}
free(perfCounter);
free(tscCounter);
free(prevPerfCounters);
free(prevTSCCounters);
return;
}
void Processor::K10PerformanceCounters::perfMonitorFPUUsage(class Processor *p)
{
PerformanceCounter *perfCounter;
MSRObject *tscCounter; //We need the timestamp counter too to determine the cpu usage in percentage
DWORD cpuIndex, nodeId, coreId;
PROCESSORMASK cpuMask;
unsigned int perfCounterSlot;
uint64_t usage;
// These two pointers will refer to two arrays containing previous performance counter values
// and previous Time Stamp counters. We need these to obtain instantaneous CPU usage information
uint64_t *prevPerfCounters;
uint64_t *prevTSCCounters;
try {
p->setNode(p->ALL_NODES);
p->setCore(p->ALL_CORES);
cpuMask = p->getMask();
/* We do this to do some "caching" of the mask, instead of calculating each time
we need to retrieve the time stamp counter */
// Allocating space for previous values of counters.
prevPerfCounters = (uint64_t *) calloc(p->getProcessorCores() * p->getProcessorNodes(), sizeof(uint64_t));
prevTSCCounters = (uint64_t *) calloc(p->getProcessorCores() * p->getProcessorNodes(), sizeof(uint64_t));
// MSR Object to retrieve the time stamp counter for all the nodes and all the processors
tscCounter = new MSRObject();
//Creates a new performance counter, for now we set slot 0, but we will
//use the findAvailable slot method to find an available method to be used
perfCounter = new PerformanceCounter(cpuMask, 0, p->getMaxSlots());
//Event 0x76 is Idle Counter
perfCounter->setEventSelect(0x1);
perfCounter->setCountOsMode(true);
perfCounter->setCountUserMode(true);
perfCounter->setCounterMask(0);
perfCounter->setEdgeDetect(false);
perfCounter->setEnableAPICInterrupt(false);
perfCounter->setInvertCntMask(false);
perfCounter->setUnitMask(0);
//Finds an available slot for our purpose
perfCounterSlot = perfCounter->findAvailableSlot();
//findAvailableSlot() returns -2 in case of error
if (perfCounterSlot == 0xfffffffe)
throw "unable to access performance counter slots";
//findAvailableSlot() returns -1 in case there aren't available slots
if (perfCounterSlot == 0xffffffff)
throw "unable to find an available performance counter slot";
printf("Performance counter will use slot #%d\n", perfCounterSlot);
//In case there are no errors, we program the object with the slot itself has found
perfCounter->setSlot(perfCounterSlot);
// Program the counter slot
if (!perfCounter->program())
throw "unable to program performance counter parameters";
// Enable the counter slot
if (!perfCounter->enable())
throw "unable to enable performance counters";
/* Here we take a snapshot of the performance counter and a snapshot of the time
* stamp counter to initialize the arrays to let them not show erratic huge numbers
* on first step
*/
if (!perfCounter->takeSnapshot())
throw "unable to retrieve performance counter data";
if (!tscCounter->readMSR(TIME_STAMP_COUNTER_REG, cpuMask))
throw "unable to retrieve time stamp counter";
cpuIndex = 0;
for (nodeId = 0; nodeId < p->getProcessorNodes(); nodeId++)
{
for (coreId = 0x0; coreId < p->getProcessorCores(); coreId++)
{
prevPerfCounters[cpuIndex] = perfCounter->getCounter(cpuIndex);
prevTSCCounters[cpuIndex] = tscCounter->getBits(cpuIndex, 0, 64);
cpuIndex++;
}
}
Signal::activateUserSignalsHandler();
while (!Signal::getSignalStatus())
{
if (!perfCounter->takeSnapshot())
throw "unable to retrieve performance counter data";
if (!tscCounter->readMSR(TIME_STAMP_COUNTER_REG, cpuMask))
throw "unable to retrieve time stamp counter";
cpuIndex = 0;
for (nodeId = 0; nodeId < p->getProcessorNodes(); nodeId++)
{
printf("Node %d -", nodeId);
for (coreId = 0x0; coreId < p->getProcessorCores(); coreId++)
{
usage = ((perfCounter->getCounter(cpuIndex)) - prevPerfCounters[cpuIndex]) * 100;
usage /= tscCounter->getBits(cpuIndex, 0, 64) - prevTSCCounters[cpuIndex];
printf(" c%u:%u%%", coreId, (unsigned int) usage);
prevPerfCounters[cpuIndex] = perfCounter->getCounter(cpuIndex);
prevTSCCounters[cpuIndex] = tscCounter->getBits(cpuIndex, 0, 64);
cpuIndex++;
}
printf("\n");
}
if (fflush(stdout) == EOF) {
break;
}
Sleep(1000);
}
perfCounter->disable();
} catch (char const *str) {
if (perfCounter->getEnabled()) perfCounter->disable();
printf("K10PerformanceCounters.cpp::perfMonitorCPUUsage - %s\n", str);
}
free(perfCounter);
free(tscCounter);
free(prevPerfCounters);
free(prevTSCCounters);
return;
}
void Processor::K10PerformanceCounters::perfMonitorDCMA(class Processor *p)
{
PerformanceCounter *perfCounter;
DWORD cpuIndex, nodeId, coreId;
PROCESSORMASK cpuMask;
unsigned int perfCounterSlot;
uint64_t misses;
// This pointers will refer an array containing previous performance counter values
uint64_t *prevPerfCounters;
try {
p->setNode(p->ALL_NODES);
p->setCore(p->ALL_CORES);
cpuMask = p->getMask();
/* We do this to do some "caching" of the mask, instead of calculating each time
we need to retrieve the time stamp counter */
// Allocating space for previous values of counters.
prevPerfCounters = (uint64_t *) calloc(
p->getProcessorCores() * p->getProcessorNodes(),
sizeof(uint64_t));
//Creates a new performance counter, for now we set slot 0, but we will
//use the findAvailable slot method to find an available method to be used
perfCounter = new PerformanceCounter(cpuMask, 0, p->getMaxSlots());
//Event 0x76 is Idle Counter
perfCounter->setEventSelect(0x47);
perfCounter->setCountOsMode(true);
perfCounter->setCountUserMode(true);
perfCounter->setCounterMask(0);
perfCounter->setEdgeDetect(false);
perfCounter->setEnableAPICInterrupt(false);
perfCounter->setInvertCntMask(false);
perfCounter->setUnitMask(0);
//Finds an available slot for our purpose
perfCounterSlot = perfCounter->findAvailableSlot();
//findAvailableSlot() returns -2 in case of error
if (perfCounterSlot == 0xfffffffe)
throw "unable to access performance counter slots";
//findAvailableSlot() returns -1 in case there aren't available slots
if (perfCounterSlot == 0xffffffff)
throw "unable to find an available performance counter slot";
printf("Performance counter will use slot #%d\n", perfCounterSlot);
//In case there are no errors, we program the object with the slot itself has found
perfCounter->setSlot(perfCounterSlot);
// Program the counter slot
if (!perfCounter->program())
throw "unable to program performance counter parameters";
// Enable the counter slot
if (!perfCounter->enable())
throw "unable to enable performance counters";
/* Here we take a snapshot of the performance counter and a snapshot of the time
* stamp counter to initialize the arrays to let them not show erratic huge numbers
* on first step
*/
if (!perfCounter->takeSnapshot())
throw "unable to retrieve performance counter data";
cpuIndex = 0;
for (nodeId = 0; nodeId < p->getProcessorNodes(); nodeId++)
{
for (coreId = 0x0; coreId < p->getProcessorCores(); coreId++)
{
prevPerfCounters[cpuIndex] = perfCounter->getCounter(cpuIndex);
cpuIndex++;
}
}
Signal::activateUserSignalsHandler();
while (!Signal::getSignalStatus())
{
if (!perfCounter->takeSnapshot())
throw "unable to retrieve performance counter data";
cpuIndex = 0;
for (nodeId = 0; nodeId < p->getProcessorNodes(); nodeId++)
{
printf("Node %d -", nodeId);
for (coreId = 0x0; coreId < p->getProcessorCores(); coreId++)
{
misses = perfCounter->getCounter(cpuIndex) - prevPerfCounters[cpuIndex];
printf(" c%u:%0.3fk", coreId, (float) (misses/1000.0f));
prevPerfCounters[cpuIndex] = perfCounter->getCounter(cpuIndex);
cpuIndex++;
}
printf("\n");
}
if (fflush(stdout) == EOF) {
break;
}
Sleep(1000);
}
perfCounter->disable();
} catch (char const *str) {
if (perfCounter->getEnabled()) perfCounter->disable();
printf("K10PerformanceCounters.cpp::perfMonitorCPUUsage - %s\n", str);
}
free(perfCounter);
free(prevPerfCounters);
return;
}
void Processor::K10PerformanceCounters::perfCounterGetInfo (class Processor *p) {
PerformanceCounter *performanceCounter;
DWORD node, core, slot;
printf ("Caption:\n");
printf ("Evt:\tperformance counter event\n");
printf ("En:\tperformance counter is enabled\n");
printf ("U:\tperformance counter will count usermode instructions\n");
printf ("OS:\tperformance counter will counter Os/kernel instructions\n");
printf ("cMsk:\tperformance counter mask (see processor manual reference)\n");
printf ("ED:\tcounting on edge detect, else counting on level detect\n");
printf ("APIC:\tif set, an APIC interrupt will be issued on counter overflow\n");
printf ("icMsk:\tif set, mask is inversed (see processor manual reference)\n");
printf ("uMsk:\tunit mask (see processor manual reference)\n\n");
for (node = 0; node < p->getProcessorNodes(); node++)
{
printf ("--- Node %d\n", node);
p->setNode(node);
p->setCore(ALL_CORES);
for (slot = 0; slot < p->getMaxSlots(); slot++)
{
performanceCounter = new PerformanceCounter(p->getMask(), slot, p->getMaxSlots());
for (core = 0; core < p->getProcessorCores(); core++)
{
if (!performanceCounter->fetch (core))
{
printf ("K10PerformanceCounters.cpp::perfCounterGetInfo - unable to read performance counter register\n");
free (performanceCounter);
return;
}
printf ("Slot %d core %d - evt:0x%x En:%d U:%d OS:%d cMsk:%x ED:%d APIC:%d icMsk:%x uMsk:%x\n",
slot,
core,
performanceCounter->getEventSelect(),
performanceCounter->getEnabled(),
performanceCounter->getCountUserMode(),
performanceCounter->getCountOsMode(),
performanceCounter->getCounterMask(),
performanceCounter->getEdgeDetect(),
performanceCounter->getEnableAPICInterrupt(),
performanceCounter->getInvertCntMask(),
performanceCounter->getUnitMask()
);
}
free (performanceCounter);
}
}
}