2 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
4 * Parts came from builtin-{top,stat,record}.c, see those files for further
7 * Released under the GPL v2. (and only v2, not any later version)
11 #include "thread_map.h"
18 #include <linux/bitops.h>
19 #include <linux/hash.h>
21 #define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
22 #define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
24 void perf_evlist__init(struct perf_evlist
*evlist
, struct cpu_map
*cpus
,
25 struct thread_map
*threads
)
29 for (i
= 0; i
< PERF_EVLIST__HLIST_SIZE
; ++i
)
30 INIT_HLIST_HEAD(&evlist
->heads
[i
]);
31 INIT_LIST_HEAD(&evlist
->entries
);
32 perf_evlist__set_maps(evlist
, cpus
, threads
);
35 struct perf_evlist
*perf_evlist__new(struct cpu_map
*cpus
,
36 struct thread_map
*threads
)
38 struct perf_evlist
*evlist
= zalloc(sizeof(*evlist
));
41 perf_evlist__init(evlist
, cpus
, threads
);
46 static void perf_evlist__purge(struct perf_evlist
*evlist
)
48 struct perf_evsel
*pos
, *n
;
50 list_for_each_entry_safe(pos
, n
, &evlist
->entries
, node
) {
51 list_del_init(&pos
->node
);
52 perf_evsel__delete(pos
);
55 evlist
->nr_entries
= 0;
58 void perf_evlist__exit(struct perf_evlist
*evlist
)
63 evlist
->pollfd
= NULL
;
66 void perf_evlist__delete(struct perf_evlist
*evlist
)
68 perf_evlist__purge(evlist
);
69 perf_evlist__exit(evlist
);
73 void perf_evlist__add(struct perf_evlist
*evlist
, struct perf_evsel
*entry
)
75 list_add_tail(&entry
->node
, &evlist
->entries
);
79 int perf_evlist__add_default(struct perf_evlist
*evlist
)
81 struct perf_event_attr attr
= {
82 .type
= PERF_TYPE_HARDWARE
,
83 .config
= PERF_COUNT_HW_CPU_CYCLES
,
85 struct perf_evsel
*evsel
= perf_evsel__new(&attr
, 0);
90 perf_evlist__add(evlist
, evsel
);
94 void perf_evlist__disable(struct perf_evlist
*evlist
)
97 struct perf_evsel
*pos
;
99 for (cpu
= 0; cpu
< evlist
->cpus
->nr
; cpu
++) {
100 list_for_each_entry(pos
, &evlist
->entries
, node
) {
101 for (thread
= 0; thread
< evlist
->threads
->nr
; thread
++)
102 ioctl(FD(pos
, cpu
, thread
), PERF_EVENT_IOC_DISABLE
);
107 int perf_evlist__alloc_pollfd(struct perf_evlist
*evlist
)
109 int nfds
= evlist
->cpus
->nr
* evlist
->threads
->nr
* evlist
->nr_entries
;
110 evlist
->pollfd
= malloc(sizeof(struct pollfd
) * nfds
);
111 return evlist
->pollfd
!= NULL
? 0 : -ENOMEM
;
114 void perf_evlist__add_pollfd(struct perf_evlist
*evlist
, int fd
)
116 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
117 evlist
->pollfd
[evlist
->nr_fds
].fd
= fd
;
118 evlist
->pollfd
[evlist
->nr_fds
].events
= POLLIN
;
122 static void perf_evlist__id_hash(struct perf_evlist
*evlist
,
123 struct perf_evsel
*evsel
,
124 int cpu
, int thread
, u64 id
)
127 struct perf_sample_id
*sid
= SID(evsel
, cpu
, thread
);
131 hash
= hash_64(sid
->id
, PERF_EVLIST__HLIST_BITS
);
132 hlist_add_head(&sid
->node
, &evlist
->heads
[hash
]);
135 void perf_evlist__id_add(struct perf_evlist
*evlist
, struct perf_evsel
*evsel
,
136 int cpu
, int thread
, u64 id
)
138 perf_evlist__id_hash(evlist
, evsel
, cpu
, thread
, id
);
139 evsel
->id
[evsel
->ids
++] = id
;
142 static int perf_evlist__id_add_fd(struct perf_evlist
*evlist
,
143 struct perf_evsel
*evsel
,
144 int cpu
, int thread
, int fd
)
146 u64 read_data
[4] = { 0, };
147 int id_idx
= 1; /* The first entry is the counter value */
149 if (!(evsel
->attr
.read_format
& PERF_FORMAT_ID
) ||
150 read(fd
, &read_data
, sizeof(read_data
)) == -1)
153 if (evsel
->attr
.read_format
& PERF_FORMAT_TOTAL_TIME_ENABLED
)
155 if (evsel
->attr
.read_format
& PERF_FORMAT_TOTAL_TIME_RUNNING
)
158 perf_evlist__id_add(evlist
, evsel
, cpu
, thread
, read_data
[id_idx
]);
162 struct perf_evsel
*perf_evlist__id2evsel(struct perf_evlist
*evlist
, u64 id
)
164 struct hlist_head
*head
;
165 struct hlist_node
*pos
;
166 struct perf_sample_id
*sid
;
169 if (evlist
->nr_entries
== 1)
170 return list_entry(evlist
->entries
.next
, struct perf_evsel
, node
);
172 hash
= hash_64(id
, PERF_EVLIST__HLIST_BITS
);
173 head
= &evlist
->heads
[hash
];
175 hlist_for_each_entry(sid
, pos
, head
, node
)
181 union perf_event
*perf_evlist__mmap_read(struct perf_evlist
*evlist
, int idx
)
183 /* XXX Move this to perf.c, making it generally available */
184 unsigned int page_size
= sysconf(_SC_PAGE_SIZE
);
185 struct perf_mmap
*md
= &evlist
->mmap
[idx
];
186 unsigned int head
= perf_mmap__read_head(md
);
187 unsigned int old
= md
->prev
;
188 unsigned char *data
= md
->base
+ page_size
;
189 union perf_event
*event
= NULL
;
191 if (evlist
->overwrite
) {
193 * If we're further behind than half the buffer, there's a chance
194 * the writer will bite our tail and mess up the samples under us.
196 * If we somehow ended up ahead of the head, we got messed up.
198 * In either case, truncate and restart at head.
200 int diff
= head
- old
;
201 if (diff
> md
->mask
/ 2 || diff
< 0) {
202 fprintf(stderr
, "WARNING: failed to keep up with mmap data.\n");
205 * head points to a known good entry, start there.
214 event
= (union perf_event
*)&data
[old
& md
->mask
];
215 size
= event
->header
.size
;
218 * Event straddles the mmap boundary -- header should always
219 * be inside due to u64 alignment of output.
221 if ((old
& md
->mask
) + size
!= ((old
+ size
) & md
->mask
)) {
222 unsigned int offset
= old
;
223 unsigned int len
= min(sizeof(*event
), size
), cpy
;
224 void *dst
= &evlist
->event_copy
;
227 cpy
= min(md
->mask
+ 1 - (offset
& md
->mask
), len
);
228 memcpy(dst
, &data
[offset
& md
->mask
], cpy
);
234 event
= &evlist
->event_copy
;
242 if (!evlist
->overwrite
)
243 perf_mmap__write_tail(md
, old
);
248 void perf_evlist__munmap(struct perf_evlist
*evlist
)
252 for (i
= 0; i
< evlist
->nr_mmaps
; i
++) {
253 if (evlist
->mmap
[i
].base
!= NULL
) {
254 munmap(evlist
->mmap
[i
].base
, evlist
->mmap_len
);
255 evlist
->mmap
[i
].base
= NULL
;
263 int perf_evlist__alloc_mmap(struct perf_evlist
*evlist
)
265 evlist
->nr_mmaps
= evlist
->cpus
->nr
;
266 if (evlist
->cpus
->map
[0] == -1)
267 evlist
->nr_mmaps
= evlist
->threads
->nr
;
268 evlist
->mmap
= zalloc(evlist
->nr_mmaps
* sizeof(struct perf_mmap
));
269 return evlist
->mmap
!= NULL
? 0 : -ENOMEM
;
272 static int __perf_evlist__mmap(struct perf_evlist
*evlist
,
273 int idx
, int prot
, int mask
, int fd
)
275 evlist
->mmap
[idx
].prev
= 0;
276 evlist
->mmap
[idx
].mask
= mask
;
277 evlist
->mmap
[idx
].base
= mmap(NULL
, evlist
->mmap_len
, prot
,
279 if (evlist
->mmap
[idx
].base
== MAP_FAILED
)
282 perf_evlist__add_pollfd(evlist
, fd
);
286 static int perf_evlist__mmap_per_cpu(struct perf_evlist
*evlist
, int prot
, int mask
)
288 struct perf_evsel
*evsel
;
291 for (cpu
= 0; cpu
< evlist
->cpus
->nr
; cpu
++) {
294 for (thread
= 0; thread
< evlist
->threads
->nr
; thread
++) {
295 list_for_each_entry(evsel
, &evlist
->entries
, node
) {
296 int fd
= FD(evsel
, cpu
, thread
);
300 if (__perf_evlist__mmap(evlist
, cpu
,
301 prot
, mask
, output
) < 0)
304 if (ioctl(fd
, PERF_EVENT_IOC_SET_OUTPUT
, output
) != 0)
308 if ((evsel
->attr
.read_format
& PERF_FORMAT_ID
) &&
309 perf_evlist__id_add_fd(evlist
, evsel
, cpu
, thread
, fd
) < 0)
318 for (cpu
= 0; cpu
< evlist
->cpus
->nr
; cpu
++) {
319 if (evlist
->mmap
[cpu
].base
!= NULL
) {
320 munmap(evlist
->mmap
[cpu
].base
, evlist
->mmap_len
);
321 evlist
->mmap
[cpu
].base
= NULL
;
327 static int perf_evlist__mmap_per_thread(struct perf_evlist
*evlist
, int prot
, int mask
)
329 struct perf_evsel
*evsel
;
332 for (thread
= 0; thread
< evlist
->threads
->nr
; thread
++) {
335 list_for_each_entry(evsel
, &evlist
->entries
, node
) {
336 int fd
= FD(evsel
, 0, thread
);
340 if (__perf_evlist__mmap(evlist
, thread
,
341 prot
, mask
, output
) < 0)
344 if (ioctl(fd
, PERF_EVENT_IOC_SET_OUTPUT
, output
) != 0)
348 if ((evsel
->attr
.read_format
& PERF_FORMAT_ID
) &&
349 perf_evlist__id_add_fd(evlist
, evsel
, 0, thread
, fd
) < 0)
357 for (thread
= 0; thread
< evlist
->threads
->nr
; thread
++) {
358 if (evlist
->mmap
[thread
].base
!= NULL
) {
359 munmap(evlist
->mmap
[thread
].base
, evlist
->mmap_len
);
360 evlist
->mmap
[thread
].base
= NULL
;
366 /** perf_evlist__mmap - Create per cpu maps to receive events
368 * @evlist - list of events
369 * @pages - map length in pages
370 * @overwrite - overwrite older events?
372 * If overwrite is false the user needs to signal event consuption using:
374 * struct perf_mmap *m = &evlist->mmap[cpu];
375 * unsigned int head = perf_mmap__read_head(m);
377 * perf_mmap__write_tail(m, head)
379 * Using perf_evlist__read_on_cpu does this automatically.
381 int perf_evlist__mmap(struct perf_evlist
*evlist
, int pages
, bool overwrite
)
383 unsigned int page_size
= sysconf(_SC_PAGE_SIZE
);
384 int mask
= pages
* page_size
- 1;
385 struct perf_evsel
*evsel
;
386 const struct cpu_map
*cpus
= evlist
->cpus
;
387 const struct thread_map
*threads
= evlist
->threads
;
388 int prot
= PROT_READ
| (overwrite
? 0 : PROT_WRITE
);
390 if (evlist
->mmap
== NULL
&& perf_evlist__alloc_mmap(evlist
) < 0)
393 if (evlist
->pollfd
== NULL
&& perf_evlist__alloc_pollfd(evlist
) < 0)
396 evlist
->overwrite
= overwrite
;
397 evlist
->mmap_len
= (pages
+ 1) * page_size
;
399 list_for_each_entry(evsel
, &evlist
->entries
, node
) {
400 if ((evsel
->attr
.read_format
& PERF_FORMAT_ID
) &&
401 evsel
->sample_id
== NULL
&&
402 perf_evsel__alloc_id(evsel
, cpus
->nr
, threads
->nr
) < 0)
406 if (evlist
->cpus
->map
[0] == -1)
407 return perf_evlist__mmap_per_thread(evlist
, prot
, mask
);
409 return perf_evlist__mmap_per_cpu(evlist
, prot
, mask
);
412 int perf_evlist__create_maps(struct perf_evlist
*evlist
, pid_t target_pid
,
413 pid_t target_tid
, const char *cpu_list
)
415 evlist
->threads
= thread_map__new(target_pid
, target_tid
);
417 if (evlist
->threads
== NULL
)
420 if (cpu_list
== NULL
&& target_tid
!= -1)
421 evlist
->cpus
= cpu_map__dummy_new();
423 evlist
->cpus
= cpu_map__new(cpu_list
);
425 if (evlist
->cpus
== NULL
)
426 goto out_delete_threads
;
431 thread_map__delete(evlist
->threads
);
435 void perf_evlist__delete_maps(struct perf_evlist
*evlist
)
437 cpu_map__delete(evlist
->cpus
);
438 thread_map__delete(evlist
->threads
);
440 evlist
->threads
= NULL
;
443 int perf_evlist__set_filters(struct perf_evlist
*evlist
)
445 const struct thread_map
*threads
= evlist
->threads
;
446 const struct cpu_map
*cpus
= evlist
->cpus
;
447 struct perf_evsel
*evsel
;
454 list_for_each_entry(evsel
, &evlist
->entries
, node
) {
455 filter
= evsel
->filter
;
458 for (cpu
= 0; cpu
< cpus
->nr
; cpu
++) {
459 for (thread
= 0; thread
< threads
->nr
; thread
++) {
460 fd
= FD(evsel
, cpu
, thread
);
461 err
= ioctl(fd
, PERF_EVENT_IOC_SET_FILTER
, filter
);
471 bool perf_evlist__valid_sample_type(const struct perf_evlist
*evlist
)
473 struct perf_evsel
*pos
, *first
;
475 pos
= first
= list_entry(evlist
->entries
.next
, struct perf_evsel
, node
);
477 list_for_each_entry_continue(pos
, &evlist
->entries
, node
) {
478 if (first
->attr
.sample_type
!= pos
->attr
.sample_type
)
485 u64
perf_evlist__sample_type(const struct perf_evlist
*evlist
)
487 struct perf_evsel
*first
;
489 first
= list_entry(evlist
->entries
.next
, struct perf_evsel
, node
);
490 return first
->attr
.sample_type
;
493 bool perf_evlist__valid_sample_id_all(const struct perf_evlist
*evlist
)
495 struct perf_evsel
*pos
, *first
;
497 pos
= first
= list_entry(evlist
->entries
.next
, struct perf_evsel
, node
);
499 list_for_each_entry_continue(pos
, &evlist
->entries
, node
) {
500 if (first
->attr
.sample_id_all
!= pos
->attr
.sample_id_all
)
507 bool perf_evlist__sample_id_all(const struct perf_evlist
*evlist
)
509 struct perf_evsel
*first
;
511 first
= list_entry(evlist
->entries
.next
, struct perf_evsel
, node
);
512 return first
->attr
.sample_id_all
;