perf evsel: Support event groups
[deliverable/linux.git] / tools / perf / util / evsel.c
CommitLineData
69aad6f1 1#include "evsel.h"
48290609 2#include "../perf.h"
69aad6f1 3#include "util.h"
86bd5e86
ACM
4#include "cpumap.h"
5#include "thread.h"
69aad6f1 6
c52b12ed
ACM
7#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
8
23a2f3ab 9struct perf_evsel *perf_evsel__new(struct perf_event_attr *attr, int idx)
69aad6f1
ACM
10{
11 struct perf_evsel *evsel = zalloc(sizeof(*evsel));
12
13 if (evsel != NULL) {
14 evsel->idx = idx;
23a2f3ab 15 evsel->attr = *attr;
69aad6f1
ACM
16 INIT_LIST_HEAD(&evsel->node);
17 }
18
19 return evsel;
20}
21
22int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
23{
24 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
25 return evsel->fd != NULL ? 0 : -ENOMEM;
26}
27
c52b12ed
ACM
28int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus)
29{
30 evsel->counts = zalloc((sizeof(*evsel->counts) +
31 (ncpus * sizeof(struct perf_counts_values))));
32 return evsel->counts != NULL ? 0 : -ENOMEM;
33}
34
69aad6f1
ACM
35void perf_evsel__free_fd(struct perf_evsel *evsel)
36{
37 xyarray__delete(evsel->fd);
38 evsel->fd = NULL;
39}
40
c52b12ed
ACM
41void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
42{
43 int cpu, thread;
44
45 for (cpu = 0; cpu < ncpus; cpu++)
46 for (thread = 0; thread < nthreads; ++thread) {
47 close(FD(evsel, cpu, thread));
48 FD(evsel, cpu, thread) = -1;
49 }
50}
51
69aad6f1
ACM
52void perf_evsel__delete(struct perf_evsel *evsel)
53{
54 assert(list_empty(&evsel->node));
55 xyarray__delete(evsel->fd);
56 free(evsel);
57}
c52b12ed
ACM
58
59int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
60 int cpu, int thread, bool scale)
61{
62 struct perf_counts_values count;
63 size_t nv = scale ? 3 : 1;
64
65 if (FD(evsel, cpu, thread) < 0)
66 return -EINVAL;
67
4eed11d5
ACM
68 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1) < 0)
69 return -ENOMEM;
70
c52b12ed
ACM
71 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) < 0)
72 return -errno;
73
74 if (scale) {
75 if (count.run == 0)
76 count.val = 0;
77 else if (count.run < count.ena)
78 count.val = (u64)((double)count.val * count.ena / count.run + 0.5);
79 } else
80 count.ena = count.run = 0;
81
82 evsel->counts->cpu[cpu] = count;
83 return 0;
84}
85
86int __perf_evsel__read(struct perf_evsel *evsel,
87 int ncpus, int nthreads, bool scale)
88{
89 size_t nv = scale ? 3 : 1;
90 int cpu, thread;
91 struct perf_counts_values *aggr = &evsel->counts->aggr, count;
92
93 aggr->val = 0;
94
95 for (cpu = 0; cpu < ncpus; cpu++) {
96 for (thread = 0; thread < nthreads; thread++) {
97 if (FD(evsel, cpu, thread) < 0)
98 continue;
99
100 if (readn(FD(evsel, cpu, thread),
101 &count, nv * sizeof(u64)) < 0)
102 return -errno;
103
104 aggr->val += count.val;
105 if (scale) {
106 aggr->ena += count.ena;
107 aggr->run += count.run;
108 }
109 }
110 }
111
112 evsel->counts->scaled = 0;
113 if (scale) {
114 if (aggr->run == 0) {
115 evsel->counts->scaled = -1;
116 aggr->val = 0;
117 return 0;
118 }
119
120 if (aggr->run < aggr->ena) {
121 evsel->counts->scaled = 1;
122 aggr->val = (u64)((double)aggr->val * aggr->ena / aggr->run + 0.5);
123 }
124 } else
125 aggr->ena = aggr->run = 0;
126
127 return 0;
128}
48290609 129
0252208e 130static int __perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
f08199d3 131 struct thread_map *threads, bool group)
48290609 132{
0252208e 133 int cpu, thread;
48290609 134
0252208e
ACM
135 if (evsel->fd == NULL &&
136 perf_evsel__alloc_fd(evsel, cpus->nr, threads->nr) < 0)
4eed11d5
ACM
137 return -1;
138
86bd5e86 139 for (cpu = 0; cpu < cpus->nr; cpu++) {
f08199d3
ACM
140 int group_fd = -1;
141
0252208e
ACM
142 for (thread = 0; thread < threads->nr; thread++) {
143 FD(evsel, cpu, thread) = sys_perf_event_open(&evsel->attr,
144 threads->map[thread],
f08199d3
ACM
145 cpus->map[cpu],
146 group_fd, 0);
0252208e
ACM
147 if (FD(evsel, cpu, thread) < 0)
148 goto out_close;
f08199d3
ACM
149
150 if (group && group_fd == -1)
151 group_fd = FD(evsel, cpu, thread);
0252208e 152 }
48290609
ACM
153 }
154
155 return 0;
156
157out_close:
0252208e
ACM
158 do {
159 while (--thread >= 0) {
160 close(FD(evsel, cpu, thread));
161 FD(evsel, cpu, thread) = -1;
162 }
163 thread = threads->nr;
164 } while (--cpu >= 0);
48290609
ACM
165 return -1;
166}
167
0252208e
ACM
168static struct {
169 struct cpu_map map;
170 int cpus[1];
171} empty_cpu_map = {
172 .map.nr = 1,
173 .cpus = { -1, },
174};
175
176static struct {
177 struct thread_map map;
178 int threads[1];
179} empty_thread_map = {
180 .map.nr = 1,
181 .threads = { -1, },
182};
183
f08199d3
ACM
184int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
185 struct thread_map *threads, bool group)
48290609 186{
0252208e
ACM
187 if (cpus == NULL) {
188 /* Work around old compiler warnings about strict aliasing */
189 cpus = &empty_cpu_map.map;
48290609
ACM
190 }
191
0252208e
ACM
192 if (threads == NULL)
193 threads = &empty_thread_map.map;
48290609 194
f08199d3 195 return __perf_evsel__open(evsel, cpus, threads, group);
48290609
ACM
196}
197
f08199d3
ACM
198int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
199 struct cpu_map *cpus, bool group)
48290609 200{
f08199d3 201 return __perf_evsel__open(evsel, cpus, &empty_thread_map.map, group);
0252208e 202}
48290609 203
f08199d3
ACM
204int perf_evsel__open_per_thread(struct perf_evsel *evsel,
205 struct thread_map *threads, bool group)
0252208e 206{
f08199d3 207 return __perf_evsel__open(evsel, &empty_cpu_map.map, threads, group);
48290609 208}
This page took 0.045005 seconds and 5 git commands to generate.