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 <linux/bitops.h>
14 #include "event-parse.h"
19 #include "thread_map.h"
21 #include <linux/hw_breakpoint.h>
22 #include <linux/perf_event.h>
23 #include "perf_regs.h"
25 #define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
27 static int __perf_evsel__sample_size(u64 sample_type)
29 u64 mask = sample_type & PERF_SAMPLE_MASK;
33 for (i = 0; i < 64; i++) {
34 if (mask & (1ULL << i))
43 void hists__init(struct hists *hists)
45 memset(hists, 0, sizeof(*hists));
46 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT;
47 hists->entries_in = &hists->entries_in_array[0];
48 hists->entries_collapsed = RB_ROOT;
49 hists->entries = RB_ROOT;
50 pthread_mutex_init(&hists->lock, NULL);
53 void perf_evsel__init(struct perf_evsel *evsel,
54 struct perf_event_attr *attr, int idx)
58 INIT_LIST_HEAD(&evsel->node);
59 hists__init(&evsel->hists);
60 evsel->sample_size = __perf_evsel__sample_size(attr->sample_type);
63 struct perf_evsel *perf_evsel__new(struct perf_event_attr *attr, int idx)
65 struct perf_evsel *evsel = zalloc(sizeof(*evsel));
68 perf_evsel__init(evsel, attr, idx);
73 struct event_format *event_format__new(const char *sys, const char *name)
77 void *bf = NULL, *nbf;
78 size_t size = 0, alloc_size = 0;
79 struct event_format *format = NULL;
81 if (asprintf(&filename, "%s/%s/%s/format", tracing_events_path, sys, name) < 0)
84 fd = open(filename, O_RDONLY);
86 goto out_free_filename;
89 if (size == alloc_size) {
91 nbf = realloc(bf, alloc_size);
97 n = read(fd, bf + size, BUFSIZ);
103 pevent_parse_format(&format, bf, size, sys);
114 struct perf_evsel *perf_evsel__newtp(const char *sys, const char *name, int idx)
116 struct perf_evsel *evsel = zalloc(sizeof(*evsel));
119 struct perf_event_attr attr = {
120 .type = PERF_TYPE_TRACEPOINT,
121 .sample_type = (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME |
122 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD),
125 if (asprintf(&evsel->name, "%s:%s", sys, name) < 0)
128 evsel->tp_format = event_format__new(sys, name);
129 if (evsel->tp_format == NULL)
132 event_attr_init(&attr);
133 attr.config = evsel->tp_format->id;
134 attr.sample_period = 1;
135 perf_evsel__init(evsel, &attr, idx);
146 const char *perf_evsel__hw_names[PERF_COUNT_HW_MAX] = {
154 "stalled-cycles-frontend",
155 "stalled-cycles-backend",
159 static const char *__perf_evsel__hw_name(u64 config)
161 if (config < PERF_COUNT_HW_MAX && perf_evsel__hw_names[config])
162 return perf_evsel__hw_names[config];
164 return "unknown-hardware";
167 static int perf_evsel__add_modifiers(struct perf_evsel *evsel, char *bf, size_t size)
169 int colon = 0, r = 0;
170 struct perf_event_attr *attr = &evsel->attr;
171 bool exclude_guest_default = false;
173 #define MOD_PRINT(context, mod) do { \
174 if (!attr->exclude_##context) { \
175 if (!colon) colon = ++r; \
176 r += scnprintf(bf + r, size - r, "%c", mod); \
179 if (attr->exclude_kernel || attr->exclude_user || attr->exclude_hv) {
180 MOD_PRINT(kernel, 'k');
181 MOD_PRINT(user, 'u');
183 exclude_guest_default = true;
186 if (attr->precise_ip) {
189 r += scnprintf(bf + r, size - r, "%.*s", attr->precise_ip, "ppp");
190 exclude_guest_default = true;
193 if (attr->exclude_host || attr->exclude_guest == exclude_guest_default) {
194 MOD_PRINT(host, 'H');
195 MOD_PRINT(guest, 'G');
203 static int perf_evsel__hw_name(struct perf_evsel *evsel, char *bf, size_t size)
205 int r = scnprintf(bf, size, "%s", __perf_evsel__hw_name(evsel->attr.config));
206 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
209 const char *perf_evsel__sw_names[PERF_COUNT_SW_MAX] = {
221 static const char *__perf_evsel__sw_name(u64 config)
223 if (config < PERF_COUNT_SW_MAX && perf_evsel__sw_names[config])
224 return perf_evsel__sw_names[config];
225 return "unknown-software";
228 static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size)
230 int r = scnprintf(bf, size, "%s", __perf_evsel__sw_name(evsel->attr.config));
231 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
234 static int __perf_evsel__bp_name(char *bf, size_t size, u64 addr, u64 type)
238 r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr);
240 if (type & HW_BREAKPOINT_R)
241 r += scnprintf(bf + r, size - r, "r");
243 if (type & HW_BREAKPOINT_W)
244 r += scnprintf(bf + r, size - r, "w");
246 if (type & HW_BREAKPOINT_X)
247 r += scnprintf(bf + r, size - r, "x");
252 static int perf_evsel__bp_name(struct perf_evsel *evsel, char *bf, size_t size)
254 struct perf_event_attr *attr = &evsel->attr;
255 int r = __perf_evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type);
256 return r + perf_evsel__add_modifiers(evsel, bf + r, size - r);
259 const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX]
260 [PERF_EVSEL__MAX_ALIASES] = {
261 { "L1-dcache", "l1-d", "l1d", "L1-data", },
262 { "L1-icache", "l1-i", "l1i", "L1-instruction", },
264 { "dTLB", "d-tlb", "Data-TLB", },
265 { "iTLB", "i-tlb", "Instruction-TLB", },
266 { "branch", "branches", "bpu", "btb", "bpc", },
270 const char *perf_evsel__hw_cache_op[PERF_COUNT_HW_CACHE_OP_MAX]
271 [PERF_EVSEL__MAX_ALIASES] = {
272 { "load", "loads", "read", },
273 { "store", "stores", "write", },
274 { "prefetch", "prefetches", "speculative-read", "speculative-load", },
277 const char *perf_evsel__hw_cache_result[PERF_COUNT_HW_CACHE_RESULT_MAX]
278 [PERF_EVSEL__MAX_ALIASES] = {
279 { "refs", "Reference", "ops", "access", },
280 { "misses", "miss", },
283 #define C(x) PERF_COUNT_HW_CACHE_##x
284 #define CACHE_READ (1 << C(OP_READ))
285 #define CACHE_WRITE (1 << C(OP_WRITE))
286 #define CACHE_PREFETCH (1 << C(OP_PREFETCH))
287 #define COP(x) (1 << x)
290 * cache operartion stat
291 * L1I : Read and prefetch only
292 * ITLB and BPU : Read-only
294 static unsigned long perf_evsel__hw_cache_stat[C(MAX)] = {
295 [C(L1D)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
296 [C(L1I)] = (CACHE_READ | CACHE_PREFETCH),
297 [C(LL)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
298 [C(DTLB)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
299 [C(ITLB)] = (CACHE_READ),
300 [C(BPU)] = (CACHE_READ),
301 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
304 bool perf_evsel__is_cache_op_valid(u8 type, u8 op)
306 if (perf_evsel__hw_cache_stat[type] & COP(op))
307 return true; /* valid */
309 return false; /* invalid */
312 int __perf_evsel__hw_cache_type_op_res_name(u8 type, u8 op, u8 result,
313 char *bf, size_t size)
316 return scnprintf(bf, size, "%s-%s-%s", perf_evsel__hw_cache[type][0],
317 perf_evsel__hw_cache_op[op][0],
318 perf_evsel__hw_cache_result[result][0]);
321 return scnprintf(bf, size, "%s-%s", perf_evsel__hw_cache[type][0],
322 perf_evsel__hw_cache_op[op][1]);
325 static int __perf_evsel__hw_cache_name(u64 config, char *bf, size_t size)
327 u8 op, result, type = (config >> 0) & 0xff;
328 const char *err = "unknown-ext-hardware-cache-type";
330 if (type > PERF_COUNT_HW_CACHE_MAX)
333 op = (config >> 8) & 0xff;
334 err = "unknown-ext-hardware-cache-op";
335 if (op > PERF_COUNT_HW_CACHE_OP_MAX)
338 result = (config >> 16) & 0xff;
339 err = "unknown-ext-hardware-cache-result";
340 if (result > PERF_COUNT_HW_CACHE_RESULT_MAX)
343 err = "invalid-cache";
344 if (!perf_evsel__is_cache_op_valid(type, op))
347 return __perf_evsel__hw_cache_type_op_res_name(type, op, result, bf, size);
349 return scnprintf(bf, size, "%s", err);
352 static int perf_evsel__hw_cache_name(struct perf_evsel *evsel, char *bf, size_t size)
354 int ret = __perf_evsel__hw_cache_name(evsel->attr.config, bf, size);
355 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
358 static int perf_evsel__raw_name(struct perf_evsel *evsel, char *bf, size_t size)
360 int ret = scnprintf(bf, size, "raw 0x%" PRIx64, evsel->attr.config);
361 return ret + perf_evsel__add_modifiers(evsel, bf + ret, size - ret);
364 const char *perf_evsel__name(struct perf_evsel *evsel)
371 switch (evsel->attr.type) {
373 perf_evsel__raw_name(evsel, bf, sizeof(bf));
376 case PERF_TYPE_HARDWARE:
377 perf_evsel__hw_name(evsel, bf, sizeof(bf));
380 case PERF_TYPE_HW_CACHE:
381 perf_evsel__hw_cache_name(evsel, bf, sizeof(bf));
384 case PERF_TYPE_SOFTWARE:
385 perf_evsel__sw_name(evsel, bf, sizeof(bf));
388 case PERF_TYPE_TRACEPOINT:
389 scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint");
392 case PERF_TYPE_BREAKPOINT:
393 perf_evsel__bp_name(evsel, bf, sizeof(bf));
397 scnprintf(bf, sizeof(bf), "unknown attr type: %d",
402 evsel->name = strdup(bf);
404 return evsel->name ?: "unknown";
408 * The enable_on_exec/disabled value strategy:
410 * 1) For any type of traced program:
411 * - all independent events and group leaders are disabled
412 * - all group members are enabled
414 * Group members are ruled by group leaders. They need to
415 * be enabled, because the group scheduling relies on that.
417 * 2) For traced programs executed by perf:
418 * - all independent events and group leaders have
420 * - we don't specifically enable or disable any event during
423 * Independent events and group leaders are initially disabled
424 * and get enabled by exec. Group members are ruled by group
425 * leaders as stated in 1).
427 * 3) For traced programs attached by perf (pid/tid):
428 * - we specifically enable or disable all events during
431 * When attaching events to already running traced we
432 * enable/disable events specifically, as there's no
433 * initial traced exec call.
435 void perf_evsel__config(struct perf_evsel *evsel,
436 struct perf_record_opts *opts)
438 struct perf_event_attr *attr = &evsel->attr;
439 int track = !evsel->idx; /* only the first counter needs these */
441 attr->sample_id_all = opts->sample_id_all_missing ? 0 : 1;
442 attr->inherit = !opts->no_inherit;
443 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
444 PERF_FORMAT_TOTAL_TIME_RUNNING |
447 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
450 * We default some events to a 1 default interval. But keep
451 * it a weak assumption overridable by the user.
453 if (!attr->sample_period || (opts->user_freq != UINT_MAX &&
454 opts->user_interval != ULLONG_MAX)) {
456 attr->sample_type |= PERF_SAMPLE_PERIOD;
458 attr->sample_freq = opts->freq;
460 attr->sample_period = opts->default_interval;
464 if (opts->no_samples)
465 attr->sample_freq = 0;
467 if (opts->inherit_stat)
468 attr->inherit_stat = 1;
470 if (opts->sample_address) {
471 attr->sample_type |= PERF_SAMPLE_ADDR;
472 attr->mmap_data = track;
475 if (opts->call_graph) {
476 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
478 if (opts->call_graph == CALLCHAIN_DWARF) {
479 attr->sample_type |= PERF_SAMPLE_REGS_USER |
480 PERF_SAMPLE_STACK_USER;
481 attr->sample_regs_user = PERF_REGS_MASK;
482 attr->sample_stack_user = opts->stack_dump_size;
483 attr->exclude_callchain_user = 1;
487 if (perf_target__has_cpu(&opts->target))
488 attr->sample_type |= PERF_SAMPLE_CPU;
491 attr->sample_type |= PERF_SAMPLE_PERIOD;
493 if (!opts->sample_id_all_missing &&
494 (opts->sample_time || !opts->no_inherit ||
495 perf_target__has_cpu(&opts->target)))
496 attr->sample_type |= PERF_SAMPLE_TIME;
498 if (opts->raw_samples) {
499 attr->sample_type |= PERF_SAMPLE_TIME;
500 attr->sample_type |= PERF_SAMPLE_RAW;
501 attr->sample_type |= PERF_SAMPLE_CPU;
504 if (opts->no_delay) {
506 attr->wakeup_events = 1;
508 if (opts->branch_stack) {
509 attr->sample_type |= PERF_SAMPLE_BRANCH_STACK;
510 attr->branch_sample_type = opts->branch_stack;
517 * XXX see the function comment above
519 * Disabling only independent events or group leaders,
520 * keeping group members enabled.
522 if (!perf_evsel__is_group_member(evsel))
526 * Setting enable_on_exec for independent events and
527 * group leaders for traced executed by perf.
529 if (perf_target__none(&opts->target) && !perf_evsel__is_group_member(evsel))
530 attr->enable_on_exec = 1;
533 int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
536 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
539 for (cpu = 0; cpu < ncpus; cpu++) {
540 for (thread = 0; thread < nthreads; thread++) {
541 FD(evsel, cpu, thread) = -1;
546 return evsel->fd != NULL ? 0 : -ENOMEM;
549 int perf_evsel__set_filter(struct perf_evsel *evsel, int ncpus, int nthreads,
554 for (cpu = 0; cpu < ncpus; cpu++) {
555 for (thread = 0; thread < nthreads; thread++) {
556 int fd = FD(evsel, cpu, thread),
557 err = ioctl(fd, PERF_EVENT_IOC_SET_FILTER, filter);
567 int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
569 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
570 if (evsel->sample_id == NULL)
573 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
574 if (evsel->id == NULL) {
575 xyarray__delete(evsel->sample_id);
576 evsel->sample_id = NULL;
583 int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus)
585 evsel->counts = zalloc((sizeof(*evsel->counts) +
586 (ncpus * sizeof(struct perf_counts_values))));
587 return evsel->counts != NULL ? 0 : -ENOMEM;
590 void perf_evsel__free_fd(struct perf_evsel *evsel)
592 xyarray__delete(evsel->fd);
596 void perf_evsel__free_id(struct perf_evsel *evsel)
598 xyarray__delete(evsel->sample_id);
599 evsel->sample_id = NULL;
604 void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
608 for (cpu = 0; cpu < ncpus; cpu++)
609 for (thread = 0; thread < nthreads; ++thread) {
610 close(FD(evsel, cpu, thread));
611 FD(evsel, cpu, thread) = -1;
615 void perf_evsel__exit(struct perf_evsel *evsel)
617 assert(list_empty(&evsel->node));
618 xyarray__delete(evsel->fd);
619 xyarray__delete(evsel->sample_id);
623 void perf_evsel__delete(struct perf_evsel *evsel)
625 perf_evsel__exit(evsel);
626 close_cgroup(evsel->cgrp);
627 free(evsel->group_name);
628 if (evsel->tp_format)
629 pevent_free_format(evsel->tp_format);
634 int __perf_evsel__read_on_cpu(struct perf_evsel *evsel,
635 int cpu, int thread, bool scale)
637 struct perf_counts_values count;
638 size_t nv = scale ? 3 : 1;
640 if (FD(evsel, cpu, thread) < 0)
643 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1) < 0)
646 if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) < 0)
652 else if (count.run < count.ena)
653 count.val = (u64)((double)count.val * count.ena / count.run + 0.5);
655 count.ena = count.run = 0;
657 evsel->counts->cpu[cpu] = count;
661 int __perf_evsel__read(struct perf_evsel *evsel,
662 int ncpus, int nthreads, bool scale)
664 size_t nv = scale ? 3 : 1;
666 struct perf_counts_values *aggr = &evsel->counts->aggr, count;
668 aggr->val = aggr->ena = aggr->run = 0;
670 for (cpu = 0; cpu < ncpus; cpu++) {
671 for (thread = 0; thread < nthreads; thread++) {
672 if (FD(evsel, cpu, thread) < 0)
675 if (readn(FD(evsel, cpu, thread),
676 &count, nv * sizeof(u64)) < 0)
679 aggr->val += count.val;
681 aggr->ena += count.ena;
682 aggr->run += count.run;
687 evsel->counts->scaled = 0;
689 if (aggr->run == 0) {
690 evsel->counts->scaled = -1;
695 if (aggr->run < aggr->ena) {
696 evsel->counts->scaled = 1;
697 aggr->val = (u64)((double)aggr->val * aggr->ena / aggr->run + 0.5);
700 aggr->ena = aggr->run = 0;
705 static int get_group_fd(struct perf_evsel *evsel, int cpu, int thread)
707 struct perf_evsel *leader = evsel->leader;
710 if (!perf_evsel__is_group_member(evsel))
714 * Leader must be already processed/open,
719 fd = FD(leader, cpu, thread);
725 static int __perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
726 struct thread_map *threads)
729 unsigned long flags = 0;
732 if (evsel->fd == NULL &&
733 perf_evsel__alloc_fd(evsel, cpus->nr, threads->nr) < 0)
737 flags = PERF_FLAG_PID_CGROUP;
738 pid = evsel->cgrp->fd;
741 for (cpu = 0; cpu < cpus->nr; cpu++) {
743 for (thread = 0; thread < threads->nr; thread++) {
747 pid = threads->map[thread];
749 group_fd = get_group_fd(evsel, cpu, thread);
751 FD(evsel, cpu, thread) = sys_perf_event_open(&evsel->attr,
755 if (FD(evsel, cpu, thread) < 0) {
766 while (--thread >= 0) {
767 close(FD(evsel, cpu, thread));
768 FD(evsel, cpu, thread) = -1;
770 thread = threads->nr;
771 } while (--cpu >= 0);
775 void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads)
777 if (evsel->fd == NULL)
780 perf_evsel__close_fd(evsel, ncpus, nthreads);
781 perf_evsel__free_fd(evsel);
794 struct thread_map map;
796 } empty_thread_map = {
801 int perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus,
802 struct thread_map *threads)
805 /* Work around old compiler warnings about strict aliasing */
806 cpus = &empty_cpu_map.map;
810 threads = &empty_thread_map.map;
812 return __perf_evsel__open(evsel, cpus, threads);
815 int perf_evsel__open_per_cpu(struct perf_evsel *evsel,
816 struct cpu_map *cpus)
818 return __perf_evsel__open(evsel, cpus, &empty_thread_map.map);
821 int perf_evsel__open_per_thread(struct perf_evsel *evsel,
822 struct thread_map *threads)
824 return __perf_evsel__open(evsel, &empty_cpu_map.map, threads);
827 static int perf_evsel__parse_id_sample(const struct perf_evsel *evsel,
828 const union perf_event *event,
829 struct perf_sample *sample)
831 u64 type = evsel->attr.sample_type;
832 const u64 *array = event->sample.array;
833 bool swapped = evsel->needs_swap;
836 array += ((event->header.size -
837 sizeof(event->header)) / sizeof(u64)) - 1;
839 if (type & PERF_SAMPLE_CPU) {
842 /* undo swap of u64, then swap on individual u32s */
843 u.val64 = bswap_64(u.val64);
844 u.val32[0] = bswap_32(u.val32[0]);
847 sample->cpu = u.val32[0];
851 if (type & PERF_SAMPLE_STREAM_ID) {
852 sample->stream_id = *array;
856 if (type & PERF_SAMPLE_ID) {
861 if (type & PERF_SAMPLE_TIME) {
862 sample->time = *array;
866 if (type & PERF_SAMPLE_TID) {
869 /* undo swap of u64, then swap on individual u32s */
870 u.val64 = bswap_64(u.val64);
871 u.val32[0] = bswap_32(u.val32[0]);
872 u.val32[1] = bswap_32(u.val32[1]);
875 sample->pid = u.val32[0];
876 sample->tid = u.val32[1];
882 static bool sample_overlap(const union perf_event *event,
883 const void *offset, u64 size)
885 const void *base = event;
887 if (offset + size > base + event->header.size)
893 int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
894 struct perf_sample *data)
896 u64 type = evsel->attr.sample_type;
897 u64 regs_user = evsel->attr.sample_regs_user;
898 bool swapped = evsel->needs_swap;
902 * used for cross-endian analysis. See git commit 65014ab3
903 * for why this goofiness is needed.
907 memset(data, 0, sizeof(*data));
908 data->cpu = data->pid = data->tid = -1;
909 data->stream_id = data->id = data->time = -1ULL;
912 if (event->header.type != PERF_RECORD_SAMPLE) {
913 if (!evsel->attr.sample_id_all)
915 return perf_evsel__parse_id_sample(evsel, event, data);
918 array = event->sample.array;
920 if (evsel->sample_size + sizeof(event->header) > event->header.size)
923 if (type & PERF_SAMPLE_IP) {
924 data->ip = event->ip.ip;
928 if (type & PERF_SAMPLE_TID) {
931 /* undo swap of u64, then swap on individual u32s */
932 u.val64 = bswap_64(u.val64);
933 u.val32[0] = bswap_32(u.val32[0]);
934 u.val32[1] = bswap_32(u.val32[1]);
937 data->pid = u.val32[0];
938 data->tid = u.val32[1];
942 if (type & PERF_SAMPLE_TIME) {
948 if (type & PERF_SAMPLE_ADDR) {
954 if (type & PERF_SAMPLE_ID) {
959 if (type & PERF_SAMPLE_STREAM_ID) {
960 data->stream_id = *array;
964 if (type & PERF_SAMPLE_CPU) {
968 /* undo swap of u64, then swap on individual u32s */
969 u.val64 = bswap_64(u.val64);
970 u.val32[0] = bswap_32(u.val32[0]);
973 data->cpu = u.val32[0];
977 if (type & PERF_SAMPLE_PERIOD) {
978 data->period = *array;
982 if (type & PERF_SAMPLE_READ) {
983 fprintf(stderr, "PERF_SAMPLE_READ is unsupported for now\n");
987 if (type & PERF_SAMPLE_CALLCHAIN) {
988 if (sample_overlap(event, array, sizeof(data->callchain->nr)))
991 data->callchain = (struct ip_callchain *)array;
993 if (sample_overlap(event, array, data->callchain->nr))
996 array += 1 + data->callchain->nr;
999 if (type & PERF_SAMPLE_RAW) {
1003 if (WARN_ONCE(swapped,
1004 "Endianness of raw data not corrected!\n")) {
1005 /* undo swap of u64, then swap on individual u32s */
1006 u.val64 = bswap_64(u.val64);
1007 u.val32[0] = bswap_32(u.val32[0]);
1008 u.val32[1] = bswap_32(u.val32[1]);
1011 if (sample_overlap(event, array, sizeof(u32)))
1014 data->raw_size = u.val32[0];
1015 pdata = (void *) array + sizeof(u32);
1017 if (sample_overlap(event, pdata, data->raw_size))
1020 data->raw_data = (void *) pdata;
1022 array = (void *)array + data->raw_size + sizeof(u32);
1025 if (type & PERF_SAMPLE_BRANCH_STACK) {
1028 data->branch_stack = (struct branch_stack *)array;
1031 sz = data->branch_stack->nr * sizeof(struct branch_entry);
1036 if (type & PERF_SAMPLE_REGS_USER) {
1037 /* First u64 tells us if we have any regs in sample. */
1038 u64 avail = *array++;
1041 data->user_regs.regs = (u64 *)array;
1042 array += hweight_long(regs_user);
1046 if (type & PERF_SAMPLE_STACK_USER) {
1047 u64 size = *array++;
1049 data->user_stack.offset = ((char *)(array - 1)
1053 data->user_stack.size = 0;
1055 data->user_stack.data = (char *)array;
1056 array += size / sizeof(*array);
1057 data->user_stack.size = *array;
1064 int perf_event__synthesize_sample(union perf_event *event, u64 type,
1065 const struct perf_sample *sample,
1071 * used for cross-endian analysis. See git commit 65014ab3
1072 * for why this goofiness is needed.
1076 array = event->sample.array;
1078 if (type & PERF_SAMPLE_IP) {
1079 event->ip.ip = sample->ip;
1083 if (type & PERF_SAMPLE_TID) {
1084 u.val32[0] = sample->pid;
1085 u.val32[1] = sample->tid;
1088 * Inverse of what is done in perf_evsel__parse_sample
1090 u.val32[0] = bswap_32(u.val32[0]);
1091 u.val32[1] = bswap_32(u.val32[1]);
1092 u.val64 = bswap_64(u.val64);
1099 if (type & PERF_SAMPLE_TIME) {
1100 *array = sample->time;
1104 if (type & PERF_SAMPLE_ADDR) {
1105 *array = sample->addr;
1109 if (type & PERF_SAMPLE_ID) {
1110 *array = sample->id;
1114 if (type & PERF_SAMPLE_STREAM_ID) {
1115 *array = sample->stream_id;
1119 if (type & PERF_SAMPLE_CPU) {
1120 u.val32[0] = sample->cpu;
1123 * Inverse of what is done in perf_evsel__parse_sample
1125 u.val32[0] = bswap_32(u.val32[0]);
1126 u.val64 = bswap_64(u.val64);
1132 if (type & PERF_SAMPLE_PERIOD) {
1133 *array = sample->period;
1140 struct format_field *perf_evsel__field(struct perf_evsel *evsel, const char *name)
1142 return pevent_find_field(evsel->tp_format, name);
1145 void *perf_evsel__rawptr(struct perf_evsel *evsel, struct perf_sample *sample,
1148 struct format_field *field = perf_evsel__field(evsel, name);
1154 offset = field->offset;
1156 if (field->flags & FIELD_IS_DYNAMIC) {
1157 offset = *(int *)(sample->raw_data + field->offset);
1161 return sample->raw_data + offset;
1164 u64 perf_evsel__intval(struct perf_evsel *evsel, struct perf_sample *sample,
1167 struct format_field *field = perf_evsel__field(evsel, name);
1174 ptr = sample->raw_data + field->offset;
1176 switch (field->size) {
1180 value = *(u16 *)ptr;
1183 value = *(u32 *)ptr;
1186 value = *(u64 *)ptr;
1192 if (!evsel->needs_swap)
1195 switch (field->size) {
1197 return bswap_16(value);
1199 return bswap_32(value);
1201 return bswap_64(value);