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
|
/**
* Copyright (C) ARM Limited 2013-2015. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef PERFDRIVER_H
#define PERFDRIVER_H
#include <stdint.h>
#include "Driver.h"
#define SCHED_SWITCH "sched/sched_switch"
#define CPU_IDLE "power/cpu_idle"
#define CPU_FREQUENCY "power/cpu_frequency"
class Buffer;
class DynBuf;
class PerfGroup;
class PerfTracepoint;
class PerfDriver : public SimpleDriver {
public:
PerfDriver();
~PerfDriver();
bool getLegacySupport() const { return mLegacySupport; }
bool getClockidSupport() const { return mClockidSupport; }
void readEvents(mxml_node_t *const xml);
bool setup();
bool summary(Buffer *const buffer);
void coreName(const uint64_t currTime, Buffer *const buffer, const int cpu);
bool isSetup() const { return mIsSetup; }
void setupCounter(Counter &counter);
bool enable(const uint64_t currTime, PerfGroup *const group, Buffer *const buffer) const;
void read(Buffer *const buffer, const int cpu);
bool sendTracepointFormats(const uint64_t currTime, Buffer *const buffer, DynBuf *const printb, DynBuf *const b);
static long long getTracepointId(const char *const name, DynBuf *const printb);
static long long getTracepointId(const char *const counter, const char *const name, DynBuf *const printb);
private:
void addCpuCounters(const char *const counterName, const int type, const int numCounters);
void addUncoreCounters(const char *const counterName, const int type, const int numCounters, const bool hasCyclesCounter);
int mIsSetup : 1,
mLegacySupport : 1,
mClockidSupport : 1,
mUnused0 : 29;
PerfTracepoint *mTracepoints;
// Intentionally undefined
PerfDriver(const PerfDriver &);
PerfDriver &operator=(const PerfDriver &);
};
#endif // PERFDRIVER_H
|