Merge tag 'pci-v6.16-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci
[linux-block.git] / tools / perf / util / intel-pt.c
CommitLineData
2025cf9e 1// SPDX-License-Identifier: GPL-2.0-only
90e457f7
AH
2/*
3 * intel_pt.c: Intel Processor Trace support
4 * Copyright (c) 2013-2015, Intel Corporation.
90e457f7
AH
5 */
6
fd20e811 7#include <inttypes.h>
7e55b956 8#include <linux/perf_event.h>
90e457f7
AH
9#include <stdio.h>
10#include <stdbool.h>
11#include <errno.h>
12#include <linux/kernel.h>
8520a98d 13#include <linux/string.h>
90e457f7 14#include <linux/types.h>
7f7c536f 15#include <linux/zalloc.h>
90e457f7 16
90e457f7
AH
17#include "session.h"
18#include "machine.h"
98521b38 19#include "memswap.h"
f14445ee 20#include "sort.h"
90e457f7
AH
21#include "tool.h"
22#include "event.h"
23#include "evlist.h"
24#include "evsel.h"
25#include "map.h"
26#include "color.h"
90e457f7
AH
27#include "thread.h"
28#include "thread-stack.h"
29#include "symbol.h"
30#include "callchain.h"
31#include "dso.h"
32#include "debug.h"
33#include "auxtrace.h"
34#include "tsc.h"
35#include "intel-pt.h"
41840d21 36#include "config.h"
40c7d246 37#include "util/perf_api_probe.h"
ea49e01c 38#include "util/synthetic-events.h"
2c47db90 39#include "time-utils.h"
90e457f7 40
9e9a618a
AH
41#include "../arch/x86/include/uapi/asm/perf_regs.h"
42
90e457f7
AH
43#include "intel-pt-decoder/intel-pt-log.h"
44#include "intel-pt-decoder/intel-pt-decoder.h"
45#include "intel-pt-decoder/intel-pt-insn-decoder.h"
46#include "intel-pt-decoder/intel-pt-pkt-decoder.h"
47
48#define MAX_TIMESTAMP (~0ULL)
49
cd9111e6
AH
50#define INTEL_PT_CFG_PASS_THRU BIT_ULL(0)
51#define INTEL_PT_CFG_PWR_EVT_EN BIT_ULL(4)
52#define INTEL_PT_CFG_BRANCH_EN BIT_ULL(13)
ef3b2ba9 53#define INTEL_PT_CFG_EVT_EN BIT_ULL(31)
e9240355 54#define INTEL_PT_CFG_TNT_DIS BIT_ULL(55)
cd9111e6 55
2c47db90
AH
56struct range {
57 u64 start;
58 u64 end;
59};
60
90e457f7
AH
61struct intel_pt {
62 struct auxtrace auxtrace;
63 struct auxtrace_queues queues;
64 struct auxtrace_heap heap;
65 u32 auxtrace_type;
66 struct perf_session *session;
67 struct machine *machine;
32dcd021 68 struct evsel *switch_evsel;
90e457f7
AH
69 struct thread *unknown_thread;
70 bool timeless_decoding;
71 bool sampling_mode;
72 bool snapshot_mode;
73 bool per_cpu_mmaps;
74 bool have_tsc;
75 bool data_queued;
76 bool est_tsc;
77 bool sync_switch;
7d1f65b5 78 bool sync_switch_not_supported;
ba11ba65 79 bool mispred_all;
1ef998ff 80 bool use_thread_stack;
cf888e08 81 bool callstack;
f2be829e 82 bool cap_event_trace;
0bb82cf5 83 bool have_guest_sideband;
cf888e08 84 unsigned int br_stack_sz;
f0a0251c 85 unsigned int br_stack_sz_plus;
90e457f7
AH
86 int have_sched_switch;
87 u32 pmu_type;
88 u64 kernel_start;
89 u64 switch_ip;
90 u64 ptss_ip;
5ac35d77 91 u64 first_timestamp;
90e457f7
AH
92
93 struct perf_tsc_conversion tc;
94 bool cap_user_time_zero;
95
96 struct itrace_synth_opts synth_opts;
97
98 bool sample_instructions;
99 u64 instructions_sample_type;
90e457f7
AH
100 u64 instructions_id;
101
7e55b956
SG
102 bool sample_cycles;
103 u64 cycles_sample_type;
104 u64 cycles_id;
105
90e457f7
AH
106 bool sample_branches;
107 u32 branches_filter;
108 u64 branches_sample_type;
109 u64 branches_id;
110
111 bool sample_transactions;
112 u64 transactions_sample_type;
113 u64 transactions_id;
114
37973075
AH
115 bool sample_ptwrites;
116 u64 ptwrites_sample_type;
117 u64 ptwrites_id;
118
119 bool sample_pwr_events;
120 u64 pwr_events_sample_type;
121 u64 mwait_id;
122 u64 pwre_id;
123 u64 exstop_id;
124 u64 pwrx_id;
125 u64 cbr_id;
c840cbfe 126 u64 psb_id;
37973075 127
dedcc0ea 128 bool single_pebs;
e62ca655 129 bool sample_pebs;
e00eac6b 130 int pebs_data_src_fmt;
32dcd021 131 struct evsel *pebs_evsel;
e62ca655 132
ef3b2ba9
AH
133 u64 evt_sample_type;
134 u64 evt_id;
135
069ca70e
AH
136 u64 iflag_chg_sample_type;
137 u64 iflag_chg_id;
138
90e457f7 139 u64 tsc_bit;
11fa7cb8
AH
140 u64 mtc_bit;
141 u64 mtc_freq_bits;
142 u32 tsc_ctc_ratio_n;
143 u32 tsc_ctc_ratio_d;
144 u64 cyc_bit;
90e457f7
AH
145 u64 noretcomp_bit;
146 unsigned max_non_turbo_ratio;
37973075 147 unsigned cbr2khz;
b4b046ff 148 int max_loops;
d1706b39
AK
149
150 unsigned long num_events;
2b9e32c4
AH
151
152 char *filter;
2acee108 153 struct addr_filters filts;
2c47db90
AH
154
155 struct range *time_ranges;
156 unsigned int range_cnt;
2855c05c
AH
157
158 struct ip_callchain *chain;
f0a0251c 159 struct branch_stack *br_stack;
0fc9d338
AH
160
161 u64 dflt_tsc_offset;
162 struct rb_root vmcs_info;
90e457f7
AH
163};
164
165enum switch_state {
166 INTEL_PT_SS_NOT_TRACING,
167 INTEL_PT_SS_UNKNOWN,
168 INTEL_PT_SS_TRACING,
169 INTEL_PT_SS_EXPECTING_SWITCH_EVENT,
170 INTEL_PT_SS_EXPECTING_SWITCH_IP,
171};
172
dedcc0ea
AH
173/* applicable_counters is 64-bits */
174#define INTEL_PT_MAX_PEBS 64
175
176struct intel_pt_pebs_event {
177 struct evsel *evsel;
178 u64 id;
e00eac6b 179 int data_src_fmt;
dedcc0ea
AH
180};
181
90e457f7
AH
182struct intel_pt_queue {
183 struct intel_pt *pt;
184 unsigned int queue_nr;
185 struct auxtrace_buffer *buffer;
9c665064 186 struct auxtrace_buffer *old_buffer;
90e457f7
AH
187 void *decoder;
188 const struct intel_pt_state *state;
189 struct ip_callchain *chain;
f14445ee 190 struct branch_stack *last_branch;
90e457f7
AH
191 union perf_event *event_buf;
192 bool on_heap;
193 bool stop;
194 bool step_through_buffers;
195 bool use_buffer_pid_tid;
63d8e38f 196 bool sync_switch;
f2b91386 197 bool sample_ipc;
90e457f7
AH
198 pid_t pid, tid;
199 int cpu;
200 int switch_state;
201 pid_t next_tid;
202 struct thread *thread;
6e86bfdc 203 struct machine *guest_machine;
5d2b6bc3 204 struct thread *guest_thread;
6e86bfdc 205 struct thread *unknown_guest_thread;
71658de4
AH
206 pid_t guest_machine_pid;
207 pid_t guest_pid;
208 pid_t guest_tid;
209 int vcpu;
90e457f7
AH
210 bool exclude_kernel;
211 bool have_sample;
212 u64 time;
213 u64 timestamp;
2c47db90
AH
214 u64 sel_timestamp;
215 bool sel_start;
216 unsigned int sel_idx;
90e457f7
AH
217 u32 flags;
218 u16 insn_len;
2a21d036 219 u64 last_insn_cnt;
5b1dc0fd
AH
220 u64 ipc_insn_cnt;
221 u64 ipc_cyc_cnt;
222 u64 last_in_insn_cnt;
223 u64 last_in_cyc_cnt;
7e55b956
SG
224 u64 last_cy_insn_cnt;
225 u64 last_cy_cyc_cnt;
5b1dc0fd
AH
226 u64 last_br_insn_cnt;
227 u64 last_br_cyc_cnt;
5fe2cf7d 228 unsigned int cbr_seen;
faaa8768 229 char insn[INTEL_PT_INSN_BUF_SZ];
dedcc0ea 230 struct intel_pt_pebs_event pebs[INTEL_PT_MAX_PEBS];
90e457f7
AH
231};
232
233static void intel_pt_dump(struct intel_pt *pt __maybe_unused,
234 unsigned char *buf, size_t len)
235{
236 struct intel_pt_pkt packet;
237 size_t pos = 0;
238 int ret, pkt_len, i;
239 char desc[INTEL_PT_PKT_DESC_MAX];
240 const char *color = PERF_COLOR_BLUE;
edff7809 241 enum intel_pt_pkt_ctx ctx = INTEL_PT_NO_CTX;
90e457f7
AH
242
243 color_fprintf(stdout, color,
244 ". ... Intel Processor Trace data: size %zu bytes\n",
245 len);
246
247 while (len) {
edff7809 248 ret = intel_pt_get_packet(buf, len, &packet, &ctx);
90e457f7
AH
249 if (ret > 0)
250 pkt_len = ret;
251 else
252 pkt_len = 1;
253 printf(".");
58fc358a 254 color_fprintf(stdout, color, " %08zx: ", pos);
90e457f7
AH
255 for (i = 0; i < pkt_len; i++)
256 color_fprintf(stdout, color, " %02x", buf[i]);
257 for (; i < 16; i++)
258 color_fprintf(stdout, color, " ");
259 if (ret > 0) {
260 ret = intel_pt_pkt_desc(&packet, desc,
261 INTEL_PT_PKT_DESC_MAX);
262 if (ret > 0)
263 color_fprintf(stdout, color, " %s\n", desc);
264 } else {
265 color_fprintf(stdout, color, " Bad packet!\n");
266 }
267 pos += pkt_len;
268 buf += pkt_len;
269 len -= pkt_len;
270 }
271}
272
273static void intel_pt_dump_event(struct intel_pt *pt, unsigned char *buf,
274 size_t len)
275{
276 printf(".\n");
277 intel_pt_dump(pt, buf, len);
278}
279
93f8be27
AH
280static void intel_pt_log_event(union perf_event *event)
281{
282 FILE *f = intel_pt_log_fp();
283
284 if (!intel_pt_enable_logging || !f)
285 return;
286
7eeb9855 287 perf_event__fprintf(event, NULL, f);
93f8be27
AH
288}
289
dbd13432
AH
290static void intel_pt_dump_sample(struct perf_session *session,
291 struct perf_sample *sample)
292{
293 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
294 auxtrace);
295
296 printf("\n");
297 intel_pt_dump(pt, sample->aux_sample.data, sample->aux_sample.size);
298}
299
d4575f5f 300static bool intel_pt_log_events(struct intel_pt *pt, u64 tm)
8b83fccd 301{
d4575f5f
AH
302 struct perf_time_interval *range = pt->synth_opts.ptime_range;
303 int n = pt->synth_opts.range_num;
304
305 if (pt->synth_opts.log_plus_flags & AUXTRACE_LOG_FLG_ALL_PERF_EVTS)
306 return true;
307
308 if (pt->synth_opts.log_minus_flags & AUXTRACE_LOG_FLG_ALL_PERF_EVTS)
309 return false;
310
311 /* perf_time__ranges_skip_sample does not work if time is zero */
312 if (!tm)
313 tm = 1;
314
315 return !n || !perf_time__ranges_skip_sample(range, n, tm);
8b83fccd
AH
316}
317
0fc9d338
AH
318static struct intel_pt_vmcs_info *intel_pt_findnew_vmcs(struct rb_root *rb_root,
319 u64 vmcs,
320 u64 dflt_tsc_offset)
321{
322 struct rb_node **p = &rb_root->rb_node;
323 struct rb_node *parent = NULL;
324 struct intel_pt_vmcs_info *v;
325
326 while (*p) {
327 parent = *p;
328 v = rb_entry(parent, struct intel_pt_vmcs_info, rb_node);
329
330 if (v->vmcs == vmcs)
331 return v;
332
333 if (vmcs < v->vmcs)
334 p = &(*p)->rb_left;
335 else
336 p = &(*p)->rb_right;
337 }
338
339 v = zalloc(sizeof(*v));
340 if (v) {
341 v->vmcs = vmcs;
342 v->tsc_offset = dflt_tsc_offset;
343 v->reliable = dflt_tsc_offset;
344
345 rb_link_node(&v->rb_node, parent, p);
346 rb_insert_color(&v->rb_node, rb_root);
347 }
348
349 return v;
350}
351
352static struct intel_pt_vmcs_info *intel_pt_findnew_vmcs_info(void *data, uint64_t vmcs)
353{
354 struct intel_pt_queue *ptq = data;
355 struct intel_pt *pt = ptq->pt;
356
357 if (!vmcs && !pt->dflt_tsc_offset)
358 return NULL;
359
360 return intel_pt_findnew_vmcs(&pt->vmcs_info, vmcs, pt->dflt_tsc_offset);
361}
362
363static void intel_pt_free_vmcs_info(struct intel_pt *pt)
364{
365 struct intel_pt_vmcs_info *v;
366 struct rb_node *n;
367
368 n = rb_first(&pt->vmcs_info);
369 while (n) {
370 v = rb_entry(n, struct intel_pt_vmcs_info, rb_node);
371 n = rb_next(n);
372 rb_erase(&v->rb_node, &pt->vmcs_info);
373 free(v);
374 }
375}
376
90e457f7
AH
377static int intel_pt_do_fix_overlap(struct intel_pt *pt, struct auxtrace_buffer *a,
378 struct auxtrace_buffer *b)
379{
117db4b2 380 bool consecutive = false;
90e457f7
AH
381 void *start;
382
383 start = intel_pt_find_overlap(a->data, a->size, b->data, b->size,
335358cc
AH
384 pt->have_tsc, &consecutive,
385 pt->synth_opts.vm_time_correlation);
90e457f7
AH
386 if (!start)
387 return -EINVAL;
335358cc
AH
388 /*
389 * In the case of vm_time_correlation, the overlap might contain TSC
390 * packets that will not be fixed, and that will then no longer work for
391 * overlap detection. Avoid that by zeroing out the overlap.
392 */
393 if (pt->synth_opts.vm_time_correlation)
394 memset(b->data, 0, start - b->data);
90e457f7
AH
395 b->use_size = b->data + b->size - start;
396 b->use_data = start;
117db4b2
AH
397 if (b->use_size && consecutive)
398 b->consecutive = true;
90e457f7
AH
399 return 0;
400}
401
e96f7df8
AH
402static int intel_pt_get_buffer(struct intel_pt_queue *ptq,
403 struct auxtrace_buffer *buffer,
404 struct auxtrace_buffer *old_buffer,
405 struct intel_pt_buffer *b)
90e457f7 406{
599a5beb 407 bool might_overlap;
90e457f7 408
90e457f7 409 if (!buffer->data) {
8ceb41d7 410 int fd = perf_data__fd(ptq->pt->session->data);
90e457f7
AH
411
412 buffer->data = auxtrace_buffer__get_data(buffer, fd);
413 if (!buffer->data)
414 return -ENOMEM;
415 }
416
599a5beb
AH
417 might_overlap = ptq->pt->snapshot_mode || ptq->pt->sampling_mode;
418 if (might_overlap && !buffer->consecutive && old_buffer &&
90e457f7
AH
419 intel_pt_do_fix_overlap(ptq->pt, old_buffer, buffer))
420 return -ENOMEM;
421
90e457f7
AH
422 if (buffer->use_data) {
423 b->len = buffer->use_size;
424 b->buf = buffer->use_data;
425 } else {
426 b->len = buffer->size;
427 b->buf = buffer->data;
428 }
429 b->ref_timestamp = buffer->reference;
430
599a5beb 431 if (!old_buffer || (might_overlap && !buffer->consecutive)) {
90e457f7
AH
432 b->consecutive = false;
433 b->trace_nr = buffer->buffer_nr + 1;
434 } else {
435 b->consecutive = true;
436 }
437
e96f7df8
AH
438 return 0;
439}
440
da9000ae
AH
441/* Do not drop buffers with references - refer intel_pt_get_trace() */
442static void intel_pt_lookahead_drop_buffer(struct intel_pt_queue *ptq,
443 struct auxtrace_buffer *buffer)
444{
445 if (!buffer || buffer == ptq->buffer || buffer == ptq->old_buffer)
446 return;
447
448 auxtrace_buffer__drop_data(buffer);
449}
450
451/* Must be serialized with respect to intel_pt_get_trace() */
452static int intel_pt_lookahead(void *data, intel_pt_lookahead_cb_t cb,
453 void *cb_data)
454{
455 struct intel_pt_queue *ptq = data;
456 struct auxtrace_buffer *buffer = ptq->buffer;
457 struct auxtrace_buffer *old_buffer = ptq->old_buffer;
458 struct auxtrace_queue *queue;
459 int err = 0;
460
461 queue = &ptq->pt->queues.queue_array[ptq->queue_nr];
462
463 while (1) {
464 struct intel_pt_buffer b = { .len = 0 };
465
466 buffer = auxtrace_buffer__next(queue, buffer);
467 if (!buffer)
468 break;
469
470 err = intel_pt_get_buffer(ptq, buffer, old_buffer, &b);
471 if (err)
472 break;
473
474 if (b.len) {
475 intel_pt_lookahead_drop_buffer(ptq, old_buffer);
476 old_buffer = buffer;
477 } else {
478 intel_pt_lookahead_drop_buffer(ptq, buffer);
479 continue;
480 }
481
482 err = cb(&b, cb_data);
483 if (err)
484 break;
485 }
486
487 if (buffer != old_buffer)
488 intel_pt_lookahead_drop_buffer(ptq, buffer);
489 intel_pt_lookahead_drop_buffer(ptq, old_buffer);
490
491 return err;
492}
493
494/*
495 * This function assumes data is processed sequentially only.
496 * Must be serialized with respect to intel_pt_lookahead()
497 */
e96f7df8
AH
498static int intel_pt_get_trace(struct intel_pt_buffer *b, void *data)
499{
500 struct intel_pt_queue *ptq = data;
501 struct auxtrace_buffer *buffer = ptq->buffer;
502 struct auxtrace_buffer *old_buffer = ptq->old_buffer;
503 struct auxtrace_queue *queue;
504 int err;
505
506 if (ptq->stop) {
507 b->len = 0;
508 return 0;
509 }
510
511 queue = &ptq->pt->queues.queue_array[ptq->queue_nr];
512
513 buffer = auxtrace_buffer__next(queue, buffer);
514 if (!buffer) {
515 if (old_buffer)
516 auxtrace_buffer__drop_data(old_buffer);
517 b->len = 0;
518 return 0;
519 }
520
521 ptq->buffer = buffer;
522
523 err = intel_pt_get_buffer(ptq, buffer, old_buffer, b);
524 if (err)
525 return err;
526
90e457f7
AH
527 if (ptq->step_through_buffers)
528 ptq->stop = true;
529
9c665064
AH
530 if (b->len) {
531 if (old_buffer)
532 auxtrace_buffer__drop_data(old_buffer);
533 ptq->old_buffer = buffer;
534 } else {
535 auxtrace_buffer__drop_data(buffer);
90e457f7 536 return intel_pt_get_trace(b, data);
9c665064 537 }
90e457f7
AH
538
539 return 0;
540}
541
542struct intel_pt_cache_entry {
543 struct auxtrace_cache_entry entry;
544 u64 insn_cnt;
545 u64 byte_cnt;
546 enum intel_pt_insn_op op;
547 enum intel_pt_insn_branch branch;
d7015e50 548 bool emulated_ptwrite;
90e457f7
AH
549 int length;
550 int32_t rel;
faaa8768 551 char insn[INTEL_PT_INSN_BUF_SZ];
90e457f7
AH
552};
553
554static int intel_pt_config_div(const char *var, const char *value, void *data)
555{
556 int *d = data;
557 long val;
558
559 if (!strcmp(var, "intel-pt.cache-divisor")) {
560 val = strtol(value, NULL, 0);
561 if (val > 0 && val <= INT_MAX)
562 *d = val;
563 }
564
565 return 0;
566}
567
568static int intel_pt_cache_divisor(void)
569{
570 static int d;
571
572 if (d)
573 return d;
574
575 perf_config(intel_pt_config_div, &d);
576
577 if (!d)
578 d = 64;
579
580 return d;
581}
582
583static unsigned int intel_pt_cache_size(struct dso *dso,
584 struct machine *machine)
585{
586 off_t size;
587
588 size = dso__data_size(dso, machine);
589 size /= intel_pt_cache_divisor();
590 if (size < 1000)
591 return 10;
592 if (size > (1 << 21))
593 return 21;
594 return 32 - __builtin_clz(size);
595}
596
597static struct auxtrace_cache *intel_pt_cache(struct dso *dso,
598 struct machine *machine)
599{
600 struct auxtrace_cache *c;
601 unsigned int bits;
602
ee756ef7
IR
603 if (dso__auxtrace_cache(dso))
604 return dso__auxtrace_cache(dso);
90e457f7
AH
605
606 bits = intel_pt_cache_size(dso, machine);
607
608 /* Ignoring cache creation failure */
609 c = auxtrace_cache__new(bits, sizeof(struct intel_pt_cache_entry), 200);
610
ee756ef7 611 dso__set_auxtrace_cache(dso, c);
90e457f7
AH
612
613 return c;
614}
615
616static int intel_pt_cache_add(struct dso *dso, struct machine *machine,
617 u64 offset, u64 insn_cnt, u64 byte_cnt,
618 struct intel_pt_insn *intel_pt_insn)
619{
620 struct auxtrace_cache *c = intel_pt_cache(dso, machine);
621 struct intel_pt_cache_entry *e;
622 int err;
623
624 if (!c)
625 return -ENOMEM;
626
627 e = auxtrace_cache__alloc_entry(c);
628 if (!e)
629 return -ENOMEM;
630
631 e->insn_cnt = insn_cnt;
632 e->byte_cnt = byte_cnt;
633 e->op = intel_pt_insn->op;
634 e->branch = intel_pt_insn->branch;
d7015e50 635 e->emulated_ptwrite = intel_pt_insn->emulated_ptwrite;
90e457f7
AH
636 e->length = intel_pt_insn->length;
637 e->rel = intel_pt_insn->rel;
faaa8768 638 memcpy(e->insn, intel_pt_insn->buf, INTEL_PT_INSN_BUF_SZ);
90e457f7
AH
639
640 err = auxtrace_cache__add(c, offset, &e->entry);
641 if (err)
642 auxtrace_cache__free_entry(c, e);
643
644 return err;
645}
646
647static struct intel_pt_cache_entry *
648intel_pt_cache_lookup(struct dso *dso, struct machine *machine, u64 offset)
649{
650 struct auxtrace_cache *c = intel_pt_cache(dso, machine);
651
652 if (!c)
653 return NULL;
654
ee756ef7 655 return auxtrace_cache__lookup(dso__auxtrace_cache(dso), offset);
90e457f7
AH
656}
657
b22f90aa
AH
658static void intel_pt_cache_invalidate(struct dso *dso, struct machine *machine,
659 u64 offset)
660{
661 struct auxtrace_cache *c = intel_pt_cache(dso, machine);
662
663 if (!c)
664 return;
665
ee756ef7 666 auxtrace_cache__remove(dso__auxtrace_cache(dso), offset);
b22f90aa
AH
667}
668
6e86bfdc 669static inline bool intel_pt_guest_kernel_ip(uint64_t ip)
5d4f0eda 670{
6e86bfdc
AH
671 /* Assumes 64-bit kernel */
672 return ip & (1ULL << 63);
673}
674
675static inline u8 intel_pt_nr_cpumode(struct intel_pt_queue *ptq, uint64_t ip, bool nr)
676{
677 if (nr) {
678 return intel_pt_guest_kernel_ip(ip) ?
679 PERF_RECORD_MISC_GUEST_KERNEL :
680 PERF_RECORD_MISC_GUEST_USER;
681 }
682
683 return ip >= ptq->pt->kernel_start ?
5d4f0eda
AH
684 PERF_RECORD_MISC_KERNEL :
685 PERF_RECORD_MISC_USER;
686}
687
6e86bfdc
AH
688static inline u8 intel_pt_cpumode(struct intel_pt_queue *ptq, uint64_t from_ip, uint64_t to_ip)
689{
690 /* No support for non-zero CS base */
691 if (from_ip)
692 return intel_pt_nr_cpumode(ptq, from_ip, ptq->state->from_nr);
693 return intel_pt_nr_cpumode(ptq, to_ip, ptq->state->to_nr);
694}
695
696static int intel_pt_get_guest(struct intel_pt_queue *ptq)
697{
698 struct machines *machines = &ptq->pt->session->machines;
699 struct machine *machine;
700 pid_t pid = ptq->pid <= 0 ? DEFAULT_GUEST_KERNEL_ID : ptq->pid;
701
7c0b20d1 702 if (ptq->guest_machine && pid == ptq->guest_machine->pid)
6e86bfdc
AH
703 return 0;
704
705 ptq->guest_machine = NULL;
706 thread__zput(ptq->unknown_guest_thread);
707
5d2b6bc3
AH
708 if (symbol_conf.guest_code) {
709 thread__zput(ptq->guest_thread);
710 ptq->guest_thread = machines__findnew_guest_code(machines, pid);
711 }
712
6e86bfdc
AH
713 machine = machines__find_guest(machines, pid);
714 if (!machine)
715 return -1;
716
717 ptq->unknown_guest_thread = machine__idle_thread(machine);
718 if (!ptq->unknown_guest_thread)
719 return -1;
720
721 ptq->guest_machine = machine;
6e86bfdc
AH
722
723 return 0;
724}
725
d7015e50
AH
726static inline bool intel_pt_jmp_16(struct intel_pt_insn *intel_pt_insn)
727{
728 return intel_pt_insn->rel == 16 && intel_pt_insn->branch == INTEL_PT_BR_UNCONDITIONAL;
729}
730
731#define PTWRITE_MAGIC "\x0f\x0bperf,ptwrite "
732#define PTWRITE_MAGIC_LEN 16
733
734static bool intel_pt_emulated_ptwrite(struct dso *dso, struct machine *machine, u64 offset)
735{
736 unsigned char buf[PTWRITE_MAGIC_LEN];
737 ssize_t len;
738
739 len = dso__data_read_offset(dso, machine, offset, buf, PTWRITE_MAGIC_LEN);
740 if (len == PTWRITE_MAGIC_LEN && !memcmp(buf, PTWRITE_MAGIC, PTWRITE_MAGIC_LEN)) {
741 intel_pt_log("Emulated ptwrite signature found\n");
742 return true;
743 }
744 intel_pt_log("Emulated ptwrite signature not found\n");
745 return false;
746}
747
90e457f7
AH
748static int intel_pt_walk_next_insn(struct intel_pt_insn *intel_pt_insn,
749 uint64_t *insn_cnt_ptr, uint64_t *ip,
750 uint64_t to_ip, uint64_t max_insn_cnt,
751 void *data)
752{
753 struct intel_pt_queue *ptq = data;
754 struct machine *machine = ptq->pt->machine;
755 struct thread *thread;
756 struct addr_location al;
32f98aab 757 unsigned char buf[INTEL_PT_INSN_BUF_SZ];
90e457f7 758 ssize_t len;
0dd5041c 759 int x86_64, ret = 0;
90e457f7
AH
760 u8 cpumode;
761 u64 offset, start_offset, start_ip;
762 u64 insn_cnt = 0;
763 bool one_map = true;
6e86bfdc 764 bool nr;
90e457f7 765
0dd5041c
IR
766
767 addr_location__init(&al);
faaa8768 768 intel_pt_insn->length = 0;
e101a05f 769 intel_pt_insn->op = INTEL_PT_OP_OTHER;
faaa8768 770
90e457f7
AH
771 if (to_ip && *ip == to_ip)
772 goto out_no_cache;
773
6e86bfdc
AH
774 nr = ptq->state->to_nr;
775 cpumode = intel_pt_nr_cpumode(ptq, *ip, nr);
90e457f7 776
6e86bfdc 777 if (nr) {
71658de4
AH
778 if (ptq->pt->have_guest_sideband) {
779 if (!ptq->guest_machine || ptq->guest_machine_pid != ptq->pid) {
780 intel_pt_log("ERROR: guest sideband but no guest machine\n");
0dd5041c
IR
781 ret = -EINVAL;
782 goto out_ret;
71658de4
AH
783 }
784 } else if ((!symbol_conf.guest_code && cpumode != PERF_RECORD_MISC_GUEST_KERNEL) ||
785 intel_pt_get_guest(ptq)) {
12374a16 786 intel_pt_log("ERROR: no guest machine\n");
0dd5041c
IR
787 ret = -EINVAL;
788 goto out_ret;
12374a16 789 }
6e86bfdc 790 machine = ptq->guest_machine;
5d2b6bc3
AH
791 thread = ptq->guest_thread;
792 if (!thread) {
12374a16
AH
793 if (cpumode != PERF_RECORD_MISC_GUEST_KERNEL) {
794 intel_pt_log("ERROR: no guest thread\n");
0dd5041c
IR
795 ret = -EINVAL;
796 goto out_ret;
12374a16 797 }
5d2b6bc3
AH
798 thread = ptq->unknown_guest_thread;
799 }
6e86bfdc
AH
800 } else {
801 thread = ptq->thread;
802 if (!thread) {
12374a16
AH
803 if (cpumode != PERF_RECORD_MISC_KERNEL) {
804 intel_pt_log("ERROR: no thread\n");
0dd5041c
IR
805 ret = -EINVAL;
806 goto out_ret;
12374a16 807 }
6e86bfdc
AH
808 thread = ptq->pt->unknown_thread;
809 }
90e457f7
AH
810 }
811
812 while (1) {
63df0e4b
IR
813 struct dso *dso;
814
815 if (!thread__find_map(thread, cpumode, *ip, &al) || !map__dso(al.map)) {
12374a16
AH
816 if (al.map)
817 intel_pt_log("ERROR: thread has no dso for %#" PRIx64 "\n", *ip);
818 else
819 intel_pt_log("ERROR: thread has no map for %#" PRIx64 "\n", *ip);
0dd5041c
IR
820 addr_location__exit(&al);
821 ret = -EINVAL;
822 goto out_ret;
12374a16 823 }
63df0e4b 824 dso = map__dso(al.map);
90e457f7 825
ee756ef7
IR
826 if (dso__data(dso)->status == DSO_DATA_STATUS_ERROR &&
827 dso__data_status_seen(dso, DSO_DATA_STATUS_SEEN_ITRACE)) {
0dd5041c
IR
828 ret = -ENOENT;
829 goto out_ret;
830 }
90e457f7 831
78a1f7cd 832 offset = map__map_ip(al.map, *ip);
90e457f7
AH
833
834 if (!to_ip && one_map) {
835 struct intel_pt_cache_entry *e;
836
63df0e4b 837 e = intel_pt_cache_lookup(dso, machine, offset);
90e457f7
AH
838 if (e &&
839 (!max_insn_cnt || e->insn_cnt <= max_insn_cnt)) {
840 *insn_cnt_ptr = e->insn_cnt;
841 *ip += e->byte_cnt;
842 intel_pt_insn->op = e->op;
843 intel_pt_insn->branch = e->branch;
d7015e50 844 intel_pt_insn->emulated_ptwrite = e->emulated_ptwrite;
90e457f7
AH
845 intel_pt_insn->length = e->length;
846 intel_pt_insn->rel = e->rel;
63df0e4b 847 memcpy(intel_pt_insn->buf, e->insn, INTEL_PT_INSN_BUF_SZ);
90e457f7 848 intel_pt_log_insn_no_data(intel_pt_insn, *ip);
0dd5041c
IR
849 ret = 0;
850 goto out_ret;
90e457f7
AH
851 }
852 }
853
854 start_offset = offset;
855 start_ip = *ip;
856
857 /* Load maps to ensure dso->is_64_bit has been updated */
be39db9f 858 map__load(al.map);
90e457f7 859
ee756ef7 860 x86_64 = dso__is_64_bit(dso);
90e457f7
AH
861
862 while (1) {
63df0e4b 863 len = dso__data_read_offset(dso, machine,
32f98aab
AH
864 offset, buf,
865 INTEL_PT_INSN_BUF_SZ);
12374a16 866 if (len <= 0) {
50d7620b
AH
867 intel_pt_log("ERROR: failed to read at offset %#" PRIx64 " ",
868 offset);
12374a16 869 if (intel_pt_enable_logging)
63df0e4b 870 dso__fprintf(dso, intel_pt_log_fp());
0dd5041c
IR
871 ret = -EINVAL;
872 goto out_ret;
12374a16 873 }
90e457f7 874
0dd5041c
IR
875 if (intel_pt_get_insn(buf, len, x86_64, intel_pt_insn)) {
876 ret = -EINVAL;
877 goto out_ret;
878 }
90e457f7
AH
879
880 intel_pt_log_insn(intel_pt_insn, *ip);
881
882 insn_cnt += 1;
883
d7015e50
AH
884 if (intel_pt_insn->branch != INTEL_PT_BR_NO_BRANCH) {
885 bool eptw;
886 u64 offs;
887
888 if (!intel_pt_jmp_16(intel_pt_insn))
889 goto out;
890 /* Check for emulated ptwrite */
891 offs = offset + intel_pt_insn->length;
63df0e4b 892 eptw = intel_pt_emulated_ptwrite(dso, machine, offs);
d7015e50 893 intel_pt_insn->emulated_ptwrite = eptw;
90e457f7 894 goto out;
d7015e50 895 }
90e457f7
AH
896
897 if (max_insn_cnt && insn_cnt >= max_insn_cnt)
898 goto out_no_cache;
899
900 *ip += intel_pt_insn->length;
901
c954eb72
AH
902 if (to_ip && *ip == to_ip) {
903 intel_pt_insn->length = 0;
e101a05f 904 intel_pt_insn->op = INTEL_PT_OP_OTHER;
90e457f7 905 goto out_no_cache;
c954eb72 906 }
90e457f7 907
e5116f46 908 if (*ip >= map__end(al.map))
90e457f7
AH
909 break;
910
911 offset += intel_pt_insn->length;
912 }
913 one_map = false;
914 }
915out:
916 *insn_cnt_ptr = insn_cnt;
917
918 if (!one_map)
919 goto out_no_cache;
920
921 /*
922 * Didn't lookup in the 'to_ip' case, so do it now to prevent duplicate
923 * entries.
924 */
925 if (to_ip) {
926 struct intel_pt_cache_entry *e;
927
63df0e4b 928 e = intel_pt_cache_lookup(map__dso(al.map), machine, start_offset);
90e457f7 929 if (e)
0dd5041c 930 goto out_ret;
90e457f7
AH
931 }
932
933 /* Ignore cache errors */
63df0e4b 934 intel_pt_cache_add(map__dso(al.map), machine, start_offset, insn_cnt,
90e457f7
AH
935 *ip - start_ip, intel_pt_insn);
936
0dd5041c
IR
937out_ret:
938 addr_location__exit(&al);
939 return ret;
90e457f7
AH
940
941out_no_cache:
942 *insn_cnt_ptr = insn_cnt;
0dd5041c 943 addr_location__exit(&al);
90e457f7
AH
944 return 0;
945}
946
2acee108
AH
947static bool intel_pt_match_pgd_ip(struct intel_pt *pt, uint64_t ip,
948 uint64_t offset, const char *filename)
949{
950 struct addr_filter *filt;
951 bool have_filter = false;
952 bool hit_tracestop = false;
953 bool hit_filter = false;
954
955 list_for_each_entry(filt, &pt->filts.head, list) {
956 if (filt->start)
957 have_filter = true;
958
959 if ((filename && !filt->filename) ||
960 (!filename && filt->filename) ||
961 (filename && strcmp(filename, filt->filename)))
962 continue;
963
964 if (!(offset >= filt->addr && offset < filt->addr + filt->size))
965 continue;
966
967 intel_pt_log("TIP.PGD ip %#"PRIx64" offset %#"PRIx64" in %s hit filter: %s offset %#"PRIx64" size %#"PRIx64"\n",
968 ip, offset, filename ? filename : "[kernel]",
969 filt->start ? "filter" : "stop",
970 filt->addr, filt->size);
971
972 if (filt->start)
973 hit_filter = true;
974 else
975 hit_tracestop = true;
976 }
977
978 if (!hit_tracestop && !hit_filter)
979 intel_pt_log("TIP.PGD ip %#"PRIx64" offset %#"PRIx64" in %s is not in a filter region\n",
980 ip, offset, filename ? filename : "[kernel]");
981
982 return hit_tracestop || (have_filter && !hit_filter);
983}
984
985static int __intel_pt_pgd_ip(uint64_t ip, void *data)
986{
987 struct intel_pt_queue *ptq = data;
988 struct thread *thread;
989 struct addr_location al;
990 u8 cpumode;
991 u64 offset;
0dd5041c 992 int res;
2acee108 993
65faca5c
AH
994 if (ptq->state->to_nr) {
995 if (intel_pt_guest_kernel_ip(ip))
996 return intel_pt_match_pgd_ip(ptq->pt, ip, ip, NULL);
997 /* No support for decoding guest user space */
998 return -EINVAL;
999 } else if (ip >= ptq->pt->kernel_start) {
2acee108 1000 return intel_pt_match_pgd_ip(ptq->pt, ip, ip, NULL);
65faca5c 1001 }
2acee108
AH
1002
1003 cpumode = PERF_RECORD_MISC_USER;
1004
1005 thread = ptq->thread;
1006 if (!thread)
1007 return -EINVAL;
1008
0dd5041c 1009 addr_location__init(&al);
63df0e4b 1010 if (!thread__find_map(thread, cpumode, ip, &al) || !map__dso(al.map))
2acee108
AH
1011 return -EINVAL;
1012
78a1f7cd 1013 offset = map__map_ip(al.map, ip);
2acee108 1014
ee756ef7 1015 res = intel_pt_match_pgd_ip(ptq->pt, ip, offset, dso__long_name(map__dso(al.map)));
0dd5041c
IR
1016 addr_location__exit(&al);
1017 return res;
2acee108
AH
1018}
1019
1020static bool intel_pt_pgd_ip(uint64_t ip, void *data)
1021{
1022 return __intel_pt_pgd_ip(ip, data) > 0;
1023}
1024
90e457f7
AH
1025static bool intel_pt_get_config(struct intel_pt *pt,
1026 struct perf_event_attr *attr, u64 *config)
1027{
1028 if (attr->type == pt->pmu_type) {
1029 if (config)
1030 *config = attr->config;
1031 return true;
1032 }
1033
1034 return false;
1035}
1036
1037static bool intel_pt_exclude_kernel(struct intel_pt *pt)
1038{
32dcd021 1039 struct evsel *evsel;
90e457f7 1040
e5cadb93 1041 evlist__for_each_entry(pt->session->evlist, evsel) {
1fc632ce
JO
1042 if (intel_pt_get_config(pt, &evsel->core.attr, NULL) &&
1043 !evsel->core.attr.exclude_kernel)
90e457f7
AH
1044 return false;
1045 }
1046 return true;
1047}
1048
1049static bool intel_pt_return_compression(struct intel_pt *pt)
1050{
32dcd021 1051 struct evsel *evsel;
90e457f7
AH
1052 u64 config;
1053
1054 if (!pt->noretcomp_bit)
1055 return true;
1056
e5cadb93 1057 evlist__for_each_entry(pt->session->evlist, evsel) {
1fc632ce 1058 if (intel_pt_get_config(pt, &evsel->core.attr, &config) &&
90e457f7
AH
1059 (config & pt->noretcomp_bit))
1060 return false;
1061 }
1062 return true;
1063}
1064
83959817
AH
1065static bool intel_pt_branch_enable(struct intel_pt *pt)
1066{
32dcd021 1067 struct evsel *evsel;
83959817
AH
1068 u64 config;
1069
1070 evlist__for_each_entry(pt->session->evlist, evsel) {
1fc632ce 1071 if (intel_pt_get_config(pt, &evsel->core.attr, &config) &&
cd9111e6
AH
1072 (config & INTEL_PT_CFG_PASS_THRU) &&
1073 !(config & INTEL_PT_CFG_BRANCH_EN))
83959817
AH
1074 return false;
1075 }
1076 return true;
1077}
1078
e9240355
AH
1079static bool intel_pt_disabled_tnt(struct intel_pt *pt)
1080{
1081 struct evsel *evsel;
1082 u64 config;
1083
1084 evlist__for_each_entry(pt->session->evlist, evsel) {
1085 if (intel_pt_get_config(pt, &evsel->core.attr, &config) &&
1086 config & INTEL_PT_CFG_TNT_DIS)
1087 return true;
1088 }
1089 return false;
1090}
1091
11fa7cb8
AH
1092static unsigned int intel_pt_mtc_period(struct intel_pt *pt)
1093{
32dcd021 1094 struct evsel *evsel;
11fa7cb8
AH
1095 unsigned int shift;
1096 u64 config;
1097
1098 if (!pt->mtc_freq_bits)
1099 return 0;
1100
1101 for (shift = 0, config = pt->mtc_freq_bits; !(config & 1); shift++)
1102 config >>= 1;
1103
e5cadb93 1104 evlist__for_each_entry(pt->session->evlist, evsel) {
1fc632ce 1105 if (intel_pt_get_config(pt, &evsel->core.attr, &config))
11fa7cb8
AH
1106 return (config & pt->mtc_freq_bits) >> shift;
1107 }
1108 return 0;
1109}
1110
90e457f7
AH
1111static bool intel_pt_timeless_decoding(struct intel_pt *pt)
1112{
32dcd021 1113 struct evsel *evsel;
90e457f7
AH
1114 bool timeless_decoding = true;
1115 u64 config;
1116
e9d64739 1117 if (!pt->tsc_bit || !pt->cap_user_time_zero || pt->synth_opts.timeless_decoding)
90e457f7
AH
1118 return true;
1119
e5cadb93 1120 evlist__for_each_entry(pt->session->evlist, evsel) {
1fc632ce 1121 if (!(evsel->core.attr.sample_type & PERF_SAMPLE_TIME))
90e457f7 1122 return true;
1fc632ce 1123 if (intel_pt_get_config(pt, &evsel->core.attr, &config)) {
90e457f7
AH
1124 if (config & pt->tsc_bit)
1125 timeless_decoding = false;
1126 else
1127 return true;
1128 }
1129 }
1130 return timeless_decoding;
1131}
1132
1133static bool intel_pt_tracing_kernel(struct intel_pt *pt)
1134{
32dcd021 1135 struct evsel *evsel;
90e457f7 1136
e5cadb93 1137 evlist__for_each_entry(pt->session->evlist, evsel) {
1fc632ce
JO
1138 if (intel_pt_get_config(pt, &evsel->core.attr, NULL) &&
1139 !evsel->core.attr.exclude_kernel)
90e457f7
AH
1140 return true;
1141 }
1142 return false;
1143}
1144
1145static bool intel_pt_have_tsc(struct intel_pt *pt)
1146{
32dcd021 1147 struct evsel *evsel;
90e457f7
AH
1148 bool have_tsc = false;
1149 u64 config;
1150
1151 if (!pt->tsc_bit)
1152 return false;
1153
e5cadb93 1154 evlist__for_each_entry(pt->session->evlist, evsel) {
1fc632ce 1155 if (intel_pt_get_config(pt, &evsel->core.attr, &config)) {
90e457f7
AH
1156 if (config & pt->tsc_bit)
1157 have_tsc = true;
1158 else
1159 return false;
1160 }
1161 }
1162 return have_tsc;
1163}
1164
e3ff42bd
AH
1165static bool intel_pt_have_mtc(struct intel_pt *pt)
1166{
1167 struct evsel *evsel;
1168 u64 config;
1169
1170 evlist__for_each_entry(pt->session->evlist, evsel) {
1171 if (intel_pt_get_config(pt, &evsel->core.attr, &config) &&
1172 (config & pt->mtc_bit))
1173 return true;
1174 }
1175 return false;
1176}
1177
dbd13432
AH
1178static bool intel_pt_sampling_mode(struct intel_pt *pt)
1179{
1180 struct evsel *evsel;
1181
1182 evlist__for_each_entry(pt->session->evlist, evsel) {
1183 if ((evsel->core.attr.sample_type & PERF_SAMPLE_AUX) &&
1184 evsel->core.attr.aux_sample_size)
1185 return true;
1186 }
1187 return false;
1188}
1189
6af4b600
AH
1190static u64 intel_pt_ctl(struct intel_pt *pt)
1191{
1192 struct evsel *evsel;
1193 u64 config;
1194
1195 evlist__for_each_entry(pt->session->evlist, evsel) {
1196 if (intel_pt_get_config(pt, &evsel->core.attr, &config))
1197 return config;
1198 }
1199 return 0;
1200}
1201
90e457f7
AH
1202static u64 intel_pt_ns_to_ticks(const struct intel_pt *pt, u64 ns)
1203{
1204 u64 quot, rem;
1205
1206 quot = ns / pt->tc.time_mult;
1207 rem = ns % pt->tc.time_mult;
1208 return (quot << pt->tc.time_shift) + (rem << pt->tc.time_shift) /
1209 pt->tc.time_mult;
1210}
1211
2855c05c
AH
1212static struct ip_callchain *intel_pt_alloc_chain(struct intel_pt *pt)
1213{
1214 size_t sz = sizeof(struct ip_callchain);
1215
1216 /* Add 1 to callchain_sz for callchain context */
1217 sz += (pt->synth_opts.callchain_sz + 1) * sizeof(u64);
1218 return zalloc(sz);
1219}
1220
1221static int intel_pt_callchain_init(struct intel_pt *pt)
1222{
1223 struct evsel *evsel;
1224
1225 evlist__for_each_entry(pt->session->evlist, evsel) {
1226 if (!(evsel->core.attr.sample_type & PERF_SAMPLE_CALLCHAIN))
1227 evsel->synth_sample_type |= PERF_SAMPLE_CALLCHAIN;
1228 }
1229
1230 pt->chain = intel_pt_alloc_chain(pt);
1231 if (!pt->chain)
1232 return -ENOMEM;
1233
1234 return 0;
1235}
1236
1237static void intel_pt_add_callchain(struct intel_pt *pt,
1238 struct perf_sample *sample)
1239{
1240 struct thread *thread = machine__findnew_thread(pt->machine,
1241 sample->pid,
1242 sample->tid);
1243
1244 thread_stack__sample_late(thread, sample->cpu, pt->chain,
1245 pt->synth_opts.callchain_sz + 1, sample->ip,
1246 pt->kernel_start);
1247
1248 sample->callchain = pt->chain;
1249}
1250
961224db 1251static struct branch_stack *intel_pt_alloc_br_stack(unsigned int entry_cnt)
f0a0251c
AH
1252{
1253 size_t sz = sizeof(struct branch_stack);
1254
961224db 1255 sz += entry_cnt * sizeof(struct branch_entry);
f0a0251c
AH
1256 return zalloc(sz);
1257}
1258
1259static int intel_pt_br_stack_init(struct intel_pt *pt)
1260{
1261 struct evsel *evsel;
1262
1263 evlist__for_each_entry(pt->session->evlist, evsel) {
1264 if (!(evsel->core.attr.sample_type & PERF_SAMPLE_BRANCH_STACK))
1265 evsel->synth_sample_type |= PERF_SAMPLE_BRANCH_STACK;
1266 }
1267
961224db 1268 pt->br_stack = intel_pt_alloc_br_stack(pt->br_stack_sz);
f0a0251c
AH
1269 if (!pt->br_stack)
1270 return -ENOMEM;
1271
1272 return 0;
1273}
1274
1275static void intel_pt_add_br_stack(struct intel_pt *pt,
1276 struct perf_sample *sample)
1277{
1278 struct thread *thread = machine__findnew_thread(pt->machine,
1279 sample->pid,
1280 sample->tid);
1281
1282 thread_stack__br_sample_late(thread, sample->cpu, pt->br_stack,
1283 pt->br_stack_sz, sample->ip,
1284 pt->kernel_start);
1285
1286 sample->branch_stack = pt->br_stack;
084770f5 1287 thread__put(thread);
f0a0251c
AH
1288}
1289
961224db
AH
1290/* INTEL_PT_LBR_0, INTEL_PT_LBR_1 and INTEL_PT_LBR_2 */
1291#define LBRS_MAX (INTEL_PT_BLK_ITEM_ID_CNT * 3U)
1292
90e457f7
AH
1293static struct intel_pt_queue *intel_pt_alloc_queue(struct intel_pt *pt,
1294 unsigned int queue_nr)
1295{
1296 struct intel_pt_params params = { .get_trace = 0, };
9fb52336 1297 struct perf_env *env = pt->machine->env;
90e457f7
AH
1298 struct intel_pt_queue *ptq;
1299
1300 ptq = zalloc(sizeof(struct intel_pt_queue));
1301 if (!ptq)
1302 return NULL;
1303
1304 if (pt->synth_opts.callchain) {
2855c05c 1305 ptq->chain = intel_pt_alloc_chain(pt);
90e457f7
AH
1306 if (!ptq->chain)
1307 goto out_free;
1308 }
1309
961224db
AH
1310 if (pt->synth_opts.last_branch || pt->synth_opts.other_events) {
1311 unsigned int entry_cnt = max(LBRS_MAX, pt->br_stack_sz);
1312
1313 ptq->last_branch = intel_pt_alloc_br_stack(entry_cnt);
f14445ee
AH
1314 if (!ptq->last_branch)
1315 goto out_free;
f14445ee
AH
1316 }
1317
90e457f7
AH
1318 ptq->event_buf = malloc(PERF_SAMPLE_MAX_SIZE);
1319 if (!ptq->event_buf)
1320 goto out_free;
1321
1322 ptq->pt = pt;
1323 ptq->queue_nr = queue_nr;
1324 ptq->exclude_kernel = intel_pt_exclude_kernel(pt);
1325 ptq->pid = -1;
1326 ptq->tid = -1;
1327 ptq->cpu = -1;
1328 ptq->next_tid = -1;
1329
1330 params.get_trace = intel_pt_get_trace;
1331 params.walk_insn = intel_pt_walk_next_insn;
da9000ae 1332 params.lookahead = intel_pt_lookahead;
0fc9d338 1333 params.findnew_vmcs_info = intel_pt_findnew_vmcs_info;
90e457f7
AH
1334 params.data = ptq;
1335 params.return_compression = intel_pt_return_compression(pt);
83959817 1336 params.branch_enable = intel_pt_branch_enable(pt);
6af4b600 1337 params.ctl = intel_pt_ctl(pt);
90e457f7 1338 params.max_non_turbo_ratio = pt->max_non_turbo_ratio;
11fa7cb8
AH
1339 params.mtc_period = intel_pt_mtc_period(pt);
1340 params.tsc_ctc_ratio_n = pt->tsc_ctc_ratio_n;
1341 params.tsc_ctc_ratio_d = pt->tsc_ctc_ratio_d;
7c1b16ba 1342 params.quick = pt->synth_opts.quick;
e3ff42bd
AH
1343 params.vm_time_correlation = pt->synth_opts.vm_time_correlation;
1344 params.vm_tm_corr_dry_run = pt->synth_opts.vm_tm_corr_dry_run;
5ac35d77 1345 params.first_timestamp = pt->first_timestamp;
b4b046ff 1346 params.max_loops = pt->max_loops;
90e457f7 1347
e9240355
AH
1348 /* Cannot walk code without TNT, so force 'quick' mode */
1349 if (params.branch_enable && intel_pt_disabled_tnt(pt) && !params.quick)
1350 params.quick = 1;
1351
2acee108
AH
1352 if (pt->filts.cnt > 0)
1353 params.pgd_ip = intel_pt_pgd_ip;
1354
7e55b956 1355 if (pt->synth_opts.instructions || pt->synth_opts.cycles) {
90e457f7
AH
1356 if (pt->synth_opts.period) {
1357 switch (pt->synth_opts.period_type) {
1358 case PERF_ITRACE_PERIOD_INSTRUCTIONS:
1359 params.period_type =
1360 INTEL_PT_PERIOD_INSTRUCTIONS;
1361 params.period = pt->synth_opts.period;
1362 break;
1363 case PERF_ITRACE_PERIOD_TICKS:
1364 params.period_type = INTEL_PT_PERIOD_TICKS;
1365 params.period = pt->synth_opts.period;
1366 break;
1367 case PERF_ITRACE_PERIOD_NANOSECS:
1368 params.period_type = INTEL_PT_PERIOD_TICKS;
1369 params.period = intel_pt_ns_to_ticks(pt,
1370 pt->synth_opts.period);
1371 break;
1372 default:
1373 break;
1374 }
1375 }
1376
1377 if (!params.period) {
1378 params.period_type = INTEL_PT_PERIOD_INSTRUCTIONS;
e1791347 1379 params.period = 1;
90e457f7
AH
1380 }
1381 }
1382
9fb52336
AH
1383 if (env->cpuid && !strncmp(env->cpuid, "GenuineIntel,6,92,", 18))
1384 params.flags |= INTEL_PT_FUP_WITH_NLIP;
1385
90e457f7
AH
1386 ptq->decoder = intel_pt_decoder_new(&params);
1387 if (!ptq->decoder)
1388 goto out_free;
1389
1390 return ptq;
1391
1392out_free:
1393 zfree(&ptq->event_buf);
f14445ee 1394 zfree(&ptq->last_branch);
90e457f7
AH
1395 zfree(&ptq->chain);
1396 free(ptq);
1397 return NULL;
1398}
1399
1400static void intel_pt_free_queue(void *priv)
1401{
1402 struct intel_pt_queue *ptq = priv;
1403
1404 if (!ptq)
1405 return;
1406 thread__zput(ptq->thread);
5d2b6bc3 1407 thread__zput(ptq->guest_thread);
6e86bfdc 1408 thread__zput(ptq->unknown_guest_thread);
90e457f7
AH
1409 intel_pt_decoder_free(ptq->decoder);
1410 zfree(&ptq->event_buf);
f14445ee 1411 zfree(&ptq->last_branch);
90e457f7
AH
1412 zfree(&ptq->chain);
1413 free(ptq);
1414}
1415
5ac35d77
AH
1416static void intel_pt_first_timestamp(struct intel_pt *pt, u64 timestamp)
1417{
1418 unsigned int i;
1419
1420 pt->first_timestamp = timestamp;
1421
1422 for (i = 0; i < pt->queues.nr_queues; i++) {
1423 struct auxtrace_queue *queue = &pt->queues.queue_array[i];
1424 struct intel_pt_queue *ptq = queue->priv;
1425
1426 if (ptq && ptq->decoder)
1427 intel_pt_set_first_timestamp(ptq->decoder, timestamp);
1428 }
1429}
1430
71658de4
AH
1431static int intel_pt_get_guest_from_sideband(struct intel_pt_queue *ptq)
1432{
1433 struct machines *machines = &ptq->pt->session->machines;
1434 struct machine *machine;
1435 pid_t machine_pid = ptq->pid;
1436 pid_t tid;
1437 int vcpu;
1438
1439 if (machine_pid <= 0)
1440 return 0; /* Not a guest machine */
1441
1442 machine = machines__find(machines, machine_pid);
1443 if (!machine)
1444 return 0; /* Not a guest machine */
1445
1446 if (ptq->guest_machine != machine) {
1447 ptq->guest_machine = NULL;
1448 thread__zput(ptq->guest_thread);
1449 thread__zput(ptq->unknown_guest_thread);
1450
1451 ptq->unknown_guest_thread = machine__find_thread(machine, 0, 0);
1452 if (!ptq->unknown_guest_thread)
1453 return -1;
1454 ptq->guest_machine = machine;
1455 }
1456
ee84a303 1457 vcpu = ptq->thread ? thread__guest_cpu(ptq->thread) : -1;
71658de4
AH
1458 if (vcpu < 0)
1459 return -1;
1460
1461 tid = machine__get_current_tid(machine, vcpu);
1462
ee84a303 1463 if (ptq->guest_thread && thread__tid(ptq->guest_thread) != tid)
71658de4
AH
1464 thread__zput(ptq->guest_thread);
1465
1466 if (!ptq->guest_thread) {
1467 ptq->guest_thread = machine__find_thread(machine, -1, tid);
1468 if (!ptq->guest_thread)
1469 return -1;
1470 }
1471
1472 ptq->guest_machine_pid = machine_pid;
ee84a303 1473 ptq->guest_pid = thread__pid(ptq->guest_thread);
71658de4
AH
1474 ptq->guest_tid = tid;
1475 ptq->vcpu = vcpu;
1476
1477 return 0;
1478}
1479
90e457f7
AH
1480static void intel_pt_set_pid_tid_cpu(struct intel_pt *pt,
1481 struct auxtrace_queue *queue)
1482{
1483 struct intel_pt_queue *ptq = queue->priv;
1484
1485 if (queue->tid == -1 || pt->have_sched_switch) {
1486 ptq->tid = machine__get_current_tid(pt->machine, ptq->cpu);
7d537a8d
AH
1487 if (ptq->tid == -1)
1488 ptq->pid = -1;
90e457f7
AH
1489 thread__zput(ptq->thread);
1490 }
1491
1492 if (!ptq->thread && ptq->tid != -1)
1493 ptq->thread = machine__find_thread(pt->machine, -1, ptq->tid);
1494
1495 if (ptq->thread) {
ee84a303 1496 ptq->pid = thread__pid(ptq->thread);
90e457f7 1497 if (queue->cpu == -1)
ee84a303 1498 ptq->cpu = thread__cpu(ptq->thread);
90e457f7 1499 }
71658de4
AH
1500
1501 if (pt->have_guest_sideband && intel_pt_get_guest_from_sideband(ptq)) {
1502 ptq->guest_machine_pid = 0;
1503 ptq->guest_pid = -1;
1504 ptq->guest_tid = -1;
1505 ptq->vcpu = -1;
1506 }
90e457f7
AH
1507}
1508
1509static void intel_pt_sample_flags(struct intel_pt_queue *ptq)
1510{
11f18e47
AH
1511 struct intel_pt *pt = ptq->pt;
1512
c954eb72 1513 ptq->insn_len = 0;
90e457f7
AH
1514 if (ptq->state->flags & INTEL_PT_ABORT_TX) {
1515 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT;
1516 } else if (ptq->state->flags & INTEL_PT_ASYNC) {
695fc451
AH
1517 if (!ptq->state->to_ip)
1518 ptq->flags = PERF_IP_FLAG_BRANCH |
f2d87895 1519 PERF_IP_FLAG_ASYNC |
695fc451
AH
1520 PERF_IP_FLAG_TRACE_END;
1521 else if (ptq->state->from_nr && !ptq->state->to_nr)
1522 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL |
f2d87895 1523 PERF_IP_FLAG_ASYNC |
695fc451
AH
1524 PERF_IP_FLAG_VMEXIT;
1525 else
90e457f7
AH
1526 ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL |
1527 PERF_IP_FLAG_ASYNC |
1528 PERF_IP_FLAG_INTERRUPT;
90e457f7
AH
1529 } else {
1530 if (ptq->state->from_ip)
1531 ptq->flags = intel_pt_insn_type(ptq->state->insn_op);
1532 else
1533 ptq->flags = PERF_IP_FLAG_BRANCH |
1534 PERF_IP_FLAG_TRACE_BEGIN;
1535 if (ptq->state->flags & INTEL_PT_IN_TX)
1536 ptq->flags |= PERF_IP_FLAG_IN_TX;
1537 ptq->insn_len = ptq->state->insn_len;
faaa8768 1538 memcpy(ptq->insn, ptq->state->insn, INTEL_PT_INSN_BUF_SZ);
90e457f7 1539 }
c6b5da09
AH
1540
1541 if (ptq->state->type & INTEL_PT_TRACE_BEGIN)
1542 ptq->flags |= PERF_IP_FLAG_TRACE_BEGIN;
1543 if (ptq->state->type & INTEL_PT_TRACE_END)
1544 ptq->flags |= PERF_IP_FLAG_TRACE_END;
11f18e47
AH
1545
1546 if (pt->cap_event_trace) {
1547 if (ptq->state->type & INTEL_PT_IFLAG_CHG) {
1548 if (!ptq->state->from_iflag)
1549 ptq->flags |= PERF_IP_FLAG_INTR_DISABLE;
1550 if (ptq->state->from_iflag != ptq->state->to_iflag)
1551 ptq->flags |= PERF_IP_FLAG_INTR_TOGGLE;
1552 } else if (!ptq->state->to_iflag) {
1553 ptq->flags |= PERF_IP_FLAG_INTR_DISABLE;
1554 }
1555 }
90e457f7
AH
1556}
1557
2c47db90
AH
1558static void intel_pt_setup_time_range(struct intel_pt *pt,
1559 struct intel_pt_queue *ptq)
1560{
1561 if (!pt->range_cnt)
1562 return;
1563
1564 ptq->sel_timestamp = pt->time_ranges[0].start;
1565 ptq->sel_idx = 0;
1566
1567 if (ptq->sel_timestamp) {
1568 ptq->sel_start = true;
1569 } else {
1570 ptq->sel_timestamp = pt->time_ranges[0].end;
1571 ptq->sel_start = false;
1572 }
1573}
1574
90e457f7
AH
1575static int intel_pt_setup_queue(struct intel_pt *pt,
1576 struct auxtrace_queue *queue,
1577 unsigned int queue_nr)
1578{
1579 struct intel_pt_queue *ptq = queue->priv;
1580
1581 if (list_empty(&queue->head))
1582 return 0;
1583
1584 if (!ptq) {
1585 ptq = intel_pt_alloc_queue(pt, queue_nr);
1586 if (!ptq)
1587 return -ENOMEM;
1588 queue->priv = ptq;
1589
1590 if (queue->cpu != -1)
1591 ptq->cpu = queue->cpu;
1592 ptq->tid = queue->tid;
1593
5fe2cf7d
AH
1594 ptq->cbr_seen = UINT_MAX;
1595
1c071c80
AH
1596 if (pt->sampling_mode && !pt->snapshot_mode &&
1597 pt->timeless_decoding)
1598 ptq->step_through_buffers = true;
63d8e38f
AH
1599
1600 ptq->sync_switch = pt->sync_switch;
2c47db90
AH
1601
1602 intel_pt_setup_time_range(pt, ptq);
90e457f7
AH
1603 }
1604
1605 if (!ptq->on_heap &&
63d8e38f 1606 (!ptq->sync_switch ||
90e457f7
AH
1607 ptq->switch_state != INTEL_PT_SS_EXPECTING_SWITCH_EVENT)) {
1608 const struct intel_pt_state *state;
1609 int ret;
1610
1611 if (pt->timeless_decoding)
1612 return 0;
1613
1614 intel_pt_log("queue %u getting timestamp\n", queue_nr);
1615 intel_pt_log("queue %u decoding cpu %d pid %d tid %d\n",
1616 queue_nr, ptq->cpu, ptq->pid, ptq->tid);
2c47db90
AH
1617
1618 if (ptq->sel_start && ptq->sel_timestamp) {
1619 ret = intel_pt_fast_forward(ptq->decoder,
1620 ptq->sel_timestamp);
1621 if (ret)
1622 return ret;
1623 }
1624
90e457f7
AH
1625 while (1) {
1626 state = intel_pt_decode(ptq->decoder);
1627 if (state->err) {
1628 if (state->err == INTEL_PT_ERR_NODATA) {
1629 intel_pt_log("queue %u has no timestamp\n",
1630 queue_nr);
1631 return 0;
1632 }
1633 continue;
1634 }
1635 if (state->timestamp)
1636 break;
1637 }
1638
1639 ptq->timestamp = state->timestamp;
1640 intel_pt_log("queue %u timestamp 0x%" PRIx64 "\n",
1641 queue_nr, ptq->timestamp);
1642 ptq->state = state;
1643 ptq->have_sample = true;
2c47db90
AH
1644 if (ptq->sel_start && ptq->sel_timestamp &&
1645 ptq->timestamp < ptq->sel_timestamp)
1646 ptq->have_sample = false;
90e457f7
AH
1647 intel_pt_sample_flags(ptq);
1648 ret = auxtrace_heap__add(&pt->heap, queue_nr, ptq->timestamp);
1649 if (ret)
1650 return ret;
1651 ptq->on_heap = true;
1652 }
1653
1654 return 0;
1655}
1656
1657static int intel_pt_setup_queues(struct intel_pt *pt)
1658{
1659 unsigned int i;
1660 int ret;
1661
1662 for (i = 0; i < pt->queues.nr_queues; i++) {
1663 ret = intel_pt_setup_queue(pt, &pt->queues.queue_array[i], i);
1664 if (ret)
1665 return ret;
1666 }
1667 return 0;
1668}
1669
0f3e5379
AH
1670static inline bool intel_pt_skip_event(struct intel_pt *pt)
1671{
1672 return pt->synth_opts.initial_skip &&
1673 pt->num_events++ < pt->synth_opts.initial_skip;
1674}
1675
5fe2cf7d
AH
1676/*
1677 * Cannot count CBR as skipped because it won't go away until cbr == cbr_seen.
1678 * Also ensure CBR is first non-skipped event by allowing for 4 more samples
1679 * from this decoder state.
1680 */
1681static inline bool intel_pt_skip_cbr_event(struct intel_pt *pt)
1682{
1683 return pt->synth_opts.initial_skip &&
1684 pt->num_events + 4 < pt->synth_opts.initial_skip;
1685}
1686
0dfded34
AH
1687static void intel_pt_prep_a_sample(struct intel_pt_queue *ptq,
1688 union perf_event *event,
1689 struct perf_sample *sample)
1690{
1691 event->sample.header.type = PERF_RECORD_SAMPLE;
1692 event->sample.header.size = sizeof(struct perf_event_header);
1693
1694 sample->pid = ptq->pid;
1695 sample->tid = ptq->tid;
98759cca
AH
1696
1697 if (ptq->pt->have_guest_sideband) {
1698 if ((ptq->state->from_ip && ptq->state->from_nr) ||
1699 (ptq->state->to_ip && ptq->state->to_nr)) {
1700 sample->pid = ptq->guest_pid;
1701 sample->tid = ptq->guest_tid;
1702 sample->machine_pid = ptq->guest_machine_pid;
1703 sample->vcpu = ptq->vcpu;
1704 }
1705 }
1706
0dfded34
AH
1707 sample->cpu = ptq->cpu;
1708 sample->insn_len = ptq->insn_len;
1709 memcpy(sample->insn, ptq->insn, INTEL_PT_INSN_BUF_SZ);
1710}
1711
0f3e5379
AH
1712static void intel_pt_prep_b_sample(struct intel_pt *pt,
1713 struct intel_pt_queue *ptq,
1714 union perf_event *event,
1715 struct perf_sample *sample)
1716{
0dfded34
AH
1717 intel_pt_prep_a_sample(ptq, event, sample);
1718
0f3e5379
AH
1719 if (!pt->timeless_decoding)
1720 sample->time = tsc_to_perf_time(ptq->timestamp, &pt->tc);
1721
0f3e5379 1722 sample->ip = ptq->state->from_ip;
0f3e5379 1723 sample->addr = ptq->state->to_ip;
6e86bfdc 1724 sample->cpumode = intel_pt_cpumode(ptq, sample->ip, sample->addr);
0f3e5379 1725 sample->period = 1;
0f3e5379 1726 sample->flags = ptq->flags;
5d4f0eda 1727
5d4f0eda 1728 event->sample.header.misc = sample->cpumode;
0f3e5379
AH
1729}
1730
90e457f7 1731static int intel_pt_inject_event(union perf_event *event,
a10eb530 1732 struct perf_sample *sample, u64 type)
90e457f7
AH
1733{
1734 event->header.size = perf_event__sample_event_size(sample, type, 0);
936f1f30 1735 return perf_event__synthesize_sample(event, type, 0, sample);
90e457f7
AH
1736}
1737
0f3e5379
AH
1738static inline int intel_pt_opt_inject(struct intel_pt *pt,
1739 union perf_event *event,
1740 struct perf_sample *sample, u64 type)
1741{
1742 if (!pt->synth_opts.inject)
1743 return 0;
1744
a10eb530 1745 return intel_pt_inject_event(event, sample, type);
0f3e5379
AH
1746}
1747
cf888e08
AH
1748static int intel_pt_deliver_synth_event(struct intel_pt *pt,
1749 union perf_event *event,
1750 struct perf_sample *sample, u64 type)
90e457f7
AH
1751{
1752 int ret;
0f3e5379
AH
1753
1754 ret = intel_pt_opt_inject(pt, event, sample, type);
1755 if (ret)
1756 return ret;
1757
1758 ret = perf_session__deliver_synth_event(pt->session, event, sample);
1759 if (ret)
1760 pr_err("Intel PT: failed to deliver event, error %d\n", ret);
1761
1762 return ret;
1763}
1764
1765static int intel_pt_synth_branch_sample(struct intel_pt_queue *ptq)
1766{
90e457f7
AH
1767 struct intel_pt *pt = ptq->pt;
1768 union perf_event *event = ptq->event_buf;
dc6d2bc2 1769 struct perf_sample sample;
f14445ee
AH
1770 struct dummy_branch_stack {
1771 u64 nr;
42bbabed 1772 u64 hw_idx;
f14445ee
AH
1773 struct branch_entry entries;
1774 } dummy_bs;
dc6d2bc2 1775 int ret;
90e457f7 1776
385e3306
AH
1777 if (pt->branches_filter && !(pt->branches_filter & ptq->flags))
1778 return 0;
1779
0f3e5379 1780 if (intel_pt_skip_event(pt))
d1706b39
AK
1781 return 0;
1782
dc6d2bc2 1783 perf_sample__init(&sample, /*all=*/true);
0f3e5379 1784 intel_pt_prep_b_sample(pt, ptq, event, &sample);
90e457f7 1785
90e457f7
AH
1786 sample.id = ptq->pt->branches_id;
1787 sample.stream_id = ptq->pt->branches_id;
90e457f7 1788
f14445ee
AH
1789 /*
1790 * perf report cannot handle events without a branch stack when using
1791 * SORT_MODE__BRANCH so make a dummy one.
1792 */
1793 if (pt->synth_opts.last_branch && sort__mode == SORT_MODE__BRANCH) {
1794 dummy_bs = (struct dummy_branch_stack){
1795 .nr = 1,
42bbabed 1796 .hw_idx = -1ULL,
f14445ee
AH
1797 .entries = {
1798 .from = sample.ip,
1799 .to = sample.addr,
1800 },
1801 };
1802 sample.branch_stack = (struct branch_stack *)&dummy_bs;
1803 }
1804
f2b91386 1805 if (ptq->sample_ipc)
20aa3970 1806 sample.cyc_cnt = ptq->ipc_cyc_cnt - ptq->last_br_cyc_cnt;
5b1dc0fd
AH
1807 if (sample.cyc_cnt) {
1808 sample.insn_cnt = ptq->ipc_insn_cnt - ptq->last_br_insn_cnt;
1809 ptq->last_br_insn_cnt = ptq->ipc_insn_cnt;
1810 ptq->last_br_cyc_cnt = ptq->ipc_cyc_cnt;
1811 }
1812
dc6d2bc2
IR
1813 perf_sample__exit(&sample);
1814 ret = intel_pt_deliver_synth_event(pt, event, &sample,
cf888e08 1815 pt->branches_sample_type);
dc6d2bc2 1816 return ret;
90e457f7
AH
1817}
1818
0f3e5379
AH
1819static void intel_pt_prep_sample(struct intel_pt *pt,
1820 struct intel_pt_queue *ptq,
1821 union perf_event *event,
1822 struct perf_sample *sample)
90e457f7 1823{
0f3e5379 1824 intel_pt_prep_b_sample(pt, ptq, event, sample);
2a21d036 1825
90e457f7 1826 if (pt->synth_opts.callchain) {
256d92bc 1827 thread_stack__sample(ptq->thread, ptq->cpu, ptq->chain,
24248306
AH
1828 pt->synth_opts.callchain_sz + 1,
1829 sample->ip, pt->kernel_start);
0f3e5379 1830 sample->callchain = ptq->chain;
90e457f7
AH
1831 }
1832
f14445ee 1833 if (pt->synth_opts.last_branch) {
cf888e08
AH
1834 thread_stack__br_sample(ptq->thread, ptq->cpu, ptq->last_branch,
1835 pt->br_stack_sz);
0f3e5379 1836 sample->branch_stack = ptq->last_branch;
f14445ee 1837 }
0f3e5379 1838}
f14445ee 1839
0f3e5379 1840static int intel_pt_synth_instruction_sample(struct intel_pt_queue *ptq)
90e457f7 1841{
90e457f7
AH
1842 struct intel_pt *pt = ptq->pt;
1843 union perf_event *event = ptq->event_buf;
dc6d2bc2
IR
1844 struct perf_sample sample;
1845 int ret;
90e457f7 1846
0f3e5379 1847 if (intel_pt_skip_event(pt))
d1706b39
AK
1848 return 0;
1849
dc6d2bc2 1850 perf_sample__init(&sample, /*all=*/true);
0f3e5379 1851 intel_pt_prep_sample(pt, ptq, event, &sample);
90e457f7 1852
0f3e5379
AH
1853 sample.id = ptq->pt->instructions_id;
1854 sample.stream_id = ptq->pt->instructions_id;
7c1b16ba
AH
1855 if (pt->synth_opts.quick)
1856 sample.period = 1;
1857 else
1858 sample.period = ptq->state->tot_insn_cnt - ptq->last_insn_cnt;
90e457f7 1859
f2b91386 1860 if (ptq->sample_ipc)
20aa3970 1861 sample.cyc_cnt = ptq->ipc_cyc_cnt - ptq->last_in_cyc_cnt;
5b1dc0fd
AH
1862 if (sample.cyc_cnt) {
1863 sample.insn_cnt = ptq->ipc_insn_cnt - ptq->last_in_insn_cnt;
1864 ptq->last_in_insn_cnt = ptq->ipc_insn_cnt;
1865 ptq->last_in_cyc_cnt = ptq->ipc_cyc_cnt;
1866 }
1867
0f3e5379 1868 ptq->last_insn_cnt = ptq->state->tot_insn_cnt;
90e457f7 1869
dc6d2bc2
IR
1870 ret = intel_pt_deliver_synth_event(pt, event, &sample,
1871 pt->instructions_sample_type);
1872 perf_sample__exit(&sample);
1873 return ret;
0f3e5379 1874}
90e457f7 1875
7e55b956
SG
1876static int intel_pt_synth_cycle_sample(struct intel_pt_queue *ptq)
1877{
1878 struct intel_pt *pt = ptq->pt;
1879 union perf_event *event = ptq->event_buf;
dc6d2bc2 1880 struct perf_sample sample;
7e55b956 1881 u64 period = 0;
dc6d2bc2 1882 int ret;
7e55b956
SG
1883
1884 if (ptq->sample_ipc)
1885 period = ptq->ipc_cyc_cnt - ptq->last_cy_cyc_cnt;
1886
1887 if (!period || intel_pt_skip_event(pt))
1888 return 0;
1889
dc6d2bc2 1890 perf_sample__init(&sample, /*all=*/true);
7e55b956
SG
1891 intel_pt_prep_sample(pt, ptq, event, &sample);
1892
1893 sample.id = ptq->pt->cycles_id;
1894 sample.stream_id = ptq->pt->cycles_id;
1895 sample.period = period;
1896
1897 sample.cyc_cnt = period;
1898 sample.insn_cnt = ptq->ipc_insn_cnt - ptq->last_cy_insn_cnt;
1899 ptq->last_cy_insn_cnt = ptq->ipc_insn_cnt;
1900 ptq->last_cy_cyc_cnt = ptq->ipc_cyc_cnt;
1901
dc6d2bc2
IR
1902 ret = intel_pt_deliver_synth_event(pt, event, &sample, pt->cycles_sample_type);
1903 perf_sample__exit(&sample);
1904 return ret;
7e55b956
SG
1905}
1906
0f3e5379
AH
1907static int intel_pt_synth_transaction_sample(struct intel_pt_queue *ptq)
1908{
1909 struct intel_pt *pt = ptq->pt;
1910 union perf_event *event = ptq->event_buf;
dc6d2bc2
IR
1911 struct perf_sample sample;
1912 int ret;
f14445ee 1913
0f3e5379
AH
1914 if (intel_pt_skip_event(pt))
1915 return 0;
90e457f7 1916
dc6d2bc2 1917 perf_sample__init(&sample, /*all=*/true);
0f3e5379 1918 intel_pt_prep_sample(pt, ptq, event, &sample);
90e457f7 1919
0f3e5379
AH
1920 sample.id = ptq->pt->transactions_id;
1921 sample.stream_id = ptq->pt->transactions_id;
f14445ee 1922
dc6d2bc2
IR
1923 ret = intel_pt_deliver_synth_event(pt, event, &sample,
1924 pt->transactions_sample_type);
1925 perf_sample__exit(&sample);
1926 return ret;
90e457f7
AH
1927}
1928
37973075
AH
1929static void intel_pt_prep_p_sample(struct intel_pt *pt,
1930 struct intel_pt_queue *ptq,
1931 union perf_event *event,
1932 struct perf_sample *sample)
1933{
1934 intel_pt_prep_sample(pt, ptq, event, sample);
1935
1936 /*
1937 * Zero IP is used to mean "trace start" but that is not the case for
1938 * power or PTWRITE events with no IP, so clear the flags.
1939 */
1940 if (!sample->ip)
1941 sample->flags = 0;
1942}
1943
1944static int intel_pt_synth_ptwrite_sample(struct intel_pt_queue *ptq)
1945{
1946 struct intel_pt *pt = ptq->pt;
1947 union perf_event *event = ptq->event_buf;
1948 struct perf_sample sample = { .ip = 0, };
1949 struct perf_synth_intel_ptwrite raw;
1950
1951 if (intel_pt_skip_event(pt))
1952 return 0;
1953
1954 intel_pt_prep_p_sample(pt, ptq, event, &sample);
1955
1956 sample.id = ptq->pt->ptwrites_id;
1957 sample.stream_id = ptq->pt->ptwrites_id;
1958
1959 raw.flags = 0;
1960 raw.ip = !!(ptq->state->flags & INTEL_PT_FUP_IP);
1961 raw.payload = cpu_to_le64(ptq->state->ptw_payload);
1962
1963 sample.raw_size = perf_synth__raw_size(raw);
1964 sample.raw_data = perf_synth__raw_data(&raw);
1965
cf888e08 1966 return intel_pt_deliver_synth_event(pt, event, &sample,
37973075
AH
1967 pt->ptwrites_sample_type);
1968}
1969
1970static int intel_pt_synth_cbr_sample(struct intel_pt_queue *ptq)
1971{
1972 struct intel_pt *pt = ptq->pt;
1973 union perf_event *event = ptq->event_buf;
dc6d2bc2 1974 struct perf_sample sample;
37973075
AH
1975 struct perf_synth_intel_cbr raw;
1976 u32 flags;
dc6d2bc2 1977 int ret;
37973075 1978
5fe2cf7d 1979 if (intel_pt_skip_cbr_event(pt))
37973075
AH
1980 return 0;
1981
5fe2cf7d
AH
1982 ptq->cbr_seen = ptq->state->cbr;
1983
dc6d2bc2 1984 perf_sample__init(&sample, /*all=*/true);
37973075
AH
1985 intel_pt_prep_p_sample(pt, ptq, event, &sample);
1986
1987 sample.id = ptq->pt->cbr_id;
1988 sample.stream_id = ptq->pt->cbr_id;
1989
1990 flags = (u16)ptq->state->cbr_payload | (pt->max_non_turbo_ratio << 16);
1991 raw.flags = cpu_to_le32(flags);
1992 raw.freq = cpu_to_le32(raw.cbr * pt->cbr2khz);
1993 raw.reserved3 = 0;
1994
1995 sample.raw_size = perf_synth__raw_size(raw);
1996 sample.raw_data = perf_synth__raw_data(&raw);
1997
dc6d2bc2
IR
1998 ret = intel_pt_deliver_synth_event(pt, event, &sample,
1999 pt->pwr_events_sample_type);
2000 perf_sample__exit(&sample);
2001 return ret;
37973075
AH
2002}
2003
c840cbfe
AH
2004static int intel_pt_synth_psb_sample(struct intel_pt_queue *ptq)
2005{
2006 struct intel_pt *pt = ptq->pt;
2007 union perf_event *event = ptq->event_buf;
dc6d2bc2 2008 struct perf_sample sample;
c840cbfe 2009 struct perf_synth_intel_psb raw;
dc6d2bc2 2010 int ret;
c840cbfe
AH
2011
2012 if (intel_pt_skip_event(pt))
2013 return 0;
2014
dc6d2bc2 2015 perf_sample__init(&sample, /*all=*/true);
c840cbfe
AH
2016 intel_pt_prep_p_sample(pt, ptq, event, &sample);
2017
2018 sample.id = ptq->pt->psb_id;
2019 sample.stream_id = ptq->pt->psb_id;
2020 sample.flags = 0;
2021
2022 raw.reserved = 0;
2023 raw.offset = ptq->state->psb_offset;
2024
2025 sample.raw_size = perf_synth__raw_size(raw);
2026 sample.raw_data = perf_synth__raw_data(&raw);
2027
dc6d2bc2
IR
2028 ret = intel_pt_deliver_synth_event(pt, event, &sample,
2029 pt->pwr_events_sample_type);
2030 perf_sample__exit(&sample);
2031 return ret;
c840cbfe
AH
2032}
2033
37973075
AH
2034static int intel_pt_synth_mwait_sample(struct intel_pt_queue *ptq)
2035{
2036 struct intel_pt *pt = ptq->pt;
2037 union perf_event *event = ptq->event_buf;
dc6d2bc2 2038 struct perf_sample sample;
37973075 2039 struct perf_synth_intel_mwait raw;
dc6d2bc2 2040 int ret;
37973075
AH
2041
2042 if (intel_pt_skip_event(pt))
2043 return 0;
2044
dc6d2bc2 2045 perf_sample__init(&sample, /*all=*/true);
37973075
AH
2046 intel_pt_prep_p_sample(pt, ptq, event, &sample);
2047
2048 sample.id = ptq->pt->mwait_id;
2049 sample.stream_id = ptq->pt->mwait_id;
2050
2051 raw.reserved = 0;
2052 raw.payload = cpu_to_le64(ptq->state->mwait_payload);
2053
2054 sample.raw_size = perf_synth__raw_size(raw);
2055 sample.raw_data = perf_synth__raw_data(&raw);
2056
dc6d2bc2
IR
2057 ret = intel_pt_deliver_synth_event(pt, event, &sample,
2058 pt->pwr_events_sample_type);
2059 perf_sample__exit(&sample);
2060 return ret;
37973075
AH
2061}
2062
2063static int intel_pt_synth_pwre_sample(struct intel_pt_queue *ptq)
2064{
2065 struct intel_pt *pt = ptq->pt;
2066 union perf_event *event = ptq->event_buf;
dc6d2bc2 2067 struct perf_sample sample;
37973075 2068 struct perf_synth_intel_pwre raw;
dc6d2bc2 2069 int ret;
37973075
AH
2070
2071 if (intel_pt_skip_event(pt))
2072 return 0;
2073
dc6d2bc2 2074 perf_sample__init(&sample, /*all=*/true);
37973075
AH
2075 intel_pt_prep_p_sample(pt, ptq, event, &sample);
2076
2077 sample.id = ptq->pt->pwre_id;
2078 sample.stream_id = ptq->pt->pwre_id;
2079
2080 raw.reserved = 0;
2081 raw.payload = cpu_to_le64(ptq->state->pwre_payload);
2082
2083 sample.raw_size = perf_synth__raw_size(raw);
2084 sample.raw_data = perf_synth__raw_data(&raw);
2085
dc6d2bc2
IR
2086 ret = intel_pt_deliver_synth_event(pt, event, &sample,
2087 pt->pwr_events_sample_type);
2088 perf_sample__exit(&sample);
2089 return ret;
37973075
AH
2090}
2091
2092static int intel_pt_synth_exstop_sample(struct intel_pt_queue *ptq)
2093{
2094 struct intel_pt *pt = ptq->pt;
2095 union perf_event *event = ptq->event_buf;
dc6d2bc2 2096 struct perf_sample sample;
37973075 2097 struct perf_synth_intel_exstop raw;
dc6d2bc2 2098 int ret;
37973075
AH
2099
2100 if (intel_pt_skip_event(pt))
2101 return 0;
2102
dc6d2bc2 2103 perf_sample__init(&sample, /*all=*/true);
37973075
AH
2104 intel_pt_prep_p_sample(pt, ptq, event, &sample);
2105
2106 sample.id = ptq->pt->exstop_id;
2107 sample.stream_id = ptq->pt->exstop_id;
2108
2109 raw.flags = 0;
2110 raw.ip = !!(ptq->state->flags & INTEL_PT_FUP_IP);
2111
2112 sample.raw_size = perf_synth__raw_size(raw);
2113 sample.raw_data = perf_synth__raw_data(&raw);
2114
dc6d2bc2
IR
2115 ret = intel_pt_deliver_synth_event(pt, event, &sample,
2116 pt->pwr_events_sample_type);
2117 perf_sample__exit(&sample);
2118 return ret;
37973075
AH
2119}
2120
2121static int intel_pt_synth_pwrx_sample(struct intel_pt_queue *ptq)
2122{
2123 struct intel_pt *pt = ptq->pt;
2124 union perf_event *event = ptq->event_buf;
dc6d2bc2 2125 struct perf_sample sample;
37973075 2126 struct perf_synth_intel_pwrx raw;
dc6d2bc2 2127 int ret;
37973075
AH
2128
2129 if (intel_pt_skip_event(pt))
2130 return 0;
2131
dc6d2bc2 2132 perf_sample__init(&sample, /*all=*/true);
37973075
AH
2133 intel_pt_prep_p_sample(pt, ptq, event, &sample);
2134
2135 sample.id = ptq->pt->pwrx_id;
2136 sample.stream_id = ptq->pt->pwrx_id;
2137
2138 raw.reserved = 0;
2139 raw.payload = cpu_to_le64(ptq->state->pwrx_payload);
2140
2141 sample.raw_size = perf_synth__raw_size(raw);
2142 sample.raw_data = perf_synth__raw_data(&raw);
2143
dc6d2bc2
IR
2144 ret = intel_pt_deliver_synth_event(pt, event, &sample,
2145 pt->pwr_events_sample_type);
2146 perf_sample__exit(&sample);
2147 return ret;
37973075
AH
2148}
2149
9e9a618a
AH
2150/*
2151 * PEBS gp_regs array indexes plus 1 so that 0 means not present. Refer
2152 * intel_pt_add_gp_regs().
2153 */
2154static const int pebs_gp_regs[] = {
2155 [PERF_REG_X86_FLAGS] = 1,
2156 [PERF_REG_X86_IP] = 2,
2157 [PERF_REG_X86_AX] = 3,
2158 [PERF_REG_X86_CX] = 4,
2159 [PERF_REG_X86_DX] = 5,
2160 [PERF_REG_X86_BX] = 6,
2161 [PERF_REG_X86_SP] = 7,
2162 [PERF_REG_X86_BP] = 8,
2163 [PERF_REG_X86_SI] = 9,
2164 [PERF_REG_X86_DI] = 10,
2165 [PERF_REG_X86_R8] = 11,
2166 [PERF_REG_X86_R9] = 12,
2167 [PERF_REG_X86_R10] = 13,
2168 [PERF_REG_X86_R11] = 14,
2169 [PERF_REG_X86_R12] = 15,
2170 [PERF_REG_X86_R13] = 16,
2171 [PERF_REG_X86_R14] = 17,
2172 [PERF_REG_X86_R15] = 18,
2173};
2174
2175static u64 *intel_pt_add_gp_regs(struct regs_dump *intr_regs, u64 *pos,
2176 const struct intel_pt_blk_items *items,
2177 u64 regs_mask)
2178{
2179 const u64 *gp_regs = items->val[INTEL_PT_GP_REGS_POS];
2180 u32 mask = items->mask[INTEL_PT_GP_REGS_POS];
2181 u32 bit;
2182 int i;
2183
2184 for (i = 0, bit = 1; i < PERF_REG_X86_64_MAX; i++, bit <<= 1) {
2185 /* Get the PEBS gp_regs array index */
2186 int n = pebs_gp_regs[i] - 1;
2187
2188 if (n < 0)
2189 continue;
2190 /*
2191 * Add only registers that were requested (i.e. 'regs_mask') and
2192 * that were provided (i.e. 'mask'), and update the resulting
2193 * mask (i.e. 'intr_regs->mask') accordingly.
2194 */
2195 if (mask & 1 << n && regs_mask & bit) {
2196 intr_regs->mask |= bit;
2197 *pos++ = gp_regs[n];
2198 }
2199 }
2200
2201 return pos;
2202}
2203
143d34a6
AH
2204#ifndef PERF_REG_X86_XMM0
2205#define PERF_REG_X86_XMM0 32
2206#endif
2207
2208static void intel_pt_add_xmm(struct regs_dump *intr_regs, u64 *pos,
2209 const struct intel_pt_blk_items *items,
2210 u64 regs_mask)
2211{
2212 u32 mask = items->has_xmm & (regs_mask >> PERF_REG_X86_XMM0);
2213 const u64 *xmm = items->xmm;
2214
2215 /*
2216 * If there are any XMM registers, then there should be all of them.
2217 * Nevertheless, follow the logic to add only registers that were
2218 * requested (i.e. 'regs_mask') and that were provided (i.e. 'mask'),
2219 * and update the resulting mask (i.e. 'intr_regs->mask') accordingly.
2220 */
2221 intr_regs->mask |= (u64)mask << PERF_REG_X86_XMM0;
2222
2223 for (; mask; mask >>= 1, xmm++) {
2224 if (mask & 1)
2225 *pos++ = *xmm;
2226 }
2227}
2228
aa62afd7
AH
2229#define LBR_INFO_MISPRED (1ULL << 63)
2230#define LBR_INFO_IN_TX (1ULL << 62)
2231#define LBR_INFO_ABORT (1ULL << 61)
2232#define LBR_INFO_CYCLES 0xffff
2233
2234/* Refer kernel's intel_pmu_store_pebs_lbrs() */
2235static u64 intel_pt_lbr_flags(u64 info)
2236{
2237 union {
2238 struct branch_flags flags;
2239 u64 result;
ff165628
KL
2240 } u;
2241
2242 u.result = 0;
2243 u.flags.mispred = !!(info & LBR_INFO_MISPRED);
2244 u.flags.predicted = !(info & LBR_INFO_MISPRED);
2245 u.flags.in_tx = !!(info & LBR_INFO_IN_TX);
2246 u.flags.abort = !!(info & LBR_INFO_ABORT);
2247 u.flags.cycles = info & LBR_INFO_CYCLES;
aa62afd7
AH
2248
2249 return u.result;
2250}
2251
2252static void intel_pt_add_lbrs(struct branch_stack *br_stack,
2253 const struct intel_pt_blk_items *items)
2254{
2255 u64 *to;
2256 int i;
2257
2258 br_stack->nr = 0;
2259
2260 to = &br_stack->entries[0].from;
2261
2262 for (i = INTEL_PT_LBR_0_POS; i <= INTEL_PT_LBR_2_POS; i++) {
2263 u32 mask = items->mask[i];
2264 const u64 *from = items->val[i];
2265
2266 for (; mask; mask >>= 3, from += 3) {
2267 if ((mask & 7) == 7) {
2268 *to++ = from[0];
2269 *to++ = from[1];
2270 *to++ = intel_pt_lbr_flags(from[2]);
2271 br_stack->nr += 1;
2272 }
2273 }
2274 }
2275}
2276
e00eac6b
AH
2277#define P(a, b) PERF_MEM_S(a, b)
2278#define OP_LH (P(OP, LOAD) | P(LVL, HIT))
2279#define LEVEL(x) P(LVLNUM, x)
2280#define REM P(REMOTE, REMOTE)
2281#define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS))
2282
2283#define PERF_PEBS_DATA_SOURCE_GRT_MAX 0x10
2284#define PERF_PEBS_DATA_SOURCE_GRT_MASK (PERF_PEBS_DATA_SOURCE_GRT_MAX - 1)
2285
2286/* Based on kernel __intel_pmu_pebs_data_source_grt() and pebs_data_source */
2287static const u64 pebs_data_source_grt[PERF_PEBS_DATA_SOURCE_GRT_MAX] = {
2288 P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA), /* L3 miss|SNP N/A */
2289 OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* L1 hit|SNP None */
2290 OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* LFB/MAB hit|SNP None */
2291 OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* L2 hit|SNP None */
2292 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, NONE), /* L3 hit|SNP None */
2293 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT), /* L3 hit|SNP Hit */
2294 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* L3 hit|SNP HitM */
2295 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* L3 hit|SNP HitM */
2296 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOPX, FWD), /* L3 hit|SNP Fwd */
2297 OP_LH | P(LVL, REM_CCE1) | REM | LEVEL(L3) | P(SNOOP, HITM), /* Remote L3 hit|SNP HitM */
2298 OP_LH | P(LVL, LOC_RAM) | LEVEL(RAM) | P(SNOOP, HIT), /* RAM hit|SNP Hit */
2299 OP_LH | P(LVL, REM_RAM1) | REM | LEVEL(L3) | P(SNOOP, HIT), /* Remote L3 hit|SNP Hit */
2300 OP_LH | P(LVL, LOC_RAM) | LEVEL(RAM) | SNOOP_NONE_MISS, /* RAM hit|SNP None or Miss */
2301 OP_LH | P(LVL, REM_RAM1) | LEVEL(RAM) | REM | SNOOP_NONE_MISS, /* Remote RAM hit|SNP None or Miss */
2302 OP_LH | P(LVL, IO) | LEVEL(NA) | P(SNOOP, NONE), /* I/O hit|SNP None */
2303 OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE), /* Uncached hit|SNP None */
2304};
2305
2306/* Based on kernel __intel_pmu_pebs_data_source_cmt() and pebs_data_source */
2307static const u64 pebs_data_source_cmt[PERF_PEBS_DATA_SOURCE_GRT_MAX] = {
2308 P(OP, LOAD) | P(LVL, MISS) | LEVEL(L3) | P(SNOOP, NA), /* L3 miss|SNP N/A */
2309 OP_LH | P(LVL, L1) | LEVEL(L1) | P(SNOOP, NONE), /* L1 hit|SNP None */
2310 OP_LH | P(LVL, LFB) | LEVEL(LFB) | P(SNOOP, NONE), /* LFB/MAB hit|SNP None */
2311 OP_LH | P(LVL, L2) | LEVEL(L2) | P(SNOOP, NONE), /* L2 hit|SNP None */
2312 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, NONE), /* L3 hit|SNP None */
2313 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, MISS), /* L3 hit|SNP Hit */
2314 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HIT), /* L3 hit|SNP HitM */
2315 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOPX, FWD), /* L3 hit|SNP HitM */
2316 OP_LH | P(LVL, L3) | LEVEL(L3) | P(SNOOP, HITM), /* L3 hit|SNP Fwd */
2317 OP_LH | P(LVL, REM_CCE1) | REM | LEVEL(L3) | P(SNOOP, HITM), /* Remote L3 hit|SNP HitM */
2318 OP_LH | P(LVL, LOC_RAM) | LEVEL(RAM) | P(SNOOP, NONE), /* RAM hit|SNP Hit */
2319 OP_LH | LEVEL(RAM) | REM | P(SNOOP, NONE), /* Remote L3 hit|SNP Hit */
2320 OP_LH | LEVEL(RAM) | REM | P(SNOOPX, FWD), /* RAM hit|SNP None or Miss */
2321 OP_LH | LEVEL(RAM) | REM | P(SNOOP, HITM), /* Remote RAM hit|SNP None or Miss */
2322 OP_LH | P(LVL, IO) | LEVEL(NA) | P(SNOOP, NONE), /* I/O hit|SNP None */
2323 OP_LH | P(LVL, UNC) | LEVEL(NA) | P(SNOOP, NONE), /* Uncached hit|SNP None */
2324};
2325
2326/* Based on kernel pebs_set_tlb_lock() */
2327static inline void pebs_set_tlb_lock(u64 *val, bool tlb, bool lock)
2328{
2329 /*
2330 * TLB access
2331 * 0 = did not miss 2nd level TLB
2332 * 1 = missed 2nd level TLB
2333 */
2334 if (tlb)
2335 *val |= P(TLB, MISS) | P(TLB, L2);
2336 else
2337 *val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2);
2338
2339 /* locked prefix */
2340 if (lock)
2341 *val |= P(LOCK, LOCKED);
2342}
2343
2344/* Based on kernel __grt_latency_data() */
2345static u64 intel_pt_grt_latency_data(u8 dse, bool tlb, bool lock, bool blk,
2346 const u64 *pebs_data_source)
2347{
2348 u64 val;
2349
2350 dse &= PERF_PEBS_DATA_SOURCE_GRT_MASK;
2351 val = pebs_data_source[dse];
2352
2353 pebs_set_tlb_lock(&val, tlb, lock);
2354
2355 if (blk)
2356 val |= P(BLK, DATA);
2357 else
2358 val |= P(BLK, NA);
2359
2360 return val;
2361}
2362
2363/* Default value for data source */
2364#define PERF_MEM_NA (PERF_MEM_S(OP, NA) |\
2365 PERF_MEM_S(LVL, NA) |\
2366 PERF_MEM_S(SNOOP, NA) |\
2367 PERF_MEM_S(LOCK, NA) |\
2368 PERF_MEM_S(TLB, NA) |\
2369 PERF_MEM_S(LVLNUM, NA))
2370
2371enum DATA_SRC_FORMAT {
2372 DATA_SRC_FORMAT_ERR = -1,
2373 DATA_SRC_FORMAT_NA = 0,
2374 DATA_SRC_FORMAT_GRT = 1,
2375 DATA_SRC_FORMAT_CMT = 2,
2376};
2377
2378/* Based on kernel grt_latency_data() and cmt_latency_data */
2379static u64 intel_pt_get_data_src(u64 mem_aux_info, int data_src_fmt)
2380{
2381 switch (data_src_fmt) {
2382 case DATA_SRC_FORMAT_GRT: {
2383 union {
2384 u64 val;
2385 struct {
2386 unsigned int dse:4;
2387 unsigned int locked:1;
2388 unsigned int stlb_miss:1;
2389 unsigned int fwd_blk:1;
2390 unsigned int reserved:25;
2391 };
2392 } x = {.val = mem_aux_info};
2393 return intel_pt_grt_latency_data(x.dse, x.stlb_miss, x.locked, x.fwd_blk,
2394 pebs_data_source_grt);
2395 }
2396 case DATA_SRC_FORMAT_CMT: {
2397 union {
2398 u64 val;
2399 struct {
2400 unsigned int dse:5;
2401 unsigned int locked:1;
2402 unsigned int stlb_miss:1;
2403 unsigned int fwd_blk:1;
2404 unsigned int reserved:24;
2405 };
2406 } x = {.val = mem_aux_info};
2407 return intel_pt_grt_latency_data(x.dse, x.stlb_miss, x.locked, x.fwd_blk,
2408 pebs_data_source_cmt);
2409 }
2410 default:
2411 return PERF_MEM_NA;
2412 }
2413}
2414
2415static int intel_pt_do_synth_pebs_sample(struct intel_pt_queue *ptq, struct evsel *evsel,
2416 u64 id, int data_src_fmt)
e62ca655 2417{
9d0bc53e 2418 const struct intel_pt_blk_items *items = &ptq->state->items;
dc6d2bc2 2419 struct perf_sample sample;
9d0bc53e
AH
2420 union perf_event *event = ptq->event_buf;
2421 struct intel_pt *pt = ptq->pt;
1fc632ce 2422 u64 sample_type = evsel->core.attr.sample_type;
9d0bc53e 2423 u8 cpumode;
dc6d2bc2
IR
2424 u64 regs[8 * sizeof(sample.intr_regs->mask)];
2425 int ret;
9d0bc53e
AH
2426
2427 if (intel_pt_skip_event(pt))
2428 return 0;
2429
dc6d2bc2 2430 perf_sample__init(&sample, /*all=*/true);
9d0bc53e
AH
2431 intel_pt_prep_a_sample(ptq, event, &sample);
2432
2433 sample.id = id;
2434 sample.stream_id = id;
2435
1fc632ce
JO
2436 if (!evsel->core.attr.freq)
2437 sample.period = evsel->core.attr.sample_period;
9d0bc53e
AH
2438
2439 /* No support for non-zero CS base */
2440 if (items->has_ip)
2441 sample.ip = items->ip;
2442 else if (items->has_rip)
2443 sample.ip = items->rip;
2444 else
2445 sample.ip = ptq->state->from_ip;
2446
6e86bfdc 2447 cpumode = intel_pt_cpumode(ptq, sample.ip, 0);
9d0bc53e
AH
2448
2449 event->sample.header.misc = cpumode | PERF_RECORD_MISC_EXACT_IP;
2450
2451 sample.cpumode = cpumode;
2452
2453 if (sample_type & PERF_SAMPLE_TIME) {
2454 u64 timestamp = 0;
2455
2456 if (items->has_timestamp)
2457 timestamp = items->timestamp;
2458 else if (!pt->timeless_decoding)
2459 timestamp = ptq->timestamp;
2460 if (timestamp)
2461 sample.time = tsc_to_perf_time(timestamp, &pt->tc);
2462 }
2463
e01f0ef5
AH
2464 if (sample_type & PERF_SAMPLE_CALLCHAIN &&
2465 pt->synth_opts.callchain) {
2466 thread_stack__sample(ptq->thread, ptq->cpu, ptq->chain,
2467 pt->synth_opts.callchain_sz, sample.ip,
2468 pt->kernel_start);
2469 sample.callchain = ptq->chain;
2470 }
2471
9e9a618a 2472 if (sample_type & PERF_SAMPLE_REGS_INTR &&
4c95ad26
AH
2473 (items->mask[INTEL_PT_GP_REGS_POS] ||
2474 items->mask[INTEL_PT_XMM_POS])) {
1fc632ce 2475 u64 regs_mask = evsel->core.attr.sample_regs_intr;
143d34a6 2476 u64 *pos;
dc6d2bc2 2477 struct regs_dump *intr_regs = perf_sample__intr_regs(&sample);
9e9a618a 2478
dc6d2bc2 2479 intr_regs->abi = items->is_32_bit ?
9e9a618a
AH
2480 PERF_SAMPLE_REGS_ABI_32 :
2481 PERF_SAMPLE_REGS_ABI_64;
dc6d2bc2 2482 intr_regs->regs = regs;
9e9a618a 2483
dc6d2bc2 2484 pos = intel_pt_add_gp_regs(intr_regs, regs, items, regs_mask);
143d34a6 2485
dc6d2bc2 2486 intel_pt_add_xmm(intr_regs, pos, items, regs_mask);
9e9a618a
AH
2487 }
2488
aa62afd7 2489 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
aa62afd7
AH
2490 if (items->mask[INTEL_PT_LBR_0_POS] ||
2491 items->mask[INTEL_PT_LBR_1_POS] ||
2492 items->mask[INTEL_PT_LBR_2_POS]) {
961224db 2493 intel_pt_add_lbrs(ptq->last_branch, items);
aa62afd7 2494 } else if (pt->synth_opts.last_branch) {
cf888e08
AH
2495 thread_stack__br_sample(ptq->thread, ptq->cpu,
2496 ptq->last_branch,
2497 pt->br_stack_sz);
aa62afd7 2498 } else {
961224db 2499 ptq->last_branch->nr = 0;
aa62afd7 2500 }
961224db 2501 sample.branch_stack = ptq->last_branch;
aa62afd7
AH
2502 }
2503
975846ed
AH
2504 if (sample_type & PERF_SAMPLE_ADDR && items->has_mem_access_address)
2505 sample.addr = items->mem_access_address;
2506
ea8d0ed6 2507 if (sample_type & PERF_SAMPLE_WEIGHT_TYPE) {
975846ed
AH
2508 /*
2509 * Refer kernel's setup_pebs_adaptive_sample_data() and
2510 * intel_hsw_weight().
2511 */
ea8d0ed6
KL
2512 if (items->has_mem_access_latency) {
2513 u64 weight = items->mem_access_latency >> 32;
2514
2515 /*
2516 * Starts from SPR, the mem access latency field
2517 * contains both cache latency [47:32] and instruction
2518 * latency [15:0]. The cache latency is the same as the
2519 * mem access latency on previous platforms.
2520 *
2521 * In practice, no memory access could last than 4G
2522 * cycles. Use latency >> 32 to distinguish the
2523 * different format of the mem access latency field.
2524 */
590db42d 2525 if (weight > 0) {
ea8d0ed6 2526 sample.weight = weight & 0xffff;
590db42d
KL
2527 sample.ins_lat = items->mem_access_latency & 0xffff;
2528 } else
ea8d0ed6
KL
2529 sample.weight = items->mem_access_latency;
2530 }
975846ed
AH
2531 if (!sample.weight && items->has_tsx_aux_info) {
2532 /* Cycles last block */
2533 sample.weight = (u32)items->tsx_aux_info;
2534 }
2535 }
2536
e00eac6b
AH
2537 if (sample_type & PERF_SAMPLE_DATA_SRC) {
2538 if (items->has_mem_aux_info && data_src_fmt) {
2539 if (data_src_fmt < 0) {
2540 pr_err("Intel PT missing data_src info\n");
2541 return -1;
2542 }
2543 sample.data_src = intel_pt_get_data_src(items->mem_aux_info, data_src_fmt);
2544 } else {
2545 sample.data_src = PERF_MEM_NA;
2546 }
2547 }
2548
975846ed
AH
2549 if (sample_type & PERF_SAMPLE_TRANSACTION && items->has_tsx_aux_info) {
2550 u64 ax = items->has_rax ? items->rax : 0;
2551 /* Refer kernel's intel_hsw_transaction() */
2552 u64 txn = (u8)(items->tsx_aux_info >> 32);
2553
2554 /* For RTM XABORTs also log the abort code from AX */
2555 if (txn & PERF_TXN_TRANSACTION && ax & 1)
2556 txn |= ((ax >> 24) & 0xff) << PERF_TXN_ABORT_SHIFT;
2557 sample.transaction = txn;
2558 }
2559
dc6d2bc2
IR
2560 ret = intel_pt_deliver_synth_event(pt, event, &sample, sample_type);
2561 perf_sample__exit(&sample);
2562 return ret;
e62ca655
AH
2563}
2564
dedcc0ea
AH
2565static int intel_pt_synth_single_pebs_sample(struct intel_pt_queue *ptq)
2566{
2567 struct intel_pt *pt = ptq->pt;
2568 struct evsel *evsel = pt->pebs_evsel;
e00eac6b 2569 int data_src_fmt = pt->pebs_data_src_fmt;
dedcc0ea
AH
2570 u64 id = evsel->core.id[0];
2571
e00eac6b 2572 return intel_pt_do_synth_pebs_sample(ptq, evsel, id, data_src_fmt);
dedcc0ea
AH
2573}
2574
2575static int intel_pt_synth_pebs_sample(struct intel_pt_queue *ptq)
2576{
2577 const struct intel_pt_blk_items *items = &ptq->state->items;
2578 struct intel_pt_pebs_event *pe;
2579 struct intel_pt *pt = ptq->pt;
2580 int err = -EINVAL;
2581 int hw_id;
2582
2583 if (!items->has_applicable_counters || !items->applicable_counters) {
2584 if (!pt->single_pebs)
2585 pr_err("PEBS-via-PT record with no applicable_counters\n");
2586 return intel_pt_synth_single_pebs_sample(ptq);
2587 }
2588
2589 for_each_set_bit(hw_id, (unsigned long *)&items->applicable_counters, INTEL_PT_MAX_PEBS) {
2590 pe = &ptq->pebs[hw_id];
2591 if (!pe->evsel) {
2592 if (!pt->single_pebs)
2593 pr_err("PEBS-via-PT record with no matching event, hw_id %d\n",
2594 hw_id);
2595 return intel_pt_synth_single_pebs_sample(ptq);
2596 }
e00eac6b 2597 err = intel_pt_do_synth_pebs_sample(ptq, pe->evsel, pe->id, pe->data_src_fmt);
dedcc0ea
AH
2598 if (err)
2599 return err;
2600 }
2601
2602 return err;
2603}
2604
ef3b2ba9
AH
2605static int intel_pt_synth_events_sample(struct intel_pt_queue *ptq)
2606{
2607 struct intel_pt *pt = ptq->pt;
2608 union perf_event *event = ptq->event_buf;
dc6d2bc2 2609 struct perf_sample sample;
ef3b2ba9
AH
2610 struct {
2611 struct perf_synth_intel_evt cfe;
2612 struct perf_synth_intel_evd evd[INTEL_PT_MAX_EVDS];
2613 } raw;
dc6d2bc2 2614 int i, ret;
ef3b2ba9
AH
2615
2616 if (intel_pt_skip_event(pt))
2617 return 0;
2618
dc6d2bc2 2619 perf_sample__init(&sample, /*all=*/true);
ef3b2ba9
AH
2620 intel_pt_prep_p_sample(pt, ptq, event, &sample);
2621
2622 sample.id = ptq->pt->evt_id;
2623 sample.stream_id = ptq->pt->evt_id;
2624
2625 raw.cfe.type = ptq->state->cfe_type;
2626 raw.cfe.reserved = 0;
2627 raw.cfe.ip = !!(ptq->state->flags & INTEL_PT_FUP_IP);
2628 raw.cfe.vector = ptq->state->cfe_vector;
2629 raw.cfe.evd_cnt = ptq->state->evd_cnt;
2630
2631 for (i = 0; i < ptq->state->evd_cnt; i++) {
2632 raw.evd[i].et = 0;
2633 raw.evd[i].evd_type = ptq->state->evd[i].type;
2634 raw.evd[i].payload = ptq->state->evd[i].payload;
2635 }
2636
2637 sample.raw_size = perf_synth__raw_size(raw) +
2638 ptq->state->evd_cnt * sizeof(struct perf_synth_intel_evd);
2639 sample.raw_data = perf_synth__raw_data(&raw);
2640
dc6d2bc2
IR
2641 ret = intel_pt_deliver_synth_event(pt, event, &sample,
2642 pt->evt_sample_type);
2643 perf_sample__exit(&sample);
2644 return ret;
ef3b2ba9
AH
2645}
2646
069ca70e
AH
2647static int intel_pt_synth_iflag_chg_sample(struct intel_pt_queue *ptq)
2648{
2649 struct intel_pt *pt = ptq->pt;
2650 union perf_event *event = ptq->event_buf;
dc6d2bc2 2651 struct perf_sample sample;
069ca70e 2652 struct perf_synth_intel_iflag_chg raw;
dc6d2bc2 2653 int ret;
069ca70e
AH
2654
2655 if (intel_pt_skip_event(pt))
2656 return 0;
2657
dc6d2bc2 2658 perf_sample__init(&sample, /*all=*/true);
069ca70e
AH
2659 intel_pt_prep_p_sample(pt, ptq, event, &sample);
2660
2661 sample.id = ptq->pt->iflag_chg_id;
2662 sample.stream_id = ptq->pt->iflag_chg_id;
2663
2664 raw.flags = 0;
2665 raw.iflag = ptq->state->to_iflag;
2666
2667 if (ptq->state->type & INTEL_PT_BRANCH) {
2668 raw.via_branch = 1;
2669 raw.branch_ip = ptq->state->to_ip;
2670 } else {
2671 sample.addr = 0;
2672 }
2673 sample.flags = ptq->flags;
2674
2675 sample.raw_size = perf_synth__raw_size(raw);
2676 sample.raw_data = perf_synth__raw_data(&raw);
2677
dc6d2bc2
IR
2678 ret = intel_pt_deliver_synth_event(pt, event, &sample,
2679 pt->iflag_chg_sample_type);
2680 perf_sample__exit(&sample);
2681 return ret;
069ca70e
AH
2682}
2683
90e457f7 2684static int intel_pt_synth_error(struct intel_pt *pt, int code, int cpu,
61cd9135
AH
2685 pid_t pid, pid_t tid, u64 ip, u64 timestamp,
2686 pid_t machine_pid, int vcpu)
90e457f7 2687{
65aee81a
AH
2688 bool dump_log_on_error = pt->synth_opts.log_plus_flags & AUXTRACE_LOG_FLG_ON_ERROR;
2689 bool log_on_stdout = pt->synth_opts.log_plus_flags & AUXTRACE_LOG_FLG_USE_STDOUT;
90e457f7
AH
2690 union perf_event event;
2691 char msg[MAX_AUXTRACE_ERROR_MSG];
2692 int err;
2693
1d846aeb
AH
2694 if (pt->synth_opts.error_minus_flags) {
2695 if (code == INTEL_PT_ERR_OVR &&
2696 pt->synth_opts.error_minus_flags & AUXTRACE_ERR_FLG_OVERFLOW)
2697 return 0;
2698 if (code == INTEL_PT_ERR_LOST &&
2699 pt->synth_opts.error_minus_flags & AUXTRACE_ERR_FLG_DATA_LOST)
2700 return 0;
2701 }
2702
90e457f7
AH
2703 intel_pt__strerror(code, msg, MAX_AUXTRACE_ERROR_MSG);
2704
61cd9135
AH
2705 auxtrace_synth_guest_error(&event.auxtrace_error, PERF_AUXTRACE_ERROR_ITRACE,
2706 code, cpu, pid, tid, ip, msg, timestamp,
2707 machine_pid, vcpu);
90e457f7 2708
65aee81a
AH
2709 if (intel_pt_enable_logging && !log_on_stdout) {
2710 FILE *fp = intel_pt_log_fp();
2711
2712 if (fp)
2713 perf_event__fprintf_auxtrace_error(&event, fp);
2714 }
2715
2716 if (code != INTEL_PT_ERR_LOST && dump_log_on_error)
2717 intel_pt_log_dump_buf();
2718
90e457f7
AH
2719 err = perf_session__deliver_synth_event(pt->session, &event, NULL);
2720 if (err)
2721 pr_err("Intel Processor Trace: failed to deliver error event, error %d\n",
2722 err);
2723
2724 return err;
2725}
2726
16bd4321
AH
2727static int intel_ptq_synth_error(struct intel_pt_queue *ptq,
2728 const struct intel_pt_state *state)
2729{
2730 struct intel_pt *pt = ptq->pt;
2731 u64 tm = ptq->timestamp;
61cd9135
AH
2732 pid_t machine_pid = 0;
2733 pid_t pid = ptq->pid;
2734 pid_t tid = ptq->tid;
2735 int vcpu = -1;
16bd4321
AH
2736
2737 tm = pt->timeless_decoding ? 0 : tsc_to_perf_time(tm, &pt->tc);
2738
61cd9135
AH
2739 if (pt->have_guest_sideband && state->from_nr) {
2740 machine_pid = ptq->guest_machine_pid;
2741 vcpu = ptq->vcpu;
2742 pid = ptq->guest_pid;
2743 tid = ptq->guest_tid;
2744 }
2745
2746 return intel_pt_synth_error(pt, state->err, ptq->cpu, pid, tid,
2747 state->from_ip, tm, machine_pid, vcpu);
16bd4321
AH
2748}
2749
90e457f7
AH
2750static int intel_pt_next_tid(struct intel_pt *pt, struct intel_pt_queue *ptq)
2751{
2752 struct auxtrace_queue *queue;
2753 pid_t tid = ptq->next_tid;
2754 int err;
2755
2756 if (tid == -1)
2757 return 0;
2758
2759 intel_pt_log("switch: cpu %d tid %d\n", ptq->cpu, tid);
2760
2761 err = machine__set_current_tid(pt->machine, ptq->cpu, -1, tid);
2762
2763 queue = &pt->queues.queue_array[ptq->queue_nr];
2764 intel_pt_set_pid_tid_cpu(pt, queue);
2765
2766 ptq->next_tid = -1;
2767
2768 return err;
2769}
2770
2771static inline bool intel_pt_is_switch_ip(struct intel_pt_queue *ptq, u64 ip)
2772{
2773 struct intel_pt *pt = ptq->pt;
2774
2775 return ip == pt->switch_ip &&
2776 (ptq->flags & PERF_IP_FLAG_BRANCH) &&
2777 !(ptq->flags & (PERF_IP_FLAG_CONDITIONAL | PERF_IP_FLAG_ASYNC |
2778 PERF_IP_FLAG_INTERRUPT | PERF_IP_FLAG_TX_ABORT));
2779}
2780
37973075 2781#define INTEL_PT_PWR_EVT (INTEL_PT_MWAIT_OP | INTEL_PT_PWR_ENTRY | \
5fe2cf7d 2782 INTEL_PT_EX_STOP | INTEL_PT_PWR_EXIT)
37973075 2783
90e457f7
AH
2784static int intel_pt_sample(struct intel_pt_queue *ptq)
2785{
2786 const struct intel_pt_state *state = ptq->state;
2787 struct intel_pt *pt = ptq->pt;
2788 int err;
2789
2790 if (!ptq->have_sample)
2791 return 0;
2792
2793 ptq->have_sample = false;
2794
f2b91386
AH
2795 if (pt->synth_opts.approx_ipc) {
2796 ptq->ipc_insn_cnt = ptq->state->tot_insn_cnt;
2797 ptq->ipc_cyc_cnt = ptq->state->cycles;
2798 ptq->sample_ipc = true;
2799 } else {
2800 ptq->ipc_insn_cnt = ptq->state->tot_insn_cnt;
2801 ptq->ipc_cyc_cnt = ptq->state->tot_cyc_cnt;
2802 ptq->sample_ipc = ptq->state->flags & INTEL_PT_SAMPLE_IPC;
2803 }
5b1dc0fd 2804
5d2b6bc3
AH
2805 /* Ensure guest code maps are set up */
2806 if (symbol_conf.guest_code && (state->from_nr || state->to_nr))
2807 intel_pt_get_guest(ptq);
2808
e62ca655
AH
2809 /*
2810 * Do PEBS first to allow for the possibility that the PEBS timestamp
2811 * precedes the current timestamp.
2812 */
2813 if (pt->sample_pebs && state->type & INTEL_PT_BLK_ITEMS) {
2814 err = intel_pt_synth_pebs_sample(ptq);
2815 if (err)
2816 return err;
2817 }
2818
ef3b2ba9
AH
2819 if (pt->synth_opts.intr_events) {
2820 if (state->type & INTEL_PT_EVT) {
2821 err = intel_pt_synth_events_sample(ptq);
2822 if (err)
2823 return err;
2824 }
069ca70e
AH
2825 if (state->type & INTEL_PT_IFLAG_CHG) {
2826 err = intel_pt_synth_iflag_chg_sample(ptq);
2827 if (err)
2828 return err;
2829 }
ef3b2ba9
AH
2830 }
2831
5fe2cf7d 2832 if (pt->sample_pwr_events) {
c840cbfe
AH
2833 if (state->type & INTEL_PT_PSB_EVT) {
2834 err = intel_pt_synth_psb_sample(ptq);
2835 if (err)
2836 return err;
2837 }
5fe2cf7d 2838 if (ptq->state->cbr != ptq->cbr_seen) {
37973075
AH
2839 err = intel_pt_synth_cbr_sample(ptq);
2840 if (err)
2841 return err;
2842 }
5fe2cf7d
AH
2843 if (state->type & INTEL_PT_PWR_EVT) {
2844 if (state->type & INTEL_PT_MWAIT_OP) {
2845 err = intel_pt_synth_mwait_sample(ptq);
2846 if (err)
2847 return err;
2848 }
2849 if (state->type & INTEL_PT_PWR_ENTRY) {
2850 err = intel_pt_synth_pwre_sample(ptq);
2851 if (err)
2852 return err;
2853 }
2854 if (state->type & INTEL_PT_EX_STOP) {
2855 err = intel_pt_synth_exstop_sample(ptq);
2856 if (err)
2857 return err;
2858 }
2859 if (state->type & INTEL_PT_PWR_EXIT) {
2860 err = intel_pt_synth_pwrx_sample(ptq);
2861 if (err)
2862 return err;
2863 }
37973075
AH
2864 }
2865 }
2866
7e55b956
SG
2867 if (state->type & INTEL_PT_INSTRUCTION) {
2868 if (pt->sample_instructions) {
2869 err = intel_pt_synth_instruction_sample(ptq);
2870 if (err)
2871 return err;
2872 }
2873 if (pt->sample_cycles) {
2874 err = intel_pt_synth_cycle_sample(ptq);
2875 if (err)
2876 return err;
2877 }
90e457f7
AH
2878 }
2879
406a1805 2880 if (pt->sample_transactions && (state->type & INTEL_PT_TRANSACTION)) {
90e457f7
AH
2881 err = intel_pt_synth_transaction_sample(ptq);
2882 if (err)
2883 return err;
2884 }
2885
37973075
AH
2886 if (pt->sample_ptwrites && (state->type & INTEL_PT_PTW)) {
2887 err = intel_pt_synth_ptwrite_sample(ptq);
2888 if (err)
2889 return err;
2890 }
2891
90e457f7
AH
2892 if (!(state->type & INTEL_PT_BRANCH))
2893 return 0;
2894
cf888e08
AH
2895 if (pt->use_thread_stack) {
2896 thread_stack__event(ptq->thread, ptq->cpu, ptq->flags,
2897 state->from_ip, state->to_ip, ptq->insn_len,
2898 state->trace_nr, pt->callstack,
f0a0251c 2899 pt->br_stack_sz_plus,
cf888e08
AH
2900 pt->mispred_all);
2901 } else {
256d92bc 2902 thread_stack__set_trace_nr(ptq->thread, ptq->cpu, state->trace_nr);
cf888e08 2903 }
90e457f7
AH
2904
2905 if (pt->sample_branches) {
19854e45
AH
2906 if (state->from_nr != state->to_nr &&
2907 state->from_ip && state->to_ip) {
2908 struct intel_pt_state *st = (struct intel_pt_state *)state;
2909 u64 to_ip = st->to_ip;
2910 u64 from_ip = st->from_ip;
2911
2912 /*
2913 * perf cannot handle having different machines for ip
2914 * and addr, so create 2 branches.
2915 */
2916 st->to_ip = 0;
2917 err = intel_pt_synth_branch_sample(ptq);
2918 if (err)
2919 return err;
2920 st->from_ip = 0;
2921 st->to_ip = to_ip;
2922 err = intel_pt_synth_branch_sample(ptq);
2923 st->from_ip = from_ip;
2924 } else {
2925 err = intel_pt_synth_branch_sample(ptq);
2926 }
90e457f7
AH
2927 if (err)
2928 return err;
2929 }
2930
63d8e38f 2931 if (!ptq->sync_switch)
90e457f7
AH
2932 return 0;
2933
2934 if (intel_pt_is_switch_ip(ptq, state->to_ip)) {
2935 switch (ptq->switch_state) {
dbcb82b9 2936 case INTEL_PT_SS_NOT_TRACING:
90e457f7
AH
2937 case INTEL_PT_SS_UNKNOWN:
2938 case INTEL_PT_SS_EXPECTING_SWITCH_IP:
2939 err = intel_pt_next_tid(pt, ptq);
2940 if (err)
2941 return err;
2942 ptq->switch_state = INTEL_PT_SS_TRACING;
2943 break;
2944 default:
2945 ptq->switch_state = INTEL_PT_SS_EXPECTING_SWITCH_EVENT;
2946 return 1;
2947 }
2948 } else if (!state->to_ip) {
2949 ptq->switch_state = INTEL_PT_SS_NOT_TRACING;
2950 } else if (ptq->switch_state == INTEL_PT_SS_NOT_TRACING) {
2951 ptq->switch_state = INTEL_PT_SS_UNKNOWN;
2952 } else if (ptq->switch_state == INTEL_PT_SS_UNKNOWN &&
2953 state->to_ip == pt->ptss_ip &&
2954 (ptq->flags & PERF_IP_FLAG_CALL)) {
2955 ptq->switch_state = INTEL_PT_SS_TRACING;
2956 }
2957
2958 return 0;
2959}
2960
86c27869 2961static u64 intel_pt_switch_ip(struct intel_pt *pt, u64 *ptss_ip)
90e457f7 2962{
86c27869 2963 struct machine *machine = pt->machine;
90e457f7
AH
2964 struct map *map;
2965 struct symbol *sym, *start;
2966 u64 ip, switch_ip = 0;
86c27869 2967 const char *ptss;
90e457f7
AH
2968
2969 if (ptss_ip)
2970 *ptss_ip = 0;
2971
a5e813c6 2972 map = machine__kernel_map(machine);
90e457f7
AH
2973 if (!map)
2974 return 0;
2975
be39db9f 2976 if (map__load(map))
90e457f7
AH
2977 return 0;
2978
63df0e4b 2979 start = dso__first_symbol(map__dso(map));
90e457f7
AH
2980
2981 for (sym = start; sym; sym = dso__next_symbol(sym)) {
2982 if (sym->binding == STB_GLOBAL &&
2983 !strcmp(sym->name, "__switch_to")) {
78a1f7cd 2984 ip = map__unmap_ip(map, sym->start);
e5116f46 2985 if (ip >= map__start(map) && ip < map__end(map)) {
90e457f7
AH
2986 switch_ip = ip;
2987 break;
2988 }
2989 }
2990 }
2991
2992 if (!switch_ip || !ptss_ip)
2993 return 0;
2994
86c27869
AH
2995 if (pt->have_sched_switch == 1)
2996 ptss = "perf_trace_sched_switch";
2997 else
2998 ptss = "__perf_event_task_sched_out";
2999
90e457f7 3000 for (sym = start; sym; sym = dso__next_symbol(sym)) {
86c27869 3001 if (!strcmp(sym->name, ptss)) {
78a1f7cd 3002 ip = map__unmap_ip(map, sym->start);
e5116f46 3003 if (ip >= map__start(map) && ip < map__end(map)) {
90e457f7
AH
3004 *ptss_ip = ip;
3005 break;
3006 }
3007 }
3008 }
3009
3010 return switch_ip;
3011}
3012
63d8e38f
AH
3013static void intel_pt_enable_sync_switch(struct intel_pt *pt)
3014{
3015 unsigned int i;
3016
7d1f65b5
AH
3017 if (pt->sync_switch_not_supported)
3018 return;
3019
63d8e38f
AH
3020 pt->sync_switch = true;
3021
3022 for (i = 0; i < pt->queues.nr_queues; i++) {
3023 struct auxtrace_queue *queue = &pt->queues.queue_array[i];
3024 struct intel_pt_queue *ptq = queue->priv;
3025
3026 if (ptq)
3027 ptq->sync_switch = true;
3028 }
3029}
3030
7d1f65b5
AH
3031static void intel_pt_disable_sync_switch(struct intel_pt *pt)
3032{
3033 unsigned int i;
3034
3035 pt->sync_switch = false;
3036
3037 for (i = 0; i < pt->queues.nr_queues; i++) {
3038 struct auxtrace_queue *queue = &pt->queues.queue_array[i];
3039 struct intel_pt_queue *ptq = queue->priv;
3040
3041 if (ptq) {
3042 ptq->sync_switch = false;
3043 intel_pt_next_tid(pt, ptq);
3044 }
3045 }
3046}
3047
2c47db90
AH
3048/*
3049 * To filter against time ranges, it is only necessary to look at the next start
3050 * or end time.
3051 */
3052static bool intel_pt_next_time(struct intel_pt_queue *ptq)
3053{
3054 struct intel_pt *pt = ptq->pt;
3055
3056 if (ptq->sel_start) {
3057 /* Next time is an end time */
3058 ptq->sel_start = false;
3059 ptq->sel_timestamp = pt->time_ranges[ptq->sel_idx].end;
3060 return true;
3061 } else if (ptq->sel_idx + 1 < pt->range_cnt) {
3062 /* Next time is a start time */
3063 ptq->sel_start = true;
3064 ptq->sel_idx += 1;
3065 ptq->sel_timestamp = pt->time_ranges[ptq->sel_idx].start;
3066 return true;
3067 }
3068
3069 /* No next time */
3070 return false;
3071}
3072
3073static int intel_pt_time_filter(struct intel_pt_queue *ptq, u64 *ff_timestamp)
3074{
3075 int err;
3076
3077 while (1) {
3078 if (ptq->sel_start) {
3079 if (ptq->timestamp >= ptq->sel_timestamp) {
3080 /* After start time, so consider next time */
3081 intel_pt_next_time(ptq);
3082 if (!ptq->sel_timestamp) {
3083 /* No end time */
3084 return 0;
3085 }
3086 /* Check against end time */
3087 continue;
3088 }
3089 /* Before start time, so fast forward */
3090 ptq->have_sample = false;
3091 if (ptq->sel_timestamp > *ff_timestamp) {
3092 if (ptq->sync_switch) {
3093 intel_pt_next_tid(ptq->pt, ptq);
3094 ptq->switch_state = INTEL_PT_SS_UNKNOWN;
3095 }
3096 *ff_timestamp = ptq->sel_timestamp;
3097 err = intel_pt_fast_forward(ptq->decoder,
3098 ptq->sel_timestamp);
3099 if (err)
3100 return err;
3101 }
3102 return 0;
3103 } else if (ptq->timestamp > ptq->sel_timestamp) {
3104 /* After end time, so consider next time */
3105 if (!intel_pt_next_time(ptq)) {
3106 /* No next time range, so stop decoding */
3107 ptq->have_sample = false;
3108 ptq->switch_state = INTEL_PT_SS_NOT_TRACING;
3109 return 1;
3110 }
3111 /* Check against next start time */
3112 continue;
3113 } else {
3114 /* Before end time */
3115 return 0;
3116 }
3117 }
3118}
3119
90e457f7
AH
3120static int intel_pt_run_decoder(struct intel_pt_queue *ptq, u64 *timestamp)
3121{
3122 const struct intel_pt_state *state = ptq->state;
3123 struct intel_pt *pt = ptq->pt;
2c47db90 3124 u64 ff_timestamp = 0;
90e457f7
AH
3125 int err;
3126
3127 if (!pt->kernel_start) {
3128 pt->kernel_start = machine__kernel_start(pt->machine);
86c27869
AH
3129 if (pt->per_cpu_mmaps &&
3130 (pt->have_sched_switch == 1 || pt->have_sched_switch == 3) &&
90e457f7 3131 !pt->timeless_decoding && intel_pt_tracing_kernel(pt) &&
e3ff42bd 3132 !pt->sampling_mode && !pt->synth_opts.vm_time_correlation) {
86c27869 3133 pt->switch_ip = intel_pt_switch_ip(pt, &pt->ptss_ip);
90e457f7
AH
3134 if (pt->switch_ip) {
3135 intel_pt_log("switch_ip: %"PRIx64" ptss_ip: %"PRIx64"\n",
3136 pt->switch_ip, pt->ptss_ip);
63d8e38f 3137 intel_pt_enable_sync_switch(pt);
90e457f7
AH
3138 }
3139 }
3140 }
3141
3142 intel_pt_log("queue %u decoding cpu %d pid %d tid %d\n",
3143 ptq->queue_nr, ptq->cpu, ptq->pid, ptq->tid);
3144 while (1) {
3145 err = intel_pt_sample(ptq);
3146 if (err)
3147 return err;
3148
3149 state = intel_pt_decode(ptq->decoder);
3150 if (state->err) {
3151 if (state->err == INTEL_PT_ERR_NODATA)
3152 return 1;
63d8e38f 3153 if (ptq->sync_switch &&
90e457f7 3154 state->from_ip >= pt->kernel_start) {
63d8e38f 3155 ptq->sync_switch = false;
90e457f7
AH
3156 intel_pt_next_tid(pt, ptq);
3157 }
6665b8e4 3158 ptq->timestamp = state->est_timestamp;
90e457f7 3159 if (pt->synth_opts.errors) {
16bd4321 3160 err = intel_ptq_synth_error(ptq, state);
90e457f7
AH
3161 if (err)
3162 return err;
3163 }
3164 continue;
3165 }
3166
3167 ptq->state = state;
3168 ptq->have_sample = true;
3169 intel_pt_sample_flags(ptq);
3170
3171 /* Use estimated TSC upon return to user space */
3172 if (pt->est_tsc &&
3173 (state->from_ip >= pt->kernel_start || !state->from_ip) &&
3174 state->to_ip && state->to_ip < pt->kernel_start) {
3175 intel_pt_log("TSC %"PRIx64" est. TSC %"PRIx64"\n",
3176 state->timestamp, state->est_timestamp);
3177 ptq->timestamp = state->est_timestamp;
3178 /* Use estimated TSC in unknown switch state */
63d8e38f 3179 } else if (ptq->sync_switch &&
90e457f7
AH
3180 ptq->switch_state == INTEL_PT_SS_UNKNOWN &&
3181 intel_pt_is_switch_ip(ptq, state->to_ip) &&
3182 ptq->next_tid == -1) {
3183 intel_pt_log("TSC %"PRIx64" est. TSC %"PRIx64"\n",
3184 state->timestamp, state->est_timestamp);
3185 ptq->timestamp = state->est_timestamp;
3186 } else if (state->timestamp > ptq->timestamp) {
3187 ptq->timestamp = state->timestamp;
3188 }
3189
2c47db90
AH
3190 if (ptq->sel_timestamp) {
3191 err = intel_pt_time_filter(ptq, &ff_timestamp);
3192 if (err)
3193 return err;
3194 }
3195
90e457f7
AH
3196 if (!pt->timeless_decoding && ptq->timestamp >= *timestamp) {
3197 *timestamp = ptq->timestamp;
3198 return 0;
3199 }
3200 }
3201 return 0;
3202}
3203
3204static inline int intel_pt_update_queues(struct intel_pt *pt)
3205{
3206 if (pt->queues.new_data) {
3207 pt->queues.new_data = false;
3208 return intel_pt_setup_queues(pt);
3209 }
3210 return 0;
3211}
3212
3213static int intel_pt_process_queues(struct intel_pt *pt, u64 timestamp)
3214{
3215 unsigned int queue_nr;
3216 u64 ts;
3217 int ret;
3218
3219 while (1) {
3220 struct auxtrace_queue *queue;
3221 struct intel_pt_queue *ptq;
3222
3223 if (!pt->heap.heap_cnt)
3224 return 0;
3225
3226 if (pt->heap.heap_array[0].ordinal >= timestamp)
3227 return 0;
3228
3229 queue_nr = pt->heap.heap_array[0].queue_nr;
3230 queue = &pt->queues.queue_array[queue_nr];
3231 ptq = queue->priv;
3232
3233 intel_pt_log("queue %u processing 0x%" PRIx64 " to 0x%" PRIx64 "\n",
3234 queue_nr, pt->heap.heap_array[0].ordinal,
3235 timestamp);
3236
3237 auxtrace_heap__pop(&pt->heap);
3238
3239 if (pt->heap.heap_cnt) {
3240 ts = pt->heap.heap_array[0].ordinal + 1;
3241 if (ts > timestamp)
3242 ts = timestamp;
3243 } else {
3244 ts = timestamp;
3245 }
3246
3247 intel_pt_set_pid_tid_cpu(pt, queue);
3248
3249 ret = intel_pt_run_decoder(ptq, &ts);
3250
3251 if (ret < 0) {
3252 auxtrace_heap__add(&pt->heap, queue_nr, ts);
3253 return ret;
3254 }
3255
3256 if (!ret) {
3257 ret = auxtrace_heap__add(&pt->heap, queue_nr, ts);
3258 if (ret < 0)
3259 return ret;
3260 } else {
3261 ptq->on_heap = false;
3262 }
3263 }
3264
3265 return 0;
3266}
3267
3268static int intel_pt_process_timeless_queues(struct intel_pt *pt, pid_t tid,
3269 u64 time_)
3270{
3271 struct auxtrace_queues *queues = &pt->queues;
3272 unsigned int i;
3273 u64 ts = 0;
3274
3275 for (i = 0; i < queues->nr_queues; i++) {
3276 struct auxtrace_queue *queue = &pt->queues.queue_array[i];
3277 struct intel_pt_queue *ptq = queue->priv;
3278
3279 if (ptq && (tid == -1 || ptq->tid == tid)) {
3280 ptq->time = time_;
3281 intel_pt_set_pid_tid_cpu(pt, queue);
3282 intel_pt_run_decoder(ptq, &ts);
3283 }
3284 }
3285 return 0;
3286}
3287
dbd13432
AH
3288static void intel_pt_sample_set_pid_tid_cpu(struct intel_pt_queue *ptq,
3289 struct auxtrace_queue *queue,
3290 struct perf_sample *sample)
3291{
3292 struct machine *m = ptq->pt->machine;
3293
3294 ptq->pid = sample->pid;
3295 ptq->tid = sample->tid;
3296 ptq->cpu = queue->cpu;
3297
3298 intel_pt_log("queue %u cpu %d pid %d tid %d\n",
3299 ptq->queue_nr, ptq->cpu, ptq->pid, ptq->tid);
3300
3301 thread__zput(ptq->thread);
3302
3303 if (ptq->tid == -1)
3304 return;
3305
3306 if (ptq->pid == -1) {
3307 ptq->thread = machine__find_thread(m, -1, ptq->tid);
3308 if (ptq->thread)
ee84a303 3309 ptq->pid = thread__pid(ptq->thread);
dbd13432
AH
3310 return;
3311 }
3312
3313 ptq->thread = machine__findnew_thread(m, ptq->pid, ptq->tid);
3314}
3315
3316static int intel_pt_process_timeless_sample(struct intel_pt *pt,
3317 struct perf_sample *sample)
3318{
3319 struct auxtrace_queue *queue;
3320 struct intel_pt_queue *ptq;
3321 u64 ts = 0;
3322
3323 queue = auxtrace_queues__sample_queue(&pt->queues, sample, pt->session);
3324 if (!queue)
3325 return -EINVAL;
3326
3327 ptq = queue->priv;
3328 if (!ptq)
3329 return 0;
3330
3331 ptq->stop = false;
3332 ptq->time = sample->time;
3333 intel_pt_sample_set_pid_tid_cpu(ptq, queue, sample);
3334 intel_pt_run_decoder(ptq, &ts);
3335 return 0;
3336}
3337
90e457f7
AH
3338static int intel_pt_lost(struct intel_pt *pt, struct perf_sample *sample)
3339{
3340 return intel_pt_synth_error(pt, INTEL_PT_ERR_LOST, sample->cpu,
61cd9135
AH
3341 sample->pid, sample->tid, 0, sample->time,
3342 sample->machine_pid, sample->vcpu);
90e457f7
AH
3343}
3344
3345static struct intel_pt_queue *intel_pt_cpu_to_ptq(struct intel_pt *pt, int cpu)
3346{
3347 unsigned i, j;
3348
3349 if (cpu < 0 || !pt->queues.nr_queues)
3350 return NULL;
3351
3352 if ((unsigned)cpu >= pt->queues.nr_queues)
3353 i = pt->queues.nr_queues - 1;
3354 else
3355 i = cpu;
3356
3357 if (pt->queues.queue_array[i].cpu == cpu)
3358 return pt->queues.queue_array[i].priv;
3359
3360 for (j = 0; i > 0; j++) {
3361 if (pt->queues.queue_array[--i].cpu == cpu)
3362 return pt->queues.queue_array[i].priv;
3363 }
3364
3365 for (; j < pt->queues.nr_queues; j++) {
3366 if (pt->queues.queue_array[j].cpu == cpu)
3367 return pt->queues.queue_array[j].priv;
3368 }
3369
3370 return NULL;
3371}
3372
86c27869
AH
3373static int intel_pt_sync_switch(struct intel_pt *pt, int cpu, pid_t tid,
3374 u64 timestamp)
90e457f7
AH
3375{
3376 struct intel_pt_queue *ptq;
86c27869 3377 int err;
90e457f7
AH
3378
3379 if (!pt->sync_switch)
86c27869 3380 return 1;
90e457f7
AH
3381
3382 ptq = intel_pt_cpu_to_ptq(pt, cpu);
63d8e38f 3383 if (!ptq || !ptq->sync_switch)
86c27869 3384 return 1;
90e457f7
AH
3385
3386 switch (ptq->switch_state) {
3387 case INTEL_PT_SS_NOT_TRACING:
90e457f7
AH
3388 break;
3389 case INTEL_PT_SS_UNKNOWN:
3390 case INTEL_PT_SS_TRACING:
3391 ptq->next_tid = tid;
3392 ptq->switch_state = INTEL_PT_SS_EXPECTING_SWITCH_IP;
3393 return 0;
3394 case INTEL_PT_SS_EXPECTING_SWITCH_EVENT:
3395 if (!ptq->on_heap) {
86c27869 3396 ptq->timestamp = perf_time_to_tsc(timestamp,
90e457f7
AH
3397 &pt->tc);
3398 err = auxtrace_heap__add(&pt->heap, ptq->queue_nr,
3399 ptq->timestamp);
3400 if (err)
3401 return err;
3402 ptq->on_heap = true;
3403 }
3404 ptq->switch_state = INTEL_PT_SS_TRACING;
3405 break;
3406 case INTEL_PT_SS_EXPECTING_SWITCH_IP:
90e457f7
AH
3407 intel_pt_log("ERROR: cpu %d expecting switch ip\n", cpu);
3408 break;
3409 default:
3410 break;
3411 }
86c27869 3412
14f1cfd4
AH
3413 ptq->next_tid = -1;
3414
86c27869
AH
3415 return 1;
3416}
3417
378ef0f5 3418#ifdef HAVE_LIBTRACEEVENT
86c27869
AH
3419static int intel_pt_process_switch(struct intel_pt *pt,
3420 struct perf_sample *sample)
3421{
86c27869
AH
3422 pid_t tid;
3423 int cpu, ret;
3ccf8a7b 3424 struct evsel *evsel = evlist__id2evsel(pt->session->evlist, sample->id);
86c27869 3425
86c27869
AH
3426 if (evsel != pt->switch_evsel)
3427 return 0;
3428
efc0cdc9 3429 tid = evsel__intval(evsel, sample, "next_pid");
86c27869
AH
3430 cpu = sample->cpu;
3431
3432 intel_pt_log("sched_switch: cpu %d tid %d time %"PRIu64" tsc %#"PRIx64"\n",
3433 cpu, tid, sample->time, perf_time_to_tsc(sample->time,
3434 &pt->tc));
3435
3436 ret = intel_pt_sync_switch(pt, cpu, tid, sample->time);
3437 if (ret <= 0)
3438 return ret;
3439
90e457f7
AH
3440 return machine__set_current_tid(pt->machine, cpu, -1, tid);
3441}
378ef0f5 3442#endif /* HAVE_LIBTRACEEVENT */
90e457f7 3443
c7b4f15f
AH
3444static int intel_pt_context_switch_in(struct intel_pt *pt,
3445 struct perf_sample *sample)
3446{
3447 pid_t pid = sample->pid;
3448 pid_t tid = sample->tid;
3449 int cpu = sample->cpu;
3450
3451 if (pt->sync_switch) {
3452 struct intel_pt_queue *ptq;
3453
3454 ptq = intel_pt_cpu_to_ptq(pt, cpu);
3455 if (ptq && ptq->sync_switch) {
3456 ptq->next_tid = -1;
3457 switch (ptq->switch_state) {
3458 case INTEL_PT_SS_NOT_TRACING:
3459 case INTEL_PT_SS_UNKNOWN:
3460 case INTEL_PT_SS_TRACING:
3461 break;
3462 case INTEL_PT_SS_EXPECTING_SWITCH_EVENT:
3463 case INTEL_PT_SS_EXPECTING_SWITCH_IP:
3464 ptq->switch_state = INTEL_PT_SS_TRACING;
3465 break;
3466 default:
3467 break;
3468 }
3469 }
3470 }
3471
3472 /*
3473 * If the current tid has not been updated yet, ensure it is now that
3474 * a "switch in" event has occurred.
3475 */
3476 if (machine__get_current_tid(pt->machine, cpu) == tid)
3477 return 0;
3478
3479 return machine__set_current_tid(pt->machine, cpu, pid, tid);
3480}
3481
0bb82cf5
AH
3482static int intel_pt_guest_context_switch(struct intel_pt *pt,
3483 union perf_event *event,
3484 struct perf_sample *sample)
3485{
3486 bool out = event->header.misc & PERF_RECORD_MISC_SWITCH_OUT;
3487 struct machines *machines = &pt->session->machines;
3488 struct machine *machine = machines__find(machines, sample->machine_pid);
3489
3490 pt->have_guest_sideband = true;
3491
7d1f65b5
AH
3492 /*
3493 * sync_switch cannot handle guest machines at present, so just disable
3494 * it.
3495 */
3496 pt->sync_switch_not_supported = true;
3497 if (pt->sync_switch)
3498 intel_pt_disable_sync_switch(pt);
3499
0bb82cf5
AH
3500 if (out)
3501 return 0;
3502
3503 if (!machine)
3504 return -EINVAL;
3505
3506 return machine__set_current_tid(machine, sample->vcpu, sample->pid, sample->tid);
3507}
3508
86c27869
AH
3509static int intel_pt_context_switch(struct intel_pt *pt, union perf_event *event,
3510 struct perf_sample *sample)
3511{
3512 bool out = event->header.misc & PERF_RECORD_MISC_SWITCH_OUT;
3513 pid_t pid, tid;
3514 int cpu, ret;
3515
0bb82cf5
AH
3516 if (perf_event__is_guest(event))
3517 return intel_pt_guest_context_switch(pt, event, sample);
3518
86c27869
AH
3519 cpu = sample->cpu;
3520
3521 if (pt->have_sched_switch == 3) {
3522 if (!out)
c7b4f15f 3523 return intel_pt_context_switch_in(pt, sample);
86c27869
AH
3524 if (event->header.type != PERF_RECORD_SWITCH_CPU_WIDE) {
3525 pr_err("Expecting CPU-wide context switch event\n");
3526 return -EINVAL;
3527 }
3528 pid = event->context_switch.next_prev_pid;
3529 tid = event->context_switch.next_prev_tid;
3530 } else {
3531 if (out)
3532 return 0;
3533 pid = sample->pid;
3534 tid = sample->tid;
3535 }
3536
7d537a8d
AH
3537 if (tid == -1)
3538 intel_pt_log("context_switch event has no tid\n");
86c27869 3539
86c27869
AH
3540 ret = intel_pt_sync_switch(pt, cpu, tid, sample->time);
3541 if (ret <= 0)
3542 return ret;
3543
3544 return machine__set_current_tid(pt->machine, cpu, pid, tid);
3545}
3546
90e457f7
AH
3547static int intel_pt_process_itrace_start(struct intel_pt *pt,
3548 union perf_event *event,
3549 struct perf_sample *sample)
3550{
3551 if (!pt->per_cpu_mmaps)
3552 return 0;
3553
3554 intel_pt_log("itrace_start: cpu %d pid %d tid %d time %"PRIu64" tsc %#"PRIx64"\n",
3555 sample->cpu, event->itrace_start.pid,
3556 event->itrace_start.tid, sample->time,
3557 perf_time_to_tsc(sample->time, &pt->tc));
3558
3559 return machine__set_current_tid(pt->machine, sample->cpu,
3560 event->itrace_start.pid,
3561 event->itrace_start.tid);
3562}
3563
e00eac6b
AH
3564/*
3565 * Events with data_src are identified by L1_Hit_Indication
3566 * refer https://github.com/intel/perfmon
3567 */
3568static int intel_pt_data_src_fmt(struct intel_pt *pt, struct evsel *evsel)
3569{
3570 struct perf_env *env = pt->machine->env;
3571 int fmt = DATA_SRC_FORMAT_NA;
3572
3573 if (!env->cpuid)
3574 return DATA_SRC_FORMAT_ERR;
3575
3576 /*
3577 * PEBS-via-PT is only supported on E-core non-hybrid. Of those only
3578 * Gracemont and Crestmont have data_src. Check for:
3579 * Alderlake N (Gracemont)
3580 * Sierra Forest (Crestmont)
3581 * Grand Ridge (Crestmont)
3582 */
3583
3584 if (!strncmp(env->cpuid, "GenuineIntel,6,190,", 19))
3585 fmt = DATA_SRC_FORMAT_GRT;
3586
3587 if (!strncmp(env->cpuid, "GenuineIntel,6,175,", 19) ||
3588 !strncmp(env->cpuid, "GenuineIntel,6,182,", 19))
3589 fmt = DATA_SRC_FORMAT_CMT;
3590
3591 if (fmt == DATA_SRC_FORMAT_NA)
3592 return fmt;
3593
3594 /*
3595 * Only data_src events are:
3596 * mem-loads event=0xd0,umask=0x5
3597 * mem-stores event=0xd0,umask=0x6
3598 */
3599 if (evsel->core.attr.type == PERF_TYPE_RAW &&
3600 ((evsel->core.attr.config & 0xffff) == 0x5d0 ||
3601 (evsel->core.attr.config & 0xffff) == 0x6d0))
3602 return fmt;
3603
3604 return DATA_SRC_FORMAT_NA;
3605}
3606
dedcc0ea
AH
3607static int intel_pt_process_aux_output_hw_id(struct intel_pt *pt,
3608 union perf_event *event,
3609 struct perf_sample *sample)
3610{
3611 u64 hw_id = event->aux_output_hw_id.hw_id;
3612 struct auxtrace_queue *queue;
3613 struct intel_pt_queue *ptq;
3614 struct evsel *evsel;
3615
3616 queue = auxtrace_queues__sample_queue(&pt->queues, sample, pt->session);
3617 evsel = evlist__id2evsel_strict(pt->session->evlist, sample->id);
3618 if (!queue || !queue->priv || !evsel || hw_id > INTEL_PT_MAX_PEBS) {
3619 pr_err("Bad AUX output hardware ID\n");
3620 return -EINVAL;
3621 }
3622
3623 ptq = queue->priv;
3624
3625 ptq->pebs[hw_id].evsel = evsel;
3626 ptq->pebs[hw_id].id = sample->id;
e00eac6b 3627 ptq->pebs[hw_id].data_src_fmt = intel_pt_data_src_fmt(pt, evsel);
dedcc0ea
AH
3628
3629 return 0;
3630}
3631
b22f90aa
AH
3632static int intel_pt_find_map(struct thread *thread, u8 cpumode, u64 addr,
3633 struct addr_location *al)
3634{
e5116f46 3635 if (!al->map || addr < map__start(al->map) || addr >= map__end(al->map)) {
b22f90aa
AH
3636 if (!thread__find_map(thread, cpumode, addr, al))
3637 return -1;
3638 }
3639
3640 return 0;
3641}
3642
3643/* Invalidate all instruction cache entries that overlap the text poke */
3644static int intel_pt_text_poke(struct intel_pt *pt, union perf_event *event)
3645{
3646 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
3647 u64 addr = event->text_poke.addr + event->text_poke.new_len - 1;
3648 /* Assume text poke begins in a basic block no more than 4096 bytes */
3649 int cnt = 4096 + event->text_poke.new_len;
3650 struct thread *thread = pt->unknown_thread;
0dd5041c 3651 struct addr_location al;
b22f90aa
AH
3652 struct machine *machine = pt->machine;
3653 struct intel_pt_cache_entry *e;
3654 u64 offset;
0dd5041c 3655 int ret = 0;
b22f90aa 3656
0dd5041c 3657 addr_location__init(&al);
b22f90aa 3658 if (!event->text_poke.new_len)
0dd5041c 3659 goto out;
b22f90aa
AH
3660
3661 for (; cnt; cnt--, addr--) {
63df0e4b
IR
3662 struct dso *dso;
3663
b22f90aa
AH
3664 if (intel_pt_find_map(thread, cpumode, addr, &al)) {
3665 if (addr < event->text_poke.addr)
0dd5041c 3666 goto out;
b22f90aa
AH
3667 continue;
3668 }
3669
63df0e4b 3670 dso = map__dso(al.map);
ee756ef7 3671 if (!dso || !dso__auxtrace_cache(dso))
b22f90aa
AH
3672 continue;
3673
78a1f7cd 3674 offset = map__map_ip(al.map, addr);
b22f90aa 3675
63df0e4b 3676 e = intel_pt_cache_lookup(dso, machine, offset);
b22f90aa
AH
3677 if (!e)
3678 continue;
3679
3680 if (addr + e->byte_cnt + e->length <= event->text_poke.addr) {
3681 /*
3682 * No overlap. Working backwards there cannot be another
3683 * basic block that overlaps the text poke if there is a
3684 * branch instruction before the text poke address.
3685 */
3686 if (e->branch != INTEL_PT_BR_NO_BRANCH)
0dd5041c 3687 goto out;
b22f90aa 3688 } else {
63df0e4b 3689 intel_pt_cache_invalidate(dso, machine, offset);
b22f90aa 3690 intel_pt_log("Invalidated instruction cache for %s at %#"PRIx64"\n",
ee756ef7 3691 dso__long_name(dso), addr);
b22f90aa
AH
3692 }
3693 }
0dd5041c
IR
3694out:
3695 addr_location__exit(&al);
3696 return ret;
b22f90aa
AH
3697}
3698
90e457f7
AH
3699static int intel_pt_process_event(struct perf_session *session,
3700 union perf_event *event,
3701 struct perf_sample *sample,
30f29bae 3702 const struct perf_tool *tool)
90e457f7
AH
3703{
3704 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
3705 auxtrace);
3706 u64 timestamp;
3707 int err = 0;
3708
3709 if (dump_trace)
3710 return 0;
3711
3712 if (!tool->ordered_events) {
3713 pr_err("Intel Processor Trace requires ordered events\n");
3714 return -EINVAL;
3715 }
3716
81cd60cc 3717 if (sample->time && sample->time != (u64)-1)
90e457f7
AH
3718 timestamp = perf_time_to_tsc(sample->time, &pt->tc);
3719 else
3720 timestamp = 0;
3721
3722 if (timestamp || pt->timeless_decoding) {
3723 err = intel_pt_update_queues(pt);
3724 if (err)
3725 return err;
3726 }
3727
3728 if (pt->timeless_decoding) {
dbd13432
AH
3729 if (pt->sampling_mode) {
3730 if (sample->aux_sample.size)
3731 err = intel_pt_process_timeless_sample(pt,
3732 sample);
3733 } else if (event->header.type == PERF_RECORD_EXIT) {
90e457f7 3734 err = intel_pt_process_timeless_queues(pt,
53ff6bc3 3735 event->fork.tid,
90e457f7
AH
3736 sample->time);
3737 }
3738 } else if (timestamp) {
5ac35d77
AH
3739 if (!pt->first_timestamp)
3740 intel_pt_first_timestamp(pt, timestamp);
90e457f7
AH
3741 err = intel_pt_process_queues(pt, timestamp);
3742 }
3743 if (err)
3744 return err;
3745
2855c05c
AH
3746 if (event->header.type == PERF_RECORD_SAMPLE) {
3747 if (pt->synth_opts.add_callchain && !sample->callchain)
3748 intel_pt_add_callchain(pt, sample);
f0a0251c
AH
3749 if (pt->synth_opts.add_last_branch && !sample->branch_stack)
3750 intel_pt_add_br_stack(pt, sample);
2855c05c
AH
3751 }
3752
90e457f7
AH
3753 if (event->header.type == PERF_RECORD_AUX &&
3754 (event->aux.flags & PERF_AUX_FLAG_TRUNCATED) &&
3755 pt->synth_opts.errors) {
3756 err = intel_pt_lost(pt, sample);
3757 if (err)
3758 return err;
3759 }
3760
378ef0f5 3761#ifdef HAVE_LIBTRACEEVENT
90e457f7
AH
3762 if (pt->switch_evsel && event->header.type == PERF_RECORD_SAMPLE)
3763 err = intel_pt_process_switch(pt, sample);
378ef0f5
IR
3764 else
3765#endif
3766 if (event->header.type == PERF_RECORD_ITRACE_START)
90e457f7 3767 err = intel_pt_process_itrace_start(pt, event, sample);
dedcc0ea
AH
3768 else if (event->header.type == PERF_RECORD_AUX_OUTPUT_HW_ID)
3769 err = intel_pt_process_aux_output_hw_id(pt, event, sample);
86c27869
AH
3770 else if (event->header.type == PERF_RECORD_SWITCH ||
3771 event->header.type == PERF_RECORD_SWITCH_CPU_WIDE)
3772 err = intel_pt_context_switch(pt, event, sample);
90e457f7 3773
b22f90aa
AH
3774 if (!err && event->header.type == PERF_RECORD_TEXT_POKE)
3775 err = intel_pt_text_poke(pt, event);
3776
d4575f5f 3777 if (intel_pt_enable_logging && intel_pt_log_events(pt, sample->time)) {
8b83fccd
AH
3778 intel_pt_log("event %u: cpu %d time %"PRIu64" tsc %#"PRIx64" ",
3779 event->header.type, sample->cpu, sample->time, timestamp);
3780 intel_pt_log_event(event);
3781 }
90e457f7
AH
3782
3783 return err;
3784}
3785
30f29bae 3786static int intel_pt_flush(struct perf_session *session, const struct perf_tool *tool)
90e457f7
AH
3787{
3788 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
3789 auxtrace);
3790 int ret;
3791
3792 if (dump_trace)
3793 return 0;
3794
3795 if (!tool->ordered_events)
3796 return -EINVAL;
3797
3798 ret = intel_pt_update_queues(pt);
3799 if (ret < 0)
3800 return ret;
3801
3802 if (pt->timeless_decoding)
3803 return intel_pt_process_timeless_queues(pt, -1,
3804 MAX_TIMESTAMP - 1);
3805
3806 return intel_pt_process_queues(pt, MAX_TIMESTAMP);
3807}
3808
3809static void intel_pt_free_events(struct perf_session *session)
3810{
3811 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
3812 auxtrace);
3813 struct auxtrace_queues *queues = &pt->queues;
3814 unsigned int i;
3815
3816 for (i = 0; i < queues->nr_queues; i++) {
3817 intel_pt_free_queue(queues->queue_array[i].priv);
3818 queues->queue_array[i].priv = NULL;
3819 }
3820 intel_pt_log_disable();
3821 auxtrace_queues__free(queues);
3822}
3823
3824static void intel_pt_free(struct perf_session *session)
3825{
3826 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
3827 auxtrace);
3828
3829 auxtrace_heap__free(&pt->heap);
3830 intel_pt_free_events(session);
3831 session->auxtrace = NULL;
0fc9d338 3832 intel_pt_free_vmcs_info(pt);
abd82868 3833 thread__put(pt->unknown_thread);
2acee108 3834 addr_filters__exit(&pt->filts);
2855c05c 3835 zfree(&pt->chain);
2b9e32c4 3836 zfree(&pt->filter);
2c47db90 3837 zfree(&pt->time_ranges);
084770f5 3838 zfree(&pt->br_stack);
90e457f7
AH
3839 free(pt);
3840}
3841
6b52bb07
AH
3842static bool intel_pt_evsel_is_auxtrace(struct perf_session *session,
3843 struct evsel *evsel)
3844{
3845 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
3846 auxtrace);
3847
3848 return evsel->core.attr.type == pt->pmu_type;
3849}
3850
90e457f7
AH
3851static int intel_pt_process_auxtrace_event(struct perf_session *session,
3852 union perf_event *event,
30f29bae 3853 const struct perf_tool *tool __maybe_unused)
90e457f7
AH
3854{
3855 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
3856 auxtrace);
3857
90e457f7
AH
3858 if (!pt->data_queued) {
3859 struct auxtrace_buffer *buffer;
3860 off_t data_offset;
8ceb41d7 3861 int fd = perf_data__fd(session->data);
90e457f7
AH
3862 int err;
3863
8ceb41d7 3864 if (perf_data__is_pipe(session->data)) {
90e457f7
AH
3865 data_offset = 0;
3866 } else {
3867 data_offset = lseek(fd, 0, SEEK_CUR);
3868 if (data_offset == -1)
3869 return -errno;
3870 }
3871
3872 err = auxtrace_queues__add_event(&pt->queues, session, event,
3873 data_offset, &buffer);
3874 if (err)
3875 return err;
3876
3877 /* Dump here now we have copied a piped trace out of the pipe */
3878 if (dump_trace) {
3879 if (auxtrace_buffer__get_data(buffer, fd)) {
3880 intel_pt_dump_event(pt, buffer->data,
3881 buffer->size);
3882 auxtrace_buffer__put_data(buffer);
3883 }
3884 }
3885 }
3886
3887 return 0;
3888}
3889
dbd13432
AH
3890static int intel_pt_queue_data(struct perf_session *session,
3891 struct perf_sample *sample,
3892 union perf_event *event, u64 data_offset)
3893{
3894 struct intel_pt *pt = container_of(session->auxtrace, struct intel_pt,
3895 auxtrace);
3896 u64 timestamp;
3897
3898 if (event) {
3899 return auxtrace_queues__add_event(&pt->queues, session, event,
3900 data_offset, NULL);
3901 }
3902
3903 if (sample->time && sample->time != (u64)-1)
3904 timestamp = perf_time_to_tsc(sample->time, &pt->tc);
3905 else
3906 timestamp = 0;
3907
3908 return auxtrace_queues__add_sample(&pt->queues, session, sample,
3909 data_offset, timestamp);
3910}
3911
63a22cd9 3912static int intel_pt_synth_event(struct perf_session *session, const char *name,
90e457f7
AH
3913 struct perf_event_attr *attr, u64 id)
3914{
63a22cd9
AH
3915 int err;
3916
3917 pr_debug("Synthesizing '%s' event with id %" PRIu64 " sample type %#" PRIx64 "\n",
3918 name, id, (u64)attr->sample_type);
90e457f7 3919
4e322c78 3920 err = perf_session__deliver_synth_attr_event(session, attr, id);
63a22cd9
AH
3921 if (err)
3922 pr_err("%s: failed to synthesize '%s' event type\n",
3923 __func__, name);
3924
3925 return err;
90e457f7
AH
3926}
3927
63503dba 3928static void intel_pt_set_event_name(struct evlist *evlist, u64 id,
bbac88ed
AH
3929 const char *name)
3930{
32dcd021 3931 struct evsel *evsel;
bbac88ed
AH
3932
3933 evlist__for_each_entry(evlist, evsel) {
deaf3219 3934 if (evsel->core.id && evsel->core.id[0] == id) {
bbac88ed
AH
3935 if (evsel->name)
3936 zfree(&evsel->name);
3937 evsel->name = strdup(name);
3938 break;
3939 }
3940 }
3941}
3942
32dcd021 3943static struct evsel *intel_pt_evsel(struct intel_pt *pt,
63503dba 3944 struct evlist *evlist)
85a564d2 3945{
32dcd021 3946 struct evsel *evsel;
85a564d2
AH
3947
3948 evlist__for_each_entry(evlist, evsel) {
e7eb9002 3949 if (evsel->core.attr.type == pt->pmu_type && evsel->core.ids)
85a564d2
AH
3950 return evsel;
3951 }
3952
3953 return NULL;
3954}
3955
90e457f7
AH
3956static int intel_pt_synth_events(struct intel_pt *pt,
3957 struct perf_session *session)
3958{
63503dba 3959 struct evlist *evlist = session->evlist;
32dcd021 3960 struct evsel *evsel = intel_pt_evsel(pt, evlist);
90e457f7 3961 struct perf_event_attr attr;
90e457f7
AH
3962 u64 id;
3963 int err;
3964
85a564d2 3965 if (!evsel) {
90e457f7
AH
3966 pr_debug("There are no selected events with Intel Processor Trace data\n");
3967 return 0;
3968 }
3969
3970 memset(&attr, 0, sizeof(struct perf_event_attr));
3971 attr.size = sizeof(struct perf_event_attr);
3972 attr.type = PERF_TYPE_HARDWARE;
1fc632ce 3973 attr.sample_type = evsel->core.attr.sample_type & PERF_SAMPLE_MASK;
90e457f7
AH
3974 attr.sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID |
3975 PERF_SAMPLE_PERIOD;
3976 if (pt->timeless_decoding)
3977 attr.sample_type &= ~(u64)PERF_SAMPLE_TIME;
3978 else
3979 attr.sample_type |= PERF_SAMPLE_TIME;
3980 if (!pt->per_cpu_mmaps)
3981 attr.sample_type &= ~(u64)PERF_SAMPLE_CPU;
1fc632ce
JO
3982 attr.exclude_user = evsel->core.attr.exclude_user;
3983 attr.exclude_kernel = evsel->core.attr.exclude_kernel;
3984 attr.exclude_hv = evsel->core.attr.exclude_hv;
3985 attr.exclude_host = evsel->core.attr.exclude_host;
3986 attr.exclude_guest = evsel->core.attr.exclude_guest;
3987 attr.sample_id_all = evsel->core.attr.sample_id_all;
3988 attr.read_format = evsel->core.attr.read_format;
90e457f7 3989
deaf3219 3990 id = evsel->core.id[0] + 1000000000;
90e457f7
AH
3991 if (!id)
3992 id = 1;
3993
4a9fd4e0
AH
3994 if (pt->synth_opts.branches) {
3995 attr.config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS;
3996 attr.sample_period = 1;
3997 attr.sample_type |= PERF_SAMPLE_ADDR;
3998 err = intel_pt_synth_event(session, "branches", &attr, id);
3999 if (err)
4000 return err;
4001 pt->sample_branches = true;
4002 pt->branches_sample_type = attr.sample_type;
4003 pt->branches_id = id;
4004 id += 1;
4005 attr.sample_type &= ~(u64)PERF_SAMPLE_ADDR;
4006 }
4007
4008 if (pt->synth_opts.callchain)
4009 attr.sample_type |= PERF_SAMPLE_CALLCHAIN;
a347306f 4010 if (pt->synth_opts.last_branch) {
4a9fd4e0 4011 attr.sample_type |= PERF_SAMPLE_BRANCH_STACK;
a347306f
AG
4012 /*
4013 * We don't use the hardware index, but the sample generation
4014 * code uses the new format branch_stack with this field,
4015 * so the event attributes must indicate that it's present.
4016 */
4017 attr.branch_sample_type |= PERF_SAMPLE_BRANCH_HW_INDEX;
4018 }
4a9fd4e0 4019
90e457f7
AH
4020 if (pt->synth_opts.instructions) {
4021 attr.config = PERF_COUNT_HW_INSTRUCTIONS;
4022 if (pt->synth_opts.period_type == PERF_ITRACE_PERIOD_NANOSECS)
4023 attr.sample_period =
4024 intel_pt_ns_to_ticks(pt, pt->synth_opts.period);
4025 else
4026 attr.sample_period = pt->synth_opts.period;
63a22cd9
AH
4027 err = intel_pt_synth_event(session, "instructions", &attr, id);
4028 if (err)
90e457f7 4029 return err;
90e457f7
AH
4030 pt->sample_instructions = true;
4031 pt->instructions_sample_type = attr.sample_type;
4032 pt->instructions_id = id;
4033 id += 1;
4034 }
4035
7e55b956
SG
4036 if (pt->synth_opts.cycles) {
4037 attr.config = PERF_COUNT_HW_CPU_CYCLES;
4038 if (pt->synth_opts.period_type == PERF_ITRACE_PERIOD_NANOSECS)
4039 attr.sample_period =
4040 intel_pt_ns_to_ticks(pt, pt->synth_opts.period);
4041 else
4042 attr.sample_period = pt->synth_opts.period;
4043 err = intel_pt_synth_event(session, "cycles", &attr, id);
4044 if (err)
4045 return err;
4046 pt->sample_cycles = true;
4047 pt->cycles_sample_type = attr.sample_type;
4048 pt->cycles_id = id;
4049 id += 1;
4050 }
4051
4a9fd4e0
AH
4052 attr.sample_type &= ~(u64)PERF_SAMPLE_PERIOD;
4053 attr.sample_period = 1;
4054
90e457f7
AH
4055 if (pt->synth_opts.transactions) {
4056 attr.config = PERF_COUNT_HW_INSTRUCTIONS;
63a22cd9
AH
4057 err = intel_pt_synth_event(session, "transactions", &attr, id);
4058 if (err)
90e457f7 4059 return err;
90e457f7 4060 pt->sample_transactions = true;
21160748 4061 pt->transactions_sample_type = attr.sample_type;
90e457f7 4062 pt->transactions_id = id;
bbac88ed 4063 intel_pt_set_event_name(evlist, id, "transactions");
90e457f7 4064 id += 1;
90e457f7
AH
4065 }
4066
37973075
AH
4067 attr.type = PERF_TYPE_SYNTH;
4068 attr.sample_type |= PERF_SAMPLE_RAW;
4069
4070 if (pt->synth_opts.ptwrites) {
4071 attr.config = PERF_SYNTH_INTEL_PTWRITE;
4072 err = intel_pt_synth_event(session, "ptwrite", &attr, id);
4073 if (err)
4074 return err;
4075 pt->sample_ptwrites = true;
4076 pt->ptwrites_sample_type = attr.sample_type;
4077 pt->ptwrites_id = id;
4078 intel_pt_set_event_name(evlist, id, "ptwrite");
4079 id += 1;
4080 }
4081
4082 if (pt->synth_opts.pwr_events) {
4083 pt->sample_pwr_events = true;
4084 pt->pwr_events_sample_type = attr.sample_type;
4085
4086 attr.config = PERF_SYNTH_INTEL_CBR;
4087 err = intel_pt_synth_event(session, "cbr", &attr, id);
4088 if (err)
4089 return err;
4090 pt->cbr_id = id;
4091 intel_pt_set_event_name(evlist, id, "cbr");
4092 id += 1;
c840cbfe
AH
4093
4094 attr.config = PERF_SYNTH_INTEL_PSB;
4095 err = intel_pt_synth_event(session, "psb", &attr, id);
4096 if (err)
4097 return err;
4098 pt->psb_id = id;
4099 intel_pt_set_event_name(evlist, id, "psb");
4100 id += 1;
37973075
AH
4101 }
4102
cd9111e6 4103 if (pt->synth_opts.pwr_events && (evsel->core.attr.config & INTEL_PT_CFG_PWR_EVT_EN)) {
37973075
AH
4104 attr.config = PERF_SYNTH_INTEL_MWAIT;
4105 err = intel_pt_synth_event(session, "mwait", &attr, id);
4106 if (err)
4107 return err;
4108 pt->mwait_id = id;
4109 intel_pt_set_event_name(evlist, id, "mwait");
4110 id += 1;
4111
4112 attr.config = PERF_SYNTH_INTEL_PWRE;
4113 err = intel_pt_synth_event(session, "pwre", &attr, id);
4114 if (err)
4115 return err;
4116 pt->pwre_id = id;
4117 intel_pt_set_event_name(evlist, id, "pwre");
4118 id += 1;
4119
4120 attr.config = PERF_SYNTH_INTEL_EXSTOP;
4121 err = intel_pt_synth_event(session, "exstop", &attr, id);
4122 if (err)
4123 return err;
4124 pt->exstop_id = id;
4125 intel_pt_set_event_name(evlist, id, "exstop");
4126 id += 1;
4127
4128 attr.config = PERF_SYNTH_INTEL_PWRX;
4129 err = intel_pt_synth_event(session, "pwrx", &attr, id);
4130 if (err)
4131 return err;
4132 pt->pwrx_id = id;
4133 intel_pt_set_event_name(evlist, id, "pwrx");
4134 id += 1;
4135 }
4136
ef3b2ba9
AH
4137 if (pt->synth_opts.intr_events && (evsel->core.attr.config & INTEL_PT_CFG_EVT_EN)) {
4138 attr.config = PERF_SYNTH_INTEL_EVT;
4139 err = intel_pt_synth_event(session, "evt", &attr, id);
4140 if (err)
4141 return err;
4142 pt->evt_sample_type = attr.sample_type;
4143 pt->evt_id = id;
4144 intel_pt_set_event_name(evlist, id, "evt");
4145 id += 1;
4146 }
4147
069ca70e
AH
4148 if (pt->synth_opts.intr_events && pt->cap_event_trace) {
4149 attr.config = PERF_SYNTH_INTEL_IFLAG_CHG;
4150 err = intel_pt_synth_event(session, "iflag", &attr, id);
4151 if (err)
4152 return err;
4153 pt->iflag_chg_sample_type = attr.sample_type;
4154 pt->iflag_chg_id = id;
4155 intel_pt_set_event_name(evlist, id, "iflag");
4156 id += 1;
4157 }
4158
90e457f7
AH
4159 return 0;
4160}
4161
9e64cefe
AH
4162static void intel_pt_setup_pebs_events(struct intel_pt *pt)
4163{
4164 struct evsel *evsel;
4165
4166 if (!pt->synth_opts.other_events)
4167 return;
4168
4169 evlist__for_each_entry(pt->session->evlist, evsel) {
deaf3219 4170 if (evsel->core.attr.aux_output && evsel->core.id) {
dedcc0ea
AH
4171 if (pt->single_pebs) {
4172 pt->single_pebs = false;
4173 return;
4174 }
4175 pt->single_pebs = true;
9e64cefe 4176 pt->sample_pebs = true;
e00eac6b 4177 pt->pebs_data_src_fmt = intel_pt_data_src_fmt(pt, evsel);
9e64cefe 4178 pt->pebs_evsel = evsel;
9e64cefe
AH
4179 }
4180 }
4181}
4182
63503dba 4183static struct evsel *intel_pt_find_sched_switch(struct evlist *evlist)
90e457f7 4184{
32dcd021 4185 struct evsel *evsel;
90e457f7 4186
e5cadb93 4187 evlist__for_each_entry_reverse(evlist, evsel) {
8ab2e96d 4188 const char *name = evsel__name(evsel);
90e457f7
AH
4189
4190 if (!strcmp(name, "sched:sched_switch"))
4191 return evsel;
4192 }
4193
4194 return NULL;
4195}
4196
63503dba 4197static bool intel_pt_find_switch(struct evlist *evlist)
86c27869 4198{
32dcd021 4199 struct evsel *evsel;
86c27869 4200
e5cadb93 4201 evlist__for_each_entry(evlist, evsel) {
1fc632ce 4202 if (evsel->core.attr.context_switch)
86c27869
AH
4203 return true;
4204 }
4205
4206 return false;
4207}
4208
ba11ba65
AH
4209static int intel_pt_perf_config(const char *var, const char *value, void *data)
4210{
4211 struct intel_pt *pt = data;
4212
4213 if (!strcmp(var, "intel-pt.mispred-all"))
4214 pt->mispred_all = perf_config_bool(var, value);
4215
b4b046ff
AH
4216 if (!strcmp(var, "intel-pt.max-loops"))
4217 perf_config_int(&pt->max_loops, var, value);
4218
ba11ba65
AH
4219 return 0;
4220}
4221
2c47db90
AH
4222/* Find least TSC which converts to ns or later */
4223static u64 intel_pt_tsc_start(u64 ns, struct intel_pt *pt)
4224{
4225 u64 tsc, tm;
4226
4227 tsc = perf_time_to_tsc(ns, &pt->tc);
4228
4229 while (1) {
4230 tm = tsc_to_perf_time(tsc, &pt->tc);
4231 if (tm < ns)
4232 break;
4233 tsc -= 1;
4234 }
4235
4236 while (tm < ns)
4237 tm = tsc_to_perf_time(++tsc, &pt->tc);
4238
4239 return tsc;
4240}
4241
4242/* Find greatest TSC which converts to ns or earlier */
4243static u64 intel_pt_tsc_end(u64 ns, struct intel_pt *pt)
4244{
4245 u64 tsc, tm;
4246
4247 tsc = perf_time_to_tsc(ns, &pt->tc);
4248
4249 while (1) {
4250 tm = tsc_to_perf_time(tsc, &pt->tc);
4251 if (tm > ns)
4252 break;
4253 tsc += 1;
4254 }
4255
4256 while (tm > ns)
4257 tm = tsc_to_perf_time(--tsc, &pt->tc);
4258
4259 return tsc;
4260}
4261
4262static int intel_pt_setup_time_ranges(struct intel_pt *pt,
4263 struct itrace_synth_opts *opts)
4264{
4265 struct perf_time_interval *p = opts->ptime_range;
4266 int n = opts->range_num;
4267 int i;
4268
4269 if (!n || !p || pt->timeless_decoding)
4270 return 0;
4271
4272 pt->time_ranges = calloc(n, sizeof(struct range));
4273 if (!pt->time_ranges)
4274 return -ENOMEM;
4275
4276 pt->range_cnt = n;
4277
4278 intel_pt_log("%s: %u range(s)\n", __func__, n);
4279
4280 for (i = 0; i < n; i++) {
4281 struct range *r = &pt->time_ranges[i];
4282 u64 ts = p[i].start;
4283 u64 te = p[i].end;
4284
4285 /*
4286 * Take care to ensure the TSC range matches the perf-time range
4287 * when converted back to perf-time.
4288 */
4289 r->start = ts ? intel_pt_tsc_start(ts, pt) : 0;
4290 r->end = te ? intel_pt_tsc_end(te, pt) : 0;
4291
4292 intel_pt_log("range %d: perf time interval: %"PRIu64" to %"PRIu64"\n",
4293 i, ts, te);
4294 intel_pt_log("range %d: TSC time interval: %#"PRIx64" to %#"PRIx64"\n",
4295 i, r->start, r->end);
4296 }
4297
4298 return 0;
4299}
4300
e3ff42bd
AH
4301static int intel_pt_parse_vm_tm_corr_arg(struct intel_pt *pt, char **args)
4302{
4303 struct intel_pt_vmcs_info *vmcs_info;
4304 u64 tsc_offset, vmcs;
4305 char *p = *args;
4306
4307 errno = 0;
4308
4309 p = skip_spaces(p);
4310 if (!*p)
4311 return 1;
4312
4313 tsc_offset = strtoull(p, &p, 0);
4314 if (errno)
4315 return -errno;
4316 p = skip_spaces(p);
4317 if (*p != ':') {
4318 pt->dflt_tsc_offset = tsc_offset;
4319 *args = p;
4320 return 0;
4321 }
a78abde2 4322 p += 1;
e3ff42bd
AH
4323 while (1) {
4324 vmcs = strtoull(p, &p, 0);
4325 if (errno)
4326 return -errno;
4327 if (!vmcs)
4328 return -EINVAL;
4329 vmcs_info = intel_pt_findnew_vmcs(&pt->vmcs_info, vmcs, tsc_offset);
4330 if (!vmcs_info)
4331 return -ENOMEM;
4332 p = skip_spaces(p);
4333 if (*p != ',')
4334 break;
4335 p += 1;
4336 }
4337 *args = p;
4338 return 0;
4339}
4340
4341static int intel_pt_parse_vm_tm_corr_args(struct intel_pt *pt)
4342{
4343 char *args = pt->synth_opts.vm_tm_corr_args;
4344 int ret;
4345
4346 if (!args)
4347 return 0;
4348
4349 do {
4350 ret = intel_pt_parse_vm_tm_corr_arg(pt, &args);
4351 } while (!ret);
4352
4353 if (ret < 0) {
4354 pr_err("Failed to parse VM Time Correlation options\n");
4355 return ret;
4356 }
4357
4358 return 0;
4359}
4360
90e457f7 4361static const char * const intel_pt_info_fmts[] = {
11fa7cb8
AH
4362 [INTEL_PT_PMU_TYPE] = " PMU Type %"PRId64"\n",
4363 [INTEL_PT_TIME_SHIFT] = " Time Shift %"PRIu64"\n",
463c2031 4364 [INTEL_PT_TIME_MULT] = " Time Multiplier %"PRIu64"\n",
11fa7cb8
AH
4365 [INTEL_PT_TIME_ZERO] = " Time Zero %"PRIu64"\n",
4366 [INTEL_PT_CAP_USER_TIME_ZERO] = " Cap Time Zero %"PRId64"\n",
4367 [INTEL_PT_TSC_BIT] = " TSC bit %#"PRIx64"\n",
4368 [INTEL_PT_NORETCOMP_BIT] = " NoRETComp bit %#"PRIx64"\n",
4369 [INTEL_PT_HAVE_SCHED_SWITCH] = " Have sched_switch %"PRId64"\n",
4370 [INTEL_PT_SNAPSHOT_MODE] = " Snapshot mode %"PRId64"\n",
4371 [INTEL_PT_PER_CPU_MMAPS] = " Per-cpu maps %"PRId64"\n",
4372 [INTEL_PT_MTC_BIT] = " MTC bit %#"PRIx64"\n",
5a3d4707 4373 [INTEL_PT_MTC_FREQ_BITS] = " MTC freq bits %#"PRIx64"\n",
11fa7cb8
AH
4374 [INTEL_PT_TSC_CTC_N] = " TSC:CTC numerator %"PRIu64"\n",
4375 [INTEL_PT_TSC_CTC_D] = " TSC:CTC denominator %"PRIu64"\n",
4376 [INTEL_PT_CYC_BIT] = " CYC bit %#"PRIx64"\n",
fa8025c3 4377 [INTEL_PT_MAX_NONTURBO_RATIO] = " Max non-turbo ratio %"PRIu64"\n",
2b9e32c4 4378 [INTEL_PT_FILTER_STR_LEN] = " Filter string len. %"PRIu64"\n",
90e457f7
AH
4379};
4380
9a8dad04 4381static void intel_pt_print_info(__u64 *arr, int start, int finish)
90e457f7
AH
4382{
4383 int i;
4384
4385 if (!dump_trace)
4386 return;
4387
5a3d4707
AH
4388 for (i = start; i <= finish; i++) {
4389 const char *fmt = intel_pt_info_fmts[i];
4390
4391 if (fmt)
4392 fprintf(stdout, fmt, arr[i]);
4393 }
90e457f7
AH
4394}
4395
2b9e32c4
AH
4396static void intel_pt_print_info_str(const char *name, const char *str)
4397{
4398 if (!dump_trace)
4399 return;
4400
4401 fprintf(stdout, " %-20s%s\n", name, str ? str : "");
4402}
4403
72932371 4404static bool intel_pt_has(struct perf_record_auxtrace_info *auxtrace_info, int pos)
40b746a0
AH
4405{
4406 return auxtrace_info->header.size >=
72932371 4407 sizeof(struct perf_record_auxtrace_info) + (sizeof(u64) * (pos + 1));
40b746a0
AH
4408}
4409
90e457f7
AH
4410int intel_pt_process_auxtrace_info(union perf_event *event,
4411 struct perf_session *session)
4412{
72932371 4413 struct perf_record_auxtrace_info *auxtrace_info = &event->auxtrace_info;
90e457f7
AH
4414 size_t min_sz = sizeof(u64) * INTEL_PT_PER_CPU_MMAPS;
4415 struct intel_pt *pt;
2b9e32c4 4416 void *info_end;
9a8dad04 4417 __u64 *info;
90e457f7
AH
4418 int err;
4419
72932371 4420 if (auxtrace_info->header.size < sizeof(struct perf_record_auxtrace_info) +
90e457f7
AH
4421 min_sz)
4422 return -EINVAL;
4423
4424 pt = zalloc(sizeof(struct intel_pt));
4425 if (!pt)
4426 return -ENOMEM;
4427
0fc9d338
AH
4428 pt->vmcs_info = RB_ROOT;
4429
2acee108
AH
4430 addr_filters__init(&pt->filts);
4431
ecc4c561
ACM
4432 err = perf_config(intel_pt_perf_config, pt);
4433 if (err)
4434 goto err_free;
ba11ba65 4435
90e457f7
AH
4436 err = auxtrace_queues__init(&pt->queues);
4437 if (err)
4438 goto err_free;
4439
856ecd6a
AH
4440 if (session->itrace_synth_opts->set) {
4441 pt->synth_opts = *session->itrace_synth_opts;
4442 } else {
4443 struct itrace_synth_opts *opts = session->itrace_synth_opts;
4444
4445 itrace_synth_opts__set_default(&pt->synth_opts, opts->default_no_sample);
4446 if (!opts->default_no_sample && !opts->inject) {
4447 pt->synth_opts.branches = false;
4448 pt->synth_opts.callchain = true;
4449 pt->synth_opts.add_callchain = true;
4450 }
4451 pt->synth_opts.thread_stack = opts->thread_stack;
4452 }
4453
624ff63a
AH
4454 if (!(pt->synth_opts.log_plus_flags & AUXTRACE_LOG_FLG_USE_STDOUT))
4455 intel_pt_log_set_name(INTEL_PT_PMU_NAME);
4456
90e457f7
AH
4457 pt->session = session;
4458 pt->machine = &session->machines.host; /* No kvm support */
4459 pt->auxtrace_type = auxtrace_info->type;
4460 pt->pmu_type = auxtrace_info->priv[INTEL_PT_PMU_TYPE];
4461 pt->tc.time_shift = auxtrace_info->priv[INTEL_PT_TIME_SHIFT];
4462 pt->tc.time_mult = auxtrace_info->priv[INTEL_PT_TIME_MULT];
4463 pt->tc.time_zero = auxtrace_info->priv[INTEL_PT_TIME_ZERO];
4464 pt->cap_user_time_zero = auxtrace_info->priv[INTEL_PT_CAP_USER_TIME_ZERO];
4465 pt->tsc_bit = auxtrace_info->priv[INTEL_PT_TSC_BIT];
4466 pt->noretcomp_bit = auxtrace_info->priv[INTEL_PT_NORETCOMP_BIT];
4467 pt->have_sched_switch = auxtrace_info->priv[INTEL_PT_HAVE_SCHED_SWITCH];
4468 pt->snapshot_mode = auxtrace_info->priv[INTEL_PT_SNAPSHOT_MODE];
4469 pt->per_cpu_mmaps = auxtrace_info->priv[INTEL_PT_PER_CPU_MMAPS];
4470 intel_pt_print_info(&auxtrace_info->priv[0], INTEL_PT_PMU_TYPE,
4471 INTEL_PT_PER_CPU_MMAPS);
4472
40b746a0 4473 if (intel_pt_has(auxtrace_info, INTEL_PT_CYC_BIT)) {
11fa7cb8
AH
4474 pt->mtc_bit = auxtrace_info->priv[INTEL_PT_MTC_BIT];
4475 pt->mtc_freq_bits = auxtrace_info->priv[INTEL_PT_MTC_FREQ_BITS];
4476 pt->tsc_ctc_ratio_n = auxtrace_info->priv[INTEL_PT_TSC_CTC_N];
4477 pt->tsc_ctc_ratio_d = auxtrace_info->priv[INTEL_PT_TSC_CTC_D];
4478 pt->cyc_bit = auxtrace_info->priv[INTEL_PT_CYC_BIT];
4479 intel_pt_print_info(&auxtrace_info->priv[0], INTEL_PT_MTC_BIT,
4480 INTEL_PT_CYC_BIT);
4481 }
4482
40b746a0 4483 if (intel_pt_has(auxtrace_info, INTEL_PT_MAX_NONTURBO_RATIO)) {
fa8025c3
AH
4484 pt->max_non_turbo_ratio =
4485 auxtrace_info->priv[INTEL_PT_MAX_NONTURBO_RATIO];
4486 intel_pt_print_info(&auxtrace_info->priv[0],
4487 INTEL_PT_MAX_NONTURBO_RATIO,
4488 INTEL_PT_MAX_NONTURBO_RATIO);
4489 }
4490
2b9e32c4 4491 info = &auxtrace_info->priv[INTEL_PT_FILTER_STR_LEN] + 1;
f2be829e 4492 info_end = (void *)auxtrace_info + auxtrace_info->header.size;
2b9e32c4
AH
4493
4494 if (intel_pt_has(auxtrace_info, INTEL_PT_FILTER_STR_LEN)) {
4495 size_t len;
4496
4497 len = auxtrace_info->priv[INTEL_PT_FILTER_STR_LEN];
4498 intel_pt_print_info(&auxtrace_info->priv[0],
4499 INTEL_PT_FILTER_STR_LEN,
4500 INTEL_PT_FILTER_STR_LEN);
4501 if (len) {
4502 const char *filter = (const char *)info;
4503
4504 len = roundup(len + 1, 8);
4505 info += len >> 3;
4506 if ((void *)info > info_end) {
4507 pr_err("%s: bad filter string length\n", __func__);
4508 err = -EINVAL;
4509 goto err_free_queues;
4510 }
4511 pt->filter = memdup(filter, len);
4512 if (!pt->filter) {
4513 err = -ENOMEM;
4514 goto err_free_queues;
4515 }
4516 if (session->header.needs_swap)
4517 mem_bswap_64(pt->filter, len);
4518 if (pt->filter[len - 1]) {
4519 pr_err("%s: filter string not null terminated\n", __func__);
4520 err = -EINVAL;
4521 goto err_free_queues;
4522 }
2acee108
AH
4523 err = addr_filters__parse_bare_filter(&pt->filts,
4524 filter);
4525 if (err)
4526 goto err_free_queues;
2b9e32c4
AH
4527 }
4528 intel_pt_print_info_str("Filter string", pt->filter);
4529 }
4530
f2be829e
AH
4531 if ((void *)info < info_end) {
4532 pt->cap_event_trace = *info++;
4533 if (dump_trace)
4534 fprintf(stdout, " Cap Event Trace %d\n",
4535 pt->cap_event_trace);
4536 }
4537
90e457f7 4538 pt->timeless_decoding = intel_pt_timeless_decoding(pt);
07633387
AH
4539 if (pt->timeless_decoding && !pt->tc.time_mult)
4540 pt->tc.time_mult = 1;
90e457f7 4541 pt->have_tsc = intel_pt_have_tsc(pt);
dbd13432 4542 pt->sampling_mode = intel_pt_sampling_mode(pt);
90e457f7
AH
4543 pt->est_tsc = !pt->timeless_decoding;
4544
e3ff42bd
AH
4545 if (pt->synth_opts.vm_time_correlation) {
4546 if (pt->timeless_decoding) {
4547 pr_err("Intel PT has no time information for VM Time Correlation\n");
4548 err = -EINVAL;
4549 goto err_free_queues;
4550 }
4551 if (session->itrace_synth_opts->ptime_range) {
4552 pr_err("Time ranges cannot be specified with VM Time Correlation\n");
4553 err = -EINVAL;
4554 goto err_free_queues;
4555 }
4556 /* Currently TSC Offset is calculated using MTC packets */
4557 if (!intel_pt_have_mtc(pt)) {
4558 pr_err("MTC packets must have been enabled for VM Time Correlation\n");
4559 err = -EINVAL;
4560 goto err_free_queues;
4561 }
4562 err = intel_pt_parse_vm_tm_corr_args(pt);
4563 if (err)
4564 goto err_free_queues;
4565 }
4566
90e457f7
AH
4567 pt->unknown_thread = thread__new(999999999, 999999999);
4568 if (!pt->unknown_thread) {
4569 err = -ENOMEM;
4570 goto err_free_queues;
4571 }
3a4acda1 4572
90e457f7
AH
4573 err = thread__set_comm(pt->unknown_thread, "unknown", 0);
4574 if (err)
4575 goto err_delete_thread;
79b6bb73 4576 if (thread__init_maps(pt->unknown_thread, pt->machine)) {
90e457f7
AH
4577 err = -ENOMEM;
4578 goto err_delete_thread;
4579 }
4580
4581 pt->auxtrace.process_event = intel_pt_process_event;
4582 pt->auxtrace.process_auxtrace_event = intel_pt_process_auxtrace_event;
dbd13432
AH
4583 pt->auxtrace.queue_data = intel_pt_queue_data;
4584 pt->auxtrace.dump_auxtrace_sample = intel_pt_dump_sample;
90e457f7
AH
4585 pt->auxtrace.flush_events = intel_pt_flush;
4586 pt->auxtrace.free_events = intel_pt_free_events;
4587 pt->auxtrace.free = intel_pt_free;
6b52bb07 4588 pt->auxtrace.evsel_is_auxtrace = intel_pt_evsel_is_auxtrace;
90e457f7
AH
4589 session->auxtrace = &pt->auxtrace;
4590
4591 if (dump_trace)
4592 return 0;
4593
4594 if (pt->have_sched_switch == 1) {
4595 pt->switch_evsel = intel_pt_find_sched_switch(session->evlist);
4596 if (!pt->switch_evsel) {
4597 pr_err("%s: missing sched_switch event\n", __func__);
4d34e10a 4598 err = -EINVAL;
90e457f7
AH
4599 goto err_delete_thread;
4600 }
86c27869
AH
4601 } else if (pt->have_sched_switch == 2 &&
4602 !intel_pt_find_switch(session->evlist)) {
4603 pr_err("%s: missing context_switch attribute flag\n", __func__);
4d34e10a 4604 err = -EINVAL;
86c27869 4605 goto err_delete_thread;
90e457f7
AH
4606 }
4607
65aee81a
AH
4608 if (pt->synth_opts.log) {
4609 bool log_on_error = pt->synth_opts.log_plus_flags & AUXTRACE_LOG_FLG_ON_ERROR;
4610 unsigned int log_on_error_size = pt->synth_opts.log_on_error_size;
4611
4612 intel_pt_log_enable(log_on_error, log_on_error_size);
4613 }
90e457f7
AH
4614
4615 /* Maximum non-turbo ratio is TSC freq / 100 MHz */
4616 if (pt->tc.time_mult) {
4617 u64 tsc_freq = intel_pt_ns_to_ticks(pt, 1000000000);
4618
fa8025c3
AH
4619 if (!pt->max_non_turbo_ratio)
4620 pt->max_non_turbo_ratio =
4621 (tsc_freq + 50000000) / 100000000;
90e457f7
AH
4622 intel_pt_log("TSC frequency %"PRIu64"\n", tsc_freq);
4623 intel_pt_log("Maximum non-turbo ratio %u\n",
4624 pt->max_non_turbo_ratio);
37973075 4625 pt->cbr2khz = tsc_freq / pt->max_non_turbo_ratio / 1000;
90e457f7
AH
4626 }
4627
323fd749
LY
4628 err = intel_pt_setup_time_ranges(pt, session->itrace_synth_opts);
4629 if (err)
4630 goto err_delete_thread;
2c47db90 4631
90e457f7
AH
4632 if (pt->synth_opts.calls)
4633 pt->branches_filter |= PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC |
4634 PERF_IP_FLAG_TRACE_END;
4635 if (pt->synth_opts.returns)
4636 pt->branches_filter |= PERF_IP_FLAG_RETURN |
4637 PERF_IP_FLAG_TRACE_BEGIN;
4638
2855c05c
AH
4639 if ((pt->synth_opts.callchain || pt->synth_opts.add_callchain) &&
4640 !symbol_conf.use_callchain) {
90e457f7
AH
4641 symbol_conf.use_callchain = true;
4642 if (callchain_register_param(&callchain_param) < 0) {
4643 symbol_conf.use_callchain = false;
4644 pt->synth_opts.callchain = false;
2855c05c 4645 pt->synth_opts.add_callchain = false;
90e457f7
AH
4646 }
4647 }
4648
2855c05c
AH
4649 if (pt->synth_opts.add_callchain) {
4650 err = intel_pt_callchain_init(pt);
4651 if (err)
4652 goto err_delete_thread;
4653 }
4654
f0a0251c 4655 if (pt->synth_opts.last_branch || pt->synth_opts.add_last_branch) {
cf888e08 4656 pt->br_stack_sz = pt->synth_opts.last_branch_sz;
f0a0251c
AH
4657 pt->br_stack_sz_plus = pt->br_stack_sz;
4658 }
4659
4660 if (pt->synth_opts.add_last_branch) {
4661 err = intel_pt_br_stack_init(pt);
4662 if (err)
4663 goto err_delete_thread;
4664 /*
4665 * Additional branch stack size to cater for tracing from the
4666 * actual sample ip to where the sample time is recorded.
4667 * Measured at about 200 branches, but generously set to 1024.
4668 * If kernel space is not being traced, then add just 1 for the
4669 * branch to kernel space.
4670 */
4671 if (intel_pt_tracing_kernel(pt))
4672 pt->br_stack_sz_plus += 1024;
4673 else
4674 pt->br_stack_sz_plus += 1;
4675 }
cf888e08 4676
1ef998ff
AH
4677 pt->use_thread_stack = pt->synth_opts.callchain ||
4678 pt->synth_opts.add_callchain ||
cf888e08 4679 pt->synth_opts.thread_stack ||
f0a0251c
AH
4680 pt->synth_opts.last_branch ||
4681 pt->synth_opts.add_last_branch;
cf888e08
AH
4682
4683 pt->callstack = pt->synth_opts.callchain ||
4684 pt->synth_opts.add_callchain ||
4685 pt->synth_opts.thread_stack;
1ef998ff 4686
90e457f7
AH
4687 err = intel_pt_synth_events(pt, session);
4688 if (err)
4689 goto err_delete_thread;
4690
9e64cefe
AH
4691 intel_pt_setup_pebs_events(pt);
4692
aeb802f8
NK
4693 if (perf_data__is_pipe(session->data)) {
4694 pr_warning("WARNING: Intel PT with pipe mode is not recommended.\n"
4695 " The output cannot relied upon. In particular,\n"
4696 " timestamps and the order of events may be incorrect.\n");
4697 }
4698
dbd13432
AH
4699 if (pt->sampling_mode || list_empty(&session->auxtrace_index))
4700 err = auxtrace_queue_data(session, true, true);
4701 else
4702 err = auxtrace_queues__process_index(&pt->queues, session);
90e457f7
AH
4703 if (err)
4704 goto err_delete_thread;
4705
4706 if (pt->queues.populated)
4707 pt->data_queued = true;
4708
4709 if (pt->timeless_decoding)
4710 pr_debug2("Intel PT decoding without timestamps\n");
4711
4712 return 0;
4713
4714err_delete_thread:
2855c05c 4715 zfree(&pt->chain);
abd82868 4716 thread__zput(pt->unknown_thread);
90e457f7
AH
4717err_free_queues:
4718 intel_pt_log_disable();
4719 auxtrace_queues__free(&pt->queues);
4720 session->auxtrace = NULL;
4721err_free:
2acee108 4722 addr_filters__exit(&pt->filts);
2b9e32c4 4723 zfree(&pt->filter);
2c47db90 4724 zfree(&pt->time_ranges);
90e457f7
AH
4725 free(pt);
4726 return err;
4727}