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 int perf_evlist__alloc_pollfd(struct perf_evlist
*evlist
)
96 int nfds
= evlist
->cpus
->nr
* evlist
->threads
->nr
* evlist
->nr_entries
;
97 evlist
->pollfd
= malloc(sizeof(struct pollfd
) * nfds
);
98 return evlist
->pollfd
!= NULL
? 0 : -ENOMEM
;
101 void perf_evlist__add_pollfd(struct perf_evlist
*evlist
, int fd
)
103 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
104 evlist
->pollfd
[evlist
->nr_fds
].fd
= fd
;
105 evlist
->pollfd
[evlist
->nr_fds
].events
= POLLIN
;
109 static void perf_evlist__id_hash(struct perf_evlist
*evlist
,
110 struct perf_evsel
*evsel
,
111 int cpu
, int thread
, u64 id
)
114 struct perf_sample_id
*sid
= SID(evsel
, cpu
, thread
);
118 hash
= hash_64(sid
->id
, PERF_EVLIST__HLIST_BITS
);
119 hlist_add_head(&sid
->node
, &evlist
->heads
[hash
]);
122 void perf_evlist__id_add(struct perf_evlist
*evlist
, struct perf_evsel
*evsel
,
123 int cpu
, int thread
, u64 id
)
125 perf_evlist__id_hash(evlist
, evsel
, cpu
, thread
, id
);
126 evsel
->id
[evsel
->ids
++] = id
;
129 static int perf_evlist__id_add_fd(struct perf_evlist
*evlist
,
130 struct perf_evsel
*evsel
,
131 int cpu
, int thread
, int fd
)
133 u64 read_data
[4] = { 0, };
134 int id_idx
= 1; /* The first entry is the counter value */
136 if (!(evsel
->attr
.read_format
& PERF_FORMAT_ID
) ||
137 read(fd
, &read_data
, sizeof(read_data
)) == -1)
140 if (evsel
->attr
.read_format
& PERF_FORMAT_TOTAL_TIME_ENABLED
)
142 if (evsel
->attr
.read_format
& PERF_FORMAT_TOTAL_TIME_RUNNING
)
145 perf_evlist__id_add(evlist
, evsel
, cpu
, thread
, read_data
[id_idx
]);
149 struct perf_evsel
*perf_evlist__id2evsel(struct perf_evlist
*evlist
, u64 id
)
151 struct hlist_head
*head
;
152 struct hlist_node
*pos
;
153 struct perf_sample_id
*sid
;
156 if (evlist
->nr_entries
== 1)
157 return list_entry(evlist
->entries
.next
, struct perf_evsel
, node
);
159 hash
= hash_64(id
, PERF_EVLIST__HLIST_BITS
);
160 head
= &evlist
->heads
[hash
];
162 hlist_for_each_entry(sid
, pos
, head
, node
)
168 union perf_event
*perf_evlist__read_on_cpu(struct perf_evlist
*evlist
, int cpu
)
170 /* XXX Move this to perf.c, making it generally available */
171 unsigned int page_size
= sysconf(_SC_PAGE_SIZE
);
172 struct perf_mmap
*md
= &evlist
->mmap
[cpu
];
173 unsigned int head
= perf_mmap__read_head(md
);
174 unsigned int old
= md
->prev
;
175 unsigned char *data
= md
->base
+ page_size
;
176 union perf_event
*event
= NULL
;
178 if (evlist
->overwrite
) {
180 * If we're further behind than half the buffer, there's a chance
181 * the writer will bite our tail and mess up the samples under us.
183 * If we somehow ended up ahead of the head, we got messed up.
185 * In either case, truncate and restart at head.
187 int diff
= head
- old
;
188 if (diff
> md
->mask
/ 2 || diff
< 0) {
189 fprintf(stderr
, "WARNING: failed to keep up with mmap data.\n");
192 * head points to a known good entry, start there.
201 event
= (union perf_event
*)&data
[old
& md
->mask
];
202 size
= event
->header
.size
;
205 * Event straddles the mmap boundary -- header should always
206 * be inside due to u64 alignment of output.
208 if ((old
& md
->mask
) + size
!= ((old
+ size
) & md
->mask
)) {
209 unsigned int offset
= old
;
210 unsigned int len
= min(sizeof(*event
), size
), cpy
;
211 void *dst
= &evlist
->event_copy
;
214 cpy
= min(md
->mask
+ 1 - (offset
& md
->mask
), len
);
215 memcpy(dst
, &data
[offset
& md
->mask
], cpy
);
221 event
= &evlist
->event_copy
;
229 if (!evlist
->overwrite
)
230 perf_mmap__write_tail(md
, old
);
235 void perf_evlist__munmap(struct perf_evlist
*evlist
)
239 for (cpu
= 0; cpu
< evlist
->cpus
->nr
; cpu
++) {
240 if (evlist
->mmap
[cpu
].base
!= NULL
) {
241 munmap(evlist
->mmap
[cpu
].base
, evlist
->mmap_len
);
242 evlist
->mmap
[cpu
].base
= NULL
;
247 int perf_evlist__alloc_mmap(struct perf_evlist
*evlist
)
249 evlist
->mmap
= zalloc(evlist
->cpus
->nr
* sizeof(struct perf_mmap
));
250 return evlist
->mmap
!= NULL
? 0 : -ENOMEM
;
253 static int __perf_evlist__mmap(struct perf_evlist
*evlist
, int cpu
, int prot
,
256 evlist
->mmap
[cpu
].prev
= 0;
257 evlist
->mmap
[cpu
].mask
= mask
;
258 evlist
->mmap
[cpu
].base
= mmap(NULL
, evlist
->mmap_len
, prot
,
260 if (evlist
->mmap
[cpu
].base
== MAP_FAILED
)
263 perf_evlist__add_pollfd(evlist
, fd
);
267 /** perf_evlist__mmap - Create per cpu maps to receive events
269 * @evlist - list of events
270 * @pages - map length in pages
271 * @overwrite - overwrite older events?
273 * If overwrite is false the user needs to signal event consuption using:
275 * struct perf_mmap *m = &evlist->mmap[cpu];
276 * unsigned int head = perf_mmap__read_head(m);
278 * perf_mmap__write_tail(m, head)
280 * Using perf_evlist__read_on_cpu does this automatically.
282 int perf_evlist__mmap(struct perf_evlist
*evlist
, int pages
, bool overwrite
)
284 unsigned int page_size
= sysconf(_SC_PAGE_SIZE
);
285 int mask
= pages
* page_size
- 1, cpu
;
286 struct perf_evsel
*first_evsel
, *evsel
;
287 const struct cpu_map
*cpus
= evlist
->cpus
;
288 const struct thread_map
*threads
= evlist
->threads
;
289 int thread
, prot
= PROT_READ
| (overwrite
? 0 : PROT_WRITE
);
291 if (evlist
->mmap
== NULL
&& perf_evlist__alloc_mmap(evlist
) < 0)
294 if (evlist
->pollfd
== NULL
&& perf_evlist__alloc_pollfd(evlist
) < 0)
297 evlist
->overwrite
= overwrite
;
298 evlist
->mmap_len
= (pages
+ 1) * page_size
;
299 first_evsel
= list_entry(evlist
->entries
.next
, struct perf_evsel
, node
);
301 list_for_each_entry(evsel
, &evlist
->entries
, node
) {
302 if ((evsel
->attr
.read_format
& PERF_FORMAT_ID
) &&
303 evsel
->sample_id
== NULL
&&
304 perf_evsel__alloc_id(evsel
, cpus
->nr
, threads
->nr
) < 0)
307 for (cpu
= 0; cpu
< cpus
->nr
; cpu
++) {
308 for (thread
= 0; thread
< threads
->nr
; thread
++) {
309 int fd
= FD(evsel
, cpu
, thread
);
311 if (evsel
->idx
|| thread
) {
312 if (ioctl(fd
, PERF_EVENT_IOC_SET_OUTPUT
,
313 FD(first_evsel
, cpu
, 0)) != 0)
315 } else if (__perf_evlist__mmap(evlist
, cpu
, prot
, mask
, fd
) < 0)
318 if ((evsel
->attr
.read_format
& PERF_FORMAT_ID
) &&
319 perf_evlist__id_add_fd(evlist
, evsel
, cpu
, thread
, fd
) < 0)
328 for (cpu
= 0; cpu
< cpus
->nr
; cpu
++) {
329 if (evlist
->mmap
[cpu
].base
!= NULL
) {
330 munmap(evlist
->mmap
[cpu
].base
, evlist
->mmap_len
);
331 evlist
->mmap
[cpu
].base
= NULL
;
337 int perf_evlist__create_maps(struct perf_evlist
*evlist
, pid_t target_pid
,
338 pid_t target_tid
, const char *cpu_list
)
340 evlist
->threads
= thread_map__new(target_pid
, target_tid
);
342 if (evlist
->threads
== NULL
)
345 if (target_tid
!= -1)
346 evlist
->cpus
= cpu_map__dummy_new();
348 evlist
->cpus
= cpu_map__new(cpu_list
);
350 if (evlist
->cpus
== NULL
)
351 goto out_delete_threads
;
356 thread_map__delete(evlist
->threads
);
360 void perf_evlist__delete_maps(struct perf_evlist
*evlist
)
362 cpu_map__delete(evlist
->cpus
);
363 thread_map__delete(evlist
->threads
);
365 evlist
->threads
= NULL
;
368 int perf_evlist__set_filters(struct perf_evlist
*evlist
)
370 const struct thread_map
*threads
= evlist
->threads
;
371 const struct cpu_map
*cpus
= evlist
->cpus
;
372 struct perf_evsel
*evsel
;
379 list_for_each_entry(evsel
, &evlist
->entries
, node
) {
380 filter
= evsel
->filter
;
383 for (cpu
= 0; cpu
< cpus
->nr
; cpu
++) {
384 for (thread
= 0; thread
< threads
->nr
; thread
++) {
385 fd
= FD(evsel
, cpu
, thread
);
386 err
= ioctl(fd
, PERF_EVENT_IOC_SET_FILTER
, filter
);