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
;
151 struct thread
*thread
;
159 char insn
[INTEL_PT_INSN_BUF_SZ
];
162 static void intel_pt_dump(struct intel_pt
*pt __maybe_unused
,
163 unsigned char *buf
, size_t len
)
165 struct intel_pt_pkt packet
;
168 char desc
[INTEL_PT_PKT_DESC_MAX
];
169 const char *color
= PERF_COLOR_BLUE
;
171 color_fprintf(stdout
, color
,
172 ". ... Intel Processor Trace data: size %zu bytes\n",
176 ret
= intel_pt_get_packet(buf
, len
, &packet
);
182 color_fprintf(stdout
, color
, " %08x: ", pos
);
183 for (i
= 0; i
< pkt_len
; i
++)
184 color_fprintf(stdout
, color
, " %02x", buf
[i
]);
186 color_fprintf(stdout
, color
, " ");
188 ret
= intel_pt_pkt_desc(&packet
, desc
,
189 INTEL_PT_PKT_DESC_MAX
);
191 color_fprintf(stdout
, color
, " %s\n", desc
);
193 color_fprintf(stdout
, color
, " Bad packet!\n");
201 static void intel_pt_dump_event(struct intel_pt
*pt
, unsigned char *buf
,
205 intel_pt_dump(pt
, buf
, len
);
208 static int intel_pt_do_fix_overlap(struct intel_pt
*pt
, struct auxtrace_buffer
*a
,
209 struct auxtrace_buffer
*b
)
211 bool consecutive
= false;
214 start
= intel_pt_find_overlap(a
->data
, a
->size
, b
->data
, b
->size
,
215 pt
->have_tsc
, &consecutive
);
218 b
->use_size
= b
->data
+ b
->size
- start
;
220 if (b
->use_size
&& consecutive
)
221 b
->consecutive
= true;
225 static void intel_pt_use_buffer_pid_tid(struct intel_pt_queue
*ptq
,
226 struct auxtrace_queue
*queue
,
227 struct auxtrace_buffer
*buffer
)
229 if (queue
->cpu
== -1 && buffer
->cpu
!= -1)
230 ptq
->cpu
= buffer
->cpu
;
232 ptq
->pid
= buffer
->pid
;
233 ptq
->tid
= buffer
->tid
;
235 intel_pt_log("queue %u cpu %d pid %d tid %d\n",
236 ptq
->queue_nr
, ptq
->cpu
, ptq
->pid
, ptq
->tid
);
238 thread__zput(ptq
->thread
);
240 if (ptq
->tid
!= -1) {
242 ptq
->thread
= machine__findnew_thread(ptq
->pt
->machine
,
246 ptq
->thread
= machine__find_thread(ptq
->pt
->machine
, -1,
251 /* This function assumes data is processed sequentially only */
252 static int intel_pt_get_trace(struct intel_pt_buffer
*b
, void *data
)
254 struct intel_pt_queue
*ptq
= data
;
255 struct auxtrace_buffer
*buffer
= ptq
->buffer
, *old_buffer
= buffer
;
256 struct auxtrace_queue
*queue
;
263 queue
= &ptq
->pt
->queues
.queue_array
[ptq
->queue_nr
];
265 buffer
= auxtrace_buffer__next(queue
, buffer
);
268 auxtrace_buffer__drop_data(old_buffer
);
273 ptq
->buffer
= buffer
;
276 int fd
= perf_data__fd(ptq
->pt
->session
->data
);
278 buffer
->data
= auxtrace_buffer__get_data(buffer
, fd
);
283 if (ptq
->pt
->snapshot_mode
&& !buffer
->consecutive
&& old_buffer
&&
284 intel_pt_do_fix_overlap(ptq
->pt
, old_buffer
, buffer
))
287 if (buffer
->use_data
) {
288 b
->len
= buffer
->use_size
;
289 b
->buf
= buffer
->use_data
;
291 b
->len
= buffer
->size
;
292 b
->buf
= buffer
->data
;
294 b
->ref_timestamp
= buffer
->reference
;
297 * If in snapshot mode and the buffer has no usable data, get next
298 * buffer and again check overlap against old_buffer.
300 if (ptq
->pt
->snapshot_mode
&& !b
->len
)
304 auxtrace_buffer__drop_data(old_buffer
);
306 if (!old_buffer
|| ptq
->pt
->sampling_mode
|| (ptq
->pt
->snapshot_mode
&&
307 !buffer
->consecutive
)) {
308 b
->consecutive
= false;
309 b
->trace_nr
= buffer
->buffer_nr
+ 1;
311 b
->consecutive
= true;
314 if (ptq
->use_buffer_pid_tid
&& (ptq
->pid
!= buffer
->pid
||
315 ptq
->tid
!= buffer
->tid
))
316 intel_pt_use_buffer_pid_tid(ptq
, queue
, buffer
);
318 if (ptq
->step_through_buffers
)
322 return intel_pt_get_trace(b
, data
);
327 struct intel_pt_cache_entry
{
328 struct auxtrace_cache_entry entry
;
331 enum intel_pt_insn_op op
;
332 enum intel_pt_insn_branch branch
;
335 char insn
[INTEL_PT_INSN_BUF_SZ
];
338 static int intel_pt_config_div(const char *var
, const char *value
, void *data
)
343 if (!strcmp(var
, "intel-pt.cache-divisor")) {
344 val
= strtol(value
, NULL
, 0);
345 if (val
> 0 && val
<= INT_MAX
)
352 static int intel_pt_cache_divisor(void)
359 perf_config(intel_pt_config_div
, &d
);
367 static unsigned int intel_pt_cache_size(struct dso
*dso
,
368 struct machine
*machine
)
372 size
= dso__data_size(dso
, machine
);
373 size
/= intel_pt_cache_divisor();
376 if (size
> (1 << 21))
378 return 32 - __builtin_clz(size
);
381 static struct auxtrace_cache
*intel_pt_cache(struct dso
*dso
,
382 struct machine
*machine
)
384 struct auxtrace_cache
*c
;
387 if (dso
->auxtrace_cache
)
388 return dso
->auxtrace_cache
;
390 bits
= intel_pt_cache_size(dso
, machine
);
392 /* Ignoring cache creation failure */
393 c
= auxtrace_cache__new(bits
, sizeof(struct intel_pt_cache_entry
), 200);
395 dso
->auxtrace_cache
= c
;
400 static int intel_pt_cache_add(struct dso
*dso
, struct machine
*machine
,
401 u64 offset
, u64 insn_cnt
, u64 byte_cnt
,
402 struct intel_pt_insn
*intel_pt_insn
)
404 struct auxtrace_cache
*c
= intel_pt_cache(dso
, machine
);
405 struct intel_pt_cache_entry
*e
;
411 e
= auxtrace_cache__alloc_entry(c
);
415 e
->insn_cnt
= insn_cnt
;
416 e
->byte_cnt
= byte_cnt
;
417 e
->op
= intel_pt_insn
->op
;
418 e
->branch
= intel_pt_insn
->branch
;
419 e
->length
= intel_pt_insn
->length
;
420 e
->rel
= intel_pt_insn
->rel
;
421 memcpy(e
->insn
, intel_pt_insn
->buf
, INTEL_PT_INSN_BUF_SZ
);
423 err
= auxtrace_cache__add(c
, offset
, &e
->entry
);
425 auxtrace_cache__free_entry(c
, e
);
430 static struct intel_pt_cache_entry
*
431 intel_pt_cache_lookup(struct dso
*dso
, struct machine
*machine
, u64 offset
)
433 struct auxtrace_cache
*c
= intel_pt_cache(dso
, machine
);
438 return auxtrace_cache__lookup(dso
->auxtrace_cache
, offset
);
441 static int intel_pt_walk_next_insn(struct intel_pt_insn
*intel_pt_insn
,
442 uint64_t *insn_cnt_ptr
, uint64_t *ip
,
443 uint64_t to_ip
, uint64_t max_insn_cnt
,
446 struct intel_pt_queue
*ptq
= data
;
447 struct machine
*machine
= ptq
->pt
->machine
;
448 struct thread
*thread
;
449 struct addr_location al
;
450 unsigned char buf
[INTEL_PT_INSN_BUF_SZ
];
454 u64 offset
, start_offset
, start_ip
;
458 intel_pt_insn
->length
= 0;
460 if (to_ip
&& *ip
== to_ip
)
463 if (*ip
>= ptq
->pt
->kernel_start
)
464 cpumode
= PERF_RECORD_MISC_KERNEL
;
466 cpumode
= PERF_RECORD_MISC_USER
;
468 thread
= ptq
->thread
;
470 if (cpumode
!= PERF_RECORD_MISC_KERNEL
)
472 thread
= ptq
->pt
->unknown_thread
;
476 thread__find_addr_map(thread
, cpumode
, MAP__FUNCTION
, *ip
, &al
);
477 if (!al
.map
|| !al
.map
->dso
)
480 if (al
.map
->dso
->data
.status
== DSO_DATA_STATUS_ERROR
&&
481 dso__data_status_seen(al
.map
->dso
,
482 DSO_DATA_STATUS_SEEN_ITRACE
))
485 offset
= al
.map
->map_ip(al
.map
, *ip
);
487 if (!to_ip
&& one_map
) {
488 struct intel_pt_cache_entry
*e
;
490 e
= intel_pt_cache_lookup(al
.map
->dso
, machine
, offset
);
492 (!max_insn_cnt
|| e
->insn_cnt
<= max_insn_cnt
)) {
493 *insn_cnt_ptr
= e
->insn_cnt
;
495 intel_pt_insn
->op
= e
->op
;
496 intel_pt_insn
->branch
= e
->branch
;
497 intel_pt_insn
->length
= e
->length
;
498 intel_pt_insn
->rel
= e
->rel
;
499 memcpy(intel_pt_insn
->buf
, e
->insn
,
500 INTEL_PT_INSN_BUF_SZ
);
501 intel_pt_log_insn_no_data(intel_pt_insn
, *ip
);
506 start_offset
= offset
;
509 /* Load maps to ensure dso->is_64_bit has been updated */
512 x86_64
= al
.map
->dso
->is_64_bit
;
515 len
= dso__data_read_offset(al
.map
->dso
, machine
,
517 INTEL_PT_INSN_BUF_SZ
);
521 if (intel_pt_get_insn(buf
, len
, x86_64
, intel_pt_insn
))
524 intel_pt_log_insn(intel_pt_insn
, *ip
);
528 if (intel_pt_insn
->branch
!= INTEL_PT_BR_NO_BRANCH
)
531 if (max_insn_cnt
&& insn_cnt
>= max_insn_cnt
)
534 *ip
+= intel_pt_insn
->length
;
536 if (to_ip
&& *ip
== to_ip
)
539 if (*ip
>= al
.map
->end
)
542 offset
+= intel_pt_insn
->length
;
547 *insn_cnt_ptr
= insn_cnt
;
553 * Didn't lookup in the 'to_ip' case, so do it now to prevent duplicate
557 struct intel_pt_cache_entry
*e
;
559 e
= intel_pt_cache_lookup(al
.map
->dso
, machine
, start_offset
);
564 /* Ignore cache errors */
565 intel_pt_cache_add(al
.map
->dso
, machine
, start_offset
, insn_cnt
,
566 *ip
- start_ip
, intel_pt_insn
);
571 *insn_cnt_ptr
= insn_cnt
;
575 static bool intel_pt_match_pgd_ip(struct intel_pt
*pt
, uint64_t ip
,
576 uint64_t offset
, const char *filename
)
578 struct addr_filter
*filt
;
579 bool have_filter
= false;
580 bool hit_tracestop
= false;
581 bool hit_filter
= false;
583 list_for_each_entry(filt
, &pt
->filts
.head
, list
) {
587 if ((filename
&& !filt
->filename
) ||
588 (!filename
&& filt
->filename
) ||
589 (filename
&& strcmp(filename
, filt
->filename
)))
592 if (!(offset
>= filt
->addr
&& offset
< filt
->addr
+ filt
->size
))
595 intel_pt_log("TIP.PGD ip %#"PRIx64
" offset %#"PRIx64
" in %s hit filter: %s offset %#"PRIx64
" size %#"PRIx64
"\n",
596 ip
, offset
, filename
? filename
: "[kernel]",
597 filt
->start
? "filter" : "stop",
598 filt
->addr
, filt
->size
);
603 hit_tracestop
= true;
606 if (!hit_tracestop
&& !hit_filter
)
607 intel_pt_log("TIP.PGD ip %#"PRIx64
" offset %#"PRIx64
" in %s is not in a filter region\n",
608 ip
, offset
, filename
? filename
: "[kernel]");
610 return hit_tracestop
|| (have_filter
&& !hit_filter
);
613 static int __intel_pt_pgd_ip(uint64_t ip
, void *data
)
615 struct intel_pt_queue
*ptq
= data
;
616 struct thread
*thread
;
617 struct addr_location al
;
621 if (ip
>= ptq
->pt
->kernel_start
)
622 return intel_pt_match_pgd_ip(ptq
->pt
, ip
, ip
, NULL
);
624 cpumode
= PERF_RECORD_MISC_USER
;
626 thread
= ptq
->thread
;
630 thread__find_addr_map(thread
, cpumode
, MAP__FUNCTION
, ip
, &al
);
631 if (!al
.map
|| !al
.map
->dso
)
634 offset
= al
.map
->map_ip(al
.map
, ip
);
636 return intel_pt_match_pgd_ip(ptq
->pt
, ip
, offset
,
637 al
.map
->dso
->long_name
);
640 static bool intel_pt_pgd_ip(uint64_t ip
, void *data
)
642 return __intel_pt_pgd_ip(ip
, data
) > 0;
645 static bool intel_pt_get_config(struct intel_pt
*pt
,
646 struct perf_event_attr
*attr
, u64
*config
)
648 if (attr
->type
== pt
->pmu_type
) {
650 *config
= attr
->config
;
657 static bool intel_pt_exclude_kernel(struct intel_pt
*pt
)
659 struct perf_evsel
*evsel
;
661 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
662 if (intel_pt_get_config(pt
, &evsel
->attr
, NULL
) &&
663 !evsel
->attr
.exclude_kernel
)
669 static bool intel_pt_return_compression(struct intel_pt
*pt
)
671 struct perf_evsel
*evsel
;
674 if (!pt
->noretcomp_bit
)
677 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
678 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
) &&
679 (config
& pt
->noretcomp_bit
))
685 static bool intel_pt_branch_enable(struct intel_pt
*pt
)
687 struct perf_evsel
*evsel
;
690 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
691 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
) &&
692 (config
& 1) && !(config
& 0x2000))
698 static unsigned int intel_pt_mtc_period(struct intel_pt
*pt
)
700 struct perf_evsel
*evsel
;
704 if (!pt
->mtc_freq_bits
)
707 for (shift
= 0, config
= pt
->mtc_freq_bits
; !(config
& 1); shift
++)
710 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
711 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
))
712 return (config
& pt
->mtc_freq_bits
) >> shift
;
717 static bool intel_pt_timeless_decoding(struct intel_pt
*pt
)
719 struct perf_evsel
*evsel
;
720 bool timeless_decoding
= true;
723 if (!pt
->tsc_bit
|| !pt
->cap_user_time_zero
)
726 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
727 if (!(evsel
->attr
.sample_type
& PERF_SAMPLE_TIME
))
729 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
)) {
730 if (config
& pt
->tsc_bit
)
731 timeless_decoding
= false;
736 return timeless_decoding
;
739 static bool intel_pt_tracing_kernel(struct intel_pt
*pt
)
741 struct perf_evsel
*evsel
;
743 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
744 if (intel_pt_get_config(pt
, &evsel
->attr
, NULL
) &&
745 !evsel
->attr
.exclude_kernel
)
751 static bool intel_pt_have_tsc(struct intel_pt
*pt
)
753 struct perf_evsel
*evsel
;
754 bool have_tsc
= false;
760 evlist__for_each_entry(pt
->session
->evlist
, evsel
) {
761 if (intel_pt_get_config(pt
, &evsel
->attr
, &config
)) {
762 if (config
& pt
->tsc_bit
)
771 static u64
intel_pt_ns_to_ticks(const struct intel_pt
*pt
, u64 ns
)
775 quot
= ns
/ pt
->tc
.time_mult
;
776 rem
= ns
% pt
->tc
.time_mult
;
777 return (quot
<< pt
->tc
.time_shift
) + (rem
<< pt
->tc
.time_shift
) /
781 static struct intel_pt_queue
*intel_pt_alloc_queue(struct intel_pt
*pt
,
782 unsigned int queue_nr
)
784 struct intel_pt_params params
= { .get_trace
= 0, };
785 struct intel_pt_queue
*ptq
;
787 ptq
= zalloc(sizeof(struct intel_pt_queue
));
791 if (pt
->synth_opts
.callchain
) {
792 size_t sz
= sizeof(struct ip_callchain
);
794 sz
+= pt
->synth_opts
.callchain_sz
* sizeof(u64
);
795 ptq
->chain
= zalloc(sz
);
800 if (pt
->synth_opts
.last_branch
) {
801 size_t sz
= sizeof(struct branch_stack
);
803 sz
+= pt
->synth_opts
.last_branch_sz
*
804 sizeof(struct branch_entry
);
805 ptq
->last_branch
= zalloc(sz
);
806 if (!ptq
->last_branch
)
808 ptq
->last_branch_rb
= zalloc(sz
);
809 if (!ptq
->last_branch_rb
)
813 ptq
->event_buf
= malloc(PERF_SAMPLE_MAX_SIZE
);
818 ptq
->queue_nr
= queue_nr
;
819 ptq
->exclude_kernel
= intel_pt_exclude_kernel(pt
);
825 params
.get_trace
= intel_pt_get_trace
;
826 params
.walk_insn
= intel_pt_walk_next_insn
;
828 params
.return_compression
= intel_pt_return_compression(pt
);
829 params
.branch_enable
= intel_pt_branch_enable(pt
);
830 params
.max_non_turbo_ratio
= pt
->max_non_turbo_ratio
;
831 params
.mtc_period
= intel_pt_mtc_period(pt
);
832 params
.tsc_ctc_ratio_n
= pt
->tsc_ctc_ratio_n
;
833 params
.tsc_ctc_ratio_d
= pt
->tsc_ctc_ratio_d
;
835 if (pt
->filts
.cnt
> 0)
836 params
.pgd_ip
= intel_pt_pgd_ip
;
838 if (pt
->synth_opts
.instructions
) {
839 if (pt
->synth_opts
.period
) {
840 switch (pt
->synth_opts
.period_type
) {
841 case PERF_ITRACE_PERIOD_INSTRUCTIONS
:
843 INTEL_PT_PERIOD_INSTRUCTIONS
;
844 params
.period
= pt
->synth_opts
.period
;
846 case PERF_ITRACE_PERIOD_TICKS
:
847 params
.period_type
= INTEL_PT_PERIOD_TICKS
;
848 params
.period
= pt
->synth_opts
.period
;
850 case PERF_ITRACE_PERIOD_NANOSECS
:
851 params
.period_type
= INTEL_PT_PERIOD_TICKS
;
852 params
.period
= intel_pt_ns_to_ticks(pt
,
853 pt
->synth_opts
.period
);
860 if (!params
.period
) {
861 params
.period_type
= INTEL_PT_PERIOD_INSTRUCTIONS
;
866 ptq
->decoder
= intel_pt_decoder_new(¶ms
);
873 zfree(&ptq
->event_buf
);
874 zfree(&ptq
->last_branch
);
875 zfree(&ptq
->last_branch_rb
);
881 static void intel_pt_free_queue(void *priv
)
883 struct intel_pt_queue
*ptq
= priv
;
887 thread__zput(ptq
->thread
);
888 intel_pt_decoder_free(ptq
->decoder
);
889 zfree(&ptq
->event_buf
);
890 zfree(&ptq
->last_branch
);
891 zfree(&ptq
->last_branch_rb
);
896 static void intel_pt_set_pid_tid_cpu(struct intel_pt
*pt
,
897 struct auxtrace_queue
*queue
)
899 struct intel_pt_queue
*ptq
= queue
->priv
;
901 if (queue
->tid
== -1 || pt
->have_sched_switch
) {
902 ptq
->tid
= machine__get_current_tid(pt
->machine
, ptq
->cpu
);
903 thread__zput(ptq
->thread
);
906 if (!ptq
->thread
&& ptq
->tid
!= -1)
907 ptq
->thread
= machine__find_thread(pt
->machine
, -1, ptq
->tid
);
910 ptq
->pid
= ptq
->thread
->pid_
;
911 if (queue
->cpu
== -1)
912 ptq
->cpu
= ptq
->thread
->cpu
;
916 static void intel_pt_sample_flags(struct intel_pt_queue
*ptq
)
918 if (ptq
->state
->flags
& INTEL_PT_ABORT_TX
) {
919 ptq
->flags
= PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_TX_ABORT
;
920 } else if (ptq
->state
->flags
& INTEL_PT_ASYNC
) {
921 if (ptq
->state
->to_ip
)
922 ptq
->flags
= PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
|
924 PERF_IP_FLAG_INTERRUPT
;
926 ptq
->flags
= PERF_IP_FLAG_BRANCH
|
927 PERF_IP_FLAG_TRACE_END
;
930 if (ptq
->state
->from_ip
)
931 ptq
->flags
= intel_pt_insn_type(ptq
->state
->insn_op
);
933 ptq
->flags
= PERF_IP_FLAG_BRANCH
|
934 PERF_IP_FLAG_TRACE_BEGIN
;
935 if (ptq
->state
->flags
& INTEL_PT_IN_TX
)
936 ptq
->flags
|= PERF_IP_FLAG_IN_TX
;
937 ptq
->insn_len
= ptq
->state
->insn_len
;
938 memcpy(ptq
->insn
, ptq
->state
->insn
, INTEL_PT_INSN_BUF_SZ
);
942 static int intel_pt_setup_queue(struct intel_pt
*pt
,
943 struct auxtrace_queue
*queue
,
944 unsigned int queue_nr
)
946 struct intel_pt_queue
*ptq
= queue
->priv
;
948 if (list_empty(&queue
->head
))
952 ptq
= intel_pt_alloc_queue(pt
, queue_nr
);
957 if (queue
->cpu
!= -1)
958 ptq
->cpu
= queue
->cpu
;
959 ptq
->tid
= queue
->tid
;
961 if (pt
->sampling_mode
) {
962 if (pt
->timeless_decoding
)
963 ptq
->step_through_buffers
= true;
964 if (pt
->timeless_decoding
|| !pt
->have_sched_switch
)
965 ptq
->use_buffer_pid_tid
= true;
968 ptq
->sync_switch
= pt
->sync_switch
;
972 (!ptq
->sync_switch
||
973 ptq
->switch_state
!= INTEL_PT_SS_EXPECTING_SWITCH_EVENT
)) {
974 const struct intel_pt_state
*state
;
977 if (pt
->timeless_decoding
)
980 intel_pt_log("queue %u getting timestamp\n", queue_nr
);
981 intel_pt_log("queue %u decoding cpu %d pid %d tid %d\n",
982 queue_nr
, ptq
->cpu
, ptq
->pid
, ptq
->tid
);
984 state
= intel_pt_decode(ptq
->decoder
);
986 if (state
->err
== INTEL_PT_ERR_NODATA
) {
987 intel_pt_log("queue %u has no timestamp\n",
993 if (state
->timestamp
)
997 ptq
->timestamp
= state
->timestamp
;
998 intel_pt_log("queue %u timestamp 0x%" PRIx64
"\n",
999 queue_nr
, ptq
->timestamp
);
1001 ptq
->have_sample
= true;
1002 intel_pt_sample_flags(ptq
);
1003 ret
= auxtrace_heap__add(&pt
->heap
, queue_nr
, ptq
->timestamp
);
1006 ptq
->on_heap
= true;
1012 static int intel_pt_setup_queues(struct intel_pt
*pt
)
1017 for (i
= 0; i
< pt
->queues
.nr_queues
; i
++) {
1018 ret
= intel_pt_setup_queue(pt
, &pt
->queues
.queue_array
[i
], i
);
1025 static inline void intel_pt_copy_last_branch_rb(struct intel_pt_queue
*ptq
)
1027 struct branch_stack
*bs_src
= ptq
->last_branch_rb
;
1028 struct branch_stack
*bs_dst
= ptq
->last_branch
;
1031 bs_dst
->nr
= bs_src
->nr
;
1036 nr
= ptq
->pt
->synth_opts
.last_branch_sz
- ptq
->last_branch_pos
;
1037 memcpy(&bs_dst
->entries
[0],
1038 &bs_src
->entries
[ptq
->last_branch_pos
],
1039 sizeof(struct branch_entry
) * nr
);
1041 if (bs_src
->nr
>= ptq
->pt
->synth_opts
.last_branch_sz
) {
1042 memcpy(&bs_dst
->entries
[nr
],
1043 &bs_src
->entries
[0],
1044 sizeof(struct branch_entry
) * ptq
->last_branch_pos
);
1048 static inline void intel_pt_reset_last_branch_rb(struct intel_pt_queue
*ptq
)
1050 ptq
->last_branch_pos
= 0;
1051 ptq
->last_branch_rb
->nr
= 0;
1054 static void intel_pt_update_last_branch_rb(struct intel_pt_queue
*ptq
)
1056 const struct intel_pt_state
*state
= ptq
->state
;
1057 struct branch_stack
*bs
= ptq
->last_branch_rb
;
1058 struct branch_entry
*be
;
1060 if (!ptq
->last_branch_pos
)
1061 ptq
->last_branch_pos
= ptq
->pt
->synth_opts
.last_branch_sz
;
1063 ptq
->last_branch_pos
-= 1;
1065 be
= &bs
->entries
[ptq
->last_branch_pos
];
1066 be
->from
= state
->from_ip
;
1067 be
->to
= state
->to_ip
;
1068 be
->flags
.abort
= !!(state
->flags
& INTEL_PT_ABORT_TX
);
1069 be
->flags
.in_tx
= !!(state
->flags
& INTEL_PT_IN_TX
);
1070 /* No support for mispredict */
1071 be
->flags
.mispred
= ptq
->pt
->mispred_all
;
1073 if (bs
->nr
< ptq
->pt
->synth_opts
.last_branch_sz
)
1077 static inline bool intel_pt_skip_event(struct intel_pt
*pt
)
1079 return pt
->synth_opts
.initial_skip
&&
1080 pt
->num_events
++ < pt
->synth_opts
.initial_skip
;
1083 static void intel_pt_prep_b_sample(struct intel_pt
*pt
,
1084 struct intel_pt_queue
*ptq
,
1085 union perf_event
*event
,
1086 struct perf_sample
*sample
)
1088 event
->sample
.header
.type
= PERF_RECORD_SAMPLE
;
1089 event
->sample
.header
.misc
= PERF_RECORD_MISC_USER
;
1090 event
->sample
.header
.size
= sizeof(struct perf_event_header
);
1092 if (!pt
->timeless_decoding
)
1093 sample
->time
= tsc_to_perf_time(ptq
->timestamp
, &pt
->tc
);
1095 sample
->cpumode
= PERF_RECORD_MISC_USER
;
1096 sample
->ip
= ptq
->state
->from_ip
;
1097 sample
->pid
= ptq
->pid
;
1098 sample
->tid
= ptq
->tid
;
1099 sample
->addr
= ptq
->state
->to_ip
;
1101 sample
->cpu
= ptq
->cpu
;
1102 sample
->flags
= ptq
->flags
;
1103 sample
->insn_len
= ptq
->insn_len
;
1104 memcpy(sample
->insn
, ptq
->insn
, INTEL_PT_INSN_BUF_SZ
);
1107 static int intel_pt_inject_event(union perf_event
*event
,
1108 struct perf_sample
*sample
, u64 type
)
1110 event
->header
.size
= perf_event__sample_event_size(sample
, type
, 0);
1111 return perf_event__synthesize_sample(event
, type
, 0, sample
);
1114 static inline int intel_pt_opt_inject(struct intel_pt
*pt
,
1115 union perf_event
*event
,
1116 struct perf_sample
*sample
, u64 type
)
1118 if (!pt
->synth_opts
.inject
)
1121 return intel_pt_inject_event(event
, sample
, type
);
1124 static int intel_pt_deliver_synth_b_event(struct intel_pt
*pt
,
1125 union perf_event
*event
,
1126 struct perf_sample
*sample
, u64 type
)
1130 ret
= intel_pt_opt_inject(pt
, event
, sample
, type
);
1134 ret
= perf_session__deliver_synth_event(pt
->session
, event
, sample
);
1136 pr_err("Intel PT: failed to deliver event, error %d\n", ret
);
1141 static int intel_pt_synth_branch_sample(struct intel_pt_queue
*ptq
)
1143 struct intel_pt
*pt
= ptq
->pt
;
1144 union perf_event
*event
= ptq
->event_buf
;
1145 struct perf_sample sample
= { .ip
= 0, };
1146 struct dummy_branch_stack
{
1148 struct branch_entry entries
;
1151 if (pt
->branches_filter
&& !(pt
->branches_filter
& ptq
->flags
))
1154 if (intel_pt_skip_event(pt
))
1157 intel_pt_prep_b_sample(pt
, ptq
, event
, &sample
);
1159 sample
.id
= ptq
->pt
->branches_id
;
1160 sample
.stream_id
= ptq
->pt
->branches_id
;
1163 * perf report cannot handle events without a branch stack when using
1164 * SORT_MODE__BRANCH so make a dummy one.
1166 if (pt
->synth_opts
.last_branch
&& sort__mode
== SORT_MODE__BRANCH
) {
1167 dummy_bs
= (struct dummy_branch_stack
){
1174 sample
.branch_stack
= (struct branch_stack
*)&dummy_bs
;
1177 return intel_pt_deliver_synth_b_event(pt
, event
, &sample
,
1178 pt
->branches_sample_type
);
1181 static void intel_pt_prep_sample(struct intel_pt
*pt
,
1182 struct intel_pt_queue
*ptq
,
1183 union perf_event
*event
,
1184 struct perf_sample
*sample
)
1186 intel_pt_prep_b_sample(pt
, ptq
, event
, sample
);
1188 if (pt
->synth_opts
.callchain
) {
1189 thread_stack__sample(ptq
->thread
, ptq
->chain
,
1190 pt
->synth_opts
.callchain_sz
, sample
->ip
);
1191 sample
->callchain
= ptq
->chain
;
1194 if (pt
->synth_opts
.last_branch
) {
1195 intel_pt_copy_last_branch_rb(ptq
);
1196 sample
->branch_stack
= ptq
->last_branch
;
1200 static inline int intel_pt_deliver_synth_event(struct intel_pt
*pt
,
1201 struct intel_pt_queue
*ptq
,
1202 union perf_event
*event
,
1203 struct perf_sample
*sample
,
1208 ret
= intel_pt_deliver_synth_b_event(pt
, event
, sample
, type
);
1210 if (pt
->synth_opts
.last_branch
)
1211 intel_pt_reset_last_branch_rb(ptq
);
1216 static int intel_pt_synth_instruction_sample(struct intel_pt_queue
*ptq
)
1218 struct intel_pt
*pt
= ptq
->pt
;
1219 union perf_event
*event
= ptq
->event_buf
;
1220 struct perf_sample sample
= { .ip
= 0, };
1222 if (intel_pt_skip_event(pt
))
1225 intel_pt_prep_sample(pt
, ptq
, event
, &sample
);
1227 sample
.id
= ptq
->pt
->instructions_id
;
1228 sample
.stream_id
= ptq
->pt
->instructions_id
;
1229 sample
.period
= ptq
->state
->tot_insn_cnt
- ptq
->last_insn_cnt
;
1231 ptq
->last_insn_cnt
= ptq
->state
->tot_insn_cnt
;
1233 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1234 pt
->instructions_sample_type
);
1237 static int intel_pt_synth_transaction_sample(struct intel_pt_queue
*ptq
)
1239 struct intel_pt
*pt
= ptq
->pt
;
1240 union perf_event
*event
= ptq
->event_buf
;
1241 struct perf_sample sample
= { .ip
= 0, };
1243 if (intel_pt_skip_event(pt
))
1246 intel_pt_prep_sample(pt
, ptq
, event
, &sample
);
1248 sample
.id
= ptq
->pt
->transactions_id
;
1249 sample
.stream_id
= ptq
->pt
->transactions_id
;
1251 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1252 pt
->transactions_sample_type
);
1255 static void intel_pt_prep_p_sample(struct intel_pt
*pt
,
1256 struct intel_pt_queue
*ptq
,
1257 union perf_event
*event
,
1258 struct perf_sample
*sample
)
1260 intel_pt_prep_sample(pt
, ptq
, event
, sample
);
1263 * Zero IP is used to mean "trace start" but that is not the case for
1264 * power or PTWRITE events with no IP, so clear the flags.
1270 static int intel_pt_synth_ptwrite_sample(struct intel_pt_queue
*ptq
)
1272 struct intel_pt
*pt
= ptq
->pt
;
1273 union perf_event
*event
= ptq
->event_buf
;
1274 struct perf_sample sample
= { .ip
= 0, };
1275 struct perf_synth_intel_ptwrite raw
;
1277 if (intel_pt_skip_event(pt
))
1280 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1282 sample
.id
= ptq
->pt
->ptwrites_id
;
1283 sample
.stream_id
= ptq
->pt
->ptwrites_id
;
1286 raw
.ip
= !!(ptq
->state
->flags
& INTEL_PT_FUP_IP
);
1287 raw
.payload
= cpu_to_le64(ptq
->state
->ptw_payload
);
1289 sample
.raw_size
= perf_synth__raw_size(raw
);
1290 sample
.raw_data
= perf_synth__raw_data(&raw
);
1292 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1293 pt
->ptwrites_sample_type
);
1296 static int intel_pt_synth_cbr_sample(struct intel_pt_queue
*ptq
)
1298 struct intel_pt
*pt
= ptq
->pt
;
1299 union perf_event
*event
= ptq
->event_buf
;
1300 struct perf_sample sample
= { .ip
= 0, };
1301 struct perf_synth_intel_cbr raw
;
1304 if (intel_pt_skip_event(pt
))
1307 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1309 sample
.id
= ptq
->pt
->cbr_id
;
1310 sample
.stream_id
= ptq
->pt
->cbr_id
;
1312 flags
= (u16
)ptq
->state
->cbr_payload
| (pt
->max_non_turbo_ratio
<< 16);
1313 raw
.flags
= cpu_to_le32(flags
);
1314 raw
.freq
= cpu_to_le32(raw
.cbr
* pt
->cbr2khz
);
1317 sample
.raw_size
= perf_synth__raw_size(raw
);
1318 sample
.raw_data
= perf_synth__raw_data(&raw
);
1320 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1321 pt
->pwr_events_sample_type
);
1324 static int intel_pt_synth_mwait_sample(struct intel_pt_queue
*ptq
)
1326 struct intel_pt
*pt
= ptq
->pt
;
1327 union perf_event
*event
= ptq
->event_buf
;
1328 struct perf_sample sample
= { .ip
= 0, };
1329 struct perf_synth_intel_mwait raw
;
1331 if (intel_pt_skip_event(pt
))
1334 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1336 sample
.id
= ptq
->pt
->mwait_id
;
1337 sample
.stream_id
= ptq
->pt
->mwait_id
;
1340 raw
.payload
= cpu_to_le64(ptq
->state
->mwait_payload
);
1342 sample
.raw_size
= perf_synth__raw_size(raw
);
1343 sample
.raw_data
= perf_synth__raw_data(&raw
);
1345 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1346 pt
->pwr_events_sample_type
);
1349 static int intel_pt_synth_pwre_sample(struct intel_pt_queue
*ptq
)
1351 struct intel_pt
*pt
= ptq
->pt
;
1352 union perf_event
*event
= ptq
->event_buf
;
1353 struct perf_sample sample
= { .ip
= 0, };
1354 struct perf_synth_intel_pwre raw
;
1356 if (intel_pt_skip_event(pt
))
1359 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1361 sample
.id
= ptq
->pt
->pwre_id
;
1362 sample
.stream_id
= ptq
->pt
->pwre_id
;
1365 raw
.payload
= cpu_to_le64(ptq
->state
->pwre_payload
);
1367 sample
.raw_size
= perf_synth__raw_size(raw
);
1368 sample
.raw_data
= perf_synth__raw_data(&raw
);
1370 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1371 pt
->pwr_events_sample_type
);
1374 static int intel_pt_synth_exstop_sample(struct intel_pt_queue
*ptq
)
1376 struct intel_pt
*pt
= ptq
->pt
;
1377 union perf_event
*event
= ptq
->event_buf
;
1378 struct perf_sample sample
= { .ip
= 0, };
1379 struct perf_synth_intel_exstop raw
;
1381 if (intel_pt_skip_event(pt
))
1384 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1386 sample
.id
= ptq
->pt
->exstop_id
;
1387 sample
.stream_id
= ptq
->pt
->exstop_id
;
1390 raw
.ip
= !!(ptq
->state
->flags
& INTEL_PT_FUP_IP
);
1392 sample
.raw_size
= perf_synth__raw_size(raw
);
1393 sample
.raw_data
= perf_synth__raw_data(&raw
);
1395 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1396 pt
->pwr_events_sample_type
);
1399 static int intel_pt_synth_pwrx_sample(struct intel_pt_queue
*ptq
)
1401 struct intel_pt
*pt
= ptq
->pt
;
1402 union perf_event
*event
= ptq
->event_buf
;
1403 struct perf_sample sample
= { .ip
= 0, };
1404 struct perf_synth_intel_pwrx raw
;
1406 if (intel_pt_skip_event(pt
))
1409 intel_pt_prep_p_sample(pt
, ptq
, event
, &sample
);
1411 sample
.id
= ptq
->pt
->pwrx_id
;
1412 sample
.stream_id
= ptq
->pt
->pwrx_id
;
1415 raw
.payload
= cpu_to_le64(ptq
->state
->pwrx_payload
);
1417 sample
.raw_size
= perf_synth__raw_size(raw
);
1418 sample
.raw_data
= perf_synth__raw_data(&raw
);
1420 return intel_pt_deliver_synth_event(pt
, ptq
, event
, &sample
,
1421 pt
->pwr_events_sample_type
);
1424 static int intel_pt_synth_error(struct intel_pt
*pt
, int code
, int cpu
,
1425 pid_t pid
, pid_t tid
, u64 ip
)
1427 union perf_event event
;
1428 char msg
[MAX_AUXTRACE_ERROR_MSG
];
1431 intel_pt__strerror(code
, msg
, MAX_AUXTRACE_ERROR_MSG
);
1433 auxtrace_synth_error(&event
.auxtrace_error
, PERF_AUXTRACE_ERROR_ITRACE
,
1434 code
, cpu
, pid
, tid
, ip
, msg
);
1436 err
= perf_session__deliver_synth_event(pt
->session
, &event
, NULL
);
1438 pr_err("Intel Processor Trace: failed to deliver error event, error %d\n",
1444 static int intel_pt_next_tid(struct intel_pt
*pt
, struct intel_pt_queue
*ptq
)
1446 struct auxtrace_queue
*queue
;
1447 pid_t tid
= ptq
->next_tid
;
1453 intel_pt_log("switch: cpu %d tid %d\n", ptq
->cpu
, tid
);
1455 err
= machine__set_current_tid(pt
->machine
, ptq
->cpu
, -1, tid
);
1457 queue
= &pt
->queues
.queue_array
[ptq
->queue_nr
];
1458 intel_pt_set_pid_tid_cpu(pt
, queue
);
1465 static inline bool intel_pt_is_switch_ip(struct intel_pt_queue
*ptq
, u64 ip
)
1467 struct intel_pt
*pt
= ptq
->pt
;
1469 return ip
== pt
->switch_ip
&&
1470 (ptq
->flags
& PERF_IP_FLAG_BRANCH
) &&
1471 !(ptq
->flags
& (PERF_IP_FLAG_CONDITIONAL
| PERF_IP_FLAG_ASYNC
|
1472 PERF_IP_FLAG_INTERRUPT
| PERF_IP_FLAG_TX_ABORT
));
1475 #define INTEL_PT_PWR_EVT (INTEL_PT_MWAIT_OP | INTEL_PT_PWR_ENTRY | \
1476 INTEL_PT_EX_STOP | INTEL_PT_PWR_EXIT | \
1479 static int intel_pt_sample(struct intel_pt_queue
*ptq
)
1481 const struct intel_pt_state
*state
= ptq
->state
;
1482 struct intel_pt
*pt
= ptq
->pt
;
1485 if (!ptq
->have_sample
)
1488 ptq
->have_sample
= false;
1490 if (pt
->sample_pwr_events
&& (state
->type
& INTEL_PT_PWR_EVT
)) {
1491 if (state
->type
& INTEL_PT_CBR_CHG
) {
1492 err
= intel_pt_synth_cbr_sample(ptq
);
1496 if (state
->type
& INTEL_PT_MWAIT_OP
) {
1497 err
= intel_pt_synth_mwait_sample(ptq
);
1501 if (state
->type
& INTEL_PT_PWR_ENTRY
) {
1502 err
= intel_pt_synth_pwre_sample(ptq
);
1506 if (state
->type
& INTEL_PT_EX_STOP
) {
1507 err
= intel_pt_synth_exstop_sample(ptq
);
1511 if (state
->type
& INTEL_PT_PWR_EXIT
) {
1512 err
= intel_pt_synth_pwrx_sample(ptq
);
1518 if (pt
->sample_instructions
&& (state
->type
& INTEL_PT_INSTRUCTION
)) {
1519 err
= intel_pt_synth_instruction_sample(ptq
);
1524 if (pt
->sample_transactions
&& (state
->type
& INTEL_PT_TRANSACTION
)) {
1525 err
= intel_pt_synth_transaction_sample(ptq
);
1530 if (pt
->sample_ptwrites
&& (state
->type
& INTEL_PT_PTW
)) {
1531 err
= intel_pt_synth_ptwrite_sample(ptq
);
1536 if (!(state
->type
& INTEL_PT_BRANCH
))
1539 if (pt
->synth_opts
.callchain
|| pt
->synth_opts
.thread_stack
)
1540 thread_stack__event(ptq
->thread
, ptq
->flags
, state
->from_ip
,
1541 state
->to_ip
, ptq
->insn_len
,
1544 thread_stack__set_trace_nr(ptq
->thread
, state
->trace_nr
);
1546 if (pt
->sample_branches
) {
1547 err
= intel_pt_synth_branch_sample(ptq
);
1552 if (pt
->synth_opts
.last_branch
)
1553 intel_pt_update_last_branch_rb(ptq
);
1555 if (!ptq
->sync_switch
)
1558 if (intel_pt_is_switch_ip(ptq
, state
->to_ip
)) {
1559 switch (ptq
->switch_state
) {
1560 case INTEL_PT_SS_UNKNOWN
:
1561 case INTEL_PT_SS_EXPECTING_SWITCH_IP
:
1562 err
= intel_pt_next_tid(pt
, ptq
);
1565 ptq
->switch_state
= INTEL_PT_SS_TRACING
;
1568 ptq
->switch_state
= INTEL_PT_SS_EXPECTING_SWITCH_EVENT
;
1571 } else if (!state
->to_ip
) {
1572 ptq
->switch_state
= INTEL_PT_SS_NOT_TRACING
;
1573 } else if (ptq
->switch_state
== INTEL_PT_SS_NOT_TRACING
) {
1574 ptq
->switch_state
= INTEL_PT_SS_UNKNOWN
;
1575 } else if (ptq
->switch_state
== INTEL_PT_SS_UNKNOWN
&&
1576 state
->to_ip
== pt
->ptss_ip
&&
1577 (ptq
->flags
& PERF_IP_FLAG_CALL
)) {
1578 ptq
->switch_state
= INTEL_PT_SS_TRACING
;
1584 static u64
intel_pt_switch_ip(struct intel_pt
*pt
, u64
*ptss_ip
)
1586 struct machine
*machine
= pt
->machine
;
1588 struct symbol
*sym
, *start
;
1589 u64 ip
, switch_ip
= 0;
1595 map
= machine__kernel_map(machine
);
1602 start
= dso__first_symbol(map
->dso
, MAP__FUNCTION
);
1604 for (sym
= start
; sym
; sym
= dso__next_symbol(sym
)) {
1605 if (sym
->binding
== STB_GLOBAL
&&
1606 !strcmp(sym
->name
, "__switch_to")) {
1607 ip
= map
->unmap_ip(map
, sym
->start
);
1608 if (ip
>= map
->start
&& ip
< map
->end
) {
1615 if (!switch_ip
|| !ptss_ip
)
1618 if (pt
->have_sched_switch
== 1)
1619 ptss
= "perf_trace_sched_switch";
1621 ptss
= "__perf_event_task_sched_out";
1623 for (sym
= start
; sym
; sym
= dso__next_symbol(sym
)) {
1624 if (!strcmp(sym
->name
, ptss
)) {
1625 ip
= map
->unmap_ip(map
, sym
->start
);
1626 if (ip
>= map
->start
&& ip
< map
->end
) {
1636 static void intel_pt_enable_sync_switch(struct intel_pt
*pt
)
1640 pt
->sync_switch
= true;
1642 for (i
= 0; i
< pt
->queues
.nr_queues
; i
++) {
1643 struct auxtrace_queue
*queue
= &pt
->queues
.queue_array
[i
];
1644 struct intel_pt_queue
*ptq
= queue
->priv
;
1647 ptq
->sync_switch
= true;
1651 static int intel_pt_run_decoder(struct intel_pt_queue
*ptq
, u64
*timestamp
)
1653 const struct intel_pt_state
*state
= ptq
->state
;
1654 struct intel_pt
*pt
= ptq
->pt
;
1657 if (!pt
->kernel_start
) {
1658 pt
->kernel_start
= machine__kernel_start(pt
->machine
);
1659 if (pt
->per_cpu_mmaps
&&
1660 (pt
->have_sched_switch
== 1 || pt
->have_sched_switch
== 3) &&
1661 !pt
->timeless_decoding
&& intel_pt_tracing_kernel(pt
) &&
1662 !pt
->sampling_mode
) {
1663 pt
->switch_ip
= intel_pt_switch_ip(pt
, &pt
->ptss_ip
);
1664 if (pt
->switch_ip
) {
1665 intel_pt_log("switch_ip: %"PRIx64
" ptss_ip: %"PRIx64
"\n",
1666 pt
->switch_ip
, pt
->ptss_ip
);
1667 intel_pt_enable_sync_switch(pt
);
1672 intel_pt_log("queue %u decoding cpu %d pid %d tid %d\n",
1673 ptq
->queue_nr
, ptq
->cpu
, ptq
->pid
, ptq
->tid
);
1675 err
= intel_pt_sample(ptq
);
1679 state
= intel_pt_decode(ptq
->decoder
);
1681 if (state
->err
== INTEL_PT_ERR_NODATA
)
1683 if (ptq
->sync_switch
&&
1684 state
->from_ip
>= pt
->kernel_start
) {
1685 ptq
->sync_switch
= false;
1686 intel_pt_next_tid(pt
, ptq
);
1688 if (pt
->synth_opts
.errors
) {
1689 err
= intel_pt_synth_error(pt
, state
->err
,
1700 ptq
->have_sample
= true;
1701 intel_pt_sample_flags(ptq
);
1703 /* Use estimated TSC upon return to user space */
1705 (state
->from_ip
>= pt
->kernel_start
|| !state
->from_ip
) &&
1706 state
->to_ip
&& state
->to_ip
< pt
->kernel_start
) {
1707 intel_pt_log("TSC %"PRIx64
" est. TSC %"PRIx64
"\n",
1708 state
->timestamp
, state
->est_timestamp
);
1709 ptq
->timestamp
= state
->est_timestamp
;
1710 /* Use estimated TSC in unknown switch state */
1711 } else if (ptq
->sync_switch
&&
1712 ptq
->switch_state
== INTEL_PT_SS_UNKNOWN
&&
1713 intel_pt_is_switch_ip(ptq
, state
->to_ip
) &&
1714 ptq
->next_tid
== -1) {
1715 intel_pt_log("TSC %"PRIx64
" est. TSC %"PRIx64
"\n",
1716 state
->timestamp
, state
->est_timestamp
);
1717 ptq
->timestamp
= state
->est_timestamp
;
1718 } else if (state
->timestamp
> ptq
->timestamp
) {
1719 ptq
->timestamp
= state
->timestamp
;
1722 if (!pt
->timeless_decoding
&& ptq
->timestamp
>= *timestamp
) {
1723 *timestamp
= ptq
->timestamp
;
1730 static inline int intel_pt_update_queues(struct intel_pt
*pt
)
1732 if (pt
->queues
.new_data
) {
1733 pt
->queues
.new_data
= false;
1734 return intel_pt_setup_queues(pt
);
1739 static int intel_pt_process_queues(struct intel_pt
*pt
, u64 timestamp
)
1741 unsigned int queue_nr
;
1746 struct auxtrace_queue
*queue
;
1747 struct intel_pt_queue
*ptq
;
1749 if (!pt
->heap
.heap_cnt
)
1752 if (pt
->heap
.heap_array
[0].ordinal
>= timestamp
)
1755 queue_nr
= pt
->heap
.heap_array
[0].queue_nr
;
1756 queue
= &pt
->queues
.queue_array
[queue_nr
];
1759 intel_pt_log("queue %u processing 0x%" PRIx64
" to 0x%" PRIx64
"\n",
1760 queue_nr
, pt
->heap
.heap_array
[0].ordinal
,
1763 auxtrace_heap__pop(&pt
->heap
);
1765 if (pt
->heap
.heap_cnt
) {
1766 ts
= pt
->heap
.heap_array
[0].ordinal
+ 1;
1773 intel_pt_set_pid_tid_cpu(pt
, queue
);
1775 ret
= intel_pt_run_decoder(ptq
, &ts
);
1778 auxtrace_heap__add(&pt
->heap
, queue_nr
, ts
);
1783 ret
= auxtrace_heap__add(&pt
->heap
, queue_nr
, ts
);
1787 ptq
->on_heap
= false;
1794 static int intel_pt_process_timeless_queues(struct intel_pt
*pt
, pid_t tid
,
1797 struct auxtrace_queues
*queues
= &pt
->queues
;
1801 for (i
= 0; i
< queues
->nr_queues
; i
++) {
1802 struct auxtrace_queue
*queue
= &pt
->queues
.queue_array
[i
];
1803 struct intel_pt_queue
*ptq
= queue
->priv
;
1805 if (ptq
&& (tid
== -1 || ptq
->tid
== tid
)) {
1807 intel_pt_set_pid_tid_cpu(pt
, queue
);
1808 intel_pt_run_decoder(ptq
, &ts
);
1814 static int intel_pt_lost(struct intel_pt
*pt
, struct perf_sample
*sample
)
1816 return intel_pt_synth_error(pt
, INTEL_PT_ERR_LOST
, sample
->cpu
,
1817 sample
->pid
, sample
->tid
, 0);
1820 static struct intel_pt_queue
*intel_pt_cpu_to_ptq(struct intel_pt
*pt
, int cpu
)
1824 if (cpu
< 0 || !pt
->queues
.nr_queues
)
1827 if ((unsigned)cpu
>= pt
->queues
.nr_queues
)
1828 i
= pt
->queues
.nr_queues
- 1;
1832 if (pt
->queues
.queue_array
[i
].cpu
== cpu
)
1833 return pt
->queues
.queue_array
[i
].priv
;
1835 for (j
= 0; i
> 0; j
++) {
1836 if (pt
->queues
.queue_array
[--i
].cpu
== cpu
)
1837 return pt
->queues
.queue_array
[i
].priv
;
1840 for (; j
< pt
->queues
.nr_queues
; j
++) {
1841 if (pt
->queues
.queue_array
[j
].cpu
== cpu
)
1842 return pt
->queues
.queue_array
[j
].priv
;
1848 static int intel_pt_sync_switch(struct intel_pt
*pt
, int cpu
, pid_t tid
,
1851 struct intel_pt_queue
*ptq
;
1854 if (!pt
->sync_switch
)
1857 ptq
= intel_pt_cpu_to_ptq(pt
, cpu
);
1858 if (!ptq
|| !ptq
->sync_switch
)
1861 switch (ptq
->switch_state
) {
1862 case INTEL_PT_SS_NOT_TRACING
:
1865 case INTEL_PT_SS_UNKNOWN
:
1866 case INTEL_PT_SS_TRACING
:
1867 ptq
->next_tid
= tid
;
1868 ptq
->switch_state
= INTEL_PT_SS_EXPECTING_SWITCH_IP
;
1870 case INTEL_PT_SS_EXPECTING_SWITCH_EVENT
:
1871 if (!ptq
->on_heap
) {
1872 ptq
->timestamp
= perf_time_to_tsc(timestamp
,
1874 err
= auxtrace_heap__add(&pt
->heap
, ptq
->queue_nr
,
1878 ptq
->on_heap
= true;
1880 ptq
->switch_state
= INTEL_PT_SS_TRACING
;
1882 case INTEL_PT_SS_EXPECTING_SWITCH_IP
:
1883 ptq
->next_tid
= tid
;
1884 intel_pt_log("ERROR: cpu %d expecting switch ip\n", cpu
);
1893 static int intel_pt_process_switch(struct intel_pt
*pt
,
1894 struct perf_sample
*sample
)
1896 struct perf_evsel
*evsel
;
1900 evsel
= perf_evlist__id2evsel(pt
->session
->evlist
, sample
->id
);
1901 if (evsel
!= pt
->switch_evsel
)
1904 tid
= perf_evsel__intval(evsel
, sample
, "next_pid");
1907 intel_pt_log("sched_switch: cpu %d tid %d time %"PRIu64
" tsc %#"PRIx64
"\n",
1908 cpu
, tid
, sample
->time
, perf_time_to_tsc(sample
->time
,
1911 ret
= intel_pt_sync_switch(pt
, cpu
, tid
, sample
->time
);
1915 return machine__set_current_tid(pt
->machine
, cpu
, -1, tid
);
1918 static int intel_pt_context_switch(struct intel_pt
*pt
, union perf_event
*event
,
1919 struct perf_sample
*sample
)
1921 bool out
= event
->header
.misc
& PERF_RECORD_MISC_SWITCH_OUT
;
1927 if (pt
->have_sched_switch
== 3) {
1930 if (event
->header
.type
!= PERF_RECORD_SWITCH_CPU_WIDE
) {
1931 pr_err("Expecting CPU-wide context switch event\n");
1934 pid
= event
->context_switch
.next_prev_pid
;
1935 tid
= event
->context_switch
.next_prev_tid
;
1944 pr_err("context_switch event has no tid\n");
1948 intel_pt_log("context_switch: cpu %d pid %d tid %d time %"PRIu64
" tsc %#"PRIx64
"\n",
1949 cpu
, pid
, tid
, sample
->time
, perf_time_to_tsc(sample
->time
,
1952 ret
= intel_pt_sync_switch(pt
, cpu
, tid
, sample
->time
);
1956 return machine__set_current_tid(pt
->machine
, cpu
, pid
, tid
);
1959 static int intel_pt_process_itrace_start(struct intel_pt
*pt
,
1960 union perf_event
*event
,
1961 struct perf_sample
*sample
)
1963 if (!pt
->per_cpu_mmaps
)
1966 intel_pt_log("itrace_start: cpu %d pid %d tid %d time %"PRIu64
" tsc %#"PRIx64
"\n",
1967 sample
->cpu
, event
->itrace_start
.pid
,
1968 event
->itrace_start
.tid
, sample
->time
,
1969 perf_time_to_tsc(sample
->time
, &pt
->tc
));
1971 return machine__set_current_tid(pt
->machine
, sample
->cpu
,
1972 event
->itrace_start
.pid
,
1973 event
->itrace_start
.tid
);
1976 static int intel_pt_process_event(struct perf_session
*session
,
1977 union perf_event
*event
,
1978 struct perf_sample
*sample
,
1979 struct perf_tool
*tool
)
1981 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
1989 if (!tool
->ordered_events
) {
1990 pr_err("Intel Processor Trace requires ordered events\n");
1994 if (sample
->time
&& sample
->time
!= (u64
)-1)
1995 timestamp
= perf_time_to_tsc(sample
->time
, &pt
->tc
);
1999 if (timestamp
|| pt
->timeless_decoding
) {
2000 err
= intel_pt_update_queues(pt
);
2005 if (pt
->timeless_decoding
) {
2006 if (event
->header
.type
== PERF_RECORD_EXIT
) {
2007 err
= intel_pt_process_timeless_queues(pt
,
2011 } else if (timestamp
) {
2012 err
= intel_pt_process_queues(pt
, timestamp
);
2017 if (event
->header
.type
== PERF_RECORD_AUX
&&
2018 (event
->aux
.flags
& PERF_AUX_FLAG_TRUNCATED
) &&
2019 pt
->synth_opts
.errors
) {
2020 err
= intel_pt_lost(pt
, sample
);
2025 if (pt
->switch_evsel
&& event
->header
.type
== PERF_RECORD_SAMPLE
)
2026 err
= intel_pt_process_switch(pt
, sample
);
2027 else if (event
->header
.type
== PERF_RECORD_ITRACE_START
)
2028 err
= intel_pt_process_itrace_start(pt
, event
, sample
);
2029 else if (event
->header
.type
== PERF_RECORD_SWITCH
||
2030 event
->header
.type
== PERF_RECORD_SWITCH_CPU_WIDE
)
2031 err
= intel_pt_context_switch(pt
, event
, sample
);
2033 intel_pt_log("event %s (%u): cpu %d time %"PRIu64
" tsc %#"PRIx64
"\n",
2034 perf_event__name(event
->header
.type
), event
->header
.type
,
2035 sample
->cpu
, sample
->time
, timestamp
);
2040 static int intel_pt_flush(struct perf_session
*session
, struct perf_tool
*tool
)
2042 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
2049 if (!tool
->ordered_events
)
2052 ret
= intel_pt_update_queues(pt
);
2056 if (pt
->timeless_decoding
)
2057 return intel_pt_process_timeless_queues(pt
, -1,
2060 return intel_pt_process_queues(pt
, MAX_TIMESTAMP
);
2063 static void intel_pt_free_events(struct perf_session
*session
)
2065 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
2067 struct auxtrace_queues
*queues
= &pt
->queues
;
2070 for (i
= 0; i
< queues
->nr_queues
; i
++) {
2071 intel_pt_free_queue(queues
->queue_array
[i
].priv
);
2072 queues
->queue_array
[i
].priv
= NULL
;
2074 intel_pt_log_disable();
2075 auxtrace_queues__free(queues
);
2078 static void intel_pt_free(struct perf_session
*session
)
2080 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
2083 auxtrace_heap__free(&pt
->heap
);
2084 intel_pt_free_events(session
);
2085 session
->auxtrace
= NULL
;
2086 thread__put(pt
->unknown_thread
);
2087 addr_filters__exit(&pt
->filts
);
2092 static int intel_pt_process_auxtrace_event(struct perf_session
*session
,
2093 union perf_event
*event
,
2094 struct perf_tool
*tool __maybe_unused
)
2096 struct intel_pt
*pt
= container_of(session
->auxtrace
, struct intel_pt
,
2099 if (pt
->sampling_mode
)
2102 if (!pt
->data_queued
) {
2103 struct auxtrace_buffer
*buffer
;
2105 int fd
= perf_data__fd(session
->data
);
2108 if (perf_data__is_pipe(session
->data
)) {
2111 data_offset
= lseek(fd
, 0, SEEK_CUR
);
2112 if (data_offset
== -1)
2116 err
= auxtrace_queues__add_event(&pt
->queues
, session
, event
,
2117 data_offset
, &buffer
);
2121 /* Dump here now we have copied a piped trace out of the pipe */
2123 if (auxtrace_buffer__get_data(buffer
, fd
)) {
2124 intel_pt_dump_event(pt
, buffer
->data
,
2126 auxtrace_buffer__put_data(buffer
);
2134 struct intel_pt_synth
{
2135 struct perf_tool dummy_tool
;
2136 struct perf_session
*session
;
2139 static int intel_pt_event_synth(struct perf_tool
*tool
,
2140 union perf_event
*event
,
2141 struct perf_sample
*sample __maybe_unused
,
2142 struct machine
*machine __maybe_unused
)
2144 struct intel_pt_synth
*intel_pt_synth
=
2145 container_of(tool
, struct intel_pt_synth
, dummy_tool
);
2147 return perf_session__deliver_synth_event(intel_pt_synth
->session
, event
,
2151 static int intel_pt_synth_event(struct perf_session
*session
, const char *name
,
2152 struct perf_event_attr
*attr
, u64 id
)
2154 struct intel_pt_synth intel_pt_synth
;
2157 pr_debug("Synthesizing '%s' event with id %" PRIu64
" sample type %#" PRIx64
"\n",
2158 name
, id
, (u64
)attr
->sample_type
);
2160 memset(&intel_pt_synth
, 0, sizeof(struct intel_pt_synth
));
2161 intel_pt_synth
.session
= session
;
2163 err
= perf_event__synthesize_attr(&intel_pt_synth
.dummy_tool
, attr
, 1,
2164 &id
, intel_pt_event_synth
);
2166 pr_err("%s: failed to synthesize '%s' event type\n",
2172 static void intel_pt_set_event_name(struct perf_evlist
*evlist
, u64 id
,
2175 struct perf_evsel
*evsel
;
2177 evlist__for_each_entry(evlist
, evsel
) {
2178 if (evsel
->id
&& evsel
->id
[0] == id
) {
2180 zfree(&evsel
->name
);
2181 evsel
->name
= strdup(name
);
2187 static struct perf_evsel
*intel_pt_evsel(struct intel_pt
*pt
,
2188 struct perf_evlist
*evlist
)
2190 struct perf_evsel
*evsel
;
2192 evlist__for_each_entry(evlist
, evsel
) {
2193 if (evsel
->attr
.type
== pt
->pmu_type
&& evsel
->ids
)
2200 static int intel_pt_synth_events(struct intel_pt
*pt
,
2201 struct perf_session
*session
)
2203 struct perf_evlist
*evlist
= session
->evlist
;
2204 struct perf_evsel
*evsel
= intel_pt_evsel(pt
, evlist
);
2205 struct perf_event_attr attr
;
2210 pr_debug("There are no selected events with Intel Processor Trace data\n");
2214 memset(&attr
, 0, sizeof(struct perf_event_attr
));
2215 attr
.size
= sizeof(struct perf_event_attr
);
2216 attr
.type
= PERF_TYPE_HARDWARE
;
2217 attr
.sample_type
= evsel
->attr
.sample_type
& PERF_SAMPLE_MASK
;
2218 attr
.sample_type
|= PERF_SAMPLE_IP
| PERF_SAMPLE_TID
|
2220 if (pt
->timeless_decoding
)
2221 attr
.sample_type
&= ~(u64
)PERF_SAMPLE_TIME
;
2223 attr
.sample_type
|= PERF_SAMPLE_TIME
;
2224 if (!pt
->per_cpu_mmaps
)
2225 attr
.sample_type
&= ~(u64
)PERF_SAMPLE_CPU
;
2226 attr
.exclude_user
= evsel
->attr
.exclude_user
;
2227 attr
.exclude_kernel
= evsel
->attr
.exclude_kernel
;
2228 attr
.exclude_hv
= evsel
->attr
.exclude_hv
;
2229 attr
.exclude_host
= evsel
->attr
.exclude_host
;
2230 attr
.exclude_guest
= evsel
->attr
.exclude_guest
;
2231 attr
.sample_id_all
= evsel
->attr
.sample_id_all
;
2232 attr
.read_format
= evsel
->attr
.read_format
;
2234 id
= evsel
->id
[0] + 1000000000;
2238 if (pt
->synth_opts
.branches
) {
2239 attr
.config
= PERF_COUNT_HW_BRANCH_INSTRUCTIONS
;
2240 attr
.sample_period
= 1;
2241 attr
.sample_type
|= PERF_SAMPLE_ADDR
;
2242 err
= intel_pt_synth_event(session
, "branches", &attr
, id
);
2245 pt
->sample_branches
= true;
2246 pt
->branches_sample_type
= attr
.sample_type
;
2247 pt
->branches_id
= id
;
2249 attr
.sample_type
&= ~(u64
)PERF_SAMPLE_ADDR
;
2252 if (pt
->synth_opts
.callchain
)
2253 attr
.sample_type
|= PERF_SAMPLE_CALLCHAIN
;
2254 if (pt
->synth_opts
.last_branch
)
2255 attr
.sample_type
|= PERF_SAMPLE_BRANCH_STACK
;
2257 if (pt
->synth_opts
.instructions
) {
2258 attr
.config
= PERF_COUNT_HW_INSTRUCTIONS
;
2259 if (pt
->synth_opts
.period_type
== PERF_ITRACE_PERIOD_NANOSECS
)
2260 attr
.sample_period
=
2261 intel_pt_ns_to_ticks(pt
, pt
->synth_opts
.period
);
2263 attr
.sample_period
= pt
->synth_opts
.period
;
2264 err
= intel_pt_synth_event(session
, "instructions", &attr
, id
);
2267 pt
->sample_instructions
= true;
2268 pt
->instructions_sample_type
= attr
.sample_type
;
2269 pt
->instructions_id
= id
;
2273 attr
.sample_type
&= ~(u64
)PERF_SAMPLE_PERIOD
;
2274 attr
.sample_period
= 1;
2276 if (pt
->synth_opts
.transactions
) {
2277 attr
.config
= PERF_COUNT_HW_INSTRUCTIONS
;
2278 err
= intel_pt_synth_event(session
, "transactions", &attr
, id
);
2281 pt
->sample_transactions
= true;
2282 pt
->transactions_sample_type
= attr
.sample_type
;
2283 pt
->transactions_id
= id
;
2284 intel_pt_set_event_name(evlist
, id
, "transactions");
2288 attr
.type
= PERF_TYPE_SYNTH
;
2289 attr
.sample_type
|= PERF_SAMPLE_RAW
;
2291 if (pt
->synth_opts
.ptwrites
) {
2292 attr
.config
= PERF_SYNTH_INTEL_PTWRITE
;
2293 err
= intel_pt_synth_event(session
, "ptwrite", &attr
, id
);
2296 pt
->sample_ptwrites
= true;
2297 pt
->ptwrites_sample_type
= attr
.sample_type
;
2298 pt
->ptwrites_id
= id
;
2299 intel_pt_set_event_name(evlist
, id
, "ptwrite");
2303 if (pt
->synth_opts
.pwr_events
) {
2304 pt
->sample_pwr_events
= true;
2305 pt
->pwr_events_sample_type
= attr
.sample_type
;
2307 attr
.config
= PERF_SYNTH_INTEL_CBR
;
2308 err
= intel_pt_synth_event(session
, "cbr", &attr
, id
);
2312 intel_pt_set_event_name(evlist
, id
, "cbr");
2316 if (pt
->synth_opts
.pwr_events
&& (evsel
->attr
.config
& 0x10)) {
2317 attr
.config
= PERF_SYNTH_INTEL_MWAIT
;
2318 err
= intel_pt_synth_event(session
, "mwait", &attr
, id
);
2322 intel_pt_set_event_name(evlist
, id
, "mwait");
2325 attr
.config
= PERF_SYNTH_INTEL_PWRE
;
2326 err
= intel_pt_synth_event(session
, "pwre", &attr
, id
);
2330 intel_pt_set_event_name(evlist
, id
, "pwre");
2333 attr
.config
= PERF_SYNTH_INTEL_EXSTOP
;
2334 err
= intel_pt_synth_event(session
, "exstop", &attr
, id
);
2338 intel_pt_set_event_name(evlist
, id
, "exstop");
2341 attr
.config
= PERF_SYNTH_INTEL_PWRX
;
2342 err
= intel_pt_synth_event(session
, "pwrx", &attr
, id
);
2346 intel_pt_set_event_name(evlist
, id
, "pwrx");
2353 static struct perf_evsel
*intel_pt_find_sched_switch(struct perf_evlist
*evlist
)
2355 struct perf_evsel
*evsel
;
2357 evlist__for_each_entry_reverse(evlist
, evsel
) {
2358 const char *name
= perf_evsel__name(evsel
);
2360 if (!strcmp(name
, "sched:sched_switch"))
2367 static bool intel_pt_find_switch(struct perf_evlist
*evlist
)
2369 struct perf_evsel
*evsel
;
2371 evlist__for_each_entry(evlist
, evsel
) {
2372 if (evsel
->attr
.context_switch
)
2379 static int intel_pt_perf_config(const char *var
, const char *value
, void *data
)
2381 struct intel_pt
*pt
= data
;
2383 if (!strcmp(var
, "intel-pt.mispred-all"))
2384 pt
->mispred_all
= perf_config_bool(var
, value
);
2389 static const char * const intel_pt_info_fmts
[] = {
2390 [INTEL_PT_PMU_TYPE
] = " PMU Type %"PRId64
"\n",
2391 [INTEL_PT_TIME_SHIFT
] = " Time Shift %"PRIu64
"\n",
2392 [INTEL_PT_TIME_MULT
] = " Time Muliplier %"PRIu64
"\n",
2393 [INTEL_PT_TIME_ZERO
] = " Time Zero %"PRIu64
"\n",
2394 [INTEL_PT_CAP_USER_TIME_ZERO
] = " Cap Time Zero %"PRId64
"\n",
2395 [INTEL_PT_TSC_BIT
] = " TSC bit %#"PRIx64
"\n",
2396 [INTEL_PT_NORETCOMP_BIT
] = " NoRETComp bit %#"PRIx64
"\n",
2397 [INTEL_PT_HAVE_SCHED_SWITCH
] = " Have sched_switch %"PRId64
"\n",
2398 [INTEL_PT_SNAPSHOT_MODE
] = " Snapshot mode %"PRId64
"\n",
2399 [INTEL_PT_PER_CPU_MMAPS
] = " Per-cpu maps %"PRId64
"\n",
2400 [INTEL_PT_MTC_BIT
] = " MTC bit %#"PRIx64
"\n",
2401 [INTEL_PT_TSC_CTC_N
] = " TSC:CTC numerator %"PRIu64
"\n",
2402 [INTEL_PT_TSC_CTC_D
] = " TSC:CTC denominator %"PRIu64
"\n",
2403 [INTEL_PT_CYC_BIT
] = " CYC bit %#"PRIx64
"\n",
2404 [INTEL_PT_MAX_NONTURBO_RATIO
] = " Max non-turbo ratio %"PRIu64
"\n",
2405 [INTEL_PT_FILTER_STR_LEN
] = " Filter string len. %"PRIu64
"\n",
2408 static void intel_pt_print_info(u64
*arr
, int start
, int finish
)
2415 for (i
= start
; i
<= finish
; i
++)
2416 fprintf(stdout
, intel_pt_info_fmts
[i
], arr
[i
]);
2419 static void intel_pt_print_info_str(const char *name
, const char *str
)
2424 fprintf(stdout
, " %-20s%s\n", name
, str
? str
: "");
2427 static bool intel_pt_has(struct auxtrace_info_event
*auxtrace_info
, int pos
)
2429 return auxtrace_info
->header
.size
>=
2430 sizeof(struct auxtrace_info_event
) + (sizeof(u64
) * (pos
+ 1));
2433 int intel_pt_process_auxtrace_info(union perf_event
*event
,
2434 struct perf_session
*session
)
2436 struct auxtrace_info_event
*auxtrace_info
= &event
->auxtrace_info
;
2437 size_t min_sz
= sizeof(u64
) * INTEL_PT_PER_CPU_MMAPS
;
2438 struct intel_pt
*pt
;
2443 if (auxtrace_info
->header
.size
< sizeof(struct auxtrace_info_event
) +
2447 pt
= zalloc(sizeof(struct intel_pt
));
2451 addr_filters__init(&pt
->filts
);
2453 err
= perf_config(intel_pt_perf_config
, pt
);
2457 err
= auxtrace_queues__init(&pt
->queues
);
2461 intel_pt_log_set_name(INTEL_PT_PMU_NAME
);
2463 pt
->session
= session
;
2464 pt
->machine
= &session
->machines
.host
; /* No kvm support */
2465 pt
->auxtrace_type
= auxtrace_info
->type
;
2466 pt
->pmu_type
= auxtrace_info
->priv
[INTEL_PT_PMU_TYPE
];
2467 pt
->tc
.time_shift
= auxtrace_info
->priv
[INTEL_PT_TIME_SHIFT
];
2468 pt
->tc
.time_mult
= auxtrace_info
->priv
[INTEL_PT_TIME_MULT
];
2469 pt
->tc
.time_zero
= auxtrace_info
->priv
[INTEL_PT_TIME_ZERO
];
2470 pt
->cap_user_time_zero
= auxtrace_info
->priv
[INTEL_PT_CAP_USER_TIME_ZERO
];
2471 pt
->tsc_bit
= auxtrace_info
->priv
[INTEL_PT_TSC_BIT
];
2472 pt
->noretcomp_bit
= auxtrace_info
->priv
[INTEL_PT_NORETCOMP_BIT
];
2473 pt
->have_sched_switch
= auxtrace_info
->priv
[INTEL_PT_HAVE_SCHED_SWITCH
];
2474 pt
->snapshot_mode
= auxtrace_info
->priv
[INTEL_PT_SNAPSHOT_MODE
];
2475 pt
->per_cpu_mmaps
= auxtrace_info
->priv
[INTEL_PT_PER_CPU_MMAPS
];
2476 intel_pt_print_info(&auxtrace_info
->priv
[0], INTEL_PT_PMU_TYPE
,
2477 INTEL_PT_PER_CPU_MMAPS
);
2479 if (intel_pt_has(auxtrace_info
, INTEL_PT_CYC_BIT
)) {
2480 pt
->mtc_bit
= auxtrace_info
->priv
[INTEL_PT_MTC_BIT
];
2481 pt
->mtc_freq_bits
= auxtrace_info
->priv
[INTEL_PT_MTC_FREQ_BITS
];
2482 pt
->tsc_ctc_ratio_n
= auxtrace_info
->priv
[INTEL_PT_TSC_CTC_N
];
2483 pt
->tsc_ctc_ratio_d
= auxtrace_info
->priv
[INTEL_PT_TSC_CTC_D
];
2484 pt
->cyc_bit
= auxtrace_info
->priv
[INTEL_PT_CYC_BIT
];
2485 intel_pt_print_info(&auxtrace_info
->priv
[0], INTEL_PT_MTC_BIT
,
2489 if (intel_pt_has(auxtrace_info
, INTEL_PT_MAX_NONTURBO_RATIO
)) {
2490 pt
->max_non_turbo_ratio
=
2491 auxtrace_info
->priv
[INTEL_PT_MAX_NONTURBO_RATIO
];
2492 intel_pt_print_info(&auxtrace_info
->priv
[0],
2493 INTEL_PT_MAX_NONTURBO_RATIO
,
2494 INTEL_PT_MAX_NONTURBO_RATIO
);
2497 info
= &auxtrace_info
->priv
[INTEL_PT_FILTER_STR_LEN
] + 1;
2498 info_end
= (void *)info
+ auxtrace_info
->header
.size
;
2500 if (intel_pt_has(auxtrace_info
, INTEL_PT_FILTER_STR_LEN
)) {
2503 len
= auxtrace_info
->priv
[INTEL_PT_FILTER_STR_LEN
];
2504 intel_pt_print_info(&auxtrace_info
->priv
[0],
2505 INTEL_PT_FILTER_STR_LEN
,
2506 INTEL_PT_FILTER_STR_LEN
);
2508 const char *filter
= (const char *)info
;
2510 len
= roundup(len
+ 1, 8);
2512 if ((void *)info
> info_end
) {
2513 pr_err("%s: bad filter string length\n", __func__
);
2515 goto err_free_queues
;
2517 pt
->filter
= memdup(filter
, len
);
2520 goto err_free_queues
;
2522 if (session
->header
.needs_swap
)
2523 mem_bswap_64(pt
->filter
, len
);
2524 if (pt
->filter
[len
- 1]) {
2525 pr_err("%s: filter string not null terminated\n", __func__
);
2527 goto err_free_queues
;
2529 err
= addr_filters__parse_bare_filter(&pt
->filts
,
2532 goto err_free_queues
;
2534 intel_pt_print_info_str("Filter string", pt
->filter
);
2537 pt
->timeless_decoding
= intel_pt_timeless_decoding(pt
);
2538 pt
->have_tsc
= intel_pt_have_tsc(pt
);
2539 pt
->sampling_mode
= false;
2540 pt
->est_tsc
= !pt
->timeless_decoding
;
2542 pt
->unknown_thread
= thread__new(999999999, 999999999);
2543 if (!pt
->unknown_thread
) {
2545 goto err_free_queues
;
2549 * Since this thread will not be kept in any rbtree not in a
2550 * list, initialize its list node so that at thread__put() the
2551 * current thread lifetime assuption is kept and we don't segfault
2552 * at list_del_init().
2554 INIT_LIST_HEAD(&pt
->unknown_thread
->node
);
2556 err
= thread__set_comm(pt
->unknown_thread
, "unknown", 0);
2558 goto err_delete_thread
;
2559 if (thread__init_map_groups(pt
->unknown_thread
, pt
->machine
)) {
2561 goto err_delete_thread
;
2564 pt
->auxtrace
.process_event
= intel_pt_process_event
;
2565 pt
->auxtrace
.process_auxtrace_event
= intel_pt_process_auxtrace_event
;
2566 pt
->auxtrace
.flush_events
= intel_pt_flush
;
2567 pt
->auxtrace
.free_events
= intel_pt_free_events
;
2568 pt
->auxtrace
.free
= intel_pt_free
;
2569 session
->auxtrace
= &pt
->auxtrace
;
2574 if (pt
->have_sched_switch
== 1) {
2575 pt
->switch_evsel
= intel_pt_find_sched_switch(session
->evlist
);
2576 if (!pt
->switch_evsel
) {
2577 pr_err("%s: missing sched_switch event\n", __func__
);
2579 goto err_delete_thread
;
2581 } else if (pt
->have_sched_switch
== 2 &&
2582 !intel_pt_find_switch(session
->evlist
)) {
2583 pr_err("%s: missing context_switch attribute flag\n", __func__
);
2585 goto err_delete_thread
;
2588 if (session
->itrace_synth_opts
&& session
->itrace_synth_opts
->set
) {
2589 pt
->synth_opts
= *session
->itrace_synth_opts
;
2591 itrace_synth_opts__set_default(&pt
->synth_opts
);
2592 if (use_browser
!= -1) {
2593 pt
->synth_opts
.branches
= false;
2594 pt
->synth_opts
.callchain
= true;
2596 if (session
->itrace_synth_opts
)
2597 pt
->synth_opts
.thread_stack
=
2598 session
->itrace_synth_opts
->thread_stack
;
2601 if (pt
->synth_opts
.log
)
2602 intel_pt_log_enable();
2604 /* Maximum non-turbo ratio is TSC freq / 100 MHz */
2605 if (pt
->tc
.time_mult
) {
2606 u64 tsc_freq
= intel_pt_ns_to_ticks(pt
, 1000000000);
2608 if (!pt
->max_non_turbo_ratio
)
2609 pt
->max_non_turbo_ratio
=
2610 (tsc_freq
+ 50000000) / 100000000;
2611 intel_pt_log("TSC frequency %"PRIu64
"\n", tsc_freq
);
2612 intel_pt_log("Maximum non-turbo ratio %u\n",
2613 pt
->max_non_turbo_ratio
);
2614 pt
->cbr2khz
= tsc_freq
/ pt
->max_non_turbo_ratio
/ 1000;
2617 if (pt
->synth_opts
.calls
)
2618 pt
->branches_filter
|= PERF_IP_FLAG_CALL
| PERF_IP_FLAG_ASYNC
|
2619 PERF_IP_FLAG_TRACE_END
;
2620 if (pt
->synth_opts
.returns
)
2621 pt
->branches_filter
|= PERF_IP_FLAG_RETURN
|
2622 PERF_IP_FLAG_TRACE_BEGIN
;
2624 if (pt
->synth_opts
.callchain
&& !symbol_conf
.use_callchain
) {
2625 symbol_conf
.use_callchain
= true;
2626 if (callchain_register_param(&callchain_param
) < 0) {
2627 symbol_conf
.use_callchain
= false;
2628 pt
->synth_opts
.callchain
= false;
2632 err
= intel_pt_synth_events(pt
, session
);
2634 goto err_delete_thread
;
2636 err
= auxtrace_queues__process_index(&pt
->queues
, session
);
2638 goto err_delete_thread
;
2640 if (pt
->queues
.populated
)
2641 pt
->data_queued
= true;
2643 if (pt
->timeless_decoding
)
2644 pr_debug2("Intel PT decoding without timestamps\n");
2649 thread__zput(pt
->unknown_thread
);
2651 intel_pt_log_disable();
2652 auxtrace_queues__free(&pt
->queues
);
2653 session
->auxtrace
= NULL
;
2655 addr_filters__exit(&pt
->filts
);