perf evsel: Allow specifying if the inherit bit should be set
[deliverable/linux.git] / tools / perf / util / evsel.c
1 #include "evsel.h"
2 #include "../perf.h"
3 #include "util.h"
4 #include "cpumap.h"
5 #include "thread.h"
6
7 #define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
8
9 struct perf_evsel *perf_evsel__new(struct perf_event_attr *attr, int idx)
10 {
11 struct perf_evsel *evsel = zalloc(sizeof(*evsel));
12
13 if (evsel != NULL) {
14 evsel->idx = idx;
15 evsel->attr = *attr;
16 INIT_LIST_HEAD(&evsel->node);
17 }
18
19 return evsel;
20 }
21
22 int 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
28 int 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
35 void perf_evsel__free_fd(struct perf_evsel *evsel)
36 {
37 xyarray__delete(evsel->fd);
38 evsel->fd = NULL;
39 }
40
41 void 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
52 void perf_evsel__delete(struct perf_evsel *evsel)
53 {
54 assert(list_empty(&evsel->node));
55 xyarray__delete(evsel->fd);
56 free(evsel);
57 }
58
59 int __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
68 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1) < 0)
69 return -ENOMEM;
70
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
86 int __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 }
129
130 static int __perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
131 struct thread_map *threads, bool group, bool inherit)
132 {
133 int cpu, thread;
134
135 if (evsel->fd == NULL &&
136 perf_evsel__alloc_fd(evsel, cpus->nr, threads->nr) < 0)
137 return -1;
138
139 for (cpu = 0; cpu < cpus->nr; cpu++) {
140 int group_fd = -1;
141
142 evsel->attr.inherit = (cpus->map[cpu] < 0) && inherit;
143
144 for (thread = 0; thread < threads->nr; thread++) {
145 FD(evsel, cpu, thread) = sys_perf_event_open(&evsel->attr,
146 threads->map[thread],
147 cpus->map[cpu],
148 group_fd, 0);
149 if (FD(evsel, cpu, thread) < 0)
150 goto out_close;
151
152 if (group && group_fd == -1)
153 group_fd = FD(evsel, cpu, thread);
154 }
155 }
156
157 return 0;
158
159 out_close:
160 do {
161 while (--thread >= 0) {
162 close(FD(evsel, cpu, thread));
163 FD(evsel, cpu, thread) = -1;
164 }
165 thread = threads->nr;
166 } while (--cpu >= 0);
167 return -1;
168 }
169
170 static struct {
171 struct cpu_map map;
172 int cpus[1];
173 } empty_cpu_map = {
174 .map.nr = 1,
175 .cpus = { -1, },
176 };
177
178 static struct {
179 struct thread_map map;
180 int threads[1];
181 } empty_thread_map = {
182 .map.nr = 1,
183 .threads = { -1, },
184 };
185
186 int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
187 struct thread_map *threads, bool group, bool inherit)
188 {
189 if (cpus == NULL) {
190 /* Work around old compiler warnings about strict aliasing */
191 cpus = &empty_cpu_map.map;
192 }
193
194 if (threads == NULL)
195 threads = &empty_thread_map.map;
196
197 return __perf_evsel__open(evsel, cpus, threads, group, inherit);
198 }
199
200 int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
201 struct cpu_map *cpus, bool group, bool inherit)
202 {
203 return __perf_evsel__open(evsel, cpus, &empty_thread_map.map, group, inherit);
204 }
205
206 int perf_evsel__open_per_thread(struct perf_evsel *evsel,
207 struct thread_map *threads, bool group, bool inherit)
208 {
209 return __perf_evsel__open(evsel, &empty_cpu_map.map, threads, group, inherit);
210 }
This page took 0.039963 seconds and 5 git commands to generate.