perf intel-pt: Insert callchain context into synthesized callchains
[linux-2.6-block.git] / tools / perf / util / intel-pt.c
CommitLineData
90e457f7
AH
1/*
2 * intel_pt.c: Intel Processor Trace support
3 * Copyright (c) 2013-2015, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 */
15
fd20e811 16#include <inttypes.h>
90e457f7
AH
17#include <stdio.h>
18#include <stdbool.h>
19#include <errno.h>
20#include <linux/kernel.h>
21#include <linux/types.h>
22
23#include "../perf.h"
24#include "session.h"
25#include "machine.h"
98521b38 26#include "memswap.h"
f14445ee 27#include "sort.h"
90e457f7
AH
28#include "tool.h"
29#include "event.h"
30#include "evlist.h"
31#include "evsel.h"
32#include "map.h"
33#include "color.h"
34#include "util.h"
35#include "thread.h"
36#include "thread-stack.h"
37#include "symbol.h"
38#include "callchain.h"
39#include "dso.h"
40#include "debug.h"
41#include "auxtrace.h"
42#include "tsc.h"
43#include "intel-pt.h"
41840d21 44#include "config.h"
90e457f7
AH
45
46#include "intel-pt-decoder/intel-pt-log.h"
47#include "intel-pt-decoder/intel-pt-decoder.h"
48#include "intel-pt-decoder/intel-pt-insn-decoder.h"
49#include "intel-pt-decoder/intel-pt-pkt-decoder.h"
50
51#define MAX_TIMESTAMP (~0ULL)
52
53struct intel_pt {
54 struct auxtrace auxtrace;
55 struct auxtrace_queues queues;
56 struct auxtrace_heap heap;
57 u32 auxtrace_type;
58 struct perf_session *session;
59 struct machine *machine;
60 struct perf_evsel *switch_evsel;
61 struct thread *unknown_thread;
62 bool timeless_decoding;
63 bool sampling_mode;
64 bool snapshot_mode;
65 bool per_cpu_mmaps;
66 bool have_tsc;
67 bool data_queued;
68 bool est_tsc;
69 bool sync_switch;
ba11ba65 70 bool mispred_all;
90e457f7
AH
71 int have_sched_switch;
72 u32 pmu_type;
73 u64 kernel_start;
74 u64 switch_ip;
75 u64 ptss_ip;
76
77 struct perf_tsc_conversion tc;
78 bool cap_user_time_zero;
79
80 struct itrace_synth_opts synth_opts;
81
82 bool sample_instructions;
83 u64 instructions_sample_type;
90e457f7
AH
84 u64 instructions_id;
85
86 bool sample_branches;
87 u32 branches_filter;
88 u64 branches_sample_type;
89 u64 branches_id;
90
91 bool sample_transactions;
92 u64 transactions_sample_type;
93 u64 transactions_id;
94
37973075
AH
95 bool sample_ptwrites;
96 u64 ptwrites_sample_type;
97 u64 ptwrites_id;
98
99 bool sample_pwr_events;
100 u64 pwr_events_sample_type;
101 u64 mwait_id;
102 u64 pwre_id;
103 u64 exstop_id;
104 u64 pwrx_id;
105 u64 cbr_id;
106
90e457f7 107 u64 tsc_bit;
11fa7cb8
AH
108 u64 mtc_bit;
109 u64 mtc_freq_bits;
110 u32 tsc_ctc_ratio_n;
111 u32 tsc_ctc_ratio_d;
112 u64 cyc_bit;
90e457f7
AH
113 u64 noretcomp_bit;
114 unsigned max_non_turbo_ratio;
37973075 115 unsigned cbr2khz;
d1706b39
AK
116
117 unsigned long num_events;
2b9e32c4
AH
118
119 char *filter;
2acee108 120 struct addr_filters filts;
90e457f7
AH
121};
122
123enum switch_state {
124 INTEL_PT_SS_NOT_TRACING,
125 INTEL_PT_SS_UNKNOWN,
126 INTEL_PT_SS_TRACING,
127 INTEL_PT_SS_EXPECTING_SWITCH_EVENT,
128 INTEL_PT_SS_EXPECTING_SWITCH_IP,
129};
130
131struct intel_pt_queue {
132 struct intel_pt *pt;
133 unsigned int queue_nr;
134 struct auxtrace_buffer *buffer;
9c665064 135 struct auxtrace_buffer *old_buffer;
90e457f7
AH
136 void *decoder;
137 const struct intel_pt_state *state;
138 struct ip_callchain *chain;
f14445ee
AH
139 struct branch_stack *last_branch;
140 struct branch_stack *last_branch_rb;
141 size_t last_branch_pos;
90e457f7
AH
142 union perf_event *event_buf;
143 bool on_heap;
144 bool stop;
145 bool step_through_buffers;
146 bool use_buffer_pid_tid;
63d8e38f 147 bool sync_switch;
90e457f7
AH
148 pid_t pid, tid;
149 int cpu;
150 int switch_state;
151 pid_t next_tid;
152 struct thread *thread;
153 bool exclude_kernel;
154 bool have_sample;
155 u64 time;
156 u64 timestamp;
157 u32 flags;
158 u16 insn_len;
2a21d036 159 u64 last_insn_cnt;
faaa8768 160 char insn[INTEL_PT_INSN_BUF_SZ];
90e457f7
AH
161};
162
163static void intel_pt_dump(struct intel_pt *pt __maybe_unused,
164 unsigned char *buf, size_t len)
165{
166 struct intel_pt_pkt packet;
167 size_t pos = 0;
168 int ret, pkt_len, i;
169 char desc[INTEL_PT_PKT_DESC_MAX];
170 const char *color = PERF_COLOR_BLUE;
171
172 color_fprintf(stdout, color,
173 ". ... Intel Processor Trace data: size %zu bytes\n",
174 len);
175
176 while (len) {
177 ret = intel_pt_get_packet(buf, len, &packet);
178 if (ret > 0)
179 pkt_len = ret;
180 else
181 pkt_len = 1;
182 printf(".");
183 color_fprintf(stdout, color, " %08x: ", pos);
184 for (i = 0; i < pkt_len; i++)
185 color_fprintf(stdout, color, " %02x", buf[i]);
186 for (; i < 16; i++)
187 color_fprintf(stdout, color, " ");
188 if (ret > 0) {
189 ret = intel_pt_pkt_desc(&packet, desc,
190 INTEL_PT_PKT_DESC_MAX);
191 if (ret > 0)
192 color_fprintf(stdout, color, " %s\n", desc);
193 } else {
194 color_fprintf(stdout, color, " Bad packet!\n");
195 }
196 pos += pkt_len;
197 buf += pkt_len;
198 len -= pkt_len;
199 }
200}
201
202static void intel_pt_dump_event(struct intel_pt *pt, unsigned char *buf,
203 size_t len)
204{
205 printf(".\n");
206 intel_pt_dump(pt, buf, len);
207}
208
209static int intel_pt_do_fix_overlap(struct intel_pt *pt, struct auxtrace_buffer *a,
210 struct auxtrace_buffer *b)
211{
117db4b2 212 bool consecutive = false;
90e457f7
AH
213 void *start;
214
215 start = intel_pt_find_overlap(a->data, a->size, b->data, b->size,
117db4b2 216 pt->have_tsc, &consecutive);
90e457f7
AH
217 if (!start)
218 return -EINVAL;
219 b->use_size = b->data + b->size - start;
220 b->use_data = start;
117db4b2
AH
221 if (b->use_size && consecutive)
222 b->consecutive = true;
90e457f7
AH
223 return 0;
224}
225
90e457f7
AH
226/* This function assumes data is processed sequentially only */
227static int intel_pt_get_trace(struct intel_pt_buffer *b, void *data)
228{
229 struct intel_pt_queue *ptq = data;
9c665064
AH
230 struct auxtrace_buffer *buffer = ptq->buffer;
231 struct auxtrace_buffer *old_buffer = ptq->old_buffer;
90e457f7 232 struct auxtrace_queue *queue;
599a5beb 233 bool might_overlap;
90e457f7
AH
234
235 if (ptq->stop) {
236 b->len = 0;
237 return 0;
238 }
239
240 queue = &ptq->pt->queues.queue_array[ptq->queue_nr];
9c665064 241
90e457f7
AH
242 buffer = auxtrace_buffer__next(queue, buffer);
243 if (!buffer) {
244 if (old_buffer)
245 auxtrace_buffer__drop_data(old_buffer);
246 b->len = 0;
247 return 0;
248 }
249
250 ptq->buffer = buffer;
251
252 if (!buffer->data) {
8ceb41d7 253 int fd = perf_data__fd(ptq->pt->session->data);
90e457f7
AH
254
255 buffer->data = auxtrace_buffer__get_data(buffer, fd);
256 if (!buffer->data)
257 return -ENOMEM;
258 }
259
599a5beb
AH
260 might_overlap = ptq->pt->snapshot_mode || ptq->pt->sampling_mode;
261 if (might_overlap && !buffer->consecutive && old_buffer &&
90e457f7
AH
262 intel_pt_do_fix_overlap(ptq->pt, old_buffer, buffer))
263 return -ENOMEM;
264
90e457f7
AH
265 if (buffer->use_data) {
266 b->len = buffer->use_size;
267 b->buf = buffer->use_data;
268 } else {
269 b->len = buffer->size;
270 b->buf = buffer->data;
271 }
272 b->ref_timestamp = buffer->reference;
273
599a5beb 274 if (!old_buffer || (might_overlap && !buffer->consecutive)) {
90e457f7
AH
275 b->consecutive = false;
276 b->trace_nr = buffer->buffer_nr + 1;
277 } else {
278 b->consecutive = true;
279 }
280
90e457f7
AH
281 if (ptq->step_through_buffers)
282 ptq->stop = true;
283
9c665064
AH
284 if (b->len) {
285 if (old_buffer)
286 auxtrace_buffer__drop_data(old_buffer);
287 ptq->old_buffer = buffer;
288 } else {
289 auxtrace_buffer__drop_data(buffer);
90e457f7 290 return intel_pt_get_trace(b, data);
9c665064 291 }
90e457f7
AH
292
293 return 0;
294}
295
296struct intel_pt_cache_entry {
297 struct auxtrace_cache_entry entry;
298 u64 insn_cnt;
299 u64 byte_cnt;
300 enum intel_pt_insn_op op;
301 enum intel_pt_insn_branch branch;
302 int length;
303 int32_t rel;
faaa8768 304 char insn[INTEL_PT_INSN_BUF_SZ];
90e457f7
AH
305};
306
307static int intel_pt_config_div(const char *var, const char *value, void *data)
308{
309 int *d = data;
310 long val;
311
312 if (!strcmp(var, "intel-pt.cache-divisor")) {
313 val = strtol(value, NULL, 0);
314 if (val > 0 && val <= INT_MAX)
315 *d = val;
316 }
317
318 return 0;
319}
320
321static int intel_pt_cache_divisor(void)
322{
323 static int d;
324
325 if (d)
326 return d;
327
328 perf_config(intel_pt_config_div, &d);
329
330 if (!d)
331 d = 64;
332
333 return d;
334}
335
336static unsigned int intel_pt_cache_size(struct dso *dso,
337 struct machine *machine)
338{
339 off_t size;
340
341 size = dso__data_size(dso, machine);
342 size /= intel_pt_cache_divisor();
343 if (size < 1000)
344 return 10;
345 if (size > (1 << 21))
346 return 21;
347 return 32 - __builtin_clz(size);
348}
349
350static struct auxtrace_cache *intel_pt_cache(struct dso *dso,
351 struct machine *machine)
352{
353 struct auxtrace_cache *c;
354 unsigned int bits;
355
356 if (dso->auxtrace_cache)
357 return dso->auxtrace_cache;
358
359 bits = intel_pt_cache_size(dso, machine);
360
361 /* Ignoring cache creation failure */
362 c = auxtrace_cache__new(bits, sizeof(struct intel_pt_cache_entry), 200);
363
364 dso->auxtrace_cache = c;
365
366 return c;
367}
368
369static int intel_pt_cache_add(struct dso *dso, struct machine *machine,
370 u64 offset, u64 insn_cnt, u64 byte_cnt,
371 struct intel_pt_insn *intel_pt_insn)
372{
373 struct auxtrace_cache *c = intel_pt_cache(dso, machine);
374 struct intel_pt_cache_entry *e;
375 int err;
376
377 if (!c)
378 return -ENOMEM;
379
380 e = auxtrace_cache__alloc_entry(c);
381 if (!e)
382 return -ENOMEM;
383
384 e->insn_cnt = insn_cnt;
385 e->byte_cnt = byte_cnt;
386 e->op = intel_pt_insn->op;
387 e->branch = intel_pt_insn->branch;
388 e->length = intel_pt_insn->length;
389 e->rel = intel_pt_insn->rel;
faaa8768 390 memcpy(e->insn, intel_pt_insn->buf, INTEL_PT_INSN_BUF_SZ);
90e457f7
AH
391
392 err = auxtrace_cache__add(c, offset, &e->entry);
393 if (err)
394 auxtrace_cache__free_entry(c, e);
395
396 return err;
397}
398
399static struct intel_pt_cache_entry *
400intel_pt_cache_lookup(struct dso *dso, struct machine *machine, u64 offset)
401{
402 struct auxtrace_cache *c = intel_pt_cache(dso, machine);
403
404 if (!c)
405 return NULL;
406
407 return auxtrace_cache__lookup(dso->auxtrace_cache, offset);
408}
409
410static int intel_pt_walk_next_insn(struct intel_pt_insn *intel_pt_insn,
411 uint64_t *insn_cnt_ptr, uint64_t *ip,
412 uint64_t to_ip, uint64_t max_insn_cnt,
413 void *data)
414{
415 struct intel_pt_queue *ptq = data;
416 struct machine *machine = ptq->pt->machine;
417 struct thread *thread;
418 struct addr_location al;
32f98aab 419 unsigned char buf[INTEL_PT_INSN_BUF_SZ];
90e457f7
AH
420 ssize_t len;
421 int x86_64;
422 u8 cpumode;
423 u64 offset, start_offset, start_ip;
424 u64 insn_cnt = 0;
425 bool one_map = true;
426
faaa8768
AK
427 intel_pt_insn->length = 0;
428
90e457f7
AH
429 if (to_ip && *ip == to_ip)
430 goto out_no_cache;
431
90e457f7
AH
432 if (*ip >= ptq->pt->kernel_start)
433 cpumode = PERF_RECORD_MISC_KERNEL;
434 else
435 cpumode = PERF_RECORD_MISC_USER;
436
437 thread = ptq->thread;
438 if (!thread) {
439 if (cpumode != PERF_RECORD_MISC_KERNEL)
440 return -EINVAL;
441 thread = ptq->pt->unknown_thread;
442 }
443
444 while (1) {
71a84b5a 445 if (!thread__find_map(thread, cpumode, *ip, &al) || !al.map->dso)
90e457f7
AH
446 return -EINVAL;
447
448 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR &&
449 dso__data_status_seen(al.map->dso,
450 DSO_DATA_STATUS_SEEN_ITRACE))
451 return -ENOENT;
452
453 offset = al.map->map_ip(al.map, *ip);
454
455 if (!to_ip && one_map) {
456 struct intel_pt_cache_entry *e;
457
458 e = intel_pt_cache_lookup(al.map->dso, machine, offset);
459 if (e &&
460 (!max_insn_cnt || e->insn_cnt <= max_insn_cnt)) {
461 *insn_cnt_ptr = e->insn_cnt;
462 *ip += e->byte_cnt;
463 intel_pt_insn->op = e->op;
464 intel_pt_insn->branch = e->branch;
465 intel_pt_insn->length = e->length;
466 intel_pt_insn->rel = e->rel;
faaa8768
AK
467 memcpy(intel_pt_insn->buf, e->insn,
468 INTEL_PT_INSN_BUF_SZ);
90e457f7
AH
469 intel_pt_log_insn_no_data(intel_pt_insn, *ip);
470 return 0;
471 }
472 }
473
474 start_offset = offset;
475 start_ip = *ip;
476
477 /* Load maps to ensure dso->is_64_bit has been updated */
be39db9f 478 map__load(al.map);
90e457f7
AH
479
480 x86_64 = al.map->dso->is_64_bit;
481
482 while (1) {
483 len = dso__data_read_offset(al.map->dso, machine,
32f98aab
AH
484 offset, buf,
485 INTEL_PT_INSN_BUF_SZ);
90e457f7
AH
486 if (len <= 0)
487 return -EINVAL;
488
489 if (intel_pt_get_insn(buf, len, x86_64, intel_pt_insn))
490 return -EINVAL;
491
492 intel_pt_log_insn(intel_pt_insn, *ip);
493
494 insn_cnt += 1;
495
496 if (intel_pt_insn->branch != INTEL_PT_BR_NO_BRANCH)
497 goto out;
498
499 if (max_insn_cnt && insn_cnt >= max_insn_cnt)
500 goto out_no_cache;
501
502 *ip += intel_pt_insn->length;
503
504 if (to_ip && *ip == to_ip)
505 goto out_no_cache;
506
507 if (*ip >= al.map->end)
508 break;
509
510 offset += intel_pt_insn->length;
511 }
512 one_map = false;
513 }
514out:
515 *insn_cnt_ptr = insn_cnt;
516
517 if (!one_map)
518 goto out_no_cache;
519
520 /*
521 * Didn't lookup in the 'to_ip' case, so do it now to prevent duplicate
522 * entries.
523 */
524 if (to_ip) {
525 struct intel_pt_cache_entry *e;
526
527 e = intel_pt_cache_lookup(al.map->dso, machine, start_offset);
528 if (e)
529 return 0;
530 }
531
532 /* Ignore cache errors */
533 intel_pt_cache_add(al.map->dso, machine, start_offset, insn_cnt,
534 *ip - start_ip, intel_pt_insn);
535
536 return 0;
537
538out_no_cache:
539 *insn_cnt_ptr = insn_cnt;
540 return 0;
541}
542
2acee108
AH
543static bool intel_pt_match_pgd_ip(struct intel_pt *pt, uint64_t ip,
544 uint64_t offset, const char *filename)
545{
546 struct addr_filter *filt;
547 bool have_filter = false;
548 bool hit_tracestop = false;
549 bool hit_filter = false;
550
551 list_for_each_entry(filt, &pt->filts.head, list) {
552 if (filt->start)
553 have_filter = true;
554
555 if ((filename && !filt->filename) ||
556 (!filename && filt->filename) ||
557 (filename && strcmp(filename, filt->filename)))
558 continue;
559
560 if (!(offset >= filt->addr && offset < filt->addr + filt->size))
561 continue;
562
563 intel_pt_log("TIP.PGD ip %#"PRIx64" offset %#"PRIx64" in %s hit filter: %s offset %#"PRIx64" size %#"PRIx64"\n",
564 ip, offset, filename ? filename : "[kernel]",
565 filt->start ? "filter" : "stop",
566 filt->addr, filt->size);
567
568 if (filt->start)
569 hit_filter = true;
570 else
571 hit_tracestop = true;
572 }
573
574 if (!hit_tracestop && !hit_filter)
575 intel_pt_log("TIP.PGD ip %#"PRIx64" offset %#"PRIx64" in %s is not in a filter region\n",
576 ip, offset, filename ? filename : "[kernel]");
577
578 return hit_tracestop || (have_filter && !hit_filter);
579}
580
581static int __intel_pt_pgd_ip(uint64_t ip, void *data)
582{
583 struct intel_pt_queue *ptq = data;
584 struct thread *thread;
585 struct addr_location al;
586 u8 cpumode;
587 u64 offset;
588
589 if (ip >= ptq->pt->kernel_start)
590 return intel_pt_match_pgd_ip(ptq->pt, ip, ip, NULL);
591
592 cpumode = PERF_RECORD_MISC_USER;
593
594 thread = ptq->thread;
595 if (!thread)
596 return -EINVAL;
597
71a84b5a 598 if (!thread__find_map(thread, cpumode, ip, &al) || !al.map->dso)
2acee108
AH
599 return -EINVAL;
600
601 offset = al.map->map_ip(al.map, ip);
602
603 return intel_pt_match_pgd_ip(ptq->pt, ip, offset,
604 al.map->dso->long_name);
605}
606
607static bool intel_pt_pgd_ip(uint64_t ip, void *data)
608{
609 return __intel_pt_pgd_ip(ip, data) > 0;
610}
611
90e457f7
AH
612static bool intel_pt_get_config(struct intel_pt *pt,
613 struct perf_event_attr *attr, u64 *config)
614{
615 if (attr->type == pt->pmu_type) {
616 if (config)
617 *config = attr->config;
618 return true;
619 }
620
621 return false;
622}
623
624static bool intel_pt_exclude_kernel(struct intel_pt *pt)
625{
626 struct perf_evsel *evsel;
627
e5cadb93 628 evlist__for_each_entry(pt->session->evlist, evsel) {
90e457f7
AH
629 if (intel_pt_get_config(pt, &evsel->attr, NULL) &&
630 !evsel->attr.exclude_kernel)
631 return false;
632 }
633 return true;
634}
635
636static bool intel_pt_return_compression(struct intel_pt *pt)
637{
638 struct perf_evsel *evsel;
639 u64 config;
640
641 if (!pt->noretcomp_bit)
642 return true;
643
e5cadb93 644 evlist__for_each_entry(pt->session->evlist, evsel) {
90e457f7
AH
645 if (intel_pt_get_config(pt, &evsel->attr, &config) &&
646 (config & pt->noretcomp_bit))
647 return false;
648 }
649 return true;
650}
651
83959817
AH
652static bool intel_pt_branch_enable(struct intel_pt *pt)
653{
654 struct perf_evsel *evsel;
655 u64 config;
656
657 evlist__for_each_entry(pt->session->evlist, evsel) {
658 if (intel_pt_get_config(pt, &evsel->attr, &config) &&
659 (config & 1) && !(config & 0x2000))
660 return false;
661 }
662 return true;
663}
664
11fa7cb8
AH
665static unsigned int intel_pt_mtc_period(struct intel_pt *pt)
666{
667 struct perf_evsel *evsel;
668 unsigned int shift;
669 u64 config;
670
671 if (!pt->mtc_freq_bits)
672 return 0;
673
674 for (shift = 0, config = pt->mtc_freq_bits; !(config & 1); shift++)
675 config >>= 1;
676
e5cadb93 677 evlist__for_each_entry(pt->session->evlist, evsel) {
11fa7cb8
AH
678 if (intel_pt_get_config(pt, &evsel->attr, &config))
679 return (config & pt->mtc_freq_bits) >> shift;
680 }
681 return 0;
682}
683
90e457f7
AH
684static bool intel_pt_timeless_decoding(struct intel_pt *pt)
685{
686 struct perf_evsel *evsel;
687 bool timeless_decoding = true;
688 u64 config;
689
690 if (!pt->tsc_bit || !pt->cap_user_time_zero)
691 return true;
692
e5cadb93 693 evlist__for_each_entry(pt->session->evlist, evsel) {
90e457f7
AH
694 if (!(evsel->attr.sample_type & PERF_SAMPLE_TIME))
695 return true;
696 if (intel_pt_get_config(pt, &evsel->attr, &config)) {
697 if (config & pt->tsc_bit)
698 timeless_decoding = false;
699 else
700 return true;
701 }
702 }
703 return timeless_decoding;
704}
705
706static bool intel_pt_tracing_kernel(struct intel_pt *pt)
707{
708 struct perf_evsel *evsel;
709
e5cadb93 710 evlist__for_each_entry(pt->session->evlist, evsel) {
90e457f7
AH
711 if (intel_pt_get_config(pt, &evsel->attr, NULL) &&
712 !evsel->attr.exclude_kernel)
713 return true;
714 }
715 return false;
716}
717
718static bool intel_pt_have_tsc(struct intel_pt *pt)
719{
720 struct perf_evsel *evsel;
721 bool have_tsc = false;
722 u64 config;
723
724 if (!pt->tsc_bit)
725 return false;
726
e5cadb93 727 evlist__for_each_entry(pt->session->evlist, evsel) {
90e457f7
AH
728 if (intel_pt_get_config(pt, &evsel->attr, &config)) {
729 if (config & pt->tsc_bit)
730 have_tsc = true;
731 else
732 return false;
733 }
734 }
735 return have_tsc;
736}
737
738static u64 intel_pt_ns_to_ticks(const struct intel_pt *pt, u64 ns)
739{
740 u64 quot, rem;
741
742 quot = ns / pt->tc.time_mult;
743 rem = ns % pt->tc.time_mult;
744 return (quot << pt->tc.time_shift) + (rem << pt->tc.time_shift) /
745 pt->tc.time_mult;
746}
747
748static struct intel_pt_queue *intel_pt_alloc_queue(struct intel_pt *pt,
749 unsigned int queue_nr)
750{
751 struct intel_pt_params params = { .get_trace = 0, };
9fb52336 752 struct perf_env *env = pt->machine->env;
90e457f7
AH
753 struct intel_pt_queue *ptq;
754
755 ptq = zalloc(sizeof(struct intel_pt_queue));
756 if (!ptq)
757 return NULL;
758
759 if (pt->synth_opts.callchain) {
760 size_t sz = sizeof(struct ip_callchain);
761
24248306
AH
762 /* Add 1 to callchain_sz for callchain context */
763 sz += (pt->synth_opts.callchain_sz + 1) * sizeof(u64);
90e457f7
AH
764 ptq->chain = zalloc(sz);
765 if (!ptq->chain)
766 goto out_free;
767 }
768
f14445ee
AH
769 if (pt->synth_opts.last_branch) {
770 size_t sz = sizeof(struct branch_stack);
771
772 sz += pt->synth_opts.last_branch_sz *
773 sizeof(struct branch_entry);
774 ptq->last_branch = zalloc(sz);
775 if (!ptq->last_branch)
776 goto out_free;
777 ptq->last_branch_rb = zalloc(sz);
778 if (!ptq->last_branch_rb)
779 goto out_free;
780 }
781
90e457f7
AH
782 ptq->event_buf = malloc(PERF_SAMPLE_MAX_SIZE);
783 if (!ptq->event_buf)
784 goto out_free;
785
786 ptq->pt = pt;
787 ptq->queue_nr = queue_nr;
788 ptq->exclude_kernel = intel_pt_exclude_kernel(pt);
789 ptq->pid = -1;
790 ptq->tid = -1;
791 ptq->cpu = -1;
792 ptq->next_tid = -1;
793
794 params.get_trace = intel_pt_get_trace;
795 params.walk_insn = intel_pt_walk_next_insn;
796 params.data = ptq;
797 params.return_compression = intel_pt_return_compression(pt);
83959817 798 params.branch_enable = intel_pt_branch_enable(pt);
90e457f7 799 params.max_non_turbo_ratio = pt->max_non_turbo_ratio;
11fa7cb8
AH
800 params.mtc_period = intel_pt_mtc_period(pt);
801 params.tsc_ctc_ratio_n = pt->tsc_ctc_ratio_n;
802 params.tsc_ctc_ratio_d = pt->tsc_ctc_ratio_d;
90e457f7 803
2acee108
AH
804 if (pt->filts.cnt > 0)
805 params.pgd_ip = intel_pt_pgd_ip;
806
90e457f7
AH
807 if (pt->synth_opts.instructions) {
808 if (pt->synth_opts.period) {
809 switch (pt->synth_opts.period_type) {
810 case PERF_ITRACE_PERIOD_INSTRUCTIONS:
811 params.period_type =
812 INTEL_PT_PERIOD_INSTRUCTIONS;
813 params.period = pt->synth_opts.period;
814 break;
815 case PERF_ITRACE_PERIOD_TICKS:
816 params.period_type = INTEL_PT_PERIOD_TICKS;
817 params.period = pt->synth_opts.period;
818 break;
819 case PERF_ITRACE_PERIOD_NANOSECS:
820 params.period_type = INTEL_PT_PERIOD_TICKS;
821 params.period = intel_pt_ns_to_ticks(pt,
822 pt->synth_opts.period);
823 break;
824 default:
825 break;
826 }
827 }
828
829 if (!params.period) {
830 params.period_type = INTEL_PT_PERIOD_INSTRUCTIONS;
e1791347 831 params.period = 1;
90e457f7
AH
832 }
833 }
834
9fb52336
AH
835 if (env->cpuid && !strncmp(env->cpuid, "GenuineIntel,6,92,", 18))
836 params.flags |= INTEL_PT_FUP_WITH_NLIP;
837
90e457f7
AH
838 ptq->decoder = intel_pt_decoder_new(&params);
839 if (!ptq->decoder)
840 goto out_free;
841
842 return ptq;
843
844out_free:
845 zfree(&ptq->event_buf);
f14445ee
AH
846 zfree(&ptq->last_branch);
847 zfree(&ptq->last_branch_rb);
90e457f7
AH
848 zfree(&ptq->chain);
849 free(ptq);
850 return NULL;
851}
852
853static void intel_pt_free_queue(void *priv)
854{
855 struct intel_pt_queue *ptq = priv;
856
857 if (!ptq)
858 return;
859 thread__zput(ptq->thread);
860 intel_pt_decoder_free(ptq->decoder);
861 zfree(&ptq->event_buf);
f14445ee
AH
862 zfree(&ptq->last_branch);
863 zfree(&ptq->last_branch_rb);
90e457f7
AH
864 zfree(&ptq->chain);
865 free(ptq);
866}
867
868static void intel_pt_set_pid_tid_cpu(struct intel_pt *pt,
869 struct auxtrace_queue *queue)
870{
871 struct intel_pt_queue *ptq = queue->priv;
872
873 if (queue->tid == -1 || pt->have_sched_switch) {
874 ptq->tid = machine__get_current_tid(pt->machine, ptq->cpu);
875 thread__zput(ptq->thread);
876 }
877
878 if (!ptq->thread && ptq->tid != -1)
879 ptq->thread = machine__find_thread(pt->machine, -1, ptq->tid);
880
881 if (ptq->thread) {
882 ptq->pid = ptq->thread->pid_;
883 if (queue->cpu == -1)
884 ptq->cpu = ptq->thread->cpu;
885 }
886}
887
888static void intel_pt_sample_flags(struct intel_pt_queue *ptq)
889{
890 if (ptq->state->flags & INTEL_PT_ABORT_TX) {
891 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT;
892 } else if (ptq->state->flags & INTEL_PT_ASYNC) {
893 if (ptq->state->to_ip)
894 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL |
895 PERF_IP_FLAG_ASYNC |
896 PERF_IP_FLAG_INTERRUPT;
897 else
898 ptq->flags = PERF_IP_FLAG_BRANCH |
899 PERF_IP_FLAG_TRACE_END;
900 ptq->insn_len = 0;
901 } else {
902 if (ptq->state->from_ip)
903 ptq->flags = intel_pt_insn_type(ptq->state->insn_op);
904 else
905 ptq->flags = PERF_IP_FLAG_BRANCH |
906 PERF_IP_FLAG_TRACE_BEGIN;
907 if (ptq->state->flags & INTEL_PT_IN_TX)
908 ptq->flags |= PERF_IP_FLAG_IN_TX;
909 ptq->insn_len = ptq->state->insn_len;
faaa8768 910 memcpy(ptq->insn, ptq->state->insn, INTEL_PT_INSN_BUF_SZ);
90e457f7 911 }
c6b5da09
AH
912
913 if (ptq->state->type & INTEL_PT_TRACE_BEGIN)
914 ptq->flags |= PERF_IP_FLAG_TRACE_BEGIN;
915 if (ptq->state->type & INTEL_PT_TRACE_END)
916 ptq->flags |= PERF_IP_FLAG_TRACE_END;
90e457f7
AH
917}
918
919static int intel_pt_setup_queue(struct intel_pt *pt,
920 struct auxtrace_queue *queue,
921 unsigned int queue_nr)
922{
923 struct intel_pt_queue *ptq = queue->priv;
924
925 if (list_empty(&queue->head))
926 return 0;
927
928 if (!ptq) {
929 ptq = intel_pt_alloc_queue(pt, queue_nr);
930 if (!ptq)
931 return -ENOMEM;
932 queue->priv = ptq;
933
934 if (queue->cpu != -1)
935 ptq->cpu = queue->cpu;
936 ptq->tid = queue->tid;
937
1c071c80
AH
938 if (pt->sampling_mode && !pt->snapshot_mode &&
939 pt->timeless_decoding)
940 ptq->step_through_buffers = true;
63d8e38f
AH
941
942 ptq->sync_switch = pt->sync_switch;
90e457f7
AH
943 }
944
945 if (!ptq->on_heap &&
63d8e38f 946 (!ptq->sync_switch ||
90e457f7
AH
947 ptq->switch_state != INTEL_PT_SS_EXPECTING_SWITCH_EVENT)) {
948 const struct intel_pt_state *state;
949 int ret;
950
951 if (pt->timeless_decoding)
952 return 0;
953
954 intel_pt_log("queue %u getting timestamp\n", queue_nr);
955 intel_pt_log("queue %u decoding cpu %d pid %d tid %d\n",
956 queue_nr, ptq->cpu, ptq->pid, ptq->tid);
957 while (1) {
958 state = intel_pt_decode(ptq->decoder);
959 if (state->err) {
960 if (state->err == INTEL_PT_ERR_NODATA) {
961 intel_pt_log("queue %u has no timestamp\n",
962 queue_nr);
963 return 0;
964 }
965 continue;
966 }
967 if (state->timestamp)
968 break;
969 }
970
971 ptq->timestamp = state->timestamp;
972 intel_pt_log("queue %u timestamp 0x%" PRIx64 "\n",
973 queue_nr, ptq->timestamp);
974 ptq->state = state;
975 ptq->have_sample = true;
976 intel_pt_sample_flags(ptq);
977 ret = auxtrace_heap__add(&pt->heap, queue_nr, ptq->timestamp);
978 if (ret)
979 return ret;
980 ptq->on_heap = true;
981 }
982
983 return 0;
984}
985
986static int intel_pt_setup_queues(struct intel_pt *pt)
987{
988 unsigned int i;
989 int ret;
990
991 for (i = 0; i < pt->queues.nr_queues; i++) {
992 ret = intel_pt_setup_queue(pt, &pt->queues.queue_array[i], i);
993 if (ret)
994 return ret;
995 }
996 return 0;
997}
998
f14445ee
AH
999static inline void intel_pt_copy_last_branch_rb(struct intel_pt_queue *ptq)
1000{
1001 struct branch_stack *bs_src = ptq->last_branch_rb;
1002 struct branch_stack *bs_dst = ptq->last_branch;
1003 size_t nr = 0;
1004
1005 bs_dst->nr = bs_src->nr;
1006
1007 if (!bs_src->nr)
1008 return;
1009
1010 nr = ptq->pt->synth_opts.last_branch_sz - ptq->last_branch_pos;
1011 memcpy(&bs_dst->entries[0],
1012 &bs_src->entries[ptq->last_branch_pos],
1013 sizeof(struct branch_entry) * nr);
1014
1015 if (bs_src->nr >= ptq->pt->synth_opts.last_branch_sz) {
1016 memcpy(&bs_dst->entries[nr],
1017 &bs_src->entries[0],
1018 sizeof(struct branch_entry) * ptq->last_branch_pos);
1019 }
1020}
1021
1022static inline void intel_pt_reset_last_branch_rb(struct intel_pt_queue *ptq)
1023{
1024 ptq->last_branch_pos = 0;
1025 ptq->last_branch_rb->nr = 0;
1026}
1027
1028static void intel_pt_update_last_branch_rb(struct intel_pt_queue *ptq)
1029{
1030 const struct intel_pt_state *state = ptq->state;
1031 struct branch_stack *bs = ptq->last_branch_rb;
1032 struct branch_entry *be;
1033
1034 if (!ptq->last_branch_pos)
1035 ptq->last_branch_pos = ptq->pt->synth_opts.last_branch_sz;
1036
1037 ptq->last_branch_pos -= 1;
1038
1039 be = &bs->entries[ptq->last_branch_pos];
1040 be->from = state->from_ip;
1041 be->to = state->to_ip;
1042 be->flags.abort = !!(state->flags & INTEL_PT_ABORT_TX);
1043 be->flags.in_tx = !!(state->flags & INTEL_PT_IN_TX);
1044 /* No support for mispredict */
ba11ba65 1045 be->flags.mispred = ptq->pt->mispred_all;
f14445ee
AH
1046
1047 if (bs->nr < ptq->pt->synth_opts.last_branch_sz)
1048 bs->nr += 1;
1049}
1050
0f3e5379
AH
1051static inline bool intel_pt_skip_event(struct intel_pt *pt)
1052{
1053 return pt->synth_opts.initial_skip &&
1054 pt->num_events++ < pt->synth_opts.initial_skip;
1055}
1056
1057static void intel_pt_prep_b_sample(struct intel_pt *pt,
1058 struct intel_pt_queue *ptq,
1059 union perf_event *event,
1060 struct perf_sample *sample)
1061{
1062 event->sample.header.type = PERF_RECORD_SAMPLE;
1063 event->sample.header.misc = PERF_RECORD_MISC_USER;
1064 event->sample.header.size = sizeof(struct perf_event_header);
1065
1066 if (!pt->timeless_decoding)
1067 sample->time = tsc_to_perf_time(ptq->timestamp, &pt->tc);
1068
1069 sample->cpumode = PERF_RECORD_MISC_USER;
1070 sample->ip = ptq->state->from_ip;
1071 sample->pid = ptq->pid;
1072 sample->tid = ptq->tid;
1073 sample->addr = ptq->state->to_ip;
1074 sample->period = 1;
1075 sample->cpu = ptq->cpu;
1076 sample->flags = ptq->flags;
1077 sample->insn_len = ptq->insn_len;
1078 memcpy(sample->insn, ptq->insn, INTEL_PT_INSN_BUF_SZ);
1079}
1080
90e457f7 1081static int intel_pt_inject_event(union perf_event *event,
a10eb530 1082 struct perf_sample *sample, u64 type)
90e457f7
AH
1083{
1084 event->header.size = perf_event__sample_event_size(sample, type, 0);
936f1f30 1085 return perf_event__synthesize_sample(event, type, 0, sample);
90e457f7
AH
1086}
1087
0f3e5379
AH
1088static inline int intel_pt_opt_inject(struct intel_pt *pt,
1089 union perf_event *event,
1090 struct perf_sample *sample, u64 type)
1091{
1092 if (!pt->synth_opts.inject)
1093 return 0;
1094
a10eb530 1095 return intel_pt_inject_event(event, sample, type);
0f3e5379
AH
1096}
1097
1098static int intel_pt_deliver_synth_b_event(struct intel_pt *pt,
1099 union perf_event *event,
1100 struct perf_sample *sample, u64 type)
90e457f7
AH
1101{
1102 int ret;
0f3e5379
AH
1103
1104 ret = intel_pt_opt_inject(pt, event, sample, type);
1105 if (ret)
1106 return ret;
1107
1108 ret = perf_session__deliver_synth_event(pt->session, event, sample);
1109 if (ret)
1110 pr_err("Intel PT: failed to deliver event, error %d\n", ret);
1111
1112 return ret;
1113}
1114
1115static int intel_pt_synth_branch_sample(struct intel_pt_queue *ptq)
1116{
90e457f7
AH
1117 struct intel_pt *pt = ptq->pt;
1118 union perf_event *event = ptq->event_buf;
1119 struct perf_sample sample = { .ip = 0, };
f14445ee
AH
1120 struct dummy_branch_stack {
1121 u64 nr;
1122 struct branch_entry entries;
1123 } dummy_bs;
90e457f7 1124
385e3306
AH
1125 if (pt->branches_filter && !(pt->branches_filter & ptq->flags))
1126 return 0;
1127
0f3e5379 1128 if (intel_pt_skip_event(pt))
d1706b39
AK
1129 return 0;
1130
0f3e5379 1131 intel_pt_prep_b_sample(pt, ptq, event, &sample);
90e457f7 1132
90e457f7
AH
1133 sample.id = ptq->pt->branches_id;
1134 sample.stream_id = ptq->pt->branches_id;
90e457f7 1135
f14445ee
AH
1136 /*
1137 * perf report cannot handle events without a branch stack when using
1138 * SORT_MODE__BRANCH so make a dummy one.
1139 */
1140 if (pt->synth_opts.last_branch && sort__mode == SORT_MODE__BRANCH) {
1141 dummy_bs = (struct dummy_branch_stack){
1142 .nr = 1,
1143 .entries = {
1144 .from = sample.ip,
1145 .to = sample.addr,
1146 },
1147 };
1148 sample.branch_stack = (struct branch_stack *)&dummy_bs;
1149 }
1150
0f3e5379
AH
1151 return intel_pt_deliver_synth_b_event(pt, event, &sample,
1152 pt->branches_sample_type);
90e457f7
AH
1153}
1154
0f3e5379
AH
1155static void intel_pt_prep_sample(struct intel_pt *pt,
1156 struct intel_pt_queue *ptq,
1157 union perf_event *event,
1158 struct perf_sample *sample)
90e457f7 1159{
0f3e5379 1160 intel_pt_prep_b_sample(pt, ptq, event, sample);
2a21d036 1161
90e457f7
AH
1162 if (pt->synth_opts.callchain) {
1163 thread_stack__sample(ptq->thread, ptq->chain,
24248306
AH
1164 pt->synth_opts.callchain_sz + 1,
1165 sample->ip, pt->kernel_start);
0f3e5379 1166 sample->callchain = ptq->chain;
90e457f7
AH
1167 }
1168
f14445ee
AH
1169 if (pt->synth_opts.last_branch) {
1170 intel_pt_copy_last_branch_rb(ptq);
0f3e5379 1171 sample->branch_stack = ptq->last_branch;
f14445ee 1172 }
0f3e5379 1173}
f14445ee 1174
0f3e5379
AH
1175static inline int intel_pt_deliver_synth_event(struct intel_pt *pt,
1176 struct intel_pt_queue *ptq,
1177 union perf_event *event,
1178 struct perf_sample *sample,
1179 u64 type)
1180{
1181 int ret;
90e457f7 1182
0f3e5379 1183 ret = intel_pt_deliver_synth_b_event(pt, event, sample, type);
90e457f7 1184
f14445ee
AH
1185 if (pt->synth_opts.last_branch)
1186 intel_pt_reset_last_branch_rb(ptq);
1187
90e457f7
AH
1188 return ret;
1189}
1190
0f3e5379 1191static int intel_pt_synth_instruction_sample(struct intel_pt_queue *ptq)
90e457f7 1192{
90e457f7
AH
1193 struct intel_pt *pt = ptq->pt;
1194 union perf_event *event = ptq->event_buf;
1195 struct perf_sample sample = { .ip = 0, };
1196
0f3e5379 1197 if (intel_pt_skip_event(pt))
d1706b39
AK
1198 return 0;
1199
0f3e5379 1200 intel_pt_prep_sample(pt, ptq, event, &sample);
90e457f7 1201
0f3e5379
AH
1202 sample.id = ptq->pt->instructions_id;
1203 sample.stream_id = ptq->pt->instructions_id;
1204 sample.period = ptq->state->tot_insn_cnt - ptq->last_insn_cnt;
90e457f7 1205
0f3e5379 1206 ptq->last_insn_cnt = ptq->state->tot_insn_cnt;
90e457f7 1207
0f3e5379
AH
1208 return intel_pt_deliver_synth_event(pt, ptq, event, &sample,
1209 pt->instructions_sample_type);
1210}
90e457f7 1211
0f3e5379
AH
1212static int intel_pt_synth_transaction_sample(struct intel_pt_queue *ptq)
1213{
1214 struct intel_pt *pt = ptq->pt;
1215 union perf_event *event = ptq->event_buf;
1216 struct perf_sample sample = { .ip = 0, };
f14445ee 1217
0f3e5379
AH
1218 if (intel_pt_skip_event(pt))
1219 return 0;
90e457f7 1220
0f3e5379 1221 intel_pt_prep_sample(pt, ptq, event, &sample);
90e457f7 1222
0f3e5379
AH
1223 sample.id = ptq->pt->transactions_id;
1224 sample.stream_id = ptq->pt->transactions_id;
f14445ee 1225
0f3e5379
AH
1226 return intel_pt_deliver_synth_event(pt, ptq, event, &sample,
1227 pt->transactions_sample_type);
90e457f7
AH
1228}
1229
37973075
AH
1230static void intel_pt_prep_p_sample(struct intel_pt *pt,
1231 struct intel_pt_queue *ptq,
1232 union perf_event *event,
1233 struct perf_sample *sample)
1234{
1235 intel_pt_prep_sample(pt, ptq, event, sample);
1236
1237 /*
1238 * Zero IP is used to mean "trace start" but that is not the case for
1239 * power or PTWRITE events with no IP, so clear the flags.
1240 */
1241 if (!sample->ip)
1242 sample->flags = 0;
1243}
1244
1245static int intel_pt_synth_ptwrite_sample(struct intel_pt_queue *ptq)
1246{
1247 struct intel_pt *pt = ptq->pt;
1248 union perf_event *event = ptq->event_buf;
1249 struct perf_sample sample = { .ip = 0, };
1250 struct perf_synth_intel_ptwrite raw;
1251
1252 if (intel_pt_skip_event(pt))
1253 return 0;
1254
1255 intel_pt_prep_p_sample(pt, ptq, event, &sample);
1256
1257 sample.id = ptq->pt->ptwrites_id;
1258 sample.stream_id = ptq->pt->ptwrites_id;
1259
1260 raw.flags = 0;
1261 raw.ip = !!(ptq->state->flags & INTEL_PT_FUP_IP);
1262 raw.payload = cpu_to_le64(ptq->state->ptw_payload);
1263
1264 sample.raw_size = perf_synth__raw_size(raw);
1265 sample.raw_data = perf_synth__raw_data(&raw);
1266
1267 return intel_pt_deliver_synth_event(pt, ptq, event, &sample,
1268 pt->ptwrites_sample_type);
1269}
1270
1271static int intel_pt_synth_cbr_sample(struct intel_pt_queue *ptq)
1272{
1273 struct intel_pt *pt = ptq->pt;
1274 union perf_event *event = ptq->event_buf;
1275 struct perf_sample sample = { .ip = 0, };
1276 struct perf_synth_intel_cbr raw;
1277 u32 flags;
1278
1279 if (intel_pt_skip_event(pt))
1280 return 0;
1281
1282 intel_pt_prep_p_sample(pt, ptq, event, &sample);
1283
1284 sample.id = ptq->pt->cbr_id;
1285 sample.stream_id = ptq->pt->cbr_id;
1286
1287 flags = (u16)ptq->state->cbr_payload | (pt->max_non_turbo_ratio << 16);
1288 raw.flags = cpu_to_le32(flags);
1289 raw.freq = cpu_to_le32(raw.cbr * pt->cbr2khz);
1290 raw.reserved3 = 0;
1291
1292 sample.raw_size = perf_synth__raw_size(raw);
1293 sample.raw_data = perf_synth__raw_data(&raw);
1294
1295 return intel_pt_deliver_synth_event(pt, ptq, event, &sample,
1296 pt->pwr_events_sample_type);
1297}
1298
1299static int intel_pt_synth_mwait_sample(struct intel_pt_queue *ptq)
1300{
1301 struct intel_pt *pt = ptq->pt;
1302 union perf_event *event = ptq->event_buf;
1303 struct perf_sample sample = { .ip = 0, };
1304 struct perf_synth_intel_mwait raw;
1305
1306 if (intel_pt_skip_event(pt))
1307 return 0;
1308
1309 intel_pt_prep_p_sample(pt, ptq, event, &sample);
1310
1311 sample.id = ptq->pt->mwait_id;
1312 sample.stream_id = ptq->pt->mwait_id;
1313
1314 raw.reserved = 0;
1315 raw.payload = cpu_to_le64(ptq->state->mwait_payload);
1316
1317 sample.raw_size = perf_synth__raw_size(raw);
1318 sample.raw_data = perf_synth__raw_data(&raw);
1319
1320 return intel_pt_deliver_synth_event(pt, ptq, event, &sample,
1321 pt->pwr_events_sample_type);
1322}
1323
1324static int intel_pt_synth_pwre_sample(struct intel_pt_queue *ptq)
1325{
1326 struct intel_pt *pt = ptq->pt;
1327 union perf_event *event = ptq->event_buf;
1328 struct perf_sample sample = { .ip = 0, };
1329 struct perf_synth_intel_pwre raw;
1330
1331 if (intel_pt_skip_event(pt))
1332 return 0;
1333
1334 intel_pt_prep_p_sample(pt, ptq, event, &sample);
1335
1336 sample.id = ptq->pt->pwre_id;
1337 sample.stream_id = ptq->pt->pwre_id;
1338
1339 raw.reserved = 0;
1340 raw.payload = cpu_to_le64(ptq->state->pwre_payload);
1341
1342 sample.raw_size = perf_synth__raw_size(raw);
1343 sample.raw_data = perf_synth__raw_data(&raw);
1344
1345 return intel_pt_deliver_synth_event(pt, ptq, event, &sample,
1346 pt->pwr_events_sample_type);
1347}
1348
1349static int intel_pt_synth_exstop_sample(struct intel_pt_queue *ptq)
1350{
1351 struct intel_pt *pt = ptq->pt;
1352 union perf_event *event = ptq->event_buf;
1353 struct perf_sample sample = { .ip = 0, };
1354 struct perf_synth_intel_exstop raw;
1355
1356 if (intel_pt_skip_event(pt))
1357 return 0;
1358
1359 intel_pt_prep_p_sample(pt, ptq, event, &sample);
1360
1361 sample.id = ptq->pt->exstop_id;
1362 sample.stream_id = ptq->pt->exstop_id;
1363
1364 raw.flags = 0;
1365 raw.ip = !!(ptq->state->flags & INTEL_PT_FUP_IP);
1366
1367 sample.raw_size = perf_synth__raw_size(raw);
1368 sample.raw_data = perf_synth__raw_data(&raw);
1369
1370 return intel_pt_deliver_synth_event(pt, ptq, event, &sample,
1371 pt->pwr_events_sample_type);
1372}
1373
1374static int intel_pt_synth_pwrx_sample(struct intel_pt_queue *ptq)
1375{
1376 struct intel_pt *pt = ptq->pt;
1377 union perf_event *event = ptq->event_buf;
1378 struct perf_sample sample = { .ip = 0, };
1379 struct perf_synth_intel_pwrx raw;
1380
1381 if (intel_pt_skip_event(pt))
1382 return 0;
1383
1384 intel_pt_prep_p_sample(pt, ptq, event, &sample);
1385
1386 sample.id = ptq->pt->pwrx_id;
1387 sample.stream_id = ptq->pt->pwrx_id;
1388
1389 raw.reserved = 0;
1390 raw.payload = cpu_to_le64(ptq->state->pwrx_payload);
1391
1392 sample.raw_size = perf_synth__raw_size(raw);
1393 sample.raw_data = perf_synth__raw_data(&raw);
1394
1395 return intel_pt_deliver_synth_event(pt, ptq, event, &sample,
1396 pt->pwr_events_sample_type);
1397}
1398
90e457f7
AH
1399static int intel_pt_synth_error(struct intel_pt *pt, int code, int cpu,
1400 pid_t pid, pid_t tid, u64 ip)
1401{
1402 union perf_event event;
1403 char msg[MAX_AUXTRACE_ERROR_MSG];
1404 int err;
1405
1406 intel_pt__strerror(code, msg, MAX_AUXTRACE_ERROR_MSG);
1407
1408 auxtrace_synth_error(&event.auxtrace_error, PERF_AUXTRACE_ERROR_ITRACE,
1409 code, cpu, pid, tid, ip, msg);
1410
1411 err = perf_session__deliver_synth_event(pt->session, &event, NULL);
1412 if (err)
1413 pr_err("Intel Processor Trace: failed to deliver error event, error %d\n",
1414 err);
1415
1416 return err;
1417}
1418
1419static int intel_pt_next_tid(struct intel_pt *pt, struct intel_pt_queue *ptq)
1420{
1421 struct auxtrace_queue *queue;
1422 pid_t tid = ptq->next_tid;
1423 int err;
1424
1425 if (tid == -1)
1426 return 0;
1427
1428 intel_pt_log("switch: cpu %d tid %d\n", ptq->cpu, tid);
1429
1430 err = machine__set_current_tid(pt->machine, ptq->cpu, -1, tid);
1431
1432 queue = &pt->queues.queue_array[ptq->queue_nr];
1433 intel_pt_set_pid_tid_cpu(pt, queue);
1434
1435 ptq->next_tid = -1;
1436
1437 return err;
1438}
1439
1440static inline bool intel_pt_is_switch_ip(struct intel_pt_queue *ptq, u64 ip)
1441{
1442 struct intel_pt *pt = ptq->pt;
1443
1444 return ip == pt->switch_ip &&
1445 (ptq->flags & PERF_IP_FLAG_BRANCH) &&
1446 !(ptq->flags & (PERF_IP_FLAG_CONDITIONAL | PERF_IP_FLAG_ASYNC |
1447 PERF_IP_FLAG_INTERRUPT | PERF_IP_FLAG_TX_ABORT));
1448}
1449
37973075
AH
1450#define INTEL_PT_PWR_EVT (INTEL_PT_MWAIT_OP | INTEL_PT_PWR_ENTRY | \
1451 INTEL_PT_EX_STOP | INTEL_PT_PWR_EXIT | \
1452 INTEL_PT_CBR_CHG)
1453
90e457f7
AH
1454static int intel_pt_sample(struct intel_pt_queue *ptq)
1455{
1456 const struct intel_pt_state *state = ptq->state;
1457 struct intel_pt *pt = ptq->pt;
1458 int err;
1459
1460 if (!ptq->have_sample)
1461 return 0;
1462
1463 ptq->have_sample = false;
1464
37973075
AH
1465 if (pt->sample_pwr_events && (state->type & INTEL_PT_PWR_EVT)) {
1466 if (state->type & INTEL_PT_CBR_CHG) {
1467 err = intel_pt_synth_cbr_sample(ptq);
1468 if (err)
1469 return err;
1470 }
1471 if (state->type & INTEL_PT_MWAIT_OP) {
1472 err = intel_pt_synth_mwait_sample(ptq);
1473 if (err)
1474 return err;
1475 }
1476 if (state->type & INTEL_PT_PWR_ENTRY) {
1477 err = intel_pt_synth_pwre_sample(ptq);
1478 if (err)
1479 return err;
1480 }
1481 if (state->type & INTEL_PT_EX_STOP) {
1482 err = intel_pt_synth_exstop_sample(ptq);
1483 if (err)
1484 return err;
1485 }
1486 if (state->type & INTEL_PT_PWR_EXIT) {
1487 err = intel_pt_synth_pwrx_sample(ptq);
1488 if (err)
1489 return err;
1490 }
1491 }
1492
406a1805 1493 if (pt->sample_instructions && (state->type & INTEL_PT_INSTRUCTION)) {
90e457f7
AH
1494 err = intel_pt_synth_instruction_sample(ptq);
1495 if (err)
1496 return err;
1497 }
1498
406a1805 1499 if (pt->sample_transactions && (state->type & INTEL_PT_TRANSACTION)) {
90e457f7
AH
1500 err = intel_pt_synth_transaction_sample(ptq);
1501 if (err)
1502 return err;
1503 }
1504
37973075
AH
1505 if (pt->sample_ptwrites && (state->type & INTEL_PT_PTW)) {
1506 err = intel_pt_synth_ptwrite_sample(ptq);
1507 if (err)
1508 return err;
1509 }
1510
90e457f7
AH
1511 if (!(state->type & INTEL_PT_BRANCH))
1512 return 0;
1513
50f73637 1514 if (pt->synth_opts.callchain || pt->synth_opts.thread_stack)
90e457f7
AH
1515 thread_stack__event(ptq->thread, ptq->flags, state->from_ip,
1516 state->to_ip, ptq->insn_len,
1517 state->trace_nr);
1518 else
1519 thread_stack__set_trace_nr(ptq->thread, state->trace_nr);
1520
1521 if (pt->sample_branches) {
1522 err = intel_pt_synth_branch_sample(ptq);
1523 if (err)
1524 return err;
1525 }
1526
f14445ee
AH
1527 if (pt->synth_opts.last_branch)
1528 intel_pt_update_last_branch_rb(ptq);
1529
63d8e38f 1530 if (!ptq->sync_switch)
90e457f7
AH
1531 return 0;
1532
1533 if (intel_pt_is_switch_ip(ptq, state->to_ip)) {
1534 switch (ptq->switch_state) {
dbcb82b9 1535 case INTEL_PT_SS_NOT_TRACING:
90e457f7
AH
1536 case INTEL_PT_SS_UNKNOWN:
1537 case INTEL_PT_SS_EXPECTING_SWITCH_IP:
1538 err = intel_pt_next_tid(pt, ptq);
1539 if (err)
1540 return err;
1541 ptq->switch_state = INTEL_PT_SS_TRACING;
1542 break;
1543 default:
1544 ptq->switch_state = INTEL_PT_SS_EXPECTING_SWITCH_EVENT;
1545 return 1;
1546 }
1547 } else if (!state->to_ip) {
1548 ptq->switch_state = INTEL_PT_SS_NOT_TRACING;
1549 } else if (ptq->switch_state == INTEL_PT_SS_NOT_TRACING) {
1550 ptq->switch_state = INTEL_PT_SS_UNKNOWN;
1551 } else if (ptq->switch_state == INTEL_PT_SS_UNKNOWN &&
1552 state->to_ip == pt->ptss_ip &&
1553 (ptq->flags & PERF_IP_FLAG_CALL)) {
1554 ptq->switch_state = INTEL_PT_SS_TRACING;
1555 }
1556
1557 return 0;
1558}
1559
86c27869 1560static u64 intel_pt_switch_ip(struct intel_pt *pt, u64 *ptss_ip)
90e457f7 1561{
86c27869 1562 struct machine *machine = pt->machine;
90e457f7
AH
1563 struct map *map;
1564 struct symbol *sym, *start;
1565 u64 ip, switch_ip = 0;
86c27869 1566 const char *ptss;
90e457f7
AH
1567
1568 if (ptss_ip)
1569 *ptss_ip = 0;
1570
a5e813c6 1571 map = machine__kernel_map(machine);
90e457f7
AH
1572 if (!map)
1573 return 0;
1574
be39db9f 1575 if (map__load(map))
90e457f7
AH
1576 return 0;
1577
5cf88a63 1578 start = dso__first_symbol(map->dso);
90e457f7
AH
1579
1580 for (sym = start; sym; sym = dso__next_symbol(sym)) {
1581 if (sym->binding == STB_GLOBAL &&
1582 !strcmp(sym->name, "__switch_to")) {
1583 ip = map->unmap_ip(map, sym->start);
1584 if (ip >= map->start && ip < map->end) {
1585 switch_ip = ip;
1586 break;
1587 }
1588 }
1589 }
1590
1591 if (!switch_ip || !ptss_ip)
1592 return 0;
1593
86c27869
AH
1594 if (pt->have_sched_switch == 1)
1595 ptss = "perf_trace_sched_switch";
1596 else
1597 ptss = "__perf_event_task_sched_out";
1598
90e457f7 1599 for (sym = start; sym; sym = dso__next_symbol(sym)) {
86c27869 1600 if (!strcmp(sym->name, ptss)) {
90e457f7
AH
1601 ip = map->unmap_ip(map, sym->start);
1602 if (ip >= map->start && ip < map->end) {
1603 *ptss_ip = ip;
1604 break;
1605 }
1606 }
1607 }
1608
1609 return switch_ip;
1610}
1611
63d8e38f
AH
1612static void intel_pt_enable_sync_switch(struct intel_pt *pt)
1613{
1614 unsigned int i;
1615
1616 pt->sync_switch = true;
1617
1618 for (i = 0; i < pt->queues.nr_queues; i++) {
1619 struct auxtrace_queue *queue = &pt->queues.queue_array[i];
1620 struct intel_pt_queue *ptq = queue->priv;
1621
1622 if (ptq)
1623 ptq->sync_switch = true;
1624 }
1625}
1626
90e457f7
AH
1627static int intel_pt_run_decoder(struct intel_pt_queue *ptq, u64 *timestamp)
1628{
1629 const struct intel_pt_state *state = ptq->state;
1630 struct intel_pt *pt = ptq->pt;
1631 int err;
1632
1633 if (!pt->kernel_start) {
1634 pt->kernel_start = machine__kernel_start(pt->machine);
86c27869
AH
1635 if (pt->per_cpu_mmaps &&
1636 (pt->have_sched_switch == 1 || pt->have_sched_switch == 3) &&
90e457f7
AH
1637 !pt->timeless_decoding && intel_pt_tracing_kernel(pt) &&
1638 !pt->sampling_mode) {
86c27869 1639 pt->switch_ip = intel_pt_switch_ip(pt, &pt->ptss_ip);
90e457f7
AH
1640 if (pt->switch_ip) {
1641 intel_pt_log("switch_ip: %"PRIx64" ptss_ip: %"PRIx64"\n",
1642 pt->switch_ip, pt->ptss_ip);
63d8e38f 1643 intel_pt_enable_sync_switch(pt);
90e457f7
AH
1644 }
1645 }
1646 }
1647
1648 intel_pt_log("queue %u decoding cpu %d pid %d tid %d\n",
1649 ptq->queue_nr, ptq->cpu, ptq->pid, ptq->tid);
1650 while (1) {
1651 err = intel_pt_sample(ptq);
1652 if (err)
1653 return err;
1654
1655 state = intel_pt_decode(ptq->decoder);
1656 if (state->err) {
1657 if (state->err == INTEL_PT_ERR_NODATA)
1658 return 1;
63d8e38f 1659 if (ptq->sync_switch &&
90e457f7 1660 state->from_ip >= pt->kernel_start) {
63d8e38f 1661 ptq->sync_switch = false;
90e457f7
AH
1662 intel_pt_next_tid(pt, ptq);
1663 }
1664 if (pt->synth_opts.errors) {
1665 err = intel_pt_synth_error(pt, state->err,
1666 ptq->cpu, ptq->pid,
1667 ptq->tid,
1668 state->from_ip);
1669 if (err)
1670 return err;
1671 }
1672 continue;
1673 }
1674
1675 ptq->state = state;
1676 ptq->have_sample = true;
1677 intel_pt_sample_flags(ptq);
1678
1679 /* Use estimated TSC upon return to user space */
1680 if (pt->est_tsc &&
1681 (state->from_ip >= pt->kernel_start || !state->from_ip) &&
1682 state->to_ip && state->to_ip < pt->kernel_start) {
1683 intel_pt_log("TSC %"PRIx64" est. TSC %"PRIx64"\n",
1684 state->timestamp, state->est_timestamp);
1685 ptq->timestamp = state->est_timestamp;
1686 /* Use estimated TSC in unknown switch state */
63d8e38f 1687 } else if (ptq->sync_switch &&
90e457f7
AH
1688 ptq->switch_state == INTEL_PT_SS_UNKNOWN &&
1689 intel_pt_is_switch_ip(ptq, state->to_ip) &&
1690 ptq->next_tid == -1) {
1691 intel_pt_log("TSC %"PRIx64" est. TSC %"PRIx64"\n",
1692 state->timestamp, state->est_timestamp);
1693 ptq->timestamp = state->est_timestamp;
1694 } else if (state->timestamp > ptq->timestamp) {
1695 ptq->timestamp = state->timestamp;
1696 }
1697
1698 if (!pt->timeless_decoding && ptq->timestamp >= *timestamp) {
1699 *timestamp = ptq->timestamp;
1700 return 0;
1701 }
1702 }
1703 return 0;
1704}
1705
1706static inline int intel_pt_update_queues(struct intel_pt *pt)
1707{
1708 if (pt->queues.new_data) {
1709 pt->queues.new_data = false;
1710 return intel_pt_setup_queues(pt);
1711 }
1712 return 0;
1713}
1714
1715static int intel_pt_process_queues(struct intel_pt *pt, u64 timestamp)
1716{
1717 unsigned int queue_nr;
1718 u64 ts;
1719 int ret;
1720
1721 while (1) {
1722 struct auxtrace_queue *queue;
1723 struct intel_pt_queue *ptq;
1724
1725 if (!pt->heap.heap_cnt)
1726 return 0;
1727
1728 if (pt->heap.heap_array[0].ordinal >= timestamp)
1729 return 0;
1730
1731 queue_nr = pt->heap.heap_array[0].queue_nr;
1732 queue = &pt->queues.queue_array[queue_nr];
1733 ptq = queue->priv;
1734
1735 intel_pt_log("queue %u processing 0x%" PRIx64 " to 0x%" PRIx64 "\n",
1736 queue_nr, pt->heap.heap_array[0].ordinal,
1737 timestamp);
1738
1739 auxtrace_heap__pop(&pt->heap);
1740
1741 if (pt->heap.heap_cnt) {
1742 ts = pt->heap.heap_array[0].ordinal + 1;
1743 if (ts > timestamp)
1744 ts = timestamp;
1745 } else {
1746 ts = timestamp;
1747 }
1748
1749 intel_pt_set_pid_tid_cpu(pt, queue);
1750
1751 ret = intel_pt_run_decoder(ptq, &ts);
1752
1753 if (ret < 0) {
1754 auxtrace_heap__add(&pt->heap, queue_nr, ts);
1755 return ret;
1756 }
1757
1758 if (!ret) {
1759 ret = auxtrace_heap__add(&pt->heap, queue_nr, ts);
1760 if (ret < 0)
1761 return ret;
1762 } else {
1763 ptq->on_heap = false;
1764 }
1765 }
1766
1767 return 0;
1768}
1769
1770static int intel_pt_process_timeless_queues(struct intel_pt *pt, pid_t tid,
1771 u64 time_)
1772{
1773 struct auxtrace_queues *queues = &pt->queues;
1774 unsigned int i;
1775 u64 ts = 0;
1776
1777 for (i = 0; i < queues->nr_queues; i++) {
1778 struct auxtrace_queue *queue = &pt->queues.queue_array[i];
1779 struct intel_pt_queue *ptq = queue->priv;
1780
1781 if (ptq && (tid == -1 || ptq->tid == tid)) {
1782 ptq->time = time_;
1783 intel_pt_set_pid_tid_cpu(pt, queue);
1784 intel_pt_run_decoder(ptq, &ts);
1785 }
1786 }
1787 return 0;
1788}
1789
1790static int intel_pt_lost(struct intel_pt *pt, struct perf_sample *sample)
1791{
1792 return intel_pt_synth_error(pt, INTEL_PT_ERR_LOST, sample->cpu,
1793 sample->pid, sample->tid, 0);
1794}
1795
1796static struct intel_pt_queue *intel_pt_cpu_to_ptq(struct intel_pt *pt, int cpu)
1797{
1798 unsigned i, j;
1799
1800 if (cpu < 0 || !pt->queues.nr_queues)
1801 return NULL;
1802
1803 if ((unsigned)cpu >= pt->queues.nr_queues)
1804 i = pt->queues.nr_queues - 1;
1805 else
1806 i = cpu;
1807
1808 if (pt->queues.queue_array[i].cpu == cpu)
1809 return pt->queues.queue_array[i].priv;
1810
1811 for (j = 0; i > 0; j++) {
1812 if (pt->queues.queue_array[--i].cpu == cpu)
1813 return pt->queues.queue_array[i].priv;
1814 }
1815
1816 for (; j < pt->queues.nr_queues; j++) {
1817 if (pt->queues.queue_array[j].cpu == cpu)
1818 return pt->queues.queue_array[j].priv;
1819 }
1820
1821 return NULL;
1822}
1823
86c27869
AH
1824static int intel_pt_sync_switch(struct intel_pt *pt, int cpu, pid_t tid,
1825 u64 timestamp)
90e457f7
AH
1826{
1827 struct intel_pt_queue *ptq;
86c27869 1828 int err;
90e457f7
AH
1829
1830 if (!pt->sync_switch)
86c27869 1831 return 1;
90e457f7
AH
1832
1833 ptq = intel_pt_cpu_to_ptq(pt, cpu);
63d8e38f 1834 if (!ptq || !ptq->sync_switch)
86c27869 1835 return 1;
90e457f7
AH
1836
1837 switch (ptq->switch_state) {
1838 case INTEL_PT_SS_NOT_TRACING:
1839 ptq->next_tid = -1;
1840 break;
1841 case INTEL_PT_SS_UNKNOWN:
1842 case INTEL_PT_SS_TRACING:
1843 ptq->next_tid = tid;
1844 ptq->switch_state = INTEL_PT_SS_EXPECTING_SWITCH_IP;
1845 return 0;
1846 case INTEL_PT_SS_EXPECTING_SWITCH_EVENT:
1847 if (!ptq->on_heap) {
86c27869 1848 ptq->timestamp = perf_time_to_tsc(timestamp,
90e457f7
AH
1849 &pt->tc);
1850 err = auxtrace_heap__add(&pt->heap, ptq->queue_nr,
1851 ptq->timestamp);
1852 if (err)
1853 return err;
1854 ptq->on_heap = true;
1855 }
1856 ptq->switch_state = INTEL_PT_SS_TRACING;
1857 break;
1858 case INTEL_PT_SS_EXPECTING_SWITCH_IP:
1859 ptq->next_tid = tid;
1860 intel_pt_log("ERROR: cpu %d expecting switch ip\n", cpu);
1861 break;
1862 default:
1863 break;
1864 }
86c27869
AH
1865
1866 return 1;
1867}
1868
1869static int intel_pt_process_switch(struct intel_pt *pt,
1870 struct perf_sample *sample)
1871{
1872 struct perf_evsel *evsel;
1873 pid_t tid;
1874 int cpu, ret;
1875
1876 evsel = perf_evlist__id2evsel(pt->session->evlist, sample->id);
1877 if (evsel != pt->switch_evsel)
1878 return 0;
1879
1880 tid = perf_evsel__intval(evsel, sample, "next_pid");
1881 cpu = sample->cpu;
1882
1883 intel_pt_log("sched_switch: cpu %d tid %d time %"PRIu64" tsc %#"PRIx64"\n",
1884 cpu, tid, sample->time, perf_time_to_tsc(sample->time,
1885 &pt->tc));
1886
1887 ret = intel_pt_sync_switch(pt, cpu, tid, sample->time);
1888 if (ret <= 0)
1889 return ret;
1890
90e457f7
AH
1891 return machine__set_current_tid(pt->machine, cpu, -1, tid);
1892}
1893
86c27869
AH
1894static int intel_pt_context_switch(struct intel_pt *pt, union perf_event *event,
1895 struct perf_sample *sample)
1896{
1897 bool out = event->header.misc & PERF_RECORD_MISC_SWITCH_OUT;
1898 pid_t pid, tid;
1899 int cpu, ret;
1900
1901 cpu = sample->cpu;
1902
1903 if (pt->have_sched_switch == 3) {
1904 if (!out)
1905 return 0;
1906 if (event->header.type != PERF_RECORD_SWITCH_CPU_WIDE) {
1907 pr_err("Expecting CPU-wide context switch event\n");
1908 return -EINVAL;
1909 }
1910 pid = event->context_switch.next_prev_pid;
1911 tid = event->context_switch.next_prev_tid;
1912 } else {
1913 if (out)
1914 return 0;
1915 pid = sample->pid;
1916 tid = sample->tid;
1917 }
1918
1919 if (tid == -1) {
1920 pr_err("context_switch event has no tid\n");
1921 return -EINVAL;
1922 }
1923
1924 intel_pt_log("context_switch: cpu %d pid %d tid %d time %"PRIu64" tsc %#"PRIx64"\n",
1925 cpu, pid, tid, sample->time, perf_time_to_tsc(sample->time,
1926 &pt->tc));
1927
1928 ret = intel_pt_sync_switch(pt, cpu, tid, sample->time);
1929 if (ret <= 0)
1930 return ret;
1931
1932 return machine__set_current_tid(pt->machine, cpu, pid, tid);
1933}
1934
90e457f7
AH
1935static int intel_pt_process_itrace_start(struct intel_pt *pt,
1936 union perf_event *event,
1937 struct perf_sample *sample)
1938{
1939 if (!pt->per_cpu_mmaps)
1940 return 0;
1941
1942 intel_pt_log("itrace_start: cpu %d pid %d tid %d time %"PRIu64" tsc %#"PRIx64"\n",
1943 sample->cpu, event->itrace_start.pid,
1944 event->itrace_start.tid, sample->time,
1945 perf_time_to_tsc(sample->time, &pt->tc));
1946
1947 return machine__set_current_tid(pt->machine, sample->cpu,
1948 event->itrace_start.pid,
1949 event->itrace_start.tid);
1950}
1951
1952static int intel_pt_process_event(struct perf_session *session,
1953 union perf_event *event,
1954 struct perf_sample *sample,
1955 struct perf_tool *tool)
1956{
1957 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
1958 auxtrace);
1959 u64 timestamp;
1960 int err = 0;
1961
1962 if (dump_trace)
1963 return 0;
1964
1965 if (!tool->ordered_events) {
1966 pr_err("Intel Processor Trace requires ordered events\n");
1967 return -EINVAL;
1968 }
1969
81cd60cc 1970 if (sample->time && sample->time != (u64)-1)
90e457f7
AH
1971 timestamp = perf_time_to_tsc(sample->time, &pt->tc);
1972 else
1973 timestamp = 0;
1974
1975 if (timestamp || pt->timeless_decoding) {
1976 err = intel_pt_update_queues(pt);
1977 if (err)
1978 return err;
1979 }
1980
1981 if (pt->timeless_decoding) {
1982 if (event->header.type == PERF_RECORD_EXIT) {
1983 err = intel_pt_process_timeless_queues(pt,
53ff6bc3 1984 event->fork.tid,
90e457f7
AH
1985 sample->time);
1986 }
1987 } else if (timestamp) {
1988 err = intel_pt_process_queues(pt, timestamp);
1989 }
1990 if (err)
1991 return err;
1992
1993 if (event->header.type == PERF_RECORD_AUX &&
1994 (event->aux.flags & PERF_AUX_FLAG_TRUNCATED) &&
1995 pt->synth_opts.errors) {
1996 err = intel_pt_lost(pt, sample);
1997 if (err)
1998 return err;
1999 }
2000
2001 if (pt->switch_evsel && event->header.type == PERF_RECORD_SAMPLE)
2002 err = intel_pt_process_switch(pt, sample);
2003 else if (event->header.type == PERF_RECORD_ITRACE_START)
2004 err = intel_pt_process_itrace_start(pt, event, sample);
86c27869
AH
2005 else if (event->header.type == PERF_RECORD_SWITCH ||
2006 event->header.type == PERF_RECORD_SWITCH_CPU_WIDE)
2007 err = intel_pt_context_switch(pt, event, sample);
90e457f7
AH
2008
2009 intel_pt_log("event %s (%u): cpu %d time %"PRIu64" tsc %#"PRIx64"\n",
2010 perf_event__name(event->header.type), event->header.type,
2011 sample->cpu, sample->time, timestamp);
2012
2013 return err;
2014}
2015
2016static int intel_pt_flush(struct perf_session *session, struct perf_tool *tool)
2017{
2018 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
2019 auxtrace);
2020 int ret;
2021
2022 if (dump_trace)
2023 return 0;
2024
2025 if (!tool->ordered_events)
2026 return -EINVAL;
2027
2028 ret = intel_pt_update_queues(pt);
2029 if (ret < 0)
2030 return ret;
2031
2032 if (pt->timeless_decoding)
2033 return intel_pt_process_timeless_queues(pt, -1,
2034 MAX_TIMESTAMP - 1);
2035
2036 return intel_pt_process_queues(pt, MAX_TIMESTAMP);
2037}
2038
2039static void intel_pt_free_events(struct perf_session *session)
2040{
2041 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
2042 auxtrace);
2043 struct auxtrace_queues *queues = &pt->queues;
2044 unsigned int i;
2045
2046 for (i = 0; i < queues->nr_queues; i++) {
2047 intel_pt_free_queue(queues->queue_array[i].priv);
2048 queues->queue_array[i].priv = NULL;
2049 }
2050 intel_pt_log_disable();
2051 auxtrace_queues__free(queues);
2052}
2053
2054static void intel_pt_free(struct perf_session *session)
2055{
2056 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
2057 auxtrace);
2058
2059 auxtrace_heap__free(&pt->heap);
2060 intel_pt_free_events(session);
2061 session->auxtrace = NULL;
abd82868 2062 thread__put(pt->unknown_thread);
2acee108 2063 addr_filters__exit(&pt->filts);
2b9e32c4 2064 zfree(&pt->filter);
90e457f7
AH
2065 free(pt);
2066}
2067
2068static int intel_pt_process_auxtrace_event(struct perf_session *session,
2069 union perf_event *event,
2070 struct perf_tool *tool __maybe_unused)
2071{
2072 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
2073 auxtrace);
2074
90e457f7
AH
2075 if (!pt->data_queued) {
2076 struct auxtrace_buffer *buffer;
2077 off_t data_offset;
8ceb41d7 2078 int fd = perf_data__fd(session->data);
90e457f7
AH
2079 int err;
2080
8ceb41d7 2081 if (perf_data__is_pipe(session->data)) {
90e457f7
AH
2082 data_offset = 0;
2083 } else {
2084 data_offset = lseek(fd, 0, SEEK_CUR);
2085 if (data_offset == -1)
2086 return -errno;
2087 }
2088
2089 err = auxtrace_queues__add_event(&pt->queues, session, event,
2090 data_offset, &buffer);
2091 if (err)
2092 return err;
2093
2094 /* Dump here now we have copied a piped trace out of the pipe */
2095 if (dump_trace) {
2096 if (auxtrace_buffer__get_data(buffer, fd)) {
2097 intel_pt_dump_event(pt, buffer->data,
2098 buffer->size);
2099 auxtrace_buffer__put_data(buffer);
2100 }
2101 }
2102 }
2103
2104 return 0;
2105}
2106
2107struct intel_pt_synth {
2108 struct perf_tool dummy_tool;
2109 struct perf_session *session;
2110};
2111
2112static int intel_pt_event_synth(struct perf_tool *tool,
2113 union perf_event *event,
2114 struct perf_sample *sample __maybe_unused,
2115 struct machine *machine __maybe_unused)
2116{
2117 struct intel_pt_synth *intel_pt_synth =
2118 container_of(tool, struct intel_pt_synth, dummy_tool);
2119
2120 return perf_session__deliver_synth_event(intel_pt_synth->session, event,
2121 NULL);
2122}
2123
63a22cd9 2124static int intel_pt_synth_event(struct perf_session *session, const char *name,
90e457f7
AH
2125 struct perf_event_attr *attr, u64 id)
2126{
2127 struct intel_pt_synth intel_pt_synth;
63a22cd9
AH
2128 int err;
2129
2130 pr_debug("Synthesizing '%s' event with id %" PRIu64 " sample type %#" PRIx64 "\n",
2131 name, id, (u64)attr->sample_type);
90e457f7
AH
2132
2133 memset(&intel_pt_synth, 0, sizeof(struct intel_pt_synth));
2134 intel_pt_synth.session = session;
2135
63a22cd9
AH
2136 err = perf_event__synthesize_attr(&intel_pt_synth.dummy_tool, attr, 1,
2137 &id, intel_pt_event_synth);
2138 if (err)
2139 pr_err("%s: failed to synthesize '%s' event type\n",
2140 __func__, name);
2141
2142 return err;
90e457f7
AH
2143}
2144
bbac88ed
AH
2145static void intel_pt_set_event_name(struct perf_evlist *evlist, u64 id,
2146 const char *name)
2147{
2148 struct perf_evsel *evsel;
2149
2150 evlist__for_each_entry(evlist, evsel) {
2151 if (evsel->id && evsel->id[0] == id) {
2152 if (evsel->name)
2153 zfree(&evsel->name);
2154 evsel->name = strdup(name);
2155 break;
2156 }
2157 }
2158}
2159
85a564d2
AH
2160static struct perf_evsel *intel_pt_evsel(struct intel_pt *pt,
2161 struct perf_evlist *evlist)
2162{
2163 struct perf_evsel *evsel;
2164
2165 evlist__for_each_entry(evlist, evsel) {
2166 if (evsel->attr.type == pt->pmu_type && evsel->ids)
2167 return evsel;
2168 }
2169
2170 return NULL;
2171}
2172
90e457f7
AH
2173static int intel_pt_synth_events(struct intel_pt *pt,
2174 struct perf_session *session)
2175{
2176 struct perf_evlist *evlist = session->evlist;
85a564d2 2177 struct perf_evsel *evsel = intel_pt_evsel(pt, evlist);
90e457f7 2178 struct perf_event_attr attr;
90e457f7
AH
2179 u64 id;
2180 int err;
2181
85a564d2 2182 if (!evsel) {
90e457f7
AH
2183 pr_debug("There are no selected events with Intel Processor Trace data\n");
2184 return 0;
2185 }
2186
2187 memset(&attr, 0, sizeof(struct perf_event_attr));
2188 attr.size = sizeof(struct perf_event_attr);
2189 attr.type = PERF_TYPE_HARDWARE;
2190 attr.sample_type = evsel->attr.sample_type & PERF_SAMPLE_MASK;
2191 attr.sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID |
2192 PERF_SAMPLE_PERIOD;
2193 if (pt->timeless_decoding)
2194 attr.sample_type &= ~(u64)PERF_SAMPLE_TIME;
2195 else
2196 attr.sample_type |= PERF_SAMPLE_TIME;
2197 if (!pt->per_cpu_mmaps)
2198 attr.sample_type &= ~(u64)PERF_SAMPLE_CPU;
2199 attr.exclude_user = evsel->attr.exclude_user;
2200 attr.exclude_kernel = evsel->attr.exclude_kernel;
2201 attr.exclude_hv = evsel->attr.exclude_hv;
2202 attr.exclude_host = evsel->attr.exclude_host;
2203 attr.exclude_guest = evsel->attr.exclude_guest;
2204 attr.sample_id_all = evsel->attr.sample_id_all;
2205 attr.read_format = evsel->attr.read_format;
2206
2207 id = evsel->id[0] + 1000000000;
2208 if (!id)
2209 id = 1;
2210
4a9fd4e0
AH
2211 if (pt->synth_opts.branches) {
2212 attr.config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS;
2213 attr.sample_period = 1;
2214 attr.sample_type |= PERF_SAMPLE_ADDR;
2215 err = intel_pt_synth_event(session, "branches", &attr, id);
2216 if (err)
2217 return err;
2218 pt->sample_branches = true;
2219 pt->branches_sample_type = attr.sample_type;
2220 pt->branches_id = id;
2221 id += 1;
2222 attr.sample_type &= ~(u64)PERF_SAMPLE_ADDR;
2223 }
2224
2225 if (pt->synth_opts.callchain)
2226 attr.sample_type |= PERF_SAMPLE_CALLCHAIN;
2227 if (pt->synth_opts.last_branch)
2228 attr.sample_type |= PERF_SAMPLE_BRANCH_STACK;
2229
90e457f7
AH
2230 if (pt->synth_opts.instructions) {
2231 attr.config = PERF_COUNT_HW_INSTRUCTIONS;
2232 if (pt->synth_opts.period_type == PERF_ITRACE_PERIOD_NANOSECS)
2233 attr.sample_period =
2234 intel_pt_ns_to_ticks(pt, pt->synth_opts.period);
2235 else
2236 attr.sample_period = pt->synth_opts.period;
63a22cd9
AH
2237 err = intel_pt_synth_event(session, "instructions", &attr, id);
2238 if (err)
90e457f7 2239 return err;
90e457f7
AH
2240 pt->sample_instructions = true;
2241 pt->instructions_sample_type = attr.sample_type;
2242 pt->instructions_id = id;
2243 id += 1;
2244 }
2245
4a9fd4e0
AH
2246 attr.sample_type &= ~(u64)PERF_SAMPLE_PERIOD;
2247 attr.sample_period = 1;
2248
90e457f7
AH
2249 if (pt->synth_opts.transactions) {
2250 attr.config = PERF_COUNT_HW_INSTRUCTIONS;
63a22cd9
AH
2251 err = intel_pt_synth_event(session, "transactions", &attr, id);
2252 if (err)
90e457f7 2253 return err;
90e457f7 2254 pt->sample_transactions = true;
21160748 2255 pt->transactions_sample_type = attr.sample_type;
90e457f7 2256 pt->transactions_id = id;
bbac88ed 2257 intel_pt_set_event_name(evlist, id, "transactions");
90e457f7 2258 id += 1;
90e457f7
AH
2259 }
2260
37973075
AH
2261 attr.type = PERF_TYPE_SYNTH;
2262 attr.sample_type |= PERF_SAMPLE_RAW;
2263
2264 if (pt->synth_opts.ptwrites) {
2265 attr.config = PERF_SYNTH_INTEL_PTWRITE;
2266 err = intel_pt_synth_event(session, "ptwrite", &attr, id);
2267 if (err)
2268 return err;
2269 pt->sample_ptwrites = true;
2270 pt->ptwrites_sample_type = attr.sample_type;
2271 pt->ptwrites_id = id;
2272 intel_pt_set_event_name(evlist, id, "ptwrite");
2273 id += 1;
2274 }
2275
2276 if (pt->synth_opts.pwr_events) {
2277 pt->sample_pwr_events = true;
2278 pt->pwr_events_sample_type = attr.sample_type;
2279
2280 attr.config = PERF_SYNTH_INTEL_CBR;
2281 err = intel_pt_synth_event(session, "cbr", &attr, id);
2282 if (err)
2283 return err;
2284 pt->cbr_id = id;
2285 intel_pt_set_event_name(evlist, id, "cbr");
2286 id += 1;
2287 }
2288
2289 if (pt->synth_opts.pwr_events && (evsel->attr.config & 0x10)) {
2290 attr.config = PERF_SYNTH_INTEL_MWAIT;
2291 err = intel_pt_synth_event(session, "mwait", &attr, id);
2292 if (err)
2293 return err;
2294 pt->mwait_id = id;
2295 intel_pt_set_event_name(evlist, id, "mwait");
2296 id += 1;
2297
2298 attr.config = PERF_SYNTH_INTEL_PWRE;
2299 err = intel_pt_synth_event(session, "pwre", &attr, id);
2300 if (err)
2301 return err;
2302 pt->pwre_id = id;
2303 intel_pt_set_event_name(evlist, id, "pwre");
2304 id += 1;
2305
2306 attr.config = PERF_SYNTH_INTEL_EXSTOP;
2307 err = intel_pt_synth_event(session, "exstop", &attr, id);
2308 if (err)
2309 return err;
2310 pt->exstop_id = id;
2311 intel_pt_set_event_name(evlist, id, "exstop");
2312 id += 1;
2313
2314 attr.config = PERF_SYNTH_INTEL_PWRX;
2315 err = intel_pt_synth_event(session, "pwrx", &attr, id);
2316 if (err)
2317 return err;
2318 pt->pwrx_id = id;
2319 intel_pt_set_event_name(evlist, id, "pwrx");
2320 id += 1;
2321 }
2322
90e457f7
AH
2323 return 0;
2324}
2325
2326static struct perf_evsel *intel_pt_find_sched_switch(struct perf_evlist *evlist)
2327{
2328 struct perf_evsel *evsel;
2329
e5cadb93 2330 evlist__for_each_entry_reverse(evlist, evsel) {
90e457f7
AH
2331 const char *name = perf_evsel__name(evsel);
2332
2333 if (!strcmp(name, "sched:sched_switch"))
2334 return evsel;
2335 }
2336
2337 return NULL;
2338}
2339
86c27869
AH
2340static bool intel_pt_find_switch(struct perf_evlist *evlist)
2341{
2342 struct perf_evsel *evsel;
2343
e5cadb93 2344 evlist__for_each_entry(evlist, evsel) {
86c27869
AH
2345 if (evsel->attr.context_switch)
2346 return true;
2347 }
2348
2349 return false;
2350}
2351
ba11ba65
AH
2352static int intel_pt_perf_config(const char *var, const char *value, void *data)
2353{
2354 struct intel_pt *pt = data;
2355
2356 if (!strcmp(var, "intel-pt.mispred-all"))
2357 pt->mispred_all = perf_config_bool(var, value);
2358
2359 return 0;
2360}
2361
90e457f7 2362static const char * const intel_pt_info_fmts[] = {
11fa7cb8
AH
2363 [INTEL_PT_PMU_TYPE] = " PMU Type %"PRId64"\n",
2364 [INTEL_PT_TIME_SHIFT] = " Time Shift %"PRIu64"\n",
2365 [INTEL_PT_TIME_MULT] = " Time Muliplier %"PRIu64"\n",
2366 [INTEL_PT_TIME_ZERO] = " Time Zero %"PRIu64"\n",
2367 [INTEL_PT_CAP_USER_TIME_ZERO] = " Cap Time Zero %"PRId64"\n",
2368 [INTEL_PT_TSC_BIT] = " TSC bit %#"PRIx64"\n",
2369 [INTEL_PT_NORETCOMP_BIT] = " NoRETComp bit %#"PRIx64"\n",
2370 [INTEL_PT_HAVE_SCHED_SWITCH] = " Have sched_switch %"PRId64"\n",
2371 [INTEL_PT_SNAPSHOT_MODE] = " Snapshot mode %"PRId64"\n",
2372 [INTEL_PT_PER_CPU_MMAPS] = " Per-cpu maps %"PRId64"\n",
2373 [INTEL_PT_MTC_BIT] = " MTC bit %#"PRIx64"\n",
2374 [INTEL_PT_TSC_CTC_N] = " TSC:CTC numerator %"PRIu64"\n",
2375 [INTEL_PT_TSC_CTC_D] = " TSC:CTC denominator %"PRIu64"\n",
2376 [INTEL_PT_CYC_BIT] = " CYC bit %#"PRIx64"\n",
fa8025c3 2377 [INTEL_PT_MAX_NONTURBO_RATIO] = " Max non-turbo ratio %"PRIu64"\n",
2b9e32c4 2378 [INTEL_PT_FILTER_STR_LEN] = " Filter string len. %"PRIu64"\n",
90e457f7
AH
2379};
2380
2381static void intel_pt_print_info(u64 *arr, int start, int finish)
2382{
2383 int i;
2384
2385 if (!dump_trace)
2386 return;
2387
2388 for (i = start; i <= finish; i++)
2389 fprintf(stdout, intel_pt_info_fmts[i], arr[i]);
2390}
2391
2b9e32c4
AH
2392static void intel_pt_print_info_str(const char *name, const char *str)
2393{
2394 if (!dump_trace)
2395 return;
2396
2397 fprintf(stdout, " %-20s%s\n", name, str ? str : "");
2398}
2399
40b746a0
AH
2400static bool intel_pt_has(struct auxtrace_info_event *auxtrace_info, int pos)
2401{
2402 return auxtrace_info->header.size >=
2403 sizeof(struct auxtrace_info_event) + (sizeof(u64) * (pos + 1));
2404}
2405
90e457f7
AH
2406int intel_pt_process_auxtrace_info(union perf_event *event,
2407 struct perf_session *session)
2408{
2409 struct auxtrace_info_event *auxtrace_info = &event->auxtrace_info;
2410 size_t min_sz = sizeof(u64) * INTEL_PT_PER_CPU_MMAPS;
2411 struct intel_pt *pt;
2b9e32c4
AH
2412 void *info_end;
2413 u64 *info;
90e457f7
AH
2414 int err;
2415
2416 if (auxtrace_info->header.size < sizeof(struct auxtrace_info_event) +
2417 min_sz)
2418 return -EINVAL;
2419
2420 pt = zalloc(sizeof(struct intel_pt));
2421 if (!pt)
2422 return -ENOMEM;
2423
2acee108
AH
2424 addr_filters__init(&pt->filts);
2425
ecc4c561
ACM
2426 err = perf_config(intel_pt_perf_config, pt);
2427 if (err)
2428 goto err_free;
ba11ba65 2429
90e457f7
AH
2430 err = auxtrace_queues__init(&pt->queues);
2431 if (err)
2432 goto err_free;
2433
2434 intel_pt_log_set_name(INTEL_PT_PMU_NAME);
2435
2436 pt->session = session;
2437 pt->machine = &session->machines.host; /* No kvm support */
2438 pt->auxtrace_type = auxtrace_info->type;
2439 pt->pmu_type = auxtrace_info->priv[INTEL_PT_PMU_TYPE];
2440 pt->tc.time_shift = auxtrace_info->priv[INTEL_PT_TIME_SHIFT];
2441 pt->tc.time_mult = auxtrace_info->priv[INTEL_PT_TIME_MULT];
2442 pt->tc.time_zero = auxtrace_info->priv[INTEL_PT_TIME_ZERO];
2443 pt->cap_user_time_zero = auxtrace_info->priv[INTEL_PT_CAP_USER_TIME_ZERO];
2444 pt->tsc_bit = auxtrace_info->priv[INTEL_PT_TSC_BIT];
2445 pt->noretcomp_bit = auxtrace_info->priv[INTEL_PT_NORETCOMP_BIT];
2446 pt->have_sched_switch = auxtrace_info->priv[INTEL_PT_HAVE_SCHED_SWITCH];
2447 pt->snapshot_mode = auxtrace_info->priv[INTEL_PT_SNAPSHOT_MODE];
2448 pt->per_cpu_mmaps = auxtrace_info->priv[INTEL_PT_PER_CPU_MMAPS];
2449 intel_pt_print_info(&auxtrace_info->priv[0], INTEL_PT_PMU_TYPE,
2450 INTEL_PT_PER_CPU_MMAPS);
2451
40b746a0 2452 if (intel_pt_has(auxtrace_info, INTEL_PT_CYC_BIT)) {
11fa7cb8
AH
2453 pt->mtc_bit = auxtrace_info->priv[INTEL_PT_MTC_BIT];
2454 pt->mtc_freq_bits = auxtrace_info->priv[INTEL_PT_MTC_FREQ_BITS];
2455 pt->tsc_ctc_ratio_n = auxtrace_info->priv[INTEL_PT_TSC_CTC_N];
2456 pt->tsc_ctc_ratio_d = auxtrace_info->priv[INTEL_PT_TSC_CTC_D];
2457 pt->cyc_bit = auxtrace_info->priv[INTEL_PT_CYC_BIT];
2458 intel_pt_print_info(&auxtrace_info->priv[0], INTEL_PT_MTC_BIT,
2459 INTEL_PT_CYC_BIT);
2460 }
2461
40b746a0 2462 if (intel_pt_has(auxtrace_info, INTEL_PT_MAX_NONTURBO_RATIO)) {
fa8025c3
AH
2463 pt->max_non_turbo_ratio =
2464 auxtrace_info->priv[INTEL_PT_MAX_NONTURBO_RATIO];
2465 intel_pt_print_info(&auxtrace_info->priv[0],
2466 INTEL_PT_MAX_NONTURBO_RATIO,
2467 INTEL_PT_MAX_NONTURBO_RATIO);
2468 }
2469
2b9e32c4
AH
2470 info = &auxtrace_info->priv[INTEL_PT_FILTER_STR_LEN] + 1;
2471 info_end = (void *)info + auxtrace_info->header.size;
2472
2473 if (intel_pt_has(auxtrace_info, INTEL_PT_FILTER_STR_LEN)) {
2474 size_t len;
2475
2476 len = auxtrace_info->priv[INTEL_PT_FILTER_STR_LEN];
2477 intel_pt_print_info(&auxtrace_info->priv[0],
2478 INTEL_PT_FILTER_STR_LEN,
2479 INTEL_PT_FILTER_STR_LEN);
2480 if (len) {
2481 const char *filter = (const char *)info;
2482
2483 len = roundup(len + 1, 8);
2484 info += len >> 3;
2485 if ((void *)info > info_end) {
2486 pr_err("%s: bad filter string length\n", __func__);
2487 err = -EINVAL;
2488 goto err_free_queues;
2489 }
2490 pt->filter = memdup(filter, len);
2491 if (!pt->filter) {
2492 err = -ENOMEM;
2493 goto err_free_queues;
2494 }
2495 if (session->header.needs_swap)
2496 mem_bswap_64(pt->filter, len);
2497 if (pt->filter[len - 1]) {
2498 pr_err("%s: filter string not null terminated\n", __func__);
2499 err = -EINVAL;
2500 goto err_free_queues;
2501 }
2acee108
AH
2502 err = addr_filters__parse_bare_filter(&pt->filts,
2503 filter);
2504 if (err)
2505 goto err_free_queues;
2b9e32c4
AH
2506 }
2507 intel_pt_print_info_str("Filter string", pt->filter);
2508 }
2509
90e457f7
AH
2510 pt->timeless_decoding = intel_pt_timeless_decoding(pt);
2511 pt->have_tsc = intel_pt_have_tsc(pt);
2512 pt->sampling_mode = false;
2513 pt->est_tsc = !pt->timeless_decoding;
2514
2515 pt->unknown_thread = thread__new(999999999, 999999999);
2516 if (!pt->unknown_thread) {
2517 err = -ENOMEM;
2518 goto err_free_queues;
2519 }
3a4acda1
AH
2520
2521 /*
2522 * Since this thread will not be kept in any rbtree not in a
2523 * list, initialize its list node so that at thread__put() the
2524 * current thread lifetime assuption is kept and we don't segfault
2525 * at list_del_init().
2526 */
2527 INIT_LIST_HEAD(&pt->unknown_thread->node);
2528
90e457f7
AH
2529 err = thread__set_comm(pt->unknown_thread, "unknown", 0);
2530 if (err)
2531 goto err_delete_thread;
2532 if (thread__init_map_groups(pt->unknown_thread, pt->machine)) {
2533 err = -ENOMEM;
2534 goto err_delete_thread;
2535 }
2536
2537 pt->auxtrace.process_event = intel_pt_process_event;
2538 pt->auxtrace.process_auxtrace_event = intel_pt_process_auxtrace_event;
2539 pt->auxtrace.flush_events = intel_pt_flush;
2540 pt->auxtrace.free_events = intel_pt_free_events;
2541 pt->auxtrace.free = intel_pt_free;
2542 session->auxtrace = &pt->auxtrace;
2543
2544 if (dump_trace)
2545 return 0;
2546
2547 if (pt->have_sched_switch == 1) {
2548 pt->switch_evsel = intel_pt_find_sched_switch(session->evlist);
2549 if (!pt->switch_evsel) {
2550 pr_err("%s: missing sched_switch event\n", __func__);
4d34e10a 2551 err = -EINVAL;
90e457f7
AH
2552 goto err_delete_thread;
2553 }
86c27869
AH
2554 } else if (pt->have_sched_switch == 2 &&
2555 !intel_pt_find_switch(session->evlist)) {
2556 pr_err("%s: missing context_switch attribute flag\n", __func__);
4d34e10a 2557 err = -EINVAL;
86c27869 2558 goto err_delete_thread;
90e457f7
AH
2559 }
2560
2561 if (session->itrace_synth_opts && session->itrace_synth_opts->set) {
2562 pt->synth_opts = *session->itrace_synth_opts;
2563 } else {
4eb06815
AK
2564 itrace_synth_opts__set_default(&pt->synth_opts,
2565 session->itrace_synth_opts->default_no_sample);
90e457f7
AH
2566 if (use_browser != -1) {
2567 pt->synth_opts.branches = false;
2568 pt->synth_opts.callchain = true;
2569 }
50f73637
AH
2570 if (session->itrace_synth_opts)
2571 pt->synth_opts.thread_stack =
2572 session->itrace_synth_opts->thread_stack;
90e457f7
AH
2573 }
2574
2575 if (pt->synth_opts.log)
2576 intel_pt_log_enable();
2577
2578 /* Maximum non-turbo ratio is TSC freq / 100 MHz */
2579 if (pt->tc.time_mult) {
2580 u64 tsc_freq = intel_pt_ns_to_ticks(pt, 1000000000);
2581
fa8025c3
AH
2582 if (!pt->max_non_turbo_ratio)
2583 pt->max_non_turbo_ratio =
2584 (tsc_freq + 50000000) / 100000000;
90e457f7
AH
2585 intel_pt_log("TSC frequency %"PRIu64"\n", tsc_freq);
2586 intel_pt_log("Maximum non-turbo ratio %u\n",
2587 pt->max_non_turbo_ratio);
37973075 2588 pt->cbr2khz = tsc_freq / pt->max_non_turbo_ratio / 1000;
90e457f7
AH
2589 }
2590
2591 if (pt->synth_opts.calls)
2592 pt->branches_filter |= PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC |
2593 PERF_IP_FLAG_TRACE_END;
2594 if (pt->synth_opts.returns)
2595 pt->branches_filter |= PERF_IP_FLAG_RETURN |
2596 PERF_IP_FLAG_TRACE_BEGIN;
2597
2598 if (pt->synth_opts.callchain && !symbol_conf.use_callchain) {
2599 symbol_conf.use_callchain = true;
2600 if (callchain_register_param(&callchain_param) < 0) {
2601 symbol_conf.use_callchain = false;
2602 pt->synth_opts.callchain = false;
2603 }
2604 }
2605
2606 err = intel_pt_synth_events(pt, session);
2607 if (err)
2608 goto err_delete_thread;
2609
2610 err = auxtrace_queues__process_index(&pt->queues, session);
2611 if (err)
2612 goto err_delete_thread;
2613
2614 if (pt->queues.populated)
2615 pt->data_queued = true;
2616
2617 if (pt->timeless_decoding)
2618 pr_debug2("Intel PT decoding without timestamps\n");
2619
2620 return 0;
2621
2622err_delete_thread:
abd82868 2623 thread__zput(pt->unknown_thread);
90e457f7
AH
2624err_free_queues:
2625 intel_pt_log_disable();
2626 auxtrace_queues__free(&pt->queues);
2627 session->auxtrace = NULL;
2628err_free:
2acee108 2629 addr_filters__exit(&pt->filts);
2b9e32c4 2630 zfree(&pt->filter);
90e457f7
AH
2631 free(pt);
2632 return err;
2633}