perf tools: Remove unused evsel parameter from machine__resolve_callchain
[linux-2.6-block.git] / tools / perf / util / evsel.c
CommitLineData
f8a95309
ACM
1/*
2 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
3 *
4 * Parts came from builtin-{top,stat,record}.c, see those files for further
5 * copyright notes.
6 *
7 * Released under the GPL v2. (and only v2, not any later version)
8 */
9
936be503
DA
10#include <byteswap.h>
11#include "asm/bug.h"
69aad6f1 12#include "evsel.h"
70082dd9 13#include "evlist.h"
69aad6f1 14#include "util.h"
86bd5e86 15#include "cpumap.h"
fd78260b 16#include "thread_map.h"
12864b31 17#include "target.h"
c410431c 18#include "../../include/linux/perf_event.h"
69aad6f1 19
c52b12ed 20#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
727ab04e 21#define GROUP_FD(group_fd, cpu) (*(int *)xyarray__entry(group_fd, cpu, 0))
c52b12ed 22
c2a70653
ACM
23int __perf_evsel__sample_size(u64 sample_type)
24{
25 u64 mask = sample_type & PERF_SAMPLE_MASK;
26 int size = 0;
27 int i;
28
29 for (i = 0; i < 64; i++) {
30 if (mask & (1ULL << i))
31 size++;
32 }
33
34 size *= sizeof(u64);
35
36 return size;
37}
38
4bf9ce1b 39void hists__init(struct hists *hists)
0e2a5f10
ACM
40{
41 memset(hists, 0, sizeof(*hists));
42 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT;
43 hists->entries_in = &hists->entries_in_array[0];
44 hists->entries_collapsed = RB_ROOT;
45 hists->entries = RB_ROOT;
46 pthread_mutex_init(&hists->lock, NULL);
47}
48
ef1d1af2
ACM
49void perf_evsel__init(struct perf_evsel *evsel,
50 struct perf_event_attr *attr, int idx)
51{
52 evsel->idx = idx;
53 evsel->attr = *attr;
54 INIT_LIST_HEAD(&evsel->node);
1980c2eb 55 hists__init(&evsel->hists);
ef1d1af2
ACM
56}
57
23a2f3ab 58struct perf_evsel *perf_evsel__new(struct perf_event_attr *attr, int idx)
69aad6f1
ACM
59{
60 struct perf_evsel *evsel = zalloc(sizeof(*evsel));
61
ef1d1af2
ACM
62 if (evsel != NULL)
63 perf_evsel__init(evsel, attr, idx);
69aad6f1
ACM
64
65 return evsel;
66}
67
c410431c
ACM
68static const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX] = {
69 "cycles",
70 "instructions",
71 "cache-references",
72 "cache-misses",
73 "branches",
74 "branch-misses",
75 "bus-cycles",
76 "stalled-cycles-frontend",
77 "stalled-cycles-backend",
78 "ref-cycles",
79};
80
81const char *__perf_evsel__hw_name(u64 config)
82{
83 if (config < PERF_COUNT_HW_MAX && perf_evsel__hw_names[config])
84 return perf_evsel__hw_names[config];
85
86 return "unknown-hardware";
87}
88
27f18617 89static int perf_evsel__add_modifiers(struct perf_evsel *evsel, char *bf, size_t size)
c410431c 90{
27f18617 91 int colon = 0, r = 0;
c410431c 92 struct perf_event_attr *attr = &evsel->attr;
c410431c
ACM
93 bool exclude_guest_default = false;
94
95#define MOD_PRINT(context, mod) do { \
96 if (!attr->exclude_##context) { \
27f18617 97 if (!colon) colon = ++r; \
c410431c
ACM
98 r += scnprintf(bf + r, size - r, "%c", mod); \
99 } } while(0)
100
101 if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
102 MOD_PRINT(kernel, 'k');
103 MOD_PRINT(user, 'u');
104 MOD_PRINT(hv, 'h');
105 exclude_guest_default = true;
106 }
107
108 if (attr->precise_ip) {
109 if (!colon)
27f18617 110 colon = ++r;
c410431c
ACM
111 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
112 exclude_guest_default = true;
113 }
114
115 if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
116 MOD_PRINT(host, 'H');
117 MOD_PRINT(guest, 'G');
118 }
119#undef MOD_PRINT
120 if (colon)
27f18617 121 bf[colon - 1] = ':';
c410431c
ACM
122 return r;
123}
124
27f18617
ACM
125static int perf_evsel__hw_name(struct perf_evsel *evsel, char *bf, size_t size)
126{
127 int r = scnprintf(bf, size, "%s", __perf_evsel__hw_name(evsel->attr.config));
128 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
129}
130
335c2f5d
ACM
131static const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX] = {
132 "cpu-clock",
133 "task-clock",
134 "page-faults",
135 "context-switches",
136 "CPU-migrations",
137 "minor-faults",
138 "major-faults",
139 "alignment-faults",
140 "emulation-faults",
141};
142
143const char *__perf_evsel__sw_name(u64 config)
144{
145 if (config < PERF_COUNT_SW_MAX && perf_evsel__sw_names[config])
146 return perf_evsel__sw_names[config];
147 return "unknown-software";
148}
149
150static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size)
151{
152 int r = scnprintf(bf, size, "%s", __perf_evsel__sw_name(evsel->attr.config));
153 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
154}
155
0b668bc9
ACM
156const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
157 [PERF_EVSEL__MAX_ALIASES] = {
158 { "L1-dcache", "l1-d", "l1d", "L1-data", },
159 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
160 { "LLC", "L2", },
161 { "dTLB", "d-tlb", "Data-TLB", },
162 { "iTLB", "i-tlb", "Instruction-TLB", },
163 { "branch", "branches", "bpu", "btb", "bpc", },
164 { "node", },
165};
166
167const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
168 [PERF_EVSEL__MAX_ALIASES] = {
169 { "load", "loads", "read", },
170 { "store", "stores", "write", },
171 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
172};
173
174const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
175 [PERF_EVSEL__MAX_ALIASES] = {
176 { "refs", "Reference", "ops", "access", },
177 { "misses", "miss", },
178};
179
180#define C(x) PERF_COUNT_HW_CACHE_##x
181#define CACHE_READ (1 << C(OP_READ))
182#define CACHE_WRITE (1 << C(OP_WRITE))
183#define CACHE_PREFETCH (1 << C(OP_PREFETCH))
184#define COP(x) (1 << x)
185
186/*
187 * cache operartion stat
188 * L1I : Read and prefetch only
189 * ITLB and BPU : Read-only
190 */
191static unsigned long perf_evsel__hw_cache_stat[C(MAX)] = {
192 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
193 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
194 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
195 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
196 [C(ITLB)] = (CACHE_READ),
197 [C(BPU)] = (CACHE_READ),
198 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
199};
200
201bool perf_evsel__is_cache_op_valid(u8 type, u8 op)
202{
203 if (perf_evsel__hw_cache_stat[type] & COP(op))
204 return true; /* valid */
205 else
206 return false; /* invalid */
207}
208
209int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
210 char *bf, size_t size)
211{
212 if (result) {
213 return scnprintf(bf, size, "%s-%s-%s", perf_evsel__hw_cache[type][0],
214 perf_evsel__hw_cache_op[op][0],
215 perf_evsel__hw_cache_result[result][0]);
216 }
217
218 return scnprintf(bf, size, "%s-%s", perf_evsel__hw_cache[type][0],
219 perf_evsel__hw_cache_op[op][1]);
220}
221
222int __perf_evsel__hw_cache_name(u64 config, char *bf, size_t size)
223{
224 u8 op, result, type = (config >> 0) & 0xff;
225 const char *err = "unknown-ext-hardware-cache-type";
226
227 if (type > PERF_COUNT_HW_CACHE_MAX)
228 goto out_err;
229
230 op = (config >> 8) & 0xff;
231 err = "unknown-ext-hardware-cache-op";
232 if (op > PERF_COUNT_HW_CACHE_OP_MAX)
233 goto out_err;
234
235 result = (config >> 16) & 0xff;
236 err = "unknown-ext-hardware-cache-result";
237 if (result > PERF_COUNT_HW_CACHE_RESULT_MAX)
238 goto out_err;
239
240 err = "invalid-cache";
241 if (!perf_evsel__is_cache_op_valid(type, op))
242 goto out_err;
243
244 return __perf_evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
245out_err:
246 return scnprintf(bf, size, "%s", err);
247}
248
249static int perf_evsel__hw_cache_name(struct perf_evsel *evsel, char *bf, size_t size)
250{
251 int ret = __perf_evsel__hw_cache_name(evsel->attr.config, bf, size);
252 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
253}
254
6eef3d9c
ACM
255static int perf_evsel__raw_name(struct perf_evsel *evsel, char *bf, size_t size)
256{
257 int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->attr.config);
258 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
259}
260
7289f83c 261const char *perf_evsel__name(struct perf_evsel *evsel)
a4460836 262{
7289f83c 263 char bf[128];
a4460836 264
7289f83c
ACM
265 if (evsel->name)
266 return evsel->name;
c410431c
ACM
267
268 switch (evsel->attr.type) {
269 case PERF_TYPE_RAW:
6eef3d9c 270 perf_evsel__raw_name(evsel, bf, sizeof(bf));
c410431c
ACM
271 break;
272
273 case PERF_TYPE_HARDWARE:
7289f83c 274 perf_evsel__hw_name(evsel, bf, sizeof(bf));
c410431c 275 break;
0b668bc9
ACM
276
277 case PERF_TYPE_HW_CACHE:
7289f83c 278 perf_evsel__hw_cache_name(evsel, bf, sizeof(bf));
0b668bc9
ACM
279 break;
280
335c2f5d 281 case PERF_TYPE_SOFTWARE:
7289f83c 282 perf_evsel__sw_name(evsel, bf, sizeof(bf));
335c2f5d
ACM
283 break;
284
a4460836 285 case PERF_TYPE_TRACEPOINT:
7289f83c 286 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
a4460836
ACM
287 break;
288
c410431c 289 default:
7289f83c 290 scnprintf(bf, sizeof(bf), "%s", "unknown attr type");
a4460836 291 break;
c410431c
ACM
292 }
293
7289f83c
ACM
294 evsel->name = strdup(bf);
295
296 return evsel->name ?: "unknown";
c410431c
ACM
297}
298
5090c6ae
NK
299void perf_evsel__config(struct perf_evsel *evsel, struct perf_record_opts *opts,
300 struct perf_evsel *first)
0f82ebc4
ACM
301{
302 struct perf_event_attr *attr = &evsel->attr;
303 int track = !evsel->idx; /* only the first counter needs these */
304
5e1c81d9 305 attr->disabled = 1;
808e1226 306 attr->sample_id_all = opts->sample_id_all_missing ? 0 : 1;
0f82ebc4
ACM
307 attr->inherit = !opts->no_inherit;
308 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
309 PERF_FORMAT_TOTAL_TIME_RUNNING |
310 PERF_FORMAT_ID;
311
312 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
313
314 /*
315 * We default some events to a 1 default interval. But keep
316 * it a weak assumption overridable by the user.
317 */
318 if (!attr->sample_period || (opts->user_freq != UINT_MAX &&
319 opts->user_interval != ULLONG_MAX)) {
320 if (opts->freq) {
321 attr->sample_type |= PERF_SAMPLE_PERIOD;
322 attr->freq = 1;
323 attr->sample_freq = opts->freq;
324 } else {
325 attr->sample_period = opts->default_interval;
326 }
327 }
328
329 if (opts->no_samples)
330 attr->sample_freq = 0;
331
332 if (opts->inherit_stat)
333 attr->inherit_stat = 1;
334
335 if (opts->sample_address) {
336 attr->sample_type |= PERF_SAMPLE_ADDR;
337 attr->mmap_data = track;
338 }
339
340 if (opts->call_graph)
341 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
342
e40ee742 343 if (perf_target__has_cpu(&opts->target))
0f82ebc4
ACM
344 attr->sample_type |= PERF_SAMPLE_CPU;
345
3e76ac78
AV
346 if (opts->period)
347 attr->sample_type |= PERF_SAMPLE_PERIOD;
348
808e1226 349 if (!opts->sample_id_all_missing &&
d67356e7 350 (opts->sample_time || !opts->no_inherit ||
aa22dd49 351 perf_target__has_cpu(&opts->target)))
0f82ebc4
ACM
352 attr->sample_type |= PERF_SAMPLE_TIME;
353
354 if (opts->raw_samples) {
355 attr->sample_type |= PERF_SAMPLE_TIME;
356 attr->sample_type |= PERF_SAMPLE_RAW;
357 attr->sample_type |= PERF_SAMPLE_CPU;
358 }
359
360 if (opts->no_delay) {
361 attr->watermark = 0;
362 attr->wakeup_events = 1;
363 }
bdfebd84
RAV
364 if (opts->branch_stack) {
365 attr->sample_type |= PERF_SAMPLE_BRANCH_STACK;
366 attr->branch_sample_type = opts->branch_stack;
367 }
0f82ebc4
ACM
368
369 attr->mmap = track;
370 attr->comm = track;
371
d67356e7
NK
372 if (perf_target__none(&opts->target) &&
373 (!opts->group || evsel == first)) {
0f82ebc4
ACM
374 attr->enable_on_exec = 1;
375 }
376}
377
69aad6f1
ACM
378int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
379{
4af4c955 380 int cpu, thread;
69aad6f1 381 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
4af4c955
DA
382
383 if (evsel->fd) {
384 for (cpu = 0; cpu < ncpus; cpu++) {
385 for (thread = 0; thread < nthreads; thread++) {
386 FD(evsel, cpu, thread) = -1;
387 }
388 }
389 }
390
69aad6f1
ACM
391 return evsel->fd != NULL ? 0 : -ENOMEM;
392}
393
70db7533
ACM
394int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
395{
a91e5431
ACM
396 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
397 if (evsel->sample_id == NULL)
398 return -ENOMEM;
399
400 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
401 if (evsel->id == NULL) {
402 xyarray__delete(evsel->sample_id);
403 evsel->sample_id = NULL;
404 return -ENOMEM;
405 }
406
407 return 0;
70db7533
ACM
408}
409
c52b12ed
ACM
410int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus)
411{
412 evsel->counts = zalloc((sizeof(*evsel->counts) +
413 (ncpus * sizeof(struct perf_counts_values))));
414 return evsel->counts != NULL ? 0 : -ENOMEM;
415}
416
69aad6f1
ACM
417void perf_evsel__free_fd(struct perf_evsel *evsel)
418{
419 xyarray__delete(evsel->fd);
420 evsel->fd = NULL;
421}
422
70db7533
ACM
423void perf_evsel__free_id(struct perf_evsel *evsel)
424{
a91e5431
ACM
425 xyarray__delete(evsel->sample_id);
426 evsel->sample_id = NULL;
427 free(evsel->id);
70db7533
ACM
428 evsel->id = NULL;
429}
430
c52b12ed
ACM
431void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
432{
433 int cpu, thread;
434
435 for (cpu = 0; cpu < ncpus; cpu++)
436 for (thread = 0; thread < nthreads; ++thread) {
437 close(FD(evsel, cpu, thread));
438 FD(evsel, cpu, thread) = -1;
439 }
440}
441
ef1d1af2 442void perf_evsel__exit(struct perf_evsel *evsel)
69aad6f1
ACM
443{
444 assert(list_empty(&evsel->node));
445 xyarray__delete(evsel->fd);
a91e5431
ACM
446 xyarray__delete(evsel->sample_id);
447 free(evsel->id);
ef1d1af2
ACM
448}
449
450void perf_evsel__delete(struct perf_evsel *evsel)
451{
452 perf_evsel__exit(evsel);
023695d9 453 close_cgroup(evsel->cgrp);
f0c55bcf 454 free(evsel->name);
69aad6f1
ACM
455 free(evsel);
456}
c52b12ed
ACM
457
458int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
459 int cpu, int thread, bool scale)
460{
461 struct perf_counts_values count;
462 size_t nv = scale ? 3 : 1;
463
464 if (FD(evsel, cpu, thread) < 0)
465 return -EINVAL;
466
4eed11d5
ACM
467 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1) < 0)
468 return -ENOMEM;
469
c52b12ed
ACM
470 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) < 0)
471 return -errno;
472
473 if (scale) {
474 if (count.run == 0)
475 count.val = 0;
476 else if (count.run < count.ena)
477 count.val = (u64)((double)count.val * count.ena / count.run + 0.5);
478 } else
479 count.ena = count.run = 0;
480
481 evsel->counts->cpu[cpu] = count;
482 return 0;
483}
484
485int __perf_evsel__read(struct perf_evsel *evsel,
486 int ncpus, int nthreads, bool scale)
487{
488 size_t nv = scale ? 3 : 1;
489 int cpu, thread;
490 struct perf_counts_values *aggr = &evsel->counts->aggr, count;
491
52bcd994 492 aggr->val = aggr->ena = aggr->run = 0;
c52b12ed
ACM
493
494 for (cpu = 0; cpu < ncpus; cpu++) {
495 for (thread = 0; thread < nthreads; thread++) {
496 if (FD(evsel, cpu, thread) < 0)
497 continue;
498
499 if (readn(FD(evsel, cpu, thread),
500 &count, nv * sizeof(u64)) < 0)
501 return -errno;
502
503 aggr->val += count.val;
504 if (scale) {
505 aggr->ena += count.ena;
506 aggr->run += count.run;
507 }
508 }
509 }
510
511 evsel->counts->scaled = 0;
512 if (scale) {
513 if (aggr->run == 0) {
514 evsel->counts->scaled = -1;
515 aggr->val = 0;
516 return 0;
517 }
518
519 if (aggr->run < aggr->ena) {
520 evsel->counts->scaled = 1;
521 aggr->val = (u64)((double)aggr->val * aggr->ena / aggr->run + 0.5);
522 }
523 } else
524 aggr->ena = aggr->run = 0;
525
526 return 0;
527}
48290609 528
0252208e 529static int __perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
727ab04e
ACM
530 struct thread_map *threads, bool group,
531 struct xyarray *group_fds)
48290609 532{
0252208e 533 int cpu, thread;
023695d9 534 unsigned long flags = 0;
727ab04e 535 int pid = -1, err;
48290609 536
0252208e
ACM
537 if (evsel->fd == NULL &&
538 perf_evsel__alloc_fd(evsel, cpus->nr, threads->nr) < 0)
727ab04e 539 return -ENOMEM;
4eed11d5 540
023695d9
SE
541 if (evsel->cgrp) {
542 flags = PERF_FLAG_PID_CGROUP;
543 pid = evsel->cgrp->fd;
544 }
545
86bd5e86 546 for (cpu = 0; cpu < cpus->nr; cpu++) {
727ab04e 547 int group_fd = group_fds ? GROUP_FD(group_fds, cpu) : -1;
9d04f178 548
0252208e 549 for (thread = 0; thread < threads->nr; thread++) {
023695d9
SE
550
551 if (!evsel->cgrp)
552 pid = threads->map[thread];
553
0252208e 554 FD(evsel, cpu, thread) = sys_perf_event_open(&evsel->attr,
023695d9 555 pid,
f08199d3 556 cpus->map[cpu],
023695d9 557 group_fd, flags);
727ab04e
ACM
558 if (FD(evsel, cpu, thread) < 0) {
559 err = -errno;
0252208e 560 goto out_close;
727ab04e 561 }
f08199d3
ACM
562
563 if (group && group_fd == -1)
564 group_fd = FD(evsel, cpu, thread);
0252208e 565 }
48290609
ACM
566 }
567
568 return 0;
569
570out_close:
0252208e
ACM
571 do {
572 while (--thread >= 0) {
573 close(FD(evsel, cpu, thread));
574 FD(evsel, cpu, thread) = -1;
575 }
576 thread = threads->nr;
577 } while (--cpu >= 0);
727ab04e
ACM
578 return err;
579}
580
581void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads)
582{
583 if (evsel->fd == NULL)
584 return;
585
586 perf_evsel__close_fd(evsel, ncpus, nthreads);
587 perf_evsel__free_fd(evsel);
588 evsel->fd = NULL;
48290609
ACM
589}
590
0252208e
ACM
591static struct {
592 struct cpu_map map;
593 int cpus[1];
594} empty_cpu_map = {
595 .map.nr = 1,
596 .cpus = { -1, },
597};
598
599static struct {
600 struct thread_map map;
601 int threads[1];
602} empty_thread_map = {
603 .map.nr = 1,
604 .threads = { -1, },
605};
606
f08199d3 607int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
727ab04e
ACM
608 struct thread_map *threads, bool group,
609 struct xyarray *group_fd)
48290609 610{
0252208e
ACM
611 if (cpus == NULL) {
612 /* Work around old compiler warnings about strict aliasing */
613 cpus = &empty_cpu_map.map;
48290609
ACM
614 }
615
0252208e
ACM
616 if (threads == NULL)
617 threads = &empty_thread_map.map;
48290609 618
727ab04e 619 return __perf_evsel__open(evsel, cpus, threads, group, group_fd);
48290609
ACM
620}
621
f08199d3 622int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
727ab04e
ACM
623 struct cpu_map *cpus, bool group,
624 struct xyarray *group_fd)
48290609 625{
727ab04e
ACM
626 return __perf_evsel__open(evsel, cpus, &empty_thread_map.map, group,
627 group_fd);
0252208e 628}
48290609 629
f08199d3 630int perf_evsel__open_per_thread(struct perf_evsel *evsel,
727ab04e
ACM
631 struct thread_map *threads, bool group,
632 struct xyarray *group_fd)
0252208e 633{
727ab04e
ACM
634 return __perf_evsel__open(evsel, &empty_cpu_map.map, threads, group,
635 group_fd);
48290609 636}
70082dd9 637
8115d60c 638static int perf_event__parse_id_sample(const union perf_event *event, u64 type,
37073f9e
JO
639 struct perf_sample *sample,
640 bool swapped)
d0dd74e8
ACM
641{
642 const u64 *array = event->sample.array;
37073f9e 643 union u64_swap u;
d0dd74e8
ACM
644
645 array += ((event->header.size -
646 sizeof(event->header)) / sizeof(u64)) - 1;
647
648 if (type & PERF_SAMPLE_CPU) {
37073f9e
JO
649 u.val64 = *array;
650 if (swapped) {
651 /* undo swap of u64, then swap on individual u32s */
652 u.val64 = bswap_64(u.val64);
653 u.val32[0] = bswap_32(u.val32[0]);
654 }
655
656 sample->cpu = u.val32[0];
d0dd74e8
ACM
657 array--;
658 }
659
660 if (type & PERF_SAMPLE_STREAM_ID) {
661 sample->stream_id = *array;
662 array--;
663 }
664
665 if (type & PERF_SAMPLE_ID) {
666 sample->id = *array;
667 array--;
668 }
669
670 if (type & PERF_SAMPLE_TIME) {
671 sample->time = *array;
672 array--;
673 }
674
675 if (type & PERF_SAMPLE_TID) {
37073f9e
JO
676 u.val64 = *array;
677 if (swapped) {
678 /* undo swap of u64, then swap on individual u32s */
679 u.val64 = bswap_64(u.val64);
680 u.val32[0] = bswap_32(u.val32[0]);
681 u.val32[1] = bswap_32(u.val32[1]);
682 }
683
684 sample->pid = u.val32[0];
685 sample->tid = u.val32[1];
d0dd74e8
ACM
686 }
687
688 return 0;
689}
690
98e1da90
FW
691static bool sample_overlap(const union perf_event *event,
692 const void *offset, u64 size)
693{
694 const void *base = event;
695
696 if (offset + size > base + event->header.size)
697 return true;
698
699 return false;
700}
701
8115d60c 702int perf_event__parse_sample(const union perf_event *event, u64 type,
a2854124 703 int sample_size, bool sample_id_all,
936be503 704 struct perf_sample *data, bool swapped)
d0dd74e8
ACM
705{
706 const u64 *array;
707
936be503
DA
708 /*
709 * used for cross-endian analysis. See git commit 65014ab3
710 * for why this goofiness is needed.
711 */
6a11f92e 712 union u64_swap u;
936be503 713
f3bda2c9 714 memset(data, 0, sizeof(*data));
d0dd74e8
ACM
715 data->cpu = data->pid = data->tid = -1;
716 data->stream_id = data->id = data->time = -1ULL;
a4a03fc7 717 data->period = 1;
d0dd74e8
ACM
718
719 if (event->header.type != PERF_RECORD_SAMPLE) {
720 if (!sample_id_all)
721 return 0;
37073f9e 722 return perf_event__parse_id_sample(event, type, data, swapped);
d0dd74e8
ACM
723 }
724
725 array = event->sample.array;
726
a2854124
FW
727 if (sample_size + sizeof(event->header) > event->header.size)
728 return -EFAULT;
729
d0dd74e8
ACM
730 if (type & PERF_SAMPLE_IP) {
731 data->ip = event->ip.ip;
732 array++;
733 }
734
735 if (type & PERF_SAMPLE_TID) {
936be503
DA
736 u.val64 = *array;
737 if (swapped) {
738 /* undo swap of u64, then swap on individual u32s */
739 u.val64 = bswap_64(u.val64);
740 u.val32[0] = bswap_32(u.val32[0]);
741 u.val32[1] = bswap_32(u.val32[1]);
742 }
743
744 data->pid = u.val32[0];
745 data->tid = u.val32[1];
d0dd74e8
ACM
746 array++;
747 }
748
749 if (type & PERF_SAMPLE_TIME) {
750 data->time = *array;
751 array++;
752 }
753
7cec0922 754 data->addr = 0;
d0dd74e8
ACM
755 if (type & PERF_SAMPLE_ADDR) {
756 data->addr = *array;
757 array++;
758 }
759
760 data->id = -1ULL;
761 if (type & PERF_SAMPLE_ID) {
762 data->id = *array;
763 array++;
764 }
765
766 if (type & PERF_SAMPLE_STREAM_ID) {
767 data->stream_id = *array;
768 array++;
769 }
770
771 if (type & PERF_SAMPLE_CPU) {
936be503
DA
772
773 u.val64 = *array;
774 if (swapped) {
775 /* undo swap of u64, then swap on individual u32s */
776 u.val64 = bswap_64(u.val64);
777 u.val32[0] = bswap_32(u.val32[0]);
778 }
779
780 data->cpu = u.val32[0];
d0dd74e8
ACM
781 array++;
782 }
783
784 if (type & PERF_SAMPLE_PERIOD) {
785 data->period = *array;
786 array++;
787 }
788
789 if (type & PERF_SAMPLE_READ) {
f9d36996 790 fprintf(stderr, "PERF_SAMPLE_READ is unsupported for now\n");
d0dd74e8
ACM
791 return -1;
792 }
793
794 if (type & PERF_SAMPLE_CALLCHAIN) {
98e1da90
FW
795 if (sample_overlap(event, array, sizeof(data->callchain->nr)))
796 return -EFAULT;
797
d0dd74e8 798 data->callchain = (struct ip_callchain *)array;
98e1da90
FW
799
800 if (sample_overlap(event, array, data->callchain->nr))
801 return -EFAULT;
802
d0dd74e8
ACM
803 array += 1 + data->callchain->nr;
804 }
805
806 if (type & PERF_SAMPLE_RAW) {
8e303f20
JO
807 const u64 *pdata;
808
936be503
DA
809 u.val64 = *array;
810 if (WARN_ONCE(swapped,
811 "Endianness of raw data not corrected!\n")) {
812 /* undo swap of u64, then swap on individual u32s */
813 u.val64 = bswap_64(u.val64);
814 u.val32[0] = bswap_32(u.val32[0]);
815 u.val32[1] = bswap_32(u.val32[1]);
816 }
98e1da90
FW
817
818 if (sample_overlap(event, array, sizeof(u32)))
819 return -EFAULT;
820
936be503 821 data->raw_size = u.val32[0];
8e303f20 822 pdata = (void *) array + sizeof(u32);
98e1da90 823
8e303f20 824 if (sample_overlap(event, pdata, data->raw_size))
98e1da90
FW
825 return -EFAULT;
826
8e303f20 827 data->raw_data = (void *) pdata;
fa30c964
SE
828
829 array = (void *)array + data->raw_size + sizeof(u32);
d0dd74e8
ACM
830 }
831
b5387528
RAV
832 if (type & PERF_SAMPLE_BRANCH_STACK) {
833 u64 sz;
834
835 data->branch_stack = (struct branch_stack *)array;
836 array++; /* nr */
837
838 sz = data->branch_stack->nr * sizeof(struct branch_entry);
839 sz /= sizeof(u64);
840 array += sz;
841 }
d0dd74e8
ACM
842 return 0;
843}
74eec26f
AV
844
845int perf_event__synthesize_sample(union perf_event *event, u64 type,
846 const struct perf_sample *sample,
847 bool swapped)
848{
849 u64 *array;
850
851 /*
852 * used for cross-endian analysis. See git commit 65014ab3
853 * for why this goofiness is needed.
854 */
6a11f92e 855 union u64_swap u;
74eec26f
AV
856
857 array = event->sample.array;
858
859 if (type & PERF_SAMPLE_IP) {
860 event->ip.ip = sample->ip;
861 array++;
862 }
863
864 if (type & PERF_SAMPLE_TID) {
865 u.val32[0] = sample->pid;
866 u.val32[1] = sample->tid;
867 if (swapped) {
868 /*
869 * Inverse of what is done in perf_event__parse_sample
870 */
871 u.val32[0] = bswap_32(u.val32[0]);
872 u.val32[1] = bswap_32(u.val32[1]);
873 u.val64 = bswap_64(u.val64);
874 }
875
876 *array = u.val64;
877 array++;
878 }
879
880 if (type & PERF_SAMPLE_TIME) {
881 *array = sample->time;
882 array++;
883 }
884
885 if (type & PERF_SAMPLE_ADDR) {
886 *array = sample->addr;
887 array++;
888 }
889
890 if (type & PERF_SAMPLE_ID) {
891 *array = sample->id;
892 array++;
893 }
894
895 if (type & PERF_SAMPLE_STREAM_ID) {
896 *array = sample->stream_id;
897 array++;
898 }
899
900 if (type & PERF_SAMPLE_CPU) {
901 u.val32[0] = sample->cpu;
902 if (swapped) {
903 /*
904 * Inverse of what is done in perf_event__parse_sample
905 */
906 u.val32[0] = bswap_32(u.val32[0]);
907 u.val64 = bswap_64(u.val64);
908 }
909 *array = u.val64;
910 array++;
911 }
912
913 if (type & PERF_SAMPLE_PERIOD) {
914 *array = sample->period;
915 array++;
916 }
917
918 return 0;
919}