2 * intel_pt.c: Intel Processor Trace support
3 * Copyright (c) 2013-2015, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20 #include <linux/kernel.h>
21 #include <linux/types.h>
36 #include "thread-stack.h"
38 #include "callchain.h"
46 #include "intel-pt-decoder/intel-pt-log.h"
47 #include "intel-pt-decoder/intel-pt-decoder.h"
48 #include "intel-pt-decoder/intel-pt-insn-decoder.h"
49 #include "intel-pt-decoder/intel-pt-pkt-decoder.h"
51 #define MAX_TIMESTAMP (~0ULL)
54 struct auxtrace auxtrace
;
55 struct auxtrace_queues queues
;
56 struct auxtrace_heap heap
;
58 struct perf_session
*session
;
59 struct machine
*machine
;
60 struct perf_evsel
*switch_evsel
;
61 struct thread
*unknown_thread
;
62 bool timeless_decoding
;
71 int have_sched_switch
;
77 struct perf_tsc_conversion tc
;
78 bool cap_user_time_zero
;
80 struct itrace_synth_opts synth_opts
;
82 bool sample_instructions
;
83 u64 instructions_sample_type
;
88 u64 branches_sample_type
;
91 bool sample_transactions
;
92 u64 transactions_sample_type
;
96 u64 ptwrites_sample_type
;
99 bool sample_pwr_events
;
100 u64 pwr_events_sample_type
;
114 unsigned max_non_turbo_ratio
;
117 unsigned long num_events
;
120 struct addr_filters filts
;
124 INTEL_PT_SS_NOT_TRACING
,
127 INTEL_PT_SS_EXPECTING_SWITCH_EVENT
,
128 INTEL_PT_SS_EXPECTING_SWITCH_IP
,
131 struct intel_pt_queue
{
133 unsigned int queue_nr
;
134 struct auxtrace_buffer
*buffer
;
136 const struct intel_pt_state
*state
;
137 struct ip_callchain
*chain
;
138 struct branch_stack
*last_branch
;
139 struct branch_stack
*last_branch_rb
;
140 size_t last_branch_pos
;
141 union perf_event
*event_buf
;
144 bool step_through_buffers
;
145 bool use_buffer_pid_tid
;
150 struct thread
*thread
;
158 char insn
[INTEL_PT_INSN_BUF_SZ
];
161 static void intel_pt_dump(struct intel_pt
*pt __maybe_unused
,
162 unsigned char *buf
, size_t len
)
164 struct intel_pt_pkt packet
;
167 char desc
[INTEL_PT_PKT_DESC_MAX
];
168 const char *color
= PERF_COLOR_BLUE
;
170 color_fprintf(stdout
, color
,
171 ". ... Intel Processor Trace data: size %zu bytes\n",
175 ret
= intel_pt_get_packet(buf
, len
, &packet
);
181 color_fprintf(stdout
, color
, " %08x: ", pos
);
182 for (i
= 0; i
< pkt_len
; i
++)
183 color_fprintf(stdout
, color
, " %02x", buf
[i
]);
185 color_fprintf(stdout
, color
, " ");
187 ret
= intel_pt_pkt_desc(&packet
, desc
,
188 INTEL_PT_PKT_DESC_MAX
);
190 color_fprintf(stdout
, color
, " %s\n", desc
);
192 color_fprintf(stdout
, color
, " Bad packet!\n");
200 static void intel_pt_dump_event(struct intel_pt
*pt
, unsigned char *buf
,
204 intel_pt_dump(pt
, buf
, len
);
207 static int intel_pt_do_fix_overlap(struct intel_pt
*pt
, struct auxtrace_buffer
*a
,
208 struct auxtrace_buffer
*b
)
212 start
= intel_pt_find_overlap(a
->data
, a
->size
, b
->data
, b
->size
,
216 b
->use_size
= b
->data
+ b
->size
- start
;
221 static void intel_pt_use_buffer_pid_tid(struct intel_pt_queue
*ptq
,
222 struct auxtrace_queue
*queue
,
223 struct auxtrace_buffer
*buffer
)
225 if (queue
->cpu
== -1 && buffer
->cpu
!= -1)
226 ptq
->cpu
= buffer
->cpu
;
228 ptq
->pid
= buffer
->pid
;
229 ptq
->tid
= buffer
->tid
;
231 intel_pt_log("queue %u cpu %d pid %d tid %d\n",
232 ptq
->queue_nr
, ptq
->cpu
, ptq
->pid
, ptq
->tid
);
234 thread__zput(ptq
->thread
);
236 if (ptq
->tid
!= -1) {
238 ptq
->thread
= machine__findnew_thread(ptq
->pt
->machine
,
242 ptq
->thread
= machine__find_thread(ptq
->pt
->machine
, -1,
247 /* This function assumes data is processed sequentially only */
248 static int intel_pt_get_trace(struct intel_pt_buffer
*b
, void *data
)
250 struct intel_pt_queue
*ptq
= data
;
251 struct auxtrace_buffer
*buffer
= ptq
->buffer
, *old_buffer
= buffer
;
252 struct auxtrace_queue
*queue
;
259 queue
= &ptq
->pt
->queues
.queue_array
[ptq
->queue_nr
];
261 buffer
= auxtrace_buffer__next(queue
, buffer
);
264 auxtrace_buffer__drop_data(old_buffer
);
269 ptq
->buffer
= buffer
;
272 int fd
= perf_data__fd(ptq
->pt
->session
->data
);
274 buffer
->data
= auxtrace_buffer__get_data(buffer
, fd
);
279 if (ptq
->pt
->snapshot_mode
&& !buffer
->consecutive
&& old_buffer
&&
280 intel_pt_do_fix_overlap(ptq
->pt
, old_buffer
, buffer
))
283 if (buffer
->use_data
) {
284 b
->len
= buffer
->use_size
;
285 b
->buf
= buffer
->use_data
;
287 b
->len
= buffer
->size
;
288 b
->buf
= buffer
->data
;
290 b
->ref_timestamp
= buffer
->reference
;
293 * If in snapshot mode and the buffer has no usable data, get next
294 * buffer and again check overlap against old_buffer.
296 if (ptq
->pt
->snapshot_mode
&& !b
->len
)
300 auxtrace_buffer__drop_data(old_buffer
);
302 if (!old_buffer
|| ptq
->pt
->sampling_mode
|| (ptq
->pt
->snapshot_mode
&&
303 !buffer
->consecutive
)) {
304 b
->consecutive
= false;
305 b
->trace_nr
= buffer
->buffer_nr
+ 1;
307 b
->consecutive
= true;
310 if (ptq
->use_buffer_pid_tid
&& (ptq
->pid
!= buffer
->pid
||
311 ptq
->tid
!= buffer
->tid
))
312 intel_pt_use_buffer_pid_tid(ptq
, queue
, buffer
);
314 if (ptq
->step_through_buffers
)
318 return intel_pt_get_trace(b
, data
);
323 struct intel_pt_cache_entry
{
324 struct auxtrace_cache_entry entry
;
327 enum intel_pt_insn_op op
;
328 enum intel_pt_insn_branch branch
;
331 char insn
[INTEL_PT_INSN_BUF_SZ
];
334 static int intel_pt_config_div(const char *var
, const char *value
, void *data
)
339 if (!strcmp(var
, "intel-pt.cache-divisor")) {
340 val
= strtol(value
, NULL
, 0);
341 if (val
> 0 && val
<= INT_MAX
)
348 static int intel_pt_cache_divisor(void)
355 perf_config(intel_pt_config_div
, &d
);
363 static unsigned int intel_pt_cache_size(struct dso
*dso
,
364 struct machine
*machine
)
368 size
= dso__data_size(dso
, machine
);
369 size
/= intel_pt_cache_divisor();
372 if (size
> (1 << 21))
374 return 32 - __builtin_clz(size
);
377 static struct auxtrace_cache
*intel_pt_cache(struct dso
*dso
,
378 struct machine
*machine
)
380 struct auxtrace_cache
*c
;
383 if (dso
->auxtrace_cache
)
384 return dso
->auxtrace_cache
;
386 bits
= intel_pt_cache_size(dso
, machine
);
388 /* Ignoring cache creation failure */
389 c
= auxtrace_cache__new(bits
, sizeof(struct intel_pt_cache_entry
), 200);
391 dso
->auxtrace_cache
= c
;
396 static int intel_pt_cache_add(struct dso
*dso
, struct machine
*machine
,
397 u64 offset
, u64 insn_cnt
, u64 byte_cnt
,
398 struct intel_pt_insn
*intel_pt_insn
)
400 struct auxtrace_cache
*c
= intel_pt_cache(dso
, machine
);
401 struct intel_pt_cache_entry
*e
;
407 e
= auxtrace_cache__alloc_entry(c
);
411 e
->insn_cnt
= insn_cnt
;
412 e
->byte_cnt
= byte_cnt
;
413 e
->op
= intel_pt_insn
->op
;
414 e
->branch
= intel_pt_insn
->branch
;
415 e
->length
= intel_pt_insn
->length
;
416 e
->rel
= intel_pt_insn
->rel
;
417 memcpy(e
->insn
, intel_pt_insn
->buf
, INTEL_PT_INSN_BUF_SZ
);
419 err
= auxtrace_cache__add(c
, offset
, &e
->entry
);
421 auxtrace_cache__free_entry(c
, e
);
426 static struct intel_pt_cache_entry
*
427 intel_pt_cache_lookup(struct dso
*dso
, struct machine
*machine
, u64 offset
)
429 struct auxtrace_cache
*c
= intel_pt_cache(dso
, machine
);
434 return auxtrace_cache__lookup(dso
->auxtrace_cache
, offset
);
437 static int intel_pt_walk_next_insn(struct intel_pt_insn
*intel_pt_insn
,
438 uint64_t *insn_cnt_ptr
, uint64_t *ip
,
439 uint64_t to_ip
, uint64_t max_insn_cnt
,
442 struct intel_pt_queue
*ptq
= data
;
443 struct machine
*machine
= ptq
->pt
->machine
;
444 struct thread
*thread
;
445 struct addr_location al
;
446 unsigned char buf
[INTEL_PT_INSN_BUF_SZ
];
450 u64 offset
, start_offset
, start_ip
;
454 intel_pt_insn
->length
= 0;
456 if (to_ip
&& *ip
== to_ip
)
459 if (*ip
>= ptq
->pt
->kernel_start
)
460 cpumode
= PERF_RECORD_MISC_KERNEL
;
462 cpumode
= PERF_RECORD_MISC_USER
;
464 thread
= ptq
->thread
;
466 if (cpumode
!= PERF_RECORD_MISC_KERNEL
)
468 thread
= ptq
->pt
->unknown_thread
;
472 thread__find_addr_map(thread
, cpumode
, MAP__FUNCTION
, *ip
, &al
);
473 if (!al
.map
|| !al
.map
->dso
)
476 if (al
.map
->dso
->data
.status
== DSO_DATA_STATUS_ERROR
&&
477 dso__data_status_seen(al
.map
->dso
,
478 DSO_DATA_STATUS_SEEN_ITRACE
))
481 offset
= al
.map
->map_ip(al
.map
, *ip
);
483 if (!to_ip
&& one_map
) {
484 struct intel_pt_cache_entry
*e
;
486 e
= intel_pt_cache_lookup(al
.map
->dso
, machine
, offset
);
488 (!max_insn_cnt
|| e
->insn_cnt
<= max_insn_cnt
)) {
489 *insn_cnt_ptr
= e
->insn_cnt
;
491 intel_pt_insn
->op
= e
->op
;
492 intel_pt_insn
->branch
= e
->branch
;
493 intel_pt_insn
->length
= e
->length
;
494 intel_pt_insn
->rel
= e
->rel
;
495 memcpy(intel_pt_insn
->buf
, e
->insn
,
496 INTEL_PT_INSN_BUF_SZ
);
497 intel_pt_log_insn_no_data(intel_pt_insn
, *ip
);
502 start_offset
= offset
;
505 /* Load maps to ensure dso->is_64_bit has been updated */
508 x86_64
= al
.map
->dso
->is_64_bit
;
511 len
= dso__data_read_offset(al
.map
->dso
, machine
,
513 INTEL_PT_INSN_BUF_SZ
);
517 if (intel_pt_get_insn(buf
, len
, x86_64
, intel_pt_insn
))
520 intel_pt_log_insn(intel_pt_insn
, *ip
);
524 if (intel_pt_insn
->branch
!= INTEL_PT_BR_NO_BRANCH
)
527 if (max_insn_cnt
&& insn_cnt
>= max_insn_cnt
)
530 *ip
+= intel_pt_insn
->length
;
532 if (to_ip
&& *ip
== to_ip
)
535 if (*ip
>= al
.map
->end
)
538 offset
+= intel_pt_insn
->length
;
543 *insn_cnt_ptr
= insn_cnt
;
549 * Didn't lookup in the 'to_ip' case, so do it now to prevent duplicate
553 struct intel_pt_cache_entry
*e
;
555 e
= intel_pt_cache_lookup(al
.map
->dso
, machine
, start_offset
);
560 /* Ignore cache errors */
561 intel_pt_cache_add(al
.map
->dso
, machine
, start_offset
, insn_cnt
,
562 *ip
- start_ip
, intel_pt_insn
);
567 *insn_cnt_ptr
= insn_cnt
;
571 static bool intel_pt_match_pgd_ip(struct intel_pt
*pt
, uint64_t ip
,
572 uint64_t offset
, const char *filename
)
574 struct addr_filter
*filt
;
575 bool have_filter
= false;
576 bool hit_tracestop
= false;
577 bool hit_filter
= false;
579 list_for_each_entry(filt
, &pt
->filts
.head
, list
) {
583 if ((filename
&& !filt
->filename
) ||
584 (!filename
&& filt
->filename
) ||
585 (filename
&& strcmp(filename
, filt
->filename
)))
588 if (!(offset
>= filt
->addr
&& offset
< filt
->addr
+ filt
->size
))
591 intel_pt_log("TIP.PGD ip %#"PRIx64
" offset %#"PRIx64
" in %s hit filter: %s offset %#"PRIx64
" size %#"PRIx64
"\n",
592 ip
, offset
, filename
? filename
: "[kernel]",
593 filt
->start
? "filter" : "stop",
594 filt
->addr
, filt
->size
);
599 hit_tracestop
= true;
602 if (!hit_tracestop
&& !hit_filter
)
603 intel_pt_log("TIP.PGD ip %#"PRIx64
" offset %#"PRIx64
" in %s is not in a filter region\n",
604 ip
, offset
, filename
? filename
: "[kernel]");
606 return hit_tracestop
|| (have_filter
&& !hit_filter
);
609 static int __intel_pt_pgd_ip(uint64_t ip
, void *data
)
611 struct intel_pt_queue
*ptq
= data
;
612 struct thread
*thread
;
613 struct addr_location al
;
617 if (ip
>= ptq
->pt
->kernel_start
)
618 return intel_pt_match_pgd_ip(ptq
->pt
, ip
, ip
, NULL
);
620 cpumode
= PERF_RECORD_MISC_USER
;
622 thread
= ptq
->thread
;
626 thread__find_addr_map(thread
, cpumode
, MAP__FUNCTION
, ip
, &al
);
627 if (!al
.map
|| !al
.map
->dso
)
630 offset
= al
.map
->map_ip(al
.map
, ip
);
632 return intel_pt_match_pgd_ip(ptq
->pt
, ip
, offset
,
633 al
.map
->dso
->long_name
);
636 static bool intel_pt_pgd_ip(uint64_t ip
, void *data
)
638 return __intel_pt_pgd_ip(ip
, data
) > 0;
641 static bool intel_pt_get_config(struct intel_pt
*pt
,
642 struct perf_event_attr
*attr
, u64
*config
)
644 if (attr
->type
== pt
->pmu_type
) {
646 *config
= attr
->config
;
653 static bool intel_pt_exclude_kernel(struct intel_pt
*pt
)
655 struct perf_evsel
*evsel
;
657 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
658 if (intel_pt_get_config(pt
, &evsel
->attr
, NULL
) &&
659 !evsel
->attr
.exclude_kernel
)
665 static bool intel_pt_return_compression(struct intel_pt
*pt
)
667 struct perf_evsel
*evsel
;
670 if (!pt
->noretcomp_bit
)
673 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
674 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
) &&
675 (config
& pt
->noretcomp_bit
))
681 static bool intel_pt_branch_enable(struct intel_pt
*pt
)
683 struct perf_evsel
*evsel
;
686 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
687 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
) &&
688 (config
& 1) && !(config
& 0x2000))
694 static unsigned int intel_pt_mtc_period(struct intel_pt
*pt
)
696 struct perf_evsel
*evsel
;
700 if (!pt
->mtc_freq_bits
)
703 for (shift
= 0, config
= pt
->mtc_freq_bits
; !(config
& 1); shift
++)
706 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
707 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
))
708 return (config
& pt
->mtc_freq_bits
) >> shift
;
713 static bool intel_pt_timeless_decoding(struct intel_pt
*pt
)
715 struct perf_evsel
*evsel
;
716 bool timeless_decoding
= true;
719 if (!pt
->tsc_bit
|| !pt
->cap_user_time_zero
)
722 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
723 if (!(evsel
->attr
.sample_type
& PERF_SAMPLE_TIME
))
725 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
)) {
726 if (config
& pt
->tsc_bit
)
727 timeless_decoding
= false;
732 return timeless_decoding
;
735 static bool intel_pt_tracing_kernel(struct intel_pt
*pt
)
737 struct perf_evsel
*evsel
;
739 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
740 if (intel_pt_get_config(pt
, &evsel
->attr
, NULL
) &&
741 !evsel
->attr
.exclude_kernel
)
747 static bool intel_pt_have_tsc(struct intel_pt
*pt
)
749 struct perf_evsel
*evsel
;
750 bool have_tsc
= false;
756 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
757 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
)) {
758 if (config
& pt
->tsc_bit
)
767 static u64
intel_pt_ns_to_ticks(const struct intel_pt
*pt
, u64 ns
)
771 quot
= ns
/ pt
->tc
.time_mult
;
772 rem
= ns
% pt
->tc
.time_mult
;
773 return (quot
<< pt
->tc
.time_shift
) + (rem
<< pt
->tc
.time_shift
) /
777 static struct intel_pt_queue
*intel_pt_alloc_queue(struct intel_pt
*pt
,
778 unsigned int queue_nr
)
780 struct intel_pt_params params
= { .get_trace
= 0, };
781 struct intel_pt_queue
*ptq
;
783 ptq
= zalloc(sizeof(struct intel_pt_queue
));
787 if (pt
->synth_opts
.callchain
) {
788 size_t sz
= sizeof(struct ip_callchain
);
790 sz
+= pt
->synth_opts
.callchain_sz
* sizeof(u64
);
791 ptq
->chain
= zalloc(sz
);
796 if (pt
->synth_opts
.last_branch
) {
797 size_t sz
= sizeof(struct branch_stack
);
799 sz
+= pt
->synth_opts
.last_branch_sz
*
800 sizeof(struct branch_entry
);
801 ptq
->last_branch
= zalloc(sz
);
802 if (!ptq
->last_branch
)
804 ptq
->last_branch_rb
= zalloc(sz
);
805 if (!ptq
->last_branch_rb
)
809 ptq
->event_buf
= malloc(PERF_SAMPLE_MAX_SIZE
);
814 ptq
->queue_nr
= queue_nr
;
815 ptq
->exclude_kernel
= intel_pt_exclude_kernel(pt
);
821 params
.get_trace
= intel_pt_get_trace
;
822 params
.walk_insn
= intel_pt_walk_next_insn
;
824 params
.return_compression
= intel_pt_return_compression(pt
);
825 params
.branch_enable
= intel_pt_branch_enable(pt
);
826 params
.max_non_turbo_ratio
= pt
->max_non_turbo_ratio
;
827 params
.mtc_period
= intel_pt_mtc_period(pt
);
828 params
.tsc_ctc_ratio_n
= pt
->tsc_ctc_ratio_n
;
829 params
.tsc_ctc_ratio_d
= pt
->tsc_ctc_ratio_d
;
831 if (pt
->filts
.cnt
> 0)
832 params
.pgd_ip
= intel_pt_pgd_ip
;
834 if (pt
->synth_opts
.instructions
) {
835 if (pt
->synth_opts
.period
) {
836 switch (pt
->synth_opts
.period_type
) {
837 case PERF_ITRACE_PERIOD_INSTRUCTIONS
:
839 INTEL_PT_PERIOD_INSTRUCTIONS
;
840 params
.period
= pt
->synth_opts
.period
;
842 case PERF_ITRACE_PERIOD_TICKS
:
843 params
.period_type
= INTEL_PT_PERIOD_TICKS
;
844 params
.period
= pt
->synth_opts
.period
;
846 case PERF_ITRACE_PERIOD_NANOSECS
:
847 params
.period_type
= INTEL_PT_PERIOD_TICKS
;
848 params
.period
= intel_pt_ns_to_ticks(pt
,
849 pt
->synth_opts
.period
);
856 if (!params
.period
) {
857 params
.period_type
= INTEL_PT_PERIOD_INSTRUCTIONS
;
862 ptq
->decoder
= intel_pt_decoder_new(¶ms
);
869 zfree(&ptq
->event_buf
);
870 zfree(&ptq
->last_branch
);
871 zfree(&ptq
->last_branch_rb
);
877 static void intel_pt_free_queue(void *priv
)
879 struct intel_pt_queue
*ptq
= priv
;
883 thread__zput(ptq
->thread
);
884 intel_pt_decoder_free(ptq
->decoder
);
885 zfree(&ptq
->event_buf
);
886 zfree(&ptq
->last_branch
);
887 zfree(&ptq
->last_branch_rb
);
892 static void intel_pt_set_pid_tid_cpu(struct intel_pt
*pt
,
893 struct auxtrace_queue
*queue
)
895 struct intel_pt_queue
*ptq
= queue
->priv
;
897 if (queue
->tid
== -1 || pt
->have_sched_switch
) {
898 ptq
->tid
= machine__get_current_tid(pt
->machine
, ptq
->cpu
);
899 thread__zput(ptq
->thread
);
902 if (!ptq
->thread
&& ptq
->tid
!= -1)
903 ptq
->thread
= machine__find_thread(pt
->machine
, -1, ptq
->tid
);
906 ptq
->pid
= ptq
->thread
->pid_
;
907 if (queue
->cpu
== -1)
908 ptq
->cpu
= ptq
->thread
->cpu
;
912 static void intel_pt_sample_flags(struct intel_pt_queue
*ptq
)
914 if (ptq
->state
->flags
& INTEL_PT_ABORT_TX
) {
915 ptq
->flags
= PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_TX_ABORT
;
916 } else if (ptq
->state
->flags
& INTEL_PT_ASYNC
) {
917 if (ptq
->state
->to_ip
)
918 ptq
->flags
= PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
|
920 PERF_IP_FLAG_INTERRUPT
;
922 ptq
->flags
= PERF_IP_FLAG_BRANCH
|
923 PERF_IP_FLAG_TRACE_END
;
926 if (ptq
->state
->from_ip
)
927 ptq
->flags
= intel_pt_insn_type(ptq
->state
->insn_op
);
929 ptq
->flags
= PERF_IP_FLAG_BRANCH
|
930 PERF_IP_FLAG_TRACE_BEGIN
;
931 if (ptq
->state
->flags
& INTEL_PT_IN_TX
)
932 ptq
->flags
|= PERF_IP_FLAG_IN_TX
;
933 ptq
->insn_len
= ptq
->state
->insn_len
;
934 memcpy(ptq
->insn
, ptq
->state
->insn
, INTEL_PT_INSN_BUF_SZ
);
938 static int intel_pt_setup_queue(struct intel_pt
*pt
,
939 struct auxtrace_queue
*queue
,
940 unsigned int queue_nr
)
942 struct intel_pt_queue
*ptq
= queue
->priv
;
944 if (list_empty(&queue
->head
))
948 ptq
= intel_pt_alloc_queue(pt
, queue_nr
);
953 if (queue
->cpu
!= -1)
954 ptq
->cpu
= queue
->cpu
;
955 ptq
->tid
= queue
->tid
;
957 if (pt
->sampling_mode
) {
958 if (pt
->timeless_decoding
)
959 ptq
->step_through_buffers
= true;
960 if (pt
->timeless_decoding
|| !pt
->have_sched_switch
)
961 ptq
->use_buffer_pid_tid
= true;
967 ptq
->switch_state
!= INTEL_PT_SS_EXPECTING_SWITCH_EVENT
)) {
968 const struct intel_pt_state
*state
;
971 if (pt
->timeless_decoding
)
974 intel_pt_log("queue %u getting timestamp\n", queue_nr
);
975 intel_pt_log("queue %u decoding cpu %d pid %d tid %d\n",
976 queue_nr
, ptq
->cpu
, ptq
->pid
, ptq
->tid
);
978 state
= intel_pt_decode(ptq
->decoder
);
980 if (state
->err
== INTEL_PT_ERR_NODATA
) {
981 intel_pt_log("queue %u has no timestamp\n",
987 if (state
->timestamp
)
991 ptq
->timestamp
= state
->timestamp
;
992 intel_pt_log("queue %u timestamp 0x%" PRIx64
"\n",
993 queue_nr
, ptq
->timestamp
);
995 ptq
->have_sample
= true;
996 intel_pt_sample_flags(ptq
);
997 ret
= auxtrace_heap__add(&pt
->heap
, queue_nr
, ptq
->timestamp
);
1000 ptq
->on_heap
= true;
1006 static int intel_pt_setup_queues(struct intel_pt
*pt
)
1011 for (i
= 0; i
< pt
->queues
.nr_queues
; i
++) {
1012 ret
= intel_pt_setup_queue(pt
, &pt
->queues
.queue_array
[i
], i
);
1019 static inline void intel_pt_copy_last_branch_rb(struct intel_pt_queue
*ptq
)
1021 struct branch_stack
*bs_src
= ptq
->last_branch_rb
;
1022 struct branch_stack
*bs_dst
= ptq
->last_branch
;
1025 bs_dst
->nr
= bs_src
->nr
;
1030 nr
= ptq
->pt
->synth_opts
.last_branch_sz
- ptq
->last_branch_pos
;
1031 memcpy(&bs_dst
->entries
[0],
1032 &bs_src
->entries
[ptq
->last_branch_pos
],
1033 sizeof(struct branch_entry
) * nr
);
1035 if (bs_src
->nr
>= ptq
->pt
->synth_opts
.last_branch_sz
) {
1036 memcpy(&bs_dst
->entries
[nr
],
1037 &bs_src
->entries
[0],
1038 sizeof(struct branch_entry
) * ptq
->last_branch_pos
);
1042 static inline void intel_pt_reset_last_branch_rb(struct intel_pt_queue
*ptq
)
1044 ptq
->last_branch_pos
= 0;
1045 ptq
->last_branch_rb
->nr
= 0;
1048 static void intel_pt_update_last_branch_rb(struct intel_pt_queue
*ptq
)
1050 const struct intel_pt_state
*state
= ptq
->state
;
1051 struct branch_stack
*bs
= ptq
->last_branch_rb
;
1052 struct branch_entry
*be
;
1054 if (!ptq
->last_branch_pos
)
1055 ptq
->last_branch_pos
= ptq
->pt
->synth_opts
.last_branch_sz
;
1057 ptq
->last_branch_pos
-= 1;
1059 be
= &bs
->entries
[ptq
->last_branch_pos
];
1060 be
->from
= state
->from_ip
;
1061 be
->to
= state
->to_ip
;
1062 be
->flags
.abort
= !!(state
->flags
& INTEL_PT_ABORT_TX
);
1063 be
->flags
.in_tx
= !!(state
->flags
& INTEL_PT_IN_TX
);
1064 /* No support for mispredict */
1065 be
->flags
.mispred
= ptq
->pt
->mispred_all
;
1067 if (bs
->nr
< ptq
->pt
->synth_opts
.last_branch_sz
)
1071 static inline bool intel_pt_skip_event(struct intel_pt
*pt
)
1073 return pt
->synth_opts
.initial_skip
&&
1074 pt
->num_events
++ < pt
->synth_opts
.initial_skip
;
1077 static void intel_pt_prep_b_sample(struct intel_pt
*pt
,
1078 struct intel_pt_queue
*ptq
,
1079 union perf_event
*event
,
1080 struct perf_sample
*sample
)
1082 event
->sample
.header
.type
= PERF_RECORD_SAMPLE
;
1083 event
->sample
.header
.misc
= PERF_RECORD_MISC_USER
;
1084 event
->sample
.header
.size
= sizeof(struct perf_event_header
);
1086 if (!pt
->timeless_decoding
)
1087 sample
->time
= tsc_to_perf_time(ptq
->timestamp
, &pt
->tc
);
1089 sample
->cpumode
= PERF_RECORD_MISC_USER
;
1090 sample
->ip
= ptq
->state
->from_ip
;
1091 sample
->pid
= ptq
->pid
;
1092 sample
->tid
= ptq
->tid
;
1093 sample
->addr
= ptq
->state
->to_ip
;
1095 sample
->cpu
= ptq
->cpu
;
1096 sample
->flags
= ptq
->flags
;
1097 sample
->insn_len
= ptq
->insn_len
;
1098 memcpy(sample
->insn
, ptq
->insn
, INTEL_PT_INSN_BUF_SZ
);
1101 static int intel_pt_inject_event(union perf_event
*event
,
1102 struct perf_sample
*sample
, u64 type
)
1104 event
->header
.size
= perf_event__sample_event_size(sample
, type
, 0);
1105 return perf_event__synthesize_sample(event
, type
, 0, sample
);
1108 static inline int intel_pt_opt_inject(struct intel_pt
*pt
,
1109 union perf_event
*event
,
1110 struct perf_sample
*sample
, u64 type
)
1112 if (!pt
->synth_opts
.inject
)
1115 return intel_pt_inject_event(event
, sample
, type
);
1118 static int intel_pt_deliver_synth_b_event(struct intel_pt
*pt
,
1119 union perf_event
*event
,
1120 struct perf_sample
*sample
, u64 type
)
1124 ret
= intel_pt_opt_inject(pt
, event
, sample
, type
);
1128 ret
= perf_session__deliver_synth_event(pt
->session
, event
, sample
);
1130 pr_err("Intel PT: failed to deliver event, error %d\n", ret
);
1135 static int intel_pt_synth_branch_sample(struct intel_pt_queue
*ptq
)
1137 struct intel_pt
*pt
= ptq
->pt
;
1138 union perf_event
*event
= ptq
->event_buf
;
1139 struct perf_sample sample
= { .ip
= 0, };
1140 struct dummy_branch_stack
{
1142 struct branch_entry entries
;
1145 if (pt
->branches_filter
&& !(pt
->branches_filter
& ptq
->flags
))
1148 if (intel_pt_skip_event(pt
))
1151 intel_pt_prep_b_sample(pt
, ptq
, event
, &sample
);
1153 sample
.id
= ptq
->pt
->branches_id
;
1154 sample
.stream_id
= ptq
->pt
->branches_id
;
1157 * perf report cannot handle events without a branch stack when using
1158 * SORT_MODE__BRANCH so make a dummy one.
1160 if (pt
->synth_opts
.last_branch
&& sort__mode
== SORT_MODE__BRANCH
) {
1161 dummy_bs
= (struct dummy_branch_stack
){
1168 sample
.branch_stack
= (struct branch_stack
*)&dummy_bs
;
1171 return intel_pt_deliver_synth_b_event(pt
, event
, &sample
,
1172 pt
->branches_sample_type
);
1175 static void intel_pt_prep_sample(struct intel_pt
*pt
,
1176 struct intel_pt_queue
*ptq
,
1177 union perf_event
*event
,
1178 struct perf_sample
*sample
)
1180 intel_pt_prep_b_sample(pt
, ptq
, event
, sample
);
1182 if (pt
->synth_opts
.callchain
) {
1183 thread_stack__sample(ptq
->thread
, ptq
->chain
,
1184 pt
->synth_opts
.callchain_sz
, sample
->ip
);
1185 sample
->callchain
= ptq
->chain
;
1188 if (pt
->synth_opts
.last_branch
) {
1189 intel_pt_copy_last_branch_rb(ptq
);
1190 sample
->branch_stack
= ptq
->last_branch
;
1194 static inline int intel_pt_deliver_synth_event(struct intel_pt
*pt
,
1195 struct intel_pt_queue
*ptq
,
1196 union perf_event
*event
,
1197 struct perf_sample
*sample
,
1202 ret
= intel_pt_deliver_synth_b_event(pt
, event
, sample
, type
);
1204 if (pt
->synth_opts
.last_branch
)
1205 intel_pt_reset_last_branch_rb(ptq
);
1210 static int intel_pt_synth_instruction_sample(struct intel_pt_queue
*ptq
)
1212 struct intel_pt
*pt
= ptq
->pt
;
1213 union perf_event
*event
= ptq
->event_buf
;
1214 struct perf_sample sample
= { .ip
= 0, };
1216 if (intel_pt_skip_event(pt
))
1219 intel_pt_prep_sample(pt
, ptq
, event
, &sample
);
1221 sample
.id
= ptq
->pt
->instructions_id
;
1222 sample
.stream_id
= ptq
->pt
->instructions_id
;
1223 sample
.period
= ptq
->state
->tot_insn_cnt
- ptq
->last_insn_cnt
;
1225 ptq
->last_insn_cnt
= ptq
->state
->tot_insn_cnt
;
1227 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1228 pt
->instructions_sample_type
);
1231 static int intel_pt_synth_transaction_sample(struct intel_pt_queue
*ptq
)
1233 struct intel_pt
*pt
= ptq
->pt
;
1234 union perf_event
*event
= ptq
->event_buf
;
1235 struct perf_sample sample
= { .ip
= 0, };
1237 if (intel_pt_skip_event(pt
))
1240 intel_pt_prep_sample(pt
, ptq
, event
, &sample
);
1242 sample
.id
= ptq
->pt
->transactions_id
;
1243 sample
.stream_id
= ptq
->pt
->transactions_id
;
1245 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1246 pt
->transactions_sample_type
);
1249 static void intel_pt_prep_p_sample(struct intel_pt
*pt
,
1250 struct intel_pt_queue
*ptq
,
1251 union perf_event
*event
,
1252 struct perf_sample
*sample
)
1254 intel_pt_prep_sample(pt
, ptq
, event
, sample
);
1257 * Zero IP is used to mean "trace start" but that is not the case for
1258 * power or PTWRITE events with no IP, so clear the flags.
1264 static int intel_pt_synth_ptwrite_sample(struct intel_pt_queue
*ptq
)
1266 struct intel_pt
*pt
= ptq
->pt
;
1267 union perf_event
*event
= ptq
->event_buf
;
1268 struct perf_sample sample
= { .ip
= 0, };
1269 struct perf_synth_intel_ptwrite raw
;
1271 if (intel_pt_skip_event(pt
))
1274 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1276 sample
.id
= ptq
->pt
->ptwrites_id
;
1277 sample
.stream_id
= ptq
->pt
->ptwrites_id
;
1280 raw
.ip
= !!(ptq
->state
->flags
& INTEL_PT_FUP_IP
);
1281 raw
.payload
= cpu_to_le64(ptq
->state
->ptw_payload
);
1283 sample
.raw_size
= perf_synth__raw_size(raw
);
1284 sample
.raw_data
= perf_synth__raw_data(&raw
);
1286 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1287 pt
->ptwrites_sample_type
);
1290 static int intel_pt_synth_cbr_sample(struct intel_pt_queue
*ptq
)
1292 struct intel_pt
*pt
= ptq
->pt
;
1293 union perf_event
*event
= ptq
->event_buf
;
1294 struct perf_sample sample
= { .ip
= 0, };
1295 struct perf_synth_intel_cbr raw
;
1298 if (intel_pt_skip_event(pt
))
1301 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1303 sample
.id
= ptq
->pt
->cbr_id
;
1304 sample
.stream_id
= ptq
->pt
->cbr_id
;
1306 flags
= (u16
)ptq
->state
->cbr_payload
| (pt
->max_non_turbo_ratio
<< 16);
1307 raw
.flags
= cpu_to_le32(flags
);
1308 raw
.freq
= cpu_to_le32(raw
.cbr
* pt
->cbr2khz
);
1311 sample
.raw_size
= perf_synth__raw_size(raw
);
1312 sample
.raw_data
= perf_synth__raw_data(&raw
);
1314 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1315 pt
->pwr_events_sample_type
);
1318 static int intel_pt_synth_mwait_sample(struct intel_pt_queue
*ptq
)
1320 struct intel_pt
*pt
= ptq
->pt
;
1321 union perf_event
*event
= ptq
->event_buf
;
1322 struct perf_sample sample
= { .ip
= 0, };
1323 struct perf_synth_intel_mwait raw
;
1325 if (intel_pt_skip_event(pt
))
1328 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1330 sample
.id
= ptq
->pt
->mwait_id
;
1331 sample
.stream_id
= ptq
->pt
->mwait_id
;
1334 raw
.payload
= cpu_to_le64(ptq
->state
->mwait_payload
);
1336 sample
.raw_size
= perf_synth__raw_size(raw
);
1337 sample
.raw_data
= perf_synth__raw_data(&raw
);
1339 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1340 pt
->pwr_events_sample_type
);
1343 static int intel_pt_synth_pwre_sample(struct intel_pt_queue
*ptq
)
1345 struct intel_pt
*pt
= ptq
->pt
;
1346 union perf_event
*event
= ptq
->event_buf
;
1347 struct perf_sample sample
= { .ip
= 0, };
1348 struct perf_synth_intel_pwre raw
;
1350 if (intel_pt_skip_event(pt
))
1353 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1355 sample
.id
= ptq
->pt
->pwre_id
;
1356 sample
.stream_id
= ptq
->pt
->pwre_id
;
1359 raw
.payload
= cpu_to_le64(ptq
->state
->pwre_payload
);
1361 sample
.raw_size
= perf_synth__raw_size(raw
);
1362 sample
.raw_data
= perf_synth__raw_data(&raw
);
1364 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1365 pt
->pwr_events_sample_type
);
1368 static int intel_pt_synth_exstop_sample(struct intel_pt_queue
*ptq
)
1370 struct intel_pt
*pt
= ptq
->pt
;
1371 union perf_event
*event
= ptq
->event_buf
;
1372 struct perf_sample sample
= { .ip
= 0, };
1373 struct perf_synth_intel_exstop raw
;
1375 if (intel_pt_skip_event(pt
))
1378 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1380 sample
.id
= ptq
->pt
->exstop_id
;
1381 sample
.stream_id
= ptq
->pt
->exstop_id
;
1384 raw
.ip
= !!(ptq
->state
->flags
& INTEL_PT_FUP_IP
);
1386 sample
.raw_size
= perf_synth__raw_size(raw
);
1387 sample
.raw_data
= perf_synth__raw_data(&raw
);
1389 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1390 pt
->pwr_events_sample_type
);
1393 static int intel_pt_synth_pwrx_sample(struct intel_pt_queue
*ptq
)
1395 struct intel_pt
*pt
= ptq
->pt
;
1396 union perf_event
*event
= ptq
->event_buf
;
1397 struct perf_sample sample
= { .ip
= 0, };
1398 struct perf_synth_intel_pwrx raw
;
1400 if (intel_pt_skip_event(pt
))
1403 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1405 sample
.id
= ptq
->pt
->pwrx_id
;
1406 sample
.stream_id
= ptq
->pt
->pwrx_id
;
1409 raw
.payload
= cpu_to_le64(ptq
->state
->pwrx_payload
);
1411 sample
.raw_size
= perf_synth__raw_size(raw
);
1412 sample
.raw_data
= perf_synth__raw_data(&raw
);
1414 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1415 pt
->pwr_events_sample_type
);
1418 static int intel_pt_synth_error(struct intel_pt
*pt
, int code
, int cpu
,
1419 pid_t pid
, pid_t tid
, u64 ip
)
1421 union perf_event event
;
1422 char msg
[MAX_AUXTRACE_ERROR_MSG
];
1425 intel_pt__strerror(code
, msg
, MAX_AUXTRACE_ERROR_MSG
);
1427 auxtrace_synth_error(&event
.auxtrace_error
, PERF_AUXTRACE_ERROR_ITRACE
,
1428 code
, cpu
, pid
, tid
, ip
, msg
);
1430 err
= perf_session__deliver_synth_event(pt
->session
, &event
, NULL
);
1432 pr_err("Intel Processor Trace: failed to deliver error event, error %d\n",
1438 static int intel_pt_next_tid(struct intel_pt
*pt
, struct intel_pt_queue
*ptq
)
1440 struct auxtrace_queue
*queue
;
1441 pid_t tid
= ptq
->next_tid
;
1447 intel_pt_log("switch: cpu %d tid %d\n", ptq
->cpu
, tid
);
1449 err
= machine__set_current_tid(pt
->machine
, ptq
->cpu
, -1, tid
);
1451 queue
= &pt
->queues
.queue_array
[ptq
->queue_nr
];
1452 intel_pt_set_pid_tid_cpu(pt
, queue
);
1459 static inline bool intel_pt_is_switch_ip(struct intel_pt_queue
*ptq
, u64 ip
)
1461 struct intel_pt
*pt
= ptq
->pt
;
1463 return ip
== pt
->switch_ip
&&
1464 (ptq
->flags
& PERF_IP_FLAG_BRANCH
) &&
1465 !(ptq
->flags
& (PERF_IP_FLAG_CONDITIONAL
| PERF_IP_FLAG_ASYNC
|
1466 PERF_IP_FLAG_INTERRUPT
| PERF_IP_FLAG_TX_ABORT
));
1469 #define INTEL_PT_PWR_EVT (INTEL_PT_MWAIT_OP | INTEL_PT_PWR_ENTRY | \
1470 INTEL_PT_EX_STOP | INTEL_PT_PWR_EXIT | \
1473 static int intel_pt_sample(struct intel_pt_queue
*ptq
)
1475 const struct intel_pt_state
*state
= ptq
->state
;
1476 struct intel_pt
*pt
= ptq
->pt
;
1479 if (!ptq
->have_sample
)
1482 ptq
->have_sample
= false;
1484 if (pt
->sample_pwr_events
&& (state
->type
& INTEL_PT_PWR_EVT
)) {
1485 if (state
->type
& INTEL_PT_CBR_CHG
) {
1486 err
= intel_pt_synth_cbr_sample(ptq
);
1490 if (state
->type
& INTEL_PT_MWAIT_OP
) {
1491 err
= intel_pt_synth_mwait_sample(ptq
);
1495 if (state
->type
& INTEL_PT_PWR_ENTRY
) {
1496 err
= intel_pt_synth_pwre_sample(ptq
);
1500 if (state
->type
& INTEL_PT_EX_STOP
) {
1501 err
= intel_pt_synth_exstop_sample(ptq
);
1505 if (state
->type
& INTEL_PT_PWR_EXIT
) {
1506 err
= intel_pt_synth_pwrx_sample(ptq
);
1512 if (pt
->sample_instructions
&& (state
->type
& INTEL_PT_INSTRUCTION
)) {
1513 err
= intel_pt_synth_instruction_sample(ptq
);
1518 if (pt
->sample_transactions
&& (state
->type
& INTEL_PT_TRANSACTION
)) {
1519 err
= intel_pt_synth_transaction_sample(ptq
);
1524 if (pt
->sample_ptwrites
&& (state
->type
& INTEL_PT_PTW
)) {
1525 err
= intel_pt_synth_ptwrite_sample(ptq
);
1530 if (!(state
->type
& INTEL_PT_BRANCH
))
1533 if (pt
->synth_opts
.callchain
|| pt
->synth_opts
.thread_stack
)
1534 thread_stack__event(ptq
->thread
, ptq
->flags
, state
->from_ip
,
1535 state
->to_ip
, ptq
->insn_len
,
1538 thread_stack__set_trace_nr(ptq
->thread
, state
->trace_nr
);
1540 if (pt
->sample_branches
) {
1541 err
= intel_pt_synth_branch_sample(ptq
);
1546 if (pt
->synth_opts
.last_branch
)
1547 intel_pt_update_last_branch_rb(ptq
);
1549 if (!pt
->sync_switch
)
1552 if (intel_pt_is_switch_ip(ptq
, state
->to_ip
)) {
1553 switch (ptq
->switch_state
) {
1554 case INTEL_PT_SS_UNKNOWN
:
1555 case INTEL_PT_SS_EXPECTING_SWITCH_IP
:
1556 err
= intel_pt_next_tid(pt
, ptq
);
1559 ptq
->switch_state
= INTEL_PT_SS_TRACING
;
1562 ptq
->switch_state
= INTEL_PT_SS_EXPECTING_SWITCH_EVENT
;
1565 } else if (!state
->to_ip
) {
1566 ptq
->switch_state
= INTEL_PT_SS_NOT_TRACING
;
1567 } else if (ptq
->switch_state
== INTEL_PT_SS_NOT_TRACING
) {
1568 ptq
->switch_state
= INTEL_PT_SS_UNKNOWN
;
1569 } else if (ptq
->switch_state
== INTEL_PT_SS_UNKNOWN
&&
1570 state
->to_ip
== pt
->ptss_ip
&&
1571 (ptq
->flags
& PERF_IP_FLAG_CALL
)) {
1572 ptq
->switch_state
= INTEL_PT_SS_TRACING
;
1578 static u64
intel_pt_switch_ip(struct intel_pt
*pt
, u64
*ptss_ip
)
1580 struct machine
*machine
= pt
->machine
;
1582 struct symbol
*sym
, *start
;
1583 u64 ip
, switch_ip
= 0;
1589 map
= machine__kernel_map(machine
);
1596 start
= dso__first_symbol(map
->dso
, MAP__FUNCTION
);
1598 for (sym
= start
; sym
; sym
= dso__next_symbol(sym
)) {
1599 if (sym
->binding
== STB_GLOBAL
&&
1600 !strcmp(sym
->name
, "__switch_to")) {
1601 ip
= map
->unmap_ip(map
, sym
->start
);
1602 if (ip
>= map
->start
&& ip
< map
->end
) {
1609 if (!switch_ip
|| !ptss_ip
)
1612 if (pt
->have_sched_switch
== 1)
1613 ptss
= "perf_trace_sched_switch";
1615 ptss
= "__perf_event_task_sched_out";
1617 for (sym
= start
; sym
; sym
= dso__next_symbol(sym
)) {
1618 if (!strcmp(sym
->name
, ptss
)) {
1619 ip
= map
->unmap_ip(map
, sym
->start
);
1620 if (ip
>= map
->start
&& ip
< map
->end
) {
1630 static int intel_pt_run_decoder(struct intel_pt_queue
*ptq
, u64
*timestamp
)
1632 const struct intel_pt_state
*state
= ptq
->state
;
1633 struct intel_pt
*pt
= ptq
->pt
;
1636 if (!pt
->kernel_start
) {
1637 pt
->kernel_start
= machine__kernel_start(pt
->machine
);
1638 if (pt
->per_cpu_mmaps
&&
1639 (pt
->have_sched_switch
== 1 || pt
->have_sched_switch
== 3) &&
1640 !pt
->timeless_decoding
&& intel_pt_tracing_kernel(pt
) &&
1641 !pt
->sampling_mode
) {
1642 pt
->switch_ip
= intel_pt_switch_ip(pt
, &pt
->ptss_ip
);
1643 if (pt
->switch_ip
) {
1644 intel_pt_log("switch_ip: %"PRIx64
" ptss_ip: %"PRIx64
"\n",
1645 pt
->switch_ip
, pt
->ptss_ip
);
1646 pt
->sync_switch
= true;
1651 intel_pt_log("queue %u decoding cpu %d pid %d tid %d\n",
1652 ptq
->queue_nr
, ptq
->cpu
, ptq
->pid
, ptq
->tid
);
1654 err
= intel_pt_sample(ptq
);
1658 state
= intel_pt_decode(ptq
->decoder
);
1660 if (state
->err
== INTEL_PT_ERR_NODATA
)
1662 if (pt
->sync_switch
&&
1663 state
->from_ip
>= pt
->kernel_start
) {
1664 pt
->sync_switch
= false;
1665 intel_pt_next_tid(pt
, ptq
);
1667 if (pt
->synth_opts
.errors
) {
1668 err
= intel_pt_synth_error(pt
, state
->err
,
1679 ptq
->have_sample
= true;
1680 intel_pt_sample_flags(ptq
);
1682 /* Use estimated TSC upon return to user space */
1684 (state
->from_ip
>= pt
->kernel_start
|| !state
->from_ip
) &&
1685 state
->to_ip
&& state
->to_ip
< pt
->kernel_start
) {
1686 intel_pt_log("TSC %"PRIx64
" est. TSC %"PRIx64
"\n",
1687 state
->timestamp
, state
->est_timestamp
);
1688 ptq
->timestamp
= state
->est_timestamp
;
1689 /* Use estimated TSC in unknown switch state */
1690 } else if (pt
->sync_switch
&&
1691 ptq
->switch_state
== INTEL_PT_SS_UNKNOWN
&&
1692 intel_pt_is_switch_ip(ptq
, state
->to_ip
) &&
1693 ptq
->next_tid
== -1) {
1694 intel_pt_log("TSC %"PRIx64
" est. TSC %"PRIx64
"\n",
1695 state
->timestamp
, state
->est_timestamp
);
1696 ptq
->timestamp
= state
->est_timestamp
;
1697 } else if (state
->timestamp
> ptq
->timestamp
) {
1698 ptq
->timestamp
= state
->timestamp
;
1701 if (!pt
->timeless_decoding
&& ptq
->timestamp
>= *timestamp
) {
1702 *timestamp
= ptq
->timestamp
;
1709 static inline int intel_pt_update_queues(struct intel_pt
*pt
)
1711 if (pt
->queues
.new_data
) {
1712 pt
->queues
.new_data
= false;
1713 return intel_pt_setup_queues(pt
);
1718 static int intel_pt_process_queues(struct intel_pt
*pt
, u64 timestamp
)
1720 unsigned int queue_nr
;
1725 struct auxtrace_queue
*queue
;
1726 struct intel_pt_queue
*ptq
;
1728 if (!pt
->heap
.heap_cnt
)
1731 if (pt
->heap
.heap_array
[0].ordinal
>= timestamp
)
1734 queue_nr
= pt
->heap
.heap_array
[0].queue_nr
;
1735 queue
= &pt
->queues
.queue_array
[queue_nr
];
1738 intel_pt_log("queue %u processing 0x%" PRIx64
" to 0x%" PRIx64
"\n",
1739 queue_nr
, pt
->heap
.heap_array
[0].ordinal
,
1742 auxtrace_heap__pop(&pt
->heap
);
1744 if (pt
->heap
.heap_cnt
) {
1745 ts
= pt
->heap
.heap_array
[0].ordinal
+ 1;
1752 intel_pt_set_pid_tid_cpu(pt
, queue
);
1754 ret
= intel_pt_run_decoder(ptq
, &ts
);
1757 auxtrace_heap__add(&pt
->heap
, queue_nr
, ts
);
1762 ret
= auxtrace_heap__add(&pt
->heap
, queue_nr
, ts
);
1766 ptq
->on_heap
= false;
1773 static int intel_pt_process_timeless_queues(struct intel_pt
*pt
, pid_t tid
,
1776 struct auxtrace_queues
*queues
= &pt
->queues
;
1780 for (i
= 0; i
< queues
->nr_queues
; i
++) {
1781 struct auxtrace_queue
*queue
= &pt
->queues
.queue_array
[i
];
1782 struct intel_pt_queue
*ptq
= queue
->priv
;
1784 if (ptq
&& (tid
== -1 || ptq
->tid
== tid
)) {
1786 intel_pt_set_pid_tid_cpu(pt
, queue
);
1787 intel_pt_run_decoder(ptq
, &ts
);
1793 static int intel_pt_lost(struct intel_pt
*pt
, struct perf_sample
*sample
)
1795 return intel_pt_synth_error(pt
, INTEL_PT_ERR_LOST
, sample
->cpu
,
1796 sample
->pid
, sample
->tid
, 0);
1799 static struct intel_pt_queue
*intel_pt_cpu_to_ptq(struct intel_pt
*pt
, int cpu
)
1803 if (cpu
< 0 || !pt
->queues
.nr_queues
)
1806 if ((unsigned)cpu
>= pt
->queues
.nr_queues
)
1807 i
= pt
->queues
.nr_queues
- 1;
1811 if (pt
->queues
.queue_array
[i
].cpu
== cpu
)
1812 return pt
->queues
.queue_array
[i
].priv
;
1814 for (j
= 0; i
> 0; j
++) {
1815 if (pt
->queues
.queue_array
[--i
].cpu
== cpu
)
1816 return pt
->queues
.queue_array
[i
].priv
;
1819 for (; j
< pt
->queues
.nr_queues
; j
++) {
1820 if (pt
->queues
.queue_array
[j
].cpu
== cpu
)
1821 return pt
->queues
.queue_array
[j
].priv
;
1827 static int intel_pt_sync_switch(struct intel_pt
*pt
, int cpu
, pid_t tid
,
1830 struct intel_pt_queue
*ptq
;
1833 if (!pt
->sync_switch
)
1836 ptq
= intel_pt_cpu_to_ptq(pt
, cpu
);
1840 switch (ptq
->switch_state
) {
1841 case INTEL_PT_SS_NOT_TRACING
:
1844 case INTEL_PT_SS_UNKNOWN
:
1845 case INTEL_PT_SS_TRACING
:
1846 ptq
->next_tid
= tid
;
1847 ptq
->switch_state
= INTEL_PT_SS_EXPECTING_SWITCH_IP
;
1849 case INTEL_PT_SS_EXPECTING_SWITCH_EVENT
:
1850 if (!ptq
->on_heap
) {
1851 ptq
->timestamp
= perf_time_to_tsc(timestamp
,
1853 err
= auxtrace_heap__add(&pt
->heap
, ptq
->queue_nr
,
1857 ptq
->on_heap
= true;
1859 ptq
->switch_state
= INTEL_PT_SS_TRACING
;
1861 case INTEL_PT_SS_EXPECTING_SWITCH_IP
:
1862 ptq
->next_tid
= tid
;
1863 intel_pt_log("ERROR: cpu %d expecting switch ip\n", cpu
);
1872 static int intel_pt_process_switch(struct intel_pt
*pt
,
1873 struct perf_sample
*sample
)
1875 struct perf_evsel
*evsel
;
1879 evsel
= perf_evlist__id2evsel(pt
->session
->evlist
, sample
->id
);
1880 if (evsel
!= pt
->switch_evsel
)
1883 tid
= perf_evsel__intval(evsel
, sample
, "next_pid");
1886 intel_pt_log("sched_switch: cpu %d tid %d time %"PRIu64
" tsc %#"PRIx64
"\n",
1887 cpu
, tid
, sample
->time
, perf_time_to_tsc(sample
->time
,
1890 ret
= intel_pt_sync_switch(pt
, cpu
, tid
, sample
->time
);
1894 return machine__set_current_tid(pt
->machine
, cpu
, -1, tid
);
1897 static int intel_pt_context_switch(struct intel_pt
*pt
, union perf_event
*event
,
1898 struct perf_sample
*sample
)
1900 bool out
= event
->header
.misc
& PERF_RECORD_MISC_SWITCH_OUT
;
1906 if (pt
->have_sched_switch
== 3) {
1909 if (event
->header
.type
!= PERF_RECORD_SWITCH_CPU_WIDE
) {
1910 pr_err("Expecting CPU-wide context switch event\n");
1913 pid
= event
->context_switch
.next_prev_pid
;
1914 tid
= event
->context_switch
.next_prev_tid
;
1923 pr_err("context_switch event has no tid\n");
1927 intel_pt_log("context_switch: cpu %d pid %d tid %d time %"PRIu64
" tsc %#"PRIx64
"\n",
1928 cpu
, pid
, tid
, sample
->time
, perf_time_to_tsc(sample
->time
,
1931 ret
= intel_pt_sync_switch(pt
, cpu
, tid
, sample
->time
);
1935 return machine__set_current_tid(pt
->machine
, cpu
, pid
, tid
);
1938 static int intel_pt_process_itrace_start(struct intel_pt
*pt
,
1939 union perf_event
*event
,
1940 struct perf_sample
*sample
)
1942 if (!pt
->per_cpu_mmaps
)
1945 intel_pt_log("itrace_start: cpu %d pid %d tid %d time %"PRIu64
" tsc %#"PRIx64
"\n",
1946 sample
->cpu
, event
->itrace_start
.pid
,
1947 event
->itrace_start
.tid
, sample
->time
,
1948 perf_time_to_tsc(sample
->time
, &pt
->tc
));
1950 return machine__set_current_tid(pt
->machine
, sample
->cpu
,
1951 event
->itrace_start
.pid
,
1952 event
->itrace_start
.tid
);
1955 static int intel_pt_process_event(struct perf_session
*session
,
1956 union perf_event
*event
,
1957 struct perf_sample
*sample
,
1958 struct perf_tool
*tool
)
1960 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
1968 if (!tool
->ordered_events
) {
1969 pr_err("Intel Processor Trace requires ordered events\n");
1973 if (sample
->time
&& sample
->time
!= (u64
)-1)
1974 timestamp
= perf_time_to_tsc(sample
->time
, &pt
->tc
);
1978 if (timestamp
|| pt
->timeless_decoding
) {
1979 err
= intel_pt_update_queues(pt
);
1984 if (pt
->timeless_decoding
) {
1985 if (event
->header
.type
== PERF_RECORD_EXIT
) {
1986 err
= intel_pt_process_timeless_queues(pt
,
1990 } else if (timestamp
) {
1991 err
= intel_pt_process_queues(pt
, timestamp
);
1996 if (event
->header
.type
== PERF_RECORD_AUX
&&
1997 (event
->aux
.flags
& PERF_AUX_FLAG_TRUNCATED
) &&
1998 pt
->synth_opts
.errors
) {
1999 err
= intel_pt_lost(pt
, sample
);
2004 if (pt
->switch_evsel
&& event
->header
.type
== PERF_RECORD_SAMPLE
)
2005 err
= intel_pt_process_switch(pt
, sample
);
2006 else if (event
->header
.type
== PERF_RECORD_ITRACE_START
)
2007 err
= intel_pt_process_itrace_start(pt
, event
, sample
);
2008 else if (event
->header
.type
== PERF_RECORD_SWITCH
||
2009 event
->header
.type
== PERF_RECORD_SWITCH_CPU_WIDE
)
2010 err
= intel_pt_context_switch(pt
, event
, sample
);
2012 intel_pt_log("event %s (%u): cpu %d time %"PRIu64
" tsc %#"PRIx64
"\n",
2013 perf_event__name(event
->header
.type
), event
->header
.type
,
2014 sample
->cpu
, sample
->time
, timestamp
);
2019 static int intel_pt_flush(struct perf_session
*session
, struct perf_tool
*tool
)
2021 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
2028 if (!tool
->ordered_events
)
2031 ret
= intel_pt_update_queues(pt
);
2035 if (pt
->timeless_decoding
)
2036 return intel_pt_process_timeless_queues(pt
, -1,
2039 return intel_pt_process_queues(pt
, MAX_TIMESTAMP
);
2042 static void intel_pt_free_events(struct perf_session
*session
)
2044 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
2046 struct auxtrace_queues
*queues
= &pt
->queues
;
2049 for (i
= 0; i
< queues
->nr_queues
; i
++) {
2050 intel_pt_free_queue(queues
->queue_array
[i
].priv
);
2051 queues
->queue_array
[i
].priv
= NULL
;
2053 intel_pt_log_disable();
2054 auxtrace_queues__free(queues
);
2057 static void intel_pt_free(struct perf_session
*session
)
2059 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
2062 auxtrace_heap__free(&pt
->heap
);
2063 intel_pt_free_events(session
);
2064 session
->auxtrace
= NULL
;
2065 thread__put(pt
->unknown_thread
);
2066 addr_filters__exit(&pt
->filts
);
2071 static int intel_pt_process_auxtrace_event(struct perf_session
*session
,
2072 union perf_event
*event
,
2073 struct perf_tool
*tool __maybe_unused
)
2075 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
2078 if (pt
->sampling_mode
)
2081 if (!pt
->data_queued
) {
2082 struct auxtrace_buffer
*buffer
;
2084 int fd
= perf_data__fd(session
->data
);
2087 if (perf_data__is_pipe(session
->data
)) {
2090 data_offset
= lseek(fd
, 0, SEEK_CUR
);
2091 if (data_offset
== -1)
2095 err
= auxtrace_queues__add_event(&pt
->queues
, session
, event
,
2096 data_offset
, &buffer
);
2100 /* Dump here now we have copied a piped trace out of the pipe */
2102 if (auxtrace_buffer__get_data(buffer
, fd
)) {
2103 intel_pt_dump_event(pt
, buffer
->data
,
2105 auxtrace_buffer__put_data(buffer
);
2113 struct intel_pt_synth
{
2114 struct perf_tool dummy_tool
;
2115 struct perf_session
*session
;
2118 static int intel_pt_event_synth(struct perf_tool
*tool
,
2119 union perf_event
*event
,
2120 struct perf_sample
*sample __maybe_unused
,
2121 struct machine
*machine __maybe_unused
)
2123 struct intel_pt_synth
*intel_pt_synth
=
2124 container_of(tool
, struct intel_pt_synth
, dummy_tool
);
2126 return perf_session__deliver_synth_event(intel_pt_synth
->session
, event
,
2130 static int intel_pt_synth_event(struct perf_session
*session
, const char *name
,
2131 struct perf_event_attr
*attr
, u64 id
)
2133 struct intel_pt_synth intel_pt_synth
;
2136 pr_debug("Synthesizing '%s' event with id %" PRIu64
" sample type %#" PRIx64
"\n",
2137 name
, id
, (u64
)attr
->sample_type
);
2139 memset(&intel_pt_synth
, 0, sizeof(struct intel_pt_synth
));
2140 intel_pt_synth
.session
= session
;
2142 err
= perf_event__synthesize_attr(&intel_pt_synth
.dummy_tool
, attr
, 1,
2143 &id
, intel_pt_event_synth
);
2145 pr_err("%s: failed to synthesize '%s' event type\n",
2151 static void intel_pt_set_event_name(struct perf_evlist
*evlist
, u64 id
,
2154 struct perf_evsel
*evsel
;
2156 evlist__for_each_entry(evlist
, evsel
) {
2157 if (evsel
->id
&& evsel
->id
[0] == id
) {
2159 zfree(&evsel
->name
);
2160 evsel
->name
= strdup(name
);
2166 static struct perf_evsel
*intel_pt_evsel(struct intel_pt
*pt
,
2167 struct perf_evlist
*evlist
)
2169 struct perf_evsel
*evsel
;
2171 evlist__for_each_entry(evlist
, evsel
) {
2172 if (evsel
->attr
.type
== pt
->pmu_type
&& evsel
->ids
)
2179 static int intel_pt_synth_events(struct intel_pt
*pt
,
2180 struct perf_session
*session
)
2182 struct perf_evlist
*evlist
= session
->evlist
;
2183 struct perf_evsel
*evsel
= intel_pt_evsel(pt
, evlist
);
2184 struct perf_event_attr attr
;
2189 pr_debug("There are no selected events with Intel Processor Trace data\n");
2193 memset(&attr
, 0, sizeof(struct perf_event_attr
));
2194 attr
.size
= sizeof(struct perf_event_attr
);
2195 attr
.type
= PERF_TYPE_HARDWARE
;
2196 attr
.sample_type
= evsel
->attr
.sample_type
& PERF_SAMPLE_MASK
;
2197 attr
.sample_type
|= PERF_SAMPLE_IP
| PERF_SAMPLE_TID
|
2199 if (pt
->timeless_decoding
)
2200 attr
.sample_type
&= ~(u64
)PERF_SAMPLE_TIME
;
2202 attr
.sample_type
|= PERF_SAMPLE_TIME
;
2203 if (!pt
->per_cpu_mmaps
)
2204 attr
.sample_type
&= ~(u64
)PERF_SAMPLE_CPU
;
2205 attr
.exclude_user
= evsel
->attr
.exclude_user
;
2206 attr
.exclude_kernel
= evsel
->attr
.exclude_kernel
;
2207 attr
.exclude_hv
= evsel
->attr
.exclude_hv
;
2208 attr
.exclude_host
= evsel
->attr
.exclude_host
;
2209 attr
.exclude_guest
= evsel
->attr
.exclude_guest
;
2210 attr
.sample_id_all
= evsel
->attr
.sample_id_all
;
2211 attr
.read_format
= evsel
->attr
.read_format
;
2213 id
= evsel
->id
[0] + 1000000000;
2217 if (pt
->synth_opts
.branches
) {
2218 attr
.config
= PERF_COUNT_HW_BRANCH_INSTRUCTIONS
;
2219 attr
.sample_period
= 1;
2220 attr
.sample_type
|= PERF_SAMPLE_ADDR
;
2221 err
= intel_pt_synth_event(session
, "branches", &attr
, id
);
2224 pt
->sample_branches
= true;
2225 pt
->branches_sample_type
= attr
.sample_type
;
2226 pt
->branches_id
= id
;
2228 attr
.sample_type
&= ~(u64
)PERF_SAMPLE_ADDR
;
2231 if (pt
->synth_opts
.callchain
)
2232 attr
.sample_type
|= PERF_SAMPLE_CALLCHAIN
;
2233 if (pt
->synth_opts
.last_branch
)
2234 attr
.sample_type
|= PERF_SAMPLE_BRANCH_STACK
;
2236 if (pt
->synth_opts
.instructions
) {
2237 attr
.config
= PERF_COUNT_HW_INSTRUCTIONS
;
2238 if (pt
->synth_opts
.period_type
== PERF_ITRACE_PERIOD_NANOSECS
)
2239 attr
.sample_period
=
2240 intel_pt_ns_to_ticks(pt
, pt
->synth_opts
.period
);
2242 attr
.sample_period
= pt
->synth_opts
.period
;
2243 err
= intel_pt_synth_event(session
, "instructions", &attr
, id
);
2246 pt
->sample_instructions
= true;
2247 pt
->instructions_sample_type
= attr
.sample_type
;
2248 pt
->instructions_id
= id
;
2252 attr
.sample_type
&= ~(u64
)PERF_SAMPLE_PERIOD
;
2253 attr
.sample_period
= 1;
2255 if (pt
->synth_opts
.transactions
) {
2256 attr
.config
= PERF_COUNT_HW_INSTRUCTIONS
;
2257 err
= intel_pt_synth_event(session
, "transactions", &attr
, id
);
2260 pt
->sample_transactions
= true;
2261 pt
->transactions_sample_type
= attr
.sample_type
;
2262 pt
->transactions_id
= id
;
2263 intel_pt_set_event_name(evlist
, id
, "transactions");
2267 attr
.type
= PERF_TYPE_SYNTH
;
2268 attr
.sample_type
|= PERF_SAMPLE_RAW
;
2270 if (pt
->synth_opts
.ptwrites
) {
2271 attr
.config
= PERF_SYNTH_INTEL_PTWRITE
;
2272 err
= intel_pt_synth_event(session
, "ptwrite", &attr
, id
);
2275 pt
->sample_ptwrites
= true;
2276 pt
->ptwrites_sample_type
= attr
.sample_type
;
2277 pt
->ptwrites_id
= id
;
2278 intel_pt_set_event_name(evlist
, id
, "ptwrite");
2282 if (pt
->synth_opts
.pwr_events
) {
2283 pt
->sample_pwr_events
= true;
2284 pt
->pwr_events_sample_type
= attr
.sample_type
;
2286 attr
.config
= PERF_SYNTH_INTEL_CBR
;
2287 err
= intel_pt_synth_event(session
, "cbr", &attr
, id
);
2291 intel_pt_set_event_name(evlist
, id
, "cbr");
2295 if (pt
->synth_opts
.pwr_events
&& (evsel
->attr
.config
& 0x10)) {
2296 attr
.config
= PERF_SYNTH_INTEL_MWAIT
;
2297 err
= intel_pt_synth_event(session
, "mwait", &attr
, id
);
2301 intel_pt_set_event_name(evlist
, id
, "mwait");
2304 attr
.config
= PERF_SYNTH_INTEL_PWRE
;
2305 err
= intel_pt_synth_event(session
, "pwre", &attr
, id
);
2309 intel_pt_set_event_name(evlist
, id
, "pwre");
2312 attr
.config
= PERF_SYNTH_INTEL_EXSTOP
;
2313 err
= intel_pt_synth_event(session
, "exstop", &attr
, id
);
2317 intel_pt_set_event_name(evlist
, id
, "exstop");
2320 attr
.config
= PERF_SYNTH_INTEL_PWRX
;
2321 err
= intel_pt_synth_event(session
, "pwrx", &attr
, id
);
2325 intel_pt_set_event_name(evlist
, id
, "pwrx");
2332 static struct perf_evsel
*intel_pt_find_sched_switch(struct perf_evlist
*evlist
)
2334 struct perf_evsel
*evsel
;
2336 evlist__for_each_entry_reverse(evlist
, evsel
) {
2337 const char *name
= perf_evsel__name(evsel
);
2339 if (!strcmp(name
, "sched:sched_switch"))
2346 static bool intel_pt_find_switch(struct perf_evlist
*evlist
)
2348 struct perf_evsel
*evsel
;
2350 evlist__for_each_entry(evlist
, evsel
) {
2351 if (evsel
->attr
.context_switch
)
2358 static int intel_pt_perf_config(const char *var
, const char *value
, void *data
)
2360 struct intel_pt
*pt
= data
;
2362 if (!strcmp(var
, "intel-pt.mispred-all"))
2363 pt
->mispred_all
= perf_config_bool(var
, value
);
2368 static const char * const intel_pt_info_fmts
[] = {
2369 [INTEL_PT_PMU_TYPE
] = " PMU Type %"PRId64
"\n",
2370 [INTEL_PT_TIME_SHIFT
] = " Time Shift %"PRIu64
"\n",
2371 [INTEL_PT_TIME_MULT
] = " Time Muliplier %"PRIu64
"\n",
2372 [INTEL_PT_TIME_ZERO
] = " Time Zero %"PRIu64
"\n",
2373 [INTEL_PT_CAP_USER_TIME_ZERO
] = " Cap Time Zero %"PRId64
"\n",
2374 [INTEL_PT_TSC_BIT
] = " TSC bit %#"PRIx64
"\n",
2375 [INTEL_PT_NORETCOMP_BIT
] = " NoRETComp bit %#"PRIx64
"\n",
2376 [INTEL_PT_HAVE_SCHED_SWITCH
] = " Have sched_switch %"PRId64
"\n",
2377 [INTEL_PT_SNAPSHOT_MODE
] = " Snapshot mode %"PRId64
"\n",
2378 [INTEL_PT_PER_CPU_MMAPS
] = " Per-cpu maps %"PRId64
"\n",
2379 [INTEL_PT_MTC_BIT
] = " MTC bit %#"PRIx64
"\n",
2380 [INTEL_PT_TSC_CTC_N
] = " TSC:CTC numerator %"PRIu64
"\n",
2381 [INTEL_PT_TSC_CTC_D
] = " TSC:CTC denominator %"PRIu64
"\n",
2382 [INTEL_PT_CYC_BIT
] = " CYC bit %#"PRIx64
"\n",
2383 [INTEL_PT_MAX_NONTURBO_RATIO
] = " Max non-turbo ratio %"PRIu64
"\n",
2384 [INTEL_PT_FILTER_STR_LEN
] = " Filter string len. %"PRIu64
"\n",
2387 static void intel_pt_print_info(u64
*arr
, int start
, int finish
)
2394 for (i
= start
; i
<= finish
; i
++)
2395 fprintf(stdout
, intel_pt_info_fmts
[i
], arr
[i
]);
2398 static void intel_pt_print_info_str(const char *name
, const char *str
)
2403 fprintf(stdout
, " %-20s%s\n", name
, str
? str
: "");
2406 static bool intel_pt_has(struct auxtrace_info_event
*auxtrace_info
, int pos
)
2408 return auxtrace_info
->header
.size
>=
2409 sizeof(struct auxtrace_info_event
) + (sizeof(u64
) * (pos
+ 1));
2412 int intel_pt_process_auxtrace_info(union perf_event
*event
,
2413 struct perf_session
*session
)
2415 struct auxtrace_info_event
*auxtrace_info
= &event
->auxtrace_info
;
2416 size_t min_sz
= sizeof(u64
) * INTEL_PT_PER_CPU_MMAPS
;
2417 struct intel_pt
*pt
;
2422 if (auxtrace_info
->header
.size
< sizeof(struct auxtrace_info_event
) +
2426 pt
= zalloc(sizeof(struct intel_pt
));
2430 addr_filters__init(&pt
->filts
);
2432 err
= perf_config(intel_pt_perf_config
, pt
);
2436 err
= auxtrace_queues__init(&pt
->queues
);
2440 intel_pt_log_set_name(INTEL_PT_PMU_NAME
);
2442 pt
->session
= session
;
2443 pt
->machine
= &session
->machines
.host
; /* No kvm support */
2444 pt
->auxtrace_type
= auxtrace_info
->type
;
2445 pt
->pmu_type
= auxtrace_info
->priv
[INTEL_PT_PMU_TYPE
];
2446 pt
->tc
.time_shift
= auxtrace_info
->priv
[INTEL_PT_TIME_SHIFT
];
2447 pt
->tc
.time_mult
= auxtrace_info
->priv
[INTEL_PT_TIME_MULT
];
2448 pt
->tc
.time_zero
= auxtrace_info
->priv
[INTEL_PT_TIME_ZERO
];
2449 pt
->cap_user_time_zero
= auxtrace_info
->priv
[INTEL_PT_CAP_USER_TIME_ZERO
];
2450 pt
->tsc_bit
= auxtrace_info
->priv
[INTEL_PT_TSC_BIT
];
2451 pt
->noretcomp_bit
= auxtrace_info
->priv
[INTEL_PT_NORETCOMP_BIT
];
2452 pt
->have_sched_switch
= auxtrace_info
->priv
[INTEL_PT_HAVE_SCHED_SWITCH
];
2453 pt
->snapshot_mode
= auxtrace_info
->priv
[INTEL_PT_SNAPSHOT_MODE
];
2454 pt
->per_cpu_mmaps
= auxtrace_info
->priv
[INTEL_PT_PER_CPU_MMAPS
];
2455 intel_pt_print_info(&auxtrace_info
->priv
[0], INTEL_PT_PMU_TYPE
,
2456 INTEL_PT_PER_CPU_MMAPS
);
2458 if (intel_pt_has(auxtrace_info
, INTEL_PT_CYC_BIT
)) {
2459 pt
->mtc_bit
= auxtrace_info
->priv
[INTEL_PT_MTC_BIT
];
2460 pt
->mtc_freq_bits
= auxtrace_info
->priv
[INTEL_PT_MTC_FREQ_BITS
];
2461 pt
->tsc_ctc_ratio_n
= auxtrace_info
->priv
[INTEL_PT_TSC_CTC_N
];
2462 pt
->tsc_ctc_ratio_d
= auxtrace_info
->priv
[INTEL_PT_TSC_CTC_D
];
2463 pt
->cyc_bit
= auxtrace_info
->priv
[INTEL_PT_CYC_BIT
];
2464 intel_pt_print_info(&auxtrace_info
->priv
[0], INTEL_PT_MTC_BIT
,
2468 if (intel_pt_has(auxtrace_info
, INTEL_PT_MAX_NONTURBO_RATIO
)) {
2469 pt
->max_non_turbo_ratio
=
2470 auxtrace_info
->priv
[INTEL_PT_MAX_NONTURBO_RATIO
];
2471 intel_pt_print_info(&auxtrace_info
->priv
[0],
2472 INTEL_PT_MAX_NONTURBO_RATIO
,
2473 INTEL_PT_MAX_NONTURBO_RATIO
);
2476 info
= &auxtrace_info
->priv
[INTEL_PT_FILTER_STR_LEN
] + 1;
2477 info_end
= (void *)info
+ auxtrace_info
->header
.size
;
2479 if (intel_pt_has(auxtrace_info
, INTEL_PT_FILTER_STR_LEN
)) {
2482 len
= auxtrace_info
->priv
[INTEL_PT_FILTER_STR_LEN
];
2483 intel_pt_print_info(&auxtrace_info
->priv
[0],
2484 INTEL_PT_FILTER_STR_LEN
,
2485 INTEL_PT_FILTER_STR_LEN
);
2487 const char *filter
= (const char *)info
;
2489 len
= roundup(len
+ 1, 8);
2491 if ((void *)info
> info_end
) {
2492 pr_err("%s: bad filter string length\n", __func__
);
2494 goto err_free_queues
;
2496 pt
->filter
= memdup(filter
, len
);
2499 goto err_free_queues
;
2501 if (session
->header
.needs_swap
)
2502 mem_bswap_64(pt
->filter
, len
);
2503 if (pt
->filter
[len
- 1]) {
2504 pr_err("%s: filter string not null terminated\n", __func__
);
2506 goto err_free_queues
;
2508 err
= addr_filters__parse_bare_filter(&pt
->filts
,
2511 goto err_free_queues
;
2513 intel_pt_print_info_str("Filter string", pt
->filter
);
2516 pt
->timeless_decoding
= intel_pt_timeless_decoding(pt
);
2517 pt
->have_tsc
= intel_pt_have_tsc(pt
);
2518 pt
->sampling_mode
= false;
2519 pt
->est_tsc
= !pt
->timeless_decoding
;
2521 pt
->unknown_thread
= thread__new(999999999, 999999999);
2522 if (!pt
->unknown_thread
) {
2524 goto err_free_queues
;
2528 * Since this thread will not be kept in any rbtree not in a
2529 * list, initialize its list node so that at thread__put() the
2530 * current thread lifetime assuption is kept and we don't segfault
2531 * at list_del_init().
2533 INIT_LIST_HEAD(&pt
->unknown_thread
->node
);
2535 err
= thread__set_comm(pt
->unknown_thread
, "unknown", 0);
2537 goto err_delete_thread
;
2538 if (thread__init_map_groups(pt
->unknown_thread
, pt
->machine
)) {
2540 goto err_delete_thread
;
2543 pt
->auxtrace
.process_event
= intel_pt_process_event
;
2544 pt
->auxtrace
.process_auxtrace_event
= intel_pt_process_auxtrace_event
;
2545 pt
->auxtrace
.flush_events
= intel_pt_flush
;
2546 pt
->auxtrace
.free_events
= intel_pt_free_events
;
2547 pt
->auxtrace
.free
= intel_pt_free
;
2548 session
->auxtrace
= &pt
->auxtrace
;
2553 if (pt
->have_sched_switch
== 1) {
2554 pt
->switch_evsel
= intel_pt_find_sched_switch(session
->evlist
);
2555 if (!pt
->switch_evsel
) {
2556 pr_err("%s: missing sched_switch event\n", __func__
);
2558 goto err_delete_thread
;
2560 } else if (pt
->have_sched_switch
== 2 &&
2561 !intel_pt_find_switch(session
->evlist
)) {
2562 pr_err("%s: missing context_switch attribute flag\n", __func__
);
2564 goto err_delete_thread
;
2567 if (session
->itrace_synth_opts
&& session
->itrace_synth_opts
->set
) {
2568 pt
->synth_opts
= *session
->itrace_synth_opts
;
2570 itrace_synth_opts__set_default(&pt
->synth_opts
);
2571 if (use_browser
!= -1) {
2572 pt
->synth_opts
.branches
= false;
2573 pt
->synth_opts
.callchain
= true;
2575 if (session
->itrace_synth_opts
)
2576 pt
->synth_opts
.thread_stack
=
2577 session
->itrace_synth_opts
->thread_stack
;
2580 if (pt
->synth_opts
.log
)
2581 intel_pt_log_enable();
2583 /* Maximum non-turbo ratio is TSC freq / 100 MHz */
2584 if (pt
->tc
.time_mult
) {
2585 u64 tsc_freq
= intel_pt_ns_to_ticks(pt
, 1000000000);
2587 if (!pt
->max_non_turbo_ratio
)
2588 pt
->max_non_turbo_ratio
=
2589 (tsc_freq
+ 50000000) / 100000000;
2590 intel_pt_log("TSC frequency %"PRIu64
"\n", tsc_freq
);
2591 intel_pt_log("Maximum non-turbo ratio %u\n",
2592 pt
->max_non_turbo_ratio
);
2593 pt
->cbr2khz
= tsc_freq
/ pt
->max_non_turbo_ratio
/ 1000;
2596 if (pt
->synth_opts
.calls
)
2597 pt
->branches_filter
|= PERF_IP_FLAG_CALL
| PERF_IP_FLAG_ASYNC
|
2598 PERF_IP_FLAG_TRACE_END
;
2599 if (pt
->synth_opts
.returns
)
2600 pt
->branches_filter
|= PERF_IP_FLAG_RETURN
|
2601 PERF_IP_FLAG_TRACE_BEGIN
;
2603 if (pt
->synth_opts
.callchain
&& !symbol_conf
.use_callchain
) {
2604 symbol_conf
.use_callchain
= true;
2605 if (callchain_register_param(&callchain_param
) < 0) {
2606 symbol_conf
.use_callchain
= false;
2607 pt
->synth_opts
.callchain
= false;
2611 err
= intel_pt_synth_events(pt
, session
);
2613 goto err_delete_thread
;
2615 err
= auxtrace_queues__process_index(&pt
->queues
, session
);
2617 goto err_delete_thread
;
2619 if (pt
->queues
.populated
)
2620 pt
->data_queued
= true;
2622 if (pt
->timeless_decoding
)
2623 pr_debug2("Intel PT decoding without timestamps\n");
2628 thread__zput(pt
->unknown_thread
);
2630 intel_pt_log_disable();
2631 auxtrace_queues__free(&pt
->queues
);
2632 session
->auxtrace
= NULL
;
2634 addr_filters__exit(&pt
->filts
);