1 // SPDX-License-Identifier: GPL-2.0
4 #include "util/counts.h"
5 #include "util/debug.h"
7 #include <subcmd/exec-cmd.h>
8 #include "util/header.h"
9 #include <subcmd/parse-options.h>
10 #include "util/perf_regs.h"
11 #include "util/session.h"
12 #include "util/tool.h"
14 #include "util/srcline.h"
15 #include "util/symbol.h"
16 #include "util/thread.h"
17 #include "util/trace-event.h"
18 #include "util/evlist.h"
19 #include "util/evsel.h"
20 #include "util/evsel_fprintf.h"
21 #include "util/evswitch.h"
22 #include "util/sort.h"
23 #include "util/data.h"
24 #include "util/auxtrace.h"
25 #include "util/cpumap.h"
26 #include "util/thread_map.h"
27 #include "util/stat.h"
28 #include "util/color.h"
29 #include "util/string2.h"
30 #include "util/thread-stack.h"
31 #include "util/time-utils.h"
32 #include "util/path.h"
34 #include "print_binary.h"
36 #include <linux/bitmap.h>
37 #include <linux/kernel.h>
38 #include <linux/stringify.h>
39 #include <linux/time64.h>
40 #include <linux/zalloc.h>
41 #include <sys/utsname.h>
43 #include "util/mem-events.h"
44 #include "util/dump-insn.h"
49 #include <sys/param.h>
50 #include <sys/types.h>
54 #include <subcmd/pager.h>
55 #include <perf/evlist.h>
56 #include <linux/err.h>
57 #include "util/record.h"
58 #include "util/util.h"
61 #include <linux/ctype.h>
63 static char const *script_name
;
64 static char const *generate_script_lang
;
66 static u64 initial_time
;
67 static bool debug_mode
;
68 static u64 last_timestamp
;
69 static u64 nr_unordered
;
70 static bool no_callchain
;
71 static bool latency_format
;
72 static bool system_wide
;
73 static bool print_flags
;
74 static const char *cpu_list
;
75 static DECLARE_BITMAP(cpu_bitmap
, MAX_NR_CPUS
);
76 static struct perf_stat_config stat_config
;
77 static int max_blocks
;
78 static bool native_arch
;
80 unsigned int scripting_max_stack
= PERF_MAX_STACK_DEPTH
;
82 enum perf_output_field
{
83 PERF_OUTPUT_COMM
= 1U << 0,
84 PERF_OUTPUT_TID
= 1U << 1,
85 PERF_OUTPUT_PID
= 1U << 2,
86 PERF_OUTPUT_TIME
= 1U << 3,
87 PERF_OUTPUT_CPU
= 1U << 4,
88 PERF_OUTPUT_EVNAME
= 1U << 5,
89 PERF_OUTPUT_TRACE
= 1U << 6,
90 PERF_OUTPUT_IP
= 1U << 7,
91 PERF_OUTPUT_SYM
= 1U << 8,
92 PERF_OUTPUT_DSO
= 1U << 9,
93 PERF_OUTPUT_ADDR
= 1U << 10,
94 PERF_OUTPUT_SYMOFFSET
= 1U << 11,
95 PERF_OUTPUT_SRCLINE
= 1U << 12,
96 PERF_OUTPUT_PERIOD
= 1U << 13,
97 PERF_OUTPUT_IREGS
= 1U << 14,
98 PERF_OUTPUT_BRSTACK
= 1U << 15,
99 PERF_OUTPUT_BRSTACKSYM
= 1U << 16,
100 PERF_OUTPUT_DATA_SRC
= 1U << 17,
101 PERF_OUTPUT_WEIGHT
= 1U << 18,
102 PERF_OUTPUT_BPF_OUTPUT
= 1U << 19,
103 PERF_OUTPUT_CALLINDENT
= 1U << 20,
104 PERF_OUTPUT_INSN
= 1U << 21,
105 PERF_OUTPUT_INSNLEN
= 1U << 22,
106 PERF_OUTPUT_BRSTACKINSN
= 1U << 23,
107 PERF_OUTPUT_BRSTACKOFF
= 1U << 24,
108 PERF_OUTPUT_SYNTH
= 1U << 25,
109 PERF_OUTPUT_PHYS_ADDR
= 1U << 26,
110 PERF_OUTPUT_UREGS
= 1U << 27,
111 PERF_OUTPUT_METRIC
= 1U << 28,
112 PERF_OUTPUT_MISC
= 1U << 29,
113 PERF_OUTPUT_SRCCODE
= 1U << 30,
114 PERF_OUTPUT_IPC
= 1U << 31,
117 struct output_option
{
119 enum perf_output_field field
;
120 } all_output_options
[] = {
121 {.str
= "comm", .field
= PERF_OUTPUT_COMM
},
122 {.str
= "tid", .field
= PERF_OUTPUT_TID
},
123 {.str
= "pid", .field
= PERF_OUTPUT_PID
},
124 {.str
= "time", .field
= PERF_OUTPUT_TIME
},
125 {.str
= "cpu", .field
= PERF_OUTPUT_CPU
},
126 {.str
= "event", .field
= PERF_OUTPUT_EVNAME
},
127 {.str
= "trace", .field
= PERF_OUTPUT_TRACE
},
128 {.str
= "ip", .field
= PERF_OUTPUT_IP
},
129 {.str
= "sym", .field
= PERF_OUTPUT_SYM
},
130 {.str
= "dso", .field
= PERF_OUTPUT_DSO
},
131 {.str
= "addr", .field
= PERF_OUTPUT_ADDR
},
132 {.str
= "symoff", .field
= PERF_OUTPUT_SYMOFFSET
},
133 {.str
= "srcline", .field
= PERF_OUTPUT_SRCLINE
},
134 {.str
= "period", .field
= PERF_OUTPUT_PERIOD
},
135 {.str
= "iregs", .field
= PERF_OUTPUT_IREGS
},
136 {.str
= "uregs", .field
= PERF_OUTPUT_UREGS
},
137 {.str
= "brstack", .field
= PERF_OUTPUT_BRSTACK
},
138 {.str
= "brstacksym", .field
= PERF_OUTPUT_BRSTACKSYM
},
139 {.str
= "data_src", .field
= PERF_OUTPUT_DATA_SRC
},
140 {.str
= "weight", .field
= PERF_OUTPUT_WEIGHT
},
141 {.str
= "bpf-output", .field
= PERF_OUTPUT_BPF_OUTPUT
},
142 {.str
= "callindent", .field
= PERF_OUTPUT_CALLINDENT
},
143 {.str
= "insn", .field
= PERF_OUTPUT_INSN
},
144 {.str
= "insnlen", .field
= PERF_OUTPUT_INSNLEN
},
145 {.str
= "brstackinsn", .field
= PERF_OUTPUT_BRSTACKINSN
},
146 {.str
= "brstackoff", .field
= PERF_OUTPUT_BRSTACKOFF
},
147 {.str
= "synth", .field
= PERF_OUTPUT_SYNTH
},
148 {.str
= "phys_addr", .field
= PERF_OUTPUT_PHYS_ADDR
},
149 {.str
= "metric", .field
= PERF_OUTPUT_METRIC
},
150 {.str
= "misc", .field
= PERF_OUTPUT_MISC
},
151 {.str
= "srccode", .field
= PERF_OUTPUT_SRCCODE
},
152 {.str
= "ipc", .field
= PERF_OUTPUT_IPC
},
156 OUTPUT_TYPE_SYNTH
= PERF_TYPE_MAX
,
160 /* default set to maintain compatibility with current format */
164 unsigned int print_ip_opts
;
168 } output
[OUTPUT_TYPE_MAX
] = {
170 [PERF_TYPE_HARDWARE
] = {
173 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
174 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
175 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
176 PERF_OUTPUT_SYM
| PERF_OUTPUT_SYMOFFSET
|
177 PERF_OUTPUT_DSO
| PERF_OUTPUT_PERIOD
,
179 .invalid_fields
= PERF_OUTPUT_TRACE
| PERF_OUTPUT_BPF_OUTPUT
,
182 [PERF_TYPE_SOFTWARE
] = {
185 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
186 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
187 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
188 PERF_OUTPUT_SYM
| PERF_OUTPUT_SYMOFFSET
|
189 PERF_OUTPUT_DSO
| PERF_OUTPUT_PERIOD
|
190 PERF_OUTPUT_BPF_OUTPUT
,
192 .invalid_fields
= PERF_OUTPUT_TRACE
,
195 [PERF_TYPE_TRACEPOINT
] = {
198 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
199 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
200 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_TRACE
203 [PERF_TYPE_HW_CACHE
] = {
206 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
207 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
208 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
209 PERF_OUTPUT_SYM
| PERF_OUTPUT_SYMOFFSET
|
210 PERF_OUTPUT_DSO
| PERF_OUTPUT_PERIOD
,
212 .invalid_fields
= PERF_OUTPUT_TRACE
| PERF_OUTPUT_BPF_OUTPUT
,
218 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
219 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
220 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
221 PERF_OUTPUT_SYM
| PERF_OUTPUT_SYMOFFSET
|
222 PERF_OUTPUT_DSO
| PERF_OUTPUT_PERIOD
|
223 PERF_OUTPUT_ADDR
| PERF_OUTPUT_DATA_SRC
|
224 PERF_OUTPUT_WEIGHT
| PERF_OUTPUT_PHYS_ADDR
,
226 .invalid_fields
= PERF_OUTPUT_TRACE
| PERF_OUTPUT_BPF_OUTPUT
,
229 [PERF_TYPE_BREAKPOINT
] = {
232 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
233 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
234 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
235 PERF_OUTPUT_SYM
| PERF_OUTPUT_SYMOFFSET
|
236 PERF_OUTPUT_DSO
| PERF_OUTPUT_PERIOD
,
238 .invalid_fields
= PERF_OUTPUT_TRACE
| PERF_OUTPUT_BPF_OUTPUT
,
241 [OUTPUT_TYPE_SYNTH
] = {
244 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
245 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
246 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
247 PERF_OUTPUT_SYM
| PERF_OUTPUT_SYMOFFSET
|
248 PERF_OUTPUT_DSO
| PERF_OUTPUT_SYNTH
,
250 .invalid_fields
= PERF_OUTPUT_TRACE
| PERF_OUTPUT_BPF_OUTPUT
,
254 struct evsel_script
{
258 /* For metric output */
263 static inline struct evsel_script
*evsel_script(struct evsel
*evsel
)
265 return (struct evsel_script
*)evsel
->priv
;
268 static struct evsel_script
*perf_evsel_script__new(struct evsel
*evsel
,
269 struct perf_data
*data
)
271 struct evsel_script
*es
= zalloc(sizeof(*es
));
274 if (asprintf(&es
->filename
, "%s.%s.dump", data
->file
.path
, perf_evsel__name(evsel
)) < 0)
276 es
->fp
= fopen(es
->filename
, "w");
278 goto out_free_filename
;
283 zfree(&es
->filename
);
289 static void perf_evsel_script__delete(struct evsel_script
*es
)
291 zfree(&es
->filename
);
297 static int perf_evsel_script__fprintf(struct evsel_script
*es
, FILE *fp
)
301 fstat(fileno(es
->fp
), &st
);
302 return fprintf(fp
, "[ perf script: Wrote %.3f MB %s (%" PRIu64
" samples) ]\n",
303 st
.st_size
/ 1024.0 / 1024.0, es
->filename
, es
->samples
);
306 static inline int output_type(unsigned int type
)
309 case PERF_TYPE_SYNTH
:
310 return OUTPUT_TYPE_SYNTH
;
316 static inline unsigned int attr_type(unsigned int type
)
319 case OUTPUT_TYPE_SYNTH
:
320 return PERF_TYPE_SYNTH
;
326 static bool output_set_by_user(void)
329 for (j
= 0; j
< OUTPUT_TYPE_MAX
; ++j
) {
330 if (output
[j
].user_set
)
336 static const char *output_field2str(enum perf_output_field field
)
338 int i
, imax
= ARRAY_SIZE(all_output_options
);
339 const char *str
= "";
341 for (i
= 0; i
< imax
; ++i
) {
342 if (all_output_options
[i
].field
== field
) {
343 str
= all_output_options
[i
].str
;
350 #define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
352 static int perf_evsel__do_check_stype(struct evsel
*evsel
,
353 u64 sample_type
, const char *sample_msg
,
354 enum perf_output_field field
,
357 struct perf_event_attr
*attr
= &evsel
->core
.attr
;
358 int type
= output_type(attr
->type
);
361 if (attr
->sample_type
& sample_type
)
364 if (output
[type
].user_set_fields
& field
) {
367 evname
= perf_evsel__name(evsel
);
368 pr_err("Samples for '%s' event do not have %s attribute set. "
369 "Cannot print '%s' field.\n",
370 evname
, sample_msg
, output_field2str(field
));
374 /* user did not ask for it explicitly so remove from the default list */
375 output
[type
].fields
&= ~field
;
376 evname
= perf_evsel__name(evsel
);
377 pr_debug("Samples for '%s' event do not have %s attribute set. "
378 "Skipping '%s' field.\n",
379 evname
, sample_msg
, output_field2str(field
));
384 static int perf_evsel__check_stype(struct evsel
*evsel
,
385 u64 sample_type
, const char *sample_msg
,
386 enum perf_output_field field
)
388 return perf_evsel__do_check_stype(evsel
, sample_type
, sample_msg
, field
,
392 static int perf_evsel__check_attr(struct evsel
*evsel
,
393 struct perf_session
*session
)
395 struct perf_event_attr
*attr
= &evsel
->core
.attr
;
398 if (perf_header__has_feat(&session
->header
, HEADER_STAT
))
401 allow_user_set
= perf_header__has_feat(&session
->header
,
404 if (PRINT_FIELD(TRACE
) &&
405 !perf_session__has_traces(session
, "record -R"))
408 if (PRINT_FIELD(IP
)) {
409 if (perf_evsel__check_stype(evsel
, PERF_SAMPLE_IP
, "IP",
414 if (PRINT_FIELD(ADDR
) &&
415 perf_evsel__do_check_stype(evsel
, PERF_SAMPLE_ADDR
, "ADDR",
416 PERF_OUTPUT_ADDR
, allow_user_set
))
419 if (PRINT_FIELD(DATA_SRC
) &&
420 perf_evsel__check_stype(evsel
, PERF_SAMPLE_DATA_SRC
, "DATA_SRC",
421 PERF_OUTPUT_DATA_SRC
))
424 if (PRINT_FIELD(WEIGHT
) &&
425 perf_evsel__check_stype(evsel
, PERF_SAMPLE_WEIGHT
, "WEIGHT",
429 if (PRINT_FIELD(SYM
) &&
430 !(evsel
->core
.attr
.sample_type
& (PERF_SAMPLE_IP
|PERF_SAMPLE_ADDR
))) {
431 pr_err("Display of symbols requested but neither sample IP nor "
432 "sample address\navailable. Hence, no addresses to convert "
436 if (PRINT_FIELD(SYMOFFSET
) && !PRINT_FIELD(SYM
)) {
437 pr_err("Display of offsets requested but symbol is not"
441 if (PRINT_FIELD(DSO
) &&
442 !(evsel
->core
.attr
.sample_type
& (PERF_SAMPLE_IP
|PERF_SAMPLE_ADDR
))) {
443 pr_err("Display of DSO requested but no address to convert.\n");
446 if ((PRINT_FIELD(SRCLINE
) || PRINT_FIELD(SRCCODE
)) && !PRINT_FIELD(IP
)) {
447 pr_err("Display of source line number requested but sample IP is not\n"
448 "selected. Hence, no address to lookup the source line number.\n");
451 if (PRINT_FIELD(BRSTACKINSN
) &&
452 !(perf_evlist__combined_branch_type(session
->evlist
) &
453 PERF_SAMPLE_BRANCH_ANY
)) {
454 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
455 "Hint: run 'perf record -b ...'\n");
458 if ((PRINT_FIELD(PID
) || PRINT_FIELD(TID
)) &&
459 perf_evsel__check_stype(evsel
, PERF_SAMPLE_TID
, "TID",
460 PERF_OUTPUT_TID
|PERF_OUTPUT_PID
))
463 if (PRINT_FIELD(TIME
) &&
464 perf_evsel__check_stype(evsel
, PERF_SAMPLE_TIME
, "TIME",
468 if (PRINT_FIELD(CPU
) &&
469 perf_evsel__do_check_stype(evsel
, PERF_SAMPLE_CPU
, "CPU",
470 PERF_OUTPUT_CPU
, allow_user_set
))
473 if (PRINT_FIELD(IREGS
) &&
474 perf_evsel__check_stype(evsel
, PERF_SAMPLE_REGS_INTR
, "IREGS",
478 if (PRINT_FIELD(UREGS
) &&
479 perf_evsel__check_stype(evsel
, PERF_SAMPLE_REGS_USER
, "UREGS",
483 if (PRINT_FIELD(PHYS_ADDR
) &&
484 perf_evsel__check_stype(evsel
, PERF_SAMPLE_PHYS_ADDR
, "PHYS_ADDR",
485 PERF_OUTPUT_PHYS_ADDR
))
491 static void set_print_ip_opts(struct perf_event_attr
*attr
)
493 unsigned int type
= output_type(attr
->type
);
495 output
[type
].print_ip_opts
= 0;
497 output
[type
].print_ip_opts
|= EVSEL__PRINT_IP
;
499 if (PRINT_FIELD(SYM
))
500 output
[type
].print_ip_opts
|= EVSEL__PRINT_SYM
;
502 if (PRINT_FIELD(DSO
))
503 output
[type
].print_ip_opts
|= EVSEL__PRINT_DSO
;
505 if (PRINT_FIELD(SYMOFFSET
))
506 output
[type
].print_ip_opts
|= EVSEL__PRINT_SYMOFFSET
;
508 if (PRINT_FIELD(SRCLINE
))
509 output
[type
].print_ip_opts
|= EVSEL__PRINT_SRCLINE
;
513 * verify all user requested events exist and the samples
514 * have the expected data
516 static int perf_session__check_output_opt(struct perf_session
*session
)
521 for (j
= 0; j
< OUTPUT_TYPE_MAX
; ++j
) {
522 evsel
= perf_session__find_first_evtype(session
, attr_type(j
));
525 * even if fields is set to 0 (ie., show nothing) event must
526 * exist if user explicitly includes it on the command line
528 if (!evsel
&& output
[j
].user_set
&& !output
[j
].wildcard_set
&&
529 j
!= OUTPUT_TYPE_SYNTH
) {
530 pr_err("%s events do not exist. "
531 "Remove corresponding -F option to proceed.\n",
536 if (evsel
&& output
[j
].fields
&&
537 perf_evsel__check_attr(evsel
, session
))
543 set_print_ip_opts(&evsel
->core
.attr
);
547 bool use_callchain
= false;
548 bool not_pipe
= false;
550 evlist__for_each_entry(session
->evlist
, evsel
) {
552 if (evsel__has_callchain(evsel
)) {
553 use_callchain
= true;
557 if (not_pipe
&& !use_callchain
)
558 symbol_conf
.use_callchain
= false;
562 * set default for tracepoints to print symbols only
563 * if callchains are present
565 if (symbol_conf
.use_callchain
&&
566 !output
[PERF_TYPE_TRACEPOINT
].user_set
) {
567 j
= PERF_TYPE_TRACEPOINT
;
569 evlist__for_each_entry(session
->evlist
, evsel
) {
570 if (evsel
->core
.attr
.type
!= j
)
573 if (evsel__has_callchain(evsel
)) {
574 output
[j
].fields
|= PERF_OUTPUT_IP
;
575 output
[j
].fields
|= PERF_OUTPUT_SYM
;
576 output
[j
].fields
|= PERF_OUTPUT_SYMOFFSET
;
577 output
[j
].fields
|= PERF_OUTPUT_DSO
;
578 set_print_ip_opts(&evsel
->core
.attr
);
588 static int perf_sample__fprintf_regs(struct regs_dump
*regs
, uint64_t mask
,
595 if (!regs
|| !regs
->regs
)
598 printed
+= fprintf(fp
, " ABI:%" PRIu64
" ", regs
->abi
);
600 for_each_set_bit(r
, (unsigned long *) &mask
, sizeof(mask
) * 8) {
601 u64 val
= regs
->regs
[i
++];
602 printed
+= fprintf(fp
, "%5s:0x%"PRIx64
" ", perf_reg_name(r
), val
);
610 static int perf_sample__fprintf_iregs(struct perf_sample
*sample
,
611 struct perf_event_attr
*attr
, FILE *fp
)
613 return perf_sample__fprintf_regs(&sample
->intr_regs
,
614 attr
->sample_regs_intr
, fp
);
617 static int perf_sample__fprintf_uregs(struct perf_sample
*sample
,
618 struct perf_event_attr
*attr
, FILE *fp
)
620 return perf_sample__fprintf_regs(&sample
->user_regs
,
621 attr
->sample_regs_user
, fp
);
624 static int perf_sample__fprintf_start(struct perf_sample
*sample
,
625 struct thread
*thread
,
629 struct perf_event_attr
*attr
= &evsel
->core
.attr
;
631 unsigned long long nsecs
;
634 if (PRINT_FIELD(COMM
)) {
636 printed
+= fprintf(fp
, "%8.8s ", thread__comm_str(thread
));
637 else if (PRINT_FIELD(IP
) && evsel__has_callchain(evsel
) && symbol_conf
.use_callchain
)
638 printed
+= fprintf(fp
, "%s ", thread__comm_str(thread
));
640 printed
+= fprintf(fp
, "%16s ", thread__comm_str(thread
));
643 if (PRINT_FIELD(PID
) && PRINT_FIELD(TID
))
644 printed
+= fprintf(fp
, "%5d/%-5d ", sample
->pid
, sample
->tid
);
645 else if (PRINT_FIELD(PID
))
646 printed
+= fprintf(fp
, "%5d ", sample
->pid
);
647 else if (PRINT_FIELD(TID
))
648 printed
+= fprintf(fp
, "%5d ", sample
->tid
);
650 if (PRINT_FIELD(CPU
)) {
652 printed
+= fprintf(fp
, "%3d ", sample
->cpu
);
654 printed
+= fprintf(fp
, "[%03d] ", sample
->cpu
);
657 if (PRINT_FIELD(MISC
)) {
661 (sample->misc & PERF_RECORD_MISC_##m) == PERF_RECORD_MISC_##m
664 ret
+= fprintf(fp
, "K");
666 ret
+= fprintf(fp
, "U");
668 ret
+= fprintf(fp
, "H");
669 if (has(GUEST_KERNEL
))
670 ret
+= fprintf(fp
, "G");
672 ret
+= fprintf(fp
, "g");
675 case PERF_RECORD_MMAP
:
676 case PERF_RECORD_MMAP2
:
678 ret
+= fprintf(fp
, "M");
680 case PERF_RECORD_COMM
:
682 ret
+= fprintf(fp
, "E");
684 case PERF_RECORD_SWITCH
:
685 case PERF_RECORD_SWITCH_CPU_WIDE
:
686 if (has(SWITCH_OUT
)) {
687 ret
+= fprintf(fp
, "S");
688 if (sample
->misc
& PERF_RECORD_MISC_SWITCH_OUT_PREEMPT
)
689 ret
+= fprintf(fp
, "p");
697 ret
+= fprintf(fp
, "%*s", 6 - ret
, " ");
701 if (PRINT_FIELD(TIME
)) {
702 u64 t
= sample
->time
;
705 initial_time
= sample
->time
;
706 t
= sample
->time
- initial_time
;
709 secs
= nsecs
/ NSEC_PER_SEC
;
710 nsecs
-= secs
* NSEC_PER_SEC
;
712 if (symbol_conf
.nanosecs
)
713 printed
+= fprintf(fp
, "%5lu.%09llu: ", secs
, nsecs
);
715 char sample_time
[32];
716 timestamp__scnprintf_usec(t
, sample_time
, sizeof(sample_time
));
717 printed
+= fprintf(fp
, "%12s: ", sample_time
);
725 mispred_str(struct branch_entry
*br
)
727 if (!(br
->flags
.mispred
|| br
->flags
.predicted
))
730 return br
->flags
.predicted
? 'P' : 'M';
733 static int perf_sample__fprintf_brstack(struct perf_sample
*sample
,
734 struct thread
*thread
,
735 struct perf_event_attr
*attr
, FILE *fp
)
737 struct branch_stack
*br
= sample
->branch_stack
;
738 struct addr_location alf
, alt
;
745 for (i
= 0; i
< br
->nr
; i
++) {
746 from
= br
->entries
[i
].from
;
747 to
= br
->entries
[i
].to
;
749 if (PRINT_FIELD(DSO
)) {
750 memset(&alf
, 0, sizeof(alf
));
751 memset(&alt
, 0, sizeof(alt
));
752 thread__find_map_fb(thread
, sample
->cpumode
, from
, &alf
);
753 thread__find_map_fb(thread
, sample
->cpumode
, to
, &alt
);
756 printed
+= fprintf(fp
, " 0x%"PRIx64
, from
);
757 if (PRINT_FIELD(DSO
)) {
758 printed
+= fprintf(fp
, "(");
759 printed
+= map__fprintf_dsoname(alf
.map
, fp
);
760 printed
+= fprintf(fp
, ")");
763 printed
+= fprintf(fp
, "/0x%"PRIx64
, to
);
764 if (PRINT_FIELD(DSO
)) {
765 printed
+= fprintf(fp
, "(");
766 printed
+= map__fprintf_dsoname(alt
.map
, fp
);
767 printed
+= fprintf(fp
, ")");
770 printed
+= fprintf(fp
, "/%c/%c/%c/%d ",
771 mispred_str( br
->entries
+ i
),
772 br
->entries
[i
].flags
.in_tx
? 'X' : '-',
773 br
->entries
[i
].flags
.abort
? 'A' : '-',
774 br
->entries
[i
].flags
.cycles
);
780 static int perf_sample__fprintf_brstacksym(struct perf_sample
*sample
,
781 struct thread
*thread
,
782 struct perf_event_attr
*attr
, FILE *fp
)
784 struct branch_stack
*br
= sample
->branch_stack
;
785 struct addr_location alf
, alt
;
792 for (i
= 0; i
< br
->nr
; i
++) {
794 memset(&alf
, 0, sizeof(alf
));
795 memset(&alt
, 0, sizeof(alt
));
796 from
= br
->entries
[i
].from
;
797 to
= br
->entries
[i
].to
;
799 thread__find_symbol_fb(thread
, sample
->cpumode
, from
, &alf
);
800 thread__find_symbol_fb(thread
, sample
->cpumode
, to
, &alt
);
802 printed
+= symbol__fprintf_symname_offs(alf
.sym
, &alf
, fp
);
803 if (PRINT_FIELD(DSO
)) {
804 printed
+= fprintf(fp
, "(");
805 printed
+= map__fprintf_dsoname(alf
.map
, fp
);
806 printed
+= fprintf(fp
, ")");
808 printed
+= fprintf(fp
, "%c", '/');
809 printed
+= symbol__fprintf_symname_offs(alt
.sym
, &alt
, fp
);
810 if (PRINT_FIELD(DSO
)) {
811 printed
+= fprintf(fp
, "(");
812 printed
+= map__fprintf_dsoname(alt
.map
, fp
);
813 printed
+= fprintf(fp
, ")");
815 printed
+= fprintf(fp
, "/%c/%c/%c/%d ",
816 mispred_str( br
->entries
+ i
),
817 br
->entries
[i
].flags
.in_tx
? 'X' : '-',
818 br
->entries
[i
].flags
.abort
? 'A' : '-',
819 br
->entries
[i
].flags
.cycles
);
825 static int perf_sample__fprintf_brstackoff(struct perf_sample
*sample
,
826 struct thread
*thread
,
827 struct perf_event_attr
*attr
, FILE *fp
)
829 struct branch_stack
*br
= sample
->branch_stack
;
830 struct addr_location alf
, alt
;
837 for (i
= 0; i
< br
->nr
; i
++) {
839 memset(&alf
, 0, sizeof(alf
));
840 memset(&alt
, 0, sizeof(alt
));
841 from
= br
->entries
[i
].from
;
842 to
= br
->entries
[i
].to
;
844 if (thread__find_map_fb(thread
, sample
->cpumode
, from
, &alf
) &&
845 !alf
.map
->dso
->adjust_symbols
)
846 from
= map__map_ip(alf
.map
, from
);
848 if (thread__find_map_fb(thread
, sample
->cpumode
, to
, &alt
) &&
849 !alt
.map
->dso
->adjust_symbols
)
850 to
= map__map_ip(alt
.map
, to
);
852 printed
+= fprintf(fp
, " 0x%"PRIx64
, from
);
853 if (PRINT_FIELD(DSO
)) {
854 printed
+= fprintf(fp
, "(");
855 printed
+= map__fprintf_dsoname(alf
.map
, fp
);
856 printed
+= fprintf(fp
, ")");
858 printed
+= fprintf(fp
, "/0x%"PRIx64
, to
);
859 if (PRINT_FIELD(DSO
)) {
860 printed
+= fprintf(fp
, "(");
861 printed
+= map__fprintf_dsoname(alt
.map
, fp
);
862 printed
+= fprintf(fp
, ")");
864 printed
+= fprintf(fp
, "/%c/%c/%c/%d ",
865 mispred_str(br
->entries
+ i
),
866 br
->entries
[i
].flags
.in_tx
? 'X' : '-',
867 br
->entries
[i
].flags
.abort
? 'A' : '-',
868 br
->entries
[i
].flags
.cycles
);
873 #define MAXBB 16384UL
875 static int grab_bb(u8
*buffer
, u64 start
, u64 end
,
876 struct machine
*machine
, struct thread
*thread
,
877 bool *is64bit
, u8
*cpumode
, bool last
)
880 struct addr_location al
;
886 kernel
= machine__kernel_ip(machine
, start
);
888 *cpumode
= PERF_RECORD_MISC_KERNEL
;
890 *cpumode
= PERF_RECORD_MISC_USER
;
893 * Block overlaps between kernel and user.
894 * This can happen due to ring filtering
895 * On Intel CPUs the entry into the kernel is filtered,
896 * but the exit is not. Let the caller patch it up.
898 if (kernel
!= machine__kernel_ip(machine
, end
)) {
899 pr_debug("\tblock %" PRIx64
"-%" PRIx64
" transfers between kernel and user\n", start
, end
);
903 memset(&al
, 0, sizeof(al
));
904 if (end
- start
> MAXBB
- MAXINSN
) {
906 pr_debug("\tbrstack does not reach to final jump (%" PRIx64
"-%" PRIx64
")\n", start
, end
);
908 pr_debug("\tblock %" PRIx64
"-%" PRIx64
" (%" PRIu64
") too long to dump\n", start
, end
, end
- start
);
912 if (!thread__find_map(thread
, *cpumode
, start
, &al
) || !al
.map
->dso
) {
913 pr_debug("\tcannot resolve %" PRIx64
"-%" PRIx64
"\n", start
, end
);
916 if (al
.map
->dso
->data
.status
== DSO_DATA_STATUS_ERROR
) {
917 pr_debug("\tcannot resolve %" PRIx64
"-%" PRIx64
"\n", start
, end
);
921 /* Load maps to ensure dso->is_64_bit has been updated */
924 offset
= al
.map
->map_ip(al
.map
, start
);
925 len
= dso__data_read_offset(al
.map
->dso
, machine
, offset
, (u8
*)buffer
,
926 end
- start
+ MAXINSN
);
928 *is64bit
= al
.map
->dso
->is_64_bit
;
930 pr_debug("\tcannot fetch code for block at %" PRIx64
"-%" PRIx64
"\n",
935 static int print_srccode(struct thread
*thread
, u8 cpumode
, uint64_t addr
)
937 struct addr_location al
;
940 memset(&al
, 0, sizeof(al
));
941 thread__find_map(thread
, cpumode
, addr
, &al
);
944 ret
= map__fprintf_srccode(al
.map
, al
.addr
, stdout
,
945 &thread
->srccode_state
);
951 static int ip__fprintf_jump(uint64_t ip
, struct branch_entry
*en
,
952 struct perf_insn
*x
, u8
*inbuf
, int len
,
953 int insn
, FILE *fp
, int *total_cycles
)
955 int printed
= fprintf(fp
, "\t%016" PRIx64
"\t%-30s\t#%s%s%s%s", ip
,
956 dump_insn(x
, ip
, inbuf
, len
, NULL
),
957 en
->flags
.predicted
? " PRED" : "",
958 en
->flags
.mispred
? " MISPRED" : "",
959 en
->flags
.in_tx
? " INTX" : "",
960 en
->flags
.abort
? " ABORT" : "");
961 if (en
->flags
.cycles
) {
962 *total_cycles
+= en
->flags
.cycles
;
963 printed
+= fprintf(fp
, " %d cycles [%d]", en
->flags
.cycles
, *total_cycles
);
965 printed
+= fprintf(fp
, " %.2f IPC", (float)insn
/ en
->flags
.cycles
);
967 return printed
+ fprintf(fp
, "\n");
970 static int ip__fprintf_sym(uint64_t addr
, struct thread
*thread
,
971 u8 cpumode
, int cpu
, struct symbol
**lastsym
,
972 struct perf_event_attr
*attr
, FILE *fp
)
974 struct addr_location al
;
975 int off
, printed
= 0;
977 memset(&al
, 0, sizeof(al
));
979 thread__find_map(thread
, cpumode
, addr
, &al
);
981 if ((*lastsym
) && al
.addr
>= (*lastsym
)->start
&& al
.addr
< (*lastsym
)->end
)
987 al
.sym
= map__find_symbol(al
.map
, al
.addr
);
992 if (al
.addr
< al
.sym
->end
)
993 off
= al
.addr
- al
.sym
->start
;
995 off
= al
.addr
- al
.map
->start
- al
.sym
->start
;
996 printed
+= fprintf(fp
, "\t%s", al
.sym
->name
);
998 printed
+= fprintf(fp
, "%+d", off
);
999 printed
+= fprintf(fp
, ":");
1000 if (PRINT_FIELD(SRCLINE
))
1001 printed
+= map__fprintf_srcline(al
.map
, al
.addr
, "\t", fp
);
1002 printed
+= fprintf(fp
, "\n");
1008 static int perf_sample__fprintf_brstackinsn(struct perf_sample
*sample
,
1009 struct thread
*thread
,
1010 struct perf_event_attr
*attr
,
1011 struct machine
*machine
, FILE *fp
)
1013 struct branch_stack
*br
= sample
->branch_stack
;
1015 int i
, insn
, len
, nr
, ilen
, printed
= 0;
1019 struct symbol
*lastsym
= NULL
;
1020 int total_cycles
= 0;
1022 if (!(br
&& br
->nr
))
1025 if (max_blocks
&& nr
> max_blocks
+ 1)
1026 nr
= max_blocks
+ 1;
1029 x
.cpu
= sample
->cpu
;
1031 printed
+= fprintf(fp
, "%c", '\n');
1033 /* Handle first from jump, of which we don't know the entry. */
1034 len
= grab_bb(buffer
, br
->entries
[nr
-1].from
,
1035 br
->entries
[nr
-1].from
,
1036 machine
, thread
, &x
.is64bit
, &x
.cpumode
, false);
1038 printed
+= ip__fprintf_sym(br
->entries
[nr
- 1].from
, thread
,
1039 x
.cpumode
, x
.cpu
, &lastsym
, attr
, fp
);
1040 printed
+= ip__fprintf_jump(br
->entries
[nr
- 1].from
, &br
->entries
[nr
- 1],
1041 &x
, buffer
, len
, 0, fp
, &total_cycles
);
1042 if (PRINT_FIELD(SRCCODE
))
1043 printed
+= print_srccode(thread
, x
.cpumode
, br
->entries
[nr
- 1].from
);
1046 /* Print all blocks */
1047 for (i
= nr
- 2; i
>= 0; i
--) {
1048 if (br
->entries
[i
].from
|| br
->entries
[i
].to
)
1049 pr_debug("%d: %" PRIx64
"-%" PRIx64
"\n", i
,
1050 br
->entries
[i
].from
,
1052 start
= br
->entries
[i
+ 1].to
;
1053 end
= br
->entries
[i
].from
;
1055 len
= grab_bb(buffer
, start
, end
, machine
, thread
, &x
.is64bit
, &x
.cpumode
, false);
1056 /* Patch up missing kernel transfers due to ring filters */
1057 if (len
== -ENXIO
&& i
> 0) {
1058 end
= br
->entries
[--i
].from
;
1059 pr_debug("\tpatching up to %" PRIx64
"-%" PRIx64
"\n", start
, end
);
1060 len
= grab_bb(buffer
, start
, end
, machine
, thread
, &x
.is64bit
, &x
.cpumode
, false);
1066 for (off
= 0;; off
+= ilen
) {
1067 uint64_t ip
= start
+ off
;
1069 printed
+= ip__fprintf_sym(ip
, thread
, x
.cpumode
, x
.cpu
, &lastsym
, attr
, fp
);
1071 printed
+= ip__fprintf_jump(ip
, &br
->entries
[i
], &x
, buffer
+ off
, len
- off
, ++insn
, fp
,
1073 if (PRINT_FIELD(SRCCODE
))
1074 printed
+= print_srccode(thread
, x
.cpumode
, ip
);
1077 printed
+= fprintf(fp
, "\t%016" PRIx64
"\t%s\n", ip
,
1078 dump_insn(&x
, ip
, buffer
+ off
, len
- off
, &ilen
));
1081 if (PRINT_FIELD(SRCCODE
))
1082 print_srccode(thread
, x
.cpumode
, ip
);
1089 * Hit the branch? In this case we are already done, and the target
1090 * has not been executed yet.
1092 if (br
->entries
[0].from
== sample
->ip
)
1094 if (br
->entries
[0].flags
.abort
)
1098 * Print final block upto sample
1100 * Due to pipeline delays the LBRs might be missing a branch
1101 * or two, which can result in very large or negative blocks
1102 * between final branch and sample. When this happens just
1103 * continue walking after the last TO until we hit a branch.
1105 start
= br
->entries
[0].to
;
1108 /* Missing jump. Scan 128 bytes for the next branch */
1111 len
= grab_bb(buffer
, start
, end
, machine
, thread
, &x
.is64bit
, &x
.cpumode
, true);
1112 printed
+= ip__fprintf_sym(start
, thread
, x
.cpumode
, x
.cpu
, &lastsym
, attr
, fp
);
1114 /* Print at least last IP if basic block did not work */
1115 len
= grab_bb(buffer
, sample
->ip
, sample
->ip
,
1116 machine
, thread
, &x
.is64bit
, &x
.cpumode
, false);
1119 printed
+= fprintf(fp
, "\t%016" PRIx64
"\t%s\n", sample
->ip
,
1120 dump_insn(&x
, sample
->ip
, buffer
, len
, NULL
));
1121 if (PRINT_FIELD(SRCCODE
))
1122 print_srccode(thread
, x
.cpumode
, sample
->ip
);
1125 for (off
= 0; off
<= end
- start
; off
+= ilen
) {
1126 printed
+= fprintf(fp
, "\t%016" PRIx64
"\t%s\n", start
+ off
,
1127 dump_insn(&x
, start
+ off
, buffer
+ off
, len
- off
, &ilen
));
1130 if (arch_is_branch(buffer
+ off
, len
- off
, x
.is64bit
) && start
+ off
!= sample
->ip
) {
1132 * Hit a missing branch. Just stop.
1134 printed
+= fprintf(fp
, "\t... not reaching sample ...\n");
1137 if (PRINT_FIELD(SRCCODE
))
1138 print_srccode(thread
, x
.cpumode
, start
+ off
);
1144 static int perf_sample__fprintf_addr(struct perf_sample
*sample
,
1145 struct thread
*thread
,
1146 struct perf_event_attr
*attr
, FILE *fp
)
1148 struct addr_location al
;
1149 int printed
= fprintf(fp
, "%16" PRIx64
, sample
->addr
);
1151 if (!sample_addr_correlates_sym(attr
))
1154 thread__resolve(thread
, &al
, sample
);
1156 if (PRINT_FIELD(SYM
)) {
1157 printed
+= fprintf(fp
, " ");
1158 if (PRINT_FIELD(SYMOFFSET
))
1159 printed
+= symbol__fprintf_symname_offs(al
.sym
, &al
, fp
);
1161 printed
+= symbol__fprintf_symname(al
.sym
, fp
);
1164 if (PRINT_FIELD(DSO
)) {
1165 printed
+= fprintf(fp
, " (");
1166 printed
+= map__fprintf_dsoname(al
.map
, fp
);
1167 printed
+= fprintf(fp
, ")");
1173 static const char *resolve_branch_sym(struct perf_sample
*sample
,
1174 struct evsel
*evsel
,
1175 struct thread
*thread
,
1176 struct addr_location
*al
,
1179 struct addr_location addr_al
;
1180 struct perf_event_attr
*attr
= &evsel
->core
.attr
;
1181 const char *name
= NULL
;
1183 if (sample
->flags
& (PERF_IP_FLAG_CALL
| PERF_IP_FLAG_TRACE_BEGIN
)) {
1184 if (sample_addr_correlates_sym(attr
)) {
1185 thread__resolve(thread
, &addr_al
, sample
);
1187 name
= addr_al
.sym
->name
;
1193 } else if (sample
->flags
& (PERF_IP_FLAG_RETURN
| PERF_IP_FLAG_TRACE_END
)) {
1195 name
= al
->sym
->name
;
1202 static int perf_sample__fprintf_callindent(struct perf_sample
*sample
,
1203 struct evsel
*evsel
,
1204 struct thread
*thread
,
1205 struct addr_location
*al
, FILE *fp
)
1207 struct perf_event_attr
*attr
= &evsel
->core
.attr
;
1208 size_t depth
= thread_stack__depth(thread
, sample
->cpu
);
1209 const char *name
= NULL
;
1216 * The 'return' has already been popped off the stack so the depth has
1217 * to be adjusted to match the 'call'.
1219 if (thread
->ts
&& sample
->flags
& PERF_IP_FLAG_RETURN
)
1222 name
= resolve_branch_sym(sample
, evsel
, thread
, al
, &ip
);
1224 if (PRINT_FIELD(DSO
) && !(PRINT_FIELD(IP
) || PRINT_FIELD(ADDR
))) {
1225 dlen
+= fprintf(fp
, "(");
1226 dlen
+= map__fprintf_dsoname(al
->map
, fp
);
1227 dlen
+= fprintf(fp
, ")\t");
1231 len
= fprintf(fp
, "%*s%s", (int)depth
* 4, "", name
);
1233 len
= fprintf(fp
, "%*s%16" PRIx64
, (int)depth
* 4, "", ip
);
1239 * Try to keep the output length from changing frequently so that the
1240 * output lines up more nicely.
1242 if (len
> spacing
|| (len
&& len
< spacing
- 52))
1243 spacing
= round_up(len
+ 4, 32);
1246 len
+= fprintf(fp
, "%*s", spacing
- len
, "");
1251 __weak
void arch_fetch_insn(struct perf_sample
*sample __maybe_unused
,
1252 struct thread
*thread __maybe_unused
,
1253 struct machine
*machine __maybe_unused
)
1257 static int perf_sample__fprintf_insn(struct perf_sample
*sample
,
1258 struct perf_event_attr
*attr
,
1259 struct thread
*thread
,
1260 struct machine
*machine
, FILE *fp
)
1264 if (sample
->insn_len
== 0 && native_arch
)
1265 arch_fetch_insn(sample
, thread
, machine
);
1267 if (PRINT_FIELD(INSNLEN
))
1268 printed
+= fprintf(fp
, " ilen: %d", sample
->insn_len
);
1269 if (PRINT_FIELD(INSN
) && sample
->insn_len
) {
1272 printed
+= fprintf(fp
, " insn:");
1273 for (i
= 0; i
< sample
->insn_len
; i
++)
1274 printed
+= fprintf(fp
, " %02x", (unsigned char)sample
->insn
[i
]);
1276 if (PRINT_FIELD(BRSTACKINSN
))
1277 printed
+= perf_sample__fprintf_brstackinsn(sample
, thread
, attr
, machine
, fp
);
1282 static int perf_sample__fprintf_ipc(struct perf_sample
*sample
,
1283 struct perf_event_attr
*attr
, FILE *fp
)
1287 if (!PRINT_FIELD(IPC
) || !sample
->cyc_cnt
|| !sample
->insn_cnt
)
1290 ipc
= (sample
->insn_cnt
* 100) / sample
->cyc_cnt
;
1292 return fprintf(fp
, " \t IPC: %u.%02u (%" PRIu64
"/%" PRIu64
") ",
1293 ipc
/ 100, ipc
% 100, sample
->insn_cnt
, sample
->cyc_cnt
);
1296 static int perf_sample__fprintf_bts(struct perf_sample
*sample
,
1297 struct evsel
*evsel
,
1298 struct thread
*thread
,
1299 struct addr_location
*al
,
1300 struct machine
*machine
, FILE *fp
)
1302 struct perf_event_attr
*attr
= &evsel
->core
.attr
;
1303 unsigned int type
= output_type(attr
->type
);
1304 bool print_srcline_last
= false;
1307 if (PRINT_FIELD(CALLINDENT
))
1308 printed
+= perf_sample__fprintf_callindent(sample
, evsel
, thread
, al
, fp
);
1310 /* print branch_from information */
1311 if (PRINT_FIELD(IP
)) {
1312 unsigned int print_opts
= output
[type
].print_ip_opts
;
1313 struct callchain_cursor
*cursor
= NULL
;
1315 if (symbol_conf
.use_callchain
&& sample
->callchain
&&
1316 thread__resolve_callchain(al
->thread
, &callchain_cursor
, evsel
,
1317 sample
, NULL
, NULL
, scripting_max_stack
) == 0)
1318 cursor
= &callchain_cursor
;
1320 if (cursor
== NULL
) {
1321 printed
+= fprintf(fp
, " ");
1322 if (print_opts
& EVSEL__PRINT_SRCLINE
) {
1323 print_srcline_last
= true;
1324 print_opts
&= ~EVSEL__PRINT_SRCLINE
;
1327 printed
+= fprintf(fp
, "\n");
1329 printed
+= sample__fprintf_sym(sample
, al
, 0, print_opts
, cursor
,
1330 symbol_conf
.bt_stop_list
, fp
);
1333 /* print branch_to information */
1334 if (PRINT_FIELD(ADDR
) ||
1335 ((evsel
->core
.attr
.sample_type
& PERF_SAMPLE_ADDR
) &&
1336 !output
[type
].user_set
)) {
1337 printed
+= fprintf(fp
, " => ");
1338 printed
+= perf_sample__fprintf_addr(sample
, thread
, attr
, fp
);
1341 printed
+= perf_sample__fprintf_ipc(sample
, attr
, fp
);
1343 if (print_srcline_last
)
1344 printed
+= map__fprintf_srcline(al
->map
, al
->addr
, "\n ", fp
);
1346 printed
+= perf_sample__fprintf_insn(sample
, attr
, thread
, machine
, fp
);
1347 printed
+= fprintf(fp
, "\n");
1348 if (PRINT_FIELD(SRCCODE
)) {
1349 int ret
= map__fprintf_srccode(al
->map
, al
->addr
, stdout
,
1350 &thread
->srccode_state
);
1353 printed
+= printf("\n");
1362 } sample_flags
[] = {
1363 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
, "call"},
1364 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_RETURN
, "return"},
1365 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CONDITIONAL
, "jcc"},
1366 {PERF_IP_FLAG_BRANCH
, "jmp"},
1367 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
| PERF_IP_FLAG_INTERRUPT
, "int"},
1368 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_RETURN
| PERF_IP_FLAG_INTERRUPT
, "iret"},
1369 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
| PERF_IP_FLAG_SYSCALLRET
, "syscall"},
1370 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_RETURN
| PERF_IP_FLAG_SYSCALLRET
, "sysret"},
1371 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_ASYNC
, "async"},
1372 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_CALL
| PERF_IP_FLAG_ASYNC
| PERF_IP_FLAG_INTERRUPT
, "hw int"},
1373 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_TX_ABORT
, "tx abrt"},
1374 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_TRACE_BEGIN
, "tr strt"},
1375 {PERF_IP_FLAG_BRANCH
| PERF_IP_FLAG_TRACE_END
, "tr end"},
1379 static const char *sample_flags_to_name(u32 flags
)
1383 for (i
= 0; sample_flags
[i
].name
; i
++) {
1384 if (sample_flags
[i
].flags
== flags
)
1385 return sample_flags
[i
].name
;
1391 static int perf_sample__fprintf_flags(u32 flags
, FILE *fp
)
1393 const char *chars
= PERF_IP_FLAG_CHARS
;
1394 const int n
= strlen(PERF_IP_FLAG_CHARS
);
1395 bool in_tx
= flags
& PERF_IP_FLAG_IN_TX
;
1396 const char *name
= NULL
;
1400 name
= sample_flags_to_name(flags
& ~PERF_IP_FLAG_IN_TX
);
1402 return fprintf(fp
, " %-15s%4s ", name
, in_tx
? "(x)" : "");
1404 if (flags
& PERF_IP_FLAG_TRACE_BEGIN
) {
1405 name
= sample_flags_to_name(flags
& ~(PERF_IP_FLAG_IN_TX
| PERF_IP_FLAG_TRACE_BEGIN
));
1407 return fprintf(fp
, " tr strt %-7s%4s ", name
, in_tx
? "(x)" : "");
1410 if (flags
& PERF_IP_FLAG_TRACE_END
) {
1411 name
= sample_flags_to_name(flags
& ~(PERF_IP_FLAG_IN_TX
| PERF_IP_FLAG_TRACE_END
));
1413 return fprintf(fp
, " tr end %-7s%4s ", name
, in_tx
? "(x)" : "");
1416 for (i
= 0; i
< n
; i
++, flags
>>= 1) {
1418 str
[pos
++] = chars
[i
];
1420 for (; i
< 32; i
++, flags
>>= 1) {
1426 return fprintf(fp
, " %-19s ", str
);
1429 struct printer_data
{
1435 static int sample__fprintf_bpf_output(enum binary_printer_ops op
,
1437 void *extra
, FILE *fp
)
1439 unsigned char ch
= (unsigned char)val
;
1440 struct printer_data
*printer_data
= extra
;
1444 case BINARY_PRINT_DATA_BEGIN
:
1445 printed
+= fprintf(fp
, "\n");
1447 case BINARY_PRINT_LINE_BEGIN
:
1448 printed
+= fprintf(fp
, "%17s", !printer_data
->line_no
? "BPF output:" :
1451 case BINARY_PRINT_ADDR
:
1452 printed
+= fprintf(fp
, " %04x:", val
);
1454 case BINARY_PRINT_NUM_DATA
:
1455 printed
+= fprintf(fp
, " %02x", val
);
1457 case BINARY_PRINT_NUM_PAD
:
1458 printed
+= fprintf(fp
, " ");
1460 case BINARY_PRINT_SEP
:
1461 printed
+= fprintf(fp
, " ");
1463 case BINARY_PRINT_CHAR_DATA
:
1464 if (printer_data
->hit_nul
&& ch
)
1465 printer_data
->is_printable
= false;
1468 printed
+= fprintf(fp
, "%c", '.');
1470 if (!printer_data
->is_printable
)
1474 printer_data
->hit_nul
= true;
1476 printer_data
->is_printable
= false;
1478 printed
+= fprintf(fp
, "%c", ch
);
1481 case BINARY_PRINT_CHAR_PAD
:
1482 printed
+= fprintf(fp
, " ");
1484 case BINARY_PRINT_LINE_END
:
1485 printed
+= fprintf(fp
, "\n");
1486 printer_data
->line_no
++;
1488 case BINARY_PRINT_DATA_END
:
1496 static int perf_sample__fprintf_bpf_output(struct perf_sample
*sample
, FILE *fp
)
1498 unsigned int nr_bytes
= sample
->raw_size
;
1499 struct printer_data printer_data
= {0, false, true};
1500 int printed
= binary__fprintf(sample
->raw_data
, nr_bytes
, 8,
1501 sample__fprintf_bpf_output
, &printer_data
, fp
);
1503 if (printer_data
.is_printable
&& printer_data
.hit_nul
)
1504 printed
+= fprintf(fp
, "%17s \"%s\"\n", "BPF string:", (char *)(sample
->raw_data
));
1509 static int perf_sample__fprintf_spacing(int len
, int spacing
, FILE *fp
)
1511 if (len
> 0 && len
< spacing
)
1512 return fprintf(fp
, "%*s", spacing
- len
, "");
1517 static int perf_sample__fprintf_pt_spacing(int len
, FILE *fp
)
1519 return perf_sample__fprintf_spacing(len
, 34, fp
);
1522 static int perf_sample__fprintf_synth_ptwrite(struct perf_sample
*sample
, FILE *fp
)
1524 struct perf_synth_intel_ptwrite
*data
= perf_sample__synth_ptr(sample
);
1527 if (perf_sample__bad_synth_size(sample
, *data
))
1530 len
= fprintf(fp
, " IP: %u payload: %#" PRIx64
" ",
1531 data
->ip
, le64_to_cpu(data
->payload
));
1532 return len
+ perf_sample__fprintf_pt_spacing(len
, fp
);
1535 static int perf_sample__fprintf_synth_mwait(struct perf_sample
*sample
, FILE *fp
)
1537 struct perf_synth_intel_mwait
*data
= perf_sample__synth_ptr(sample
);
1540 if (perf_sample__bad_synth_size(sample
, *data
))
1543 len
= fprintf(fp
, " hints: %#x extensions: %#x ",
1544 data
->hints
, data
->extensions
);
1545 return len
+ perf_sample__fprintf_pt_spacing(len
, fp
);
1548 static int perf_sample__fprintf_synth_pwre(struct perf_sample
*sample
, FILE *fp
)
1550 struct perf_synth_intel_pwre
*data
= perf_sample__synth_ptr(sample
);
1553 if (perf_sample__bad_synth_size(sample
, *data
))
1556 len
= fprintf(fp
, " hw: %u cstate: %u sub-cstate: %u ",
1557 data
->hw
, data
->cstate
, data
->subcstate
);
1558 return len
+ perf_sample__fprintf_pt_spacing(len
, fp
);
1561 static int perf_sample__fprintf_synth_exstop(struct perf_sample
*sample
, FILE *fp
)
1563 struct perf_synth_intel_exstop
*data
= perf_sample__synth_ptr(sample
);
1566 if (perf_sample__bad_synth_size(sample
, *data
))
1569 len
= fprintf(fp
, " IP: %u ", data
->ip
);
1570 return len
+ perf_sample__fprintf_pt_spacing(len
, fp
);
1573 static int perf_sample__fprintf_synth_pwrx(struct perf_sample
*sample
, FILE *fp
)
1575 struct perf_synth_intel_pwrx
*data
= perf_sample__synth_ptr(sample
);
1578 if (perf_sample__bad_synth_size(sample
, *data
))
1581 len
= fprintf(fp
, " deepest cstate: %u last cstate: %u wake reason: %#x ",
1582 data
->deepest_cstate
, data
->last_cstate
,
1584 return len
+ perf_sample__fprintf_pt_spacing(len
, fp
);
1587 static int perf_sample__fprintf_synth_cbr(struct perf_sample
*sample
, FILE *fp
)
1589 struct perf_synth_intel_cbr
*data
= perf_sample__synth_ptr(sample
);
1590 unsigned int percent
, freq
;
1593 if (perf_sample__bad_synth_size(sample
, *data
))
1596 freq
= (le32_to_cpu(data
->freq
) + 500) / 1000;
1597 len
= fprintf(fp
, " cbr: %2u freq: %4u MHz ", data
->cbr
, freq
);
1598 if (data
->max_nonturbo
) {
1599 percent
= (5 + (1000 * data
->cbr
) / data
->max_nonturbo
) / 10;
1600 len
+= fprintf(fp
, "(%3u%%) ", percent
);
1602 return len
+ perf_sample__fprintf_pt_spacing(len
, fp
);
1605 static int perf_sample__fprintf_synth(struct perf_sample
*sample
,
1606 struct evsel
*evsel
, FILE *fp
)
1608 switch (evsel
->core
.attr
.config
) {
1609 case PERF_SYNTH_INTEL_PTWRITE
:
1610 return perf_sample__fprintf_synth_ptwrite(sample
, fp
);
1611 case PERF_SYNTH_INTEL_MWAIT
:
1612 return perf_sample__fprintf_synth_mwait(sample
, fp
);
1613 case PERF_SYNTH_INTEL_PWRE
:
1614 return perf_sample__fprintf_synth_pwre(sample
, fp
);
1615 case PERF_SYNTH_INTEL_EXSTOP
:
1616 return perf_sample__fprintf_synth_exstop(sample
, fp
);
1617 case PERF_SYNTH_INTEL_PWRX
:
1618 return perf_sample__fprintf_synth_pwrx(sample
, fp
);
1619 case PERF_SYNTH_INTEL_CBR
:
1620 return perf_sample__fprintf_synth_cbr(sample
, fp
);
1628 struct perf_script
{
1629 struct perf_tool tool
;
1630 struct perf_session
*session
;
1631 bool show_task_events
;
1632 bool show_mmap_events
;
1633 bool show_switch_events
;
1634 bool show_namespace_events
;
1635 bool show_lost_events
;
1636 bool show_round_events
;
1637 bool show_bpf_events
;
1639 bool per_event_dump
;
1640 struct evswitch evswitch
;
1641 struct perf_cpu_map
*cpus
;
1642 struct perf_thread_map
*threads
;
1644 const char *time_str
;
1645 struct perf_time_interval
*ptime_range
;
1650 static int perf_evlist__max_name_len(struct evlist
*evlist
)
1652 struct evsel
*evsel
;
1655 evlist__for_each_entry(evlist
, evsel
) {
1656 int len
= strlen(perf_evsel__name(evsel
));
1658 max
= MAX(len
, max
);
1664 static int data_src__fprintf(u64 data_src
, FILE *fp
)
1666 struct mem_info mi
= { .data_src
.val
= data_src
};
1672 perf_script__meminfo_scnprintf(decode
, 100, &mi
);
1674 len
= scnprintf(out
, 100, "%16" PRIx64
" %s", data_src
, decode
);
1678 return fprintf(fp
, "%-*s", maxlen
, out
);
1682 struct perf_sample
*sample
;
1683 struct thread
*thread
;
1684 struct evsel
*evsel
;
1688 static void script_print_metric(struct perf_stat_config
*config __maybe_unused
,
1689 void *ctx
, const char *color
,
1691 const char *unit
, double val
)
1693 struct metric_ctx
*mctx
= ctx
;
1697 perf_sample__fprintf_start(mctx
->sample
, mctx
->thread
, mctx
->evsel
,
1698 PERF_RECORD_SAMPLE
, mctx
->fp
);
1699 fputs("\tmetric: ", mctx
->fp
);
1701 color_fprintf(mctx
->fp
, color
, fmt
, val
);
1704 fprintf(mctx
->fp
, " %s\n", unit
);
1707 static void script_new_line(struct perf_stat_config
*config __maybe_unused
,
1710 struct metric_ctx
*mctx
= ctx
;
1712 perf_sample__fprintf_start(mctx
->sample
, mctx
->thread
, mctx
->evsel
,
1713 PERF_RECORD_SAMPLE
, mctx
->fp
);
1714 fputs("\tmetric: ", mctx
->fp
);
1717 static void perf_sample__fprint_metric(struct perf_script
*script
,
1718 struct thread
*thread
,
1719 struct evsel
*evsel
,
1720 struct perf_sample
*sample
,
1723 struct perf_stat_output_ctx ctx
= {
1724 .print_metric
= script_print_metric
,
1725 .new_line
= script_new_line
,
1726 .ctx
= &(struct metric_ctx
) {
1732 .force_header
= false,
1738 perf_evlist__alloc_stats(script
->session
->evlist
, false);
1739 if (evsel_script(evsel
->leader
)->gnum
++ == 0)
1740 perf_stat__reset_shadow_stats();
1741 val
= sample
->period
* evsel
->scale
;
1742 perf_stat__update_shadow_stats(evsel
,
1746 evsel_script(evsel
)->val
= val
;
1747 if (evsel_script(evsel
->leader
)->gnum
== evsel
->leader
->core
.nr_members
) {
1748 for_each_group_member (ev2
, evsel
->leader
) {
1749 perf_stat__print_shadow_stats(&stat_config
, ev2
,
1750 evsel_script(ev2
)->val
,
1756 evsel_script(evsel
->leader
)->gnum
= 0;
1760 static bool show_event(struct perf_sample
*sample
,
1761 struct evsel
*evsel
,
1762 struct thread
*thread
,
1763 struct addr_location
*al
)
1765 int depth
= thread_stack__depth(thread
, sample
->cpu
);
1767 if (!symbol_conf
.graph_function
)
1770 if (thread
->filter
) {
1771 if (depth
<= thread
->filter_entry_depth
) {
1772 thread
->filter
= false;
1777 const char *s
= symbol_conf
.graph_function
;
1779 const char *name
= resolve_branch_sym(sample
, evsel
, thread
, al
,
1785 nlen
= strlen(name
);
1787 unsigned len
= strcspn(s
, ",");
1788 if (nlen
== len
&& !strncmp(name
, s
, len
)) {
1789 thread
->filter
= true;
1790 thread
->filter_entry_depth
= depth
;
1801 static void process_event(struct perf_script
*script
,
1802 struct perf_sample
*sample
, struct evsel
*evsel
,
1803 struct addr_location
*al
,
1804 struct machine
*machine
)
1806 struct thread
*thread
= al
->thread
;
1807 struct perf_event_attr
*attr
= &evsel
->core
.attr
;
1808 unsigned int type
= output_type(attr
->type
);
1809 struct evsel_script
*es
= evsel
->priv
;
1812 if (output
[type
].fields
== 0)
1815 if (!show_event(sample
, evsel
, thread
, al
))
1818 if (evswitch__discard(&script
->evswitch
, evsel
))
1823 perf_sample__fprintf_start(sample
, thread
, evsel
,
1824 PERF_RECORD_SAMPLE
, fp
);
1826 if (PRINT_FIELD(PERIOD
))
1827 fprintf(fp
, "%10" PRIu64
" ", sample
->period
);
1829 if (PRINT_FIELD(EVNAME
)) {
1830 const char *evname
= perf_evsel__name(evsel
);
1832 if (!script
->name_width
)
1833 script
->name_width
= perf_evlist__max_name_len(script
->session
->evlist
);
1835 fprintf(fp
, "%*s: ", script
->name_width
, evname
?: "[unknown]");
1839 perf_sample__fprintf_flags(sample
->flags
, fp
);
1841 if (is_bts_event(attr
)) {
1842 perf_sample__fprintf_bts(sample
, evsel
, thread
, al
, machine
, fp
);
1846 if (PRINT_FIELD(TRACE
) && sample
->raw_data
) {
1847 event_format__fprintf(evsel
->tp_format
, sample
->cpu
,
1848 sample
->raw_data
, sample
->raw_size
, fp
);
1851 if (attr
->type
== PERF_TYPE_SYNTH
&& PRINT_FIELD(SYNTH
))
1852 perf_sample__fprintf_synth(sample
, evsel
, fp
);
1854 if (PRINT_FIELD(ADDR
))
1855 perf_sample__fprintf_addr(sample
, thread
, attr
, fp
);
1857 if (PRINT_FIELD(DATA_SRC
))
1858 data_src__fprintf(sample
->data_src
, fp
);
1860 if (PRINT_FIELD(WEIGHT
))
1861 fprintf(fp
, "%16" PRIu64
, sample
->weight
);
1863 if (PRINT_FIELD(IP
)) {
1864 struct callchain_cursor
*cursor
= NULL
;
1866 if (symbol_conf
.use_callchain
&& sample
->callchain
&&
1867 thread__resolve_callchain(al
->thread
, &callchain_cursor
, evsel
,
1868 sample
, NULL
, NULL
, scripting_max_stack
) == 0)
1869 cursor
= &callchain_cursor
;
1871 fputc(cursor
? '\n' : ' ', fp
);
1872 sample__fprintf_sym(sample
, al
, 0, output
[type
].print_ip_opts
, cursor
,
1873 symbol_conf
.bt_stop_list
, fp
);
1876 if (PRINT_FIELD(IREGS
))
1877 perf_sample__fprintf_iregs(sample
, attr
, fp
);
1879 if (PRINT_FIELD(UREGS
))
1880 perf_sample__fprintf_uregs(sample
, attr
, fp
);
1882 if (PRINT_FIELD(BRSTACK
))
1883 perf_sample__fprintf_brstack(sample
, thread
, attr
, fp
);
1884 else if (PRINT_FIELD(BRSTACKSYM
))
1885 perf_sample__fprintf_brstacksym(sample
, thread
, attr
, fp
);
1886 else if (PRINT_FIELD(BRSTACKOFF
))
1887 perf_sample__fprintf_brstackoff(sample
, thread
, attr
, fp
);
1889 if (perf_evsel__is_bpf_output(evsel
) && PRINT_FIELD(BPF_OUTPUT
))
1890 perf_sample__fprintf_bpf_output(sample
, fp
);
1891 perf_sample__fprintf_insn(sample
, attr
, thread
, machine
, fp
);
1893 if (PRINT_FIELD(PHYS_ADDR
))
1894 fprintf(fp
, "%16" PRIx64
, sample
->phys_addr
);
1896 perf_sample__fprintf_ipc(sample
, attr
, fp
);
1900 if (PRINT_FIELD(SRCCODE
)) {
1901 if (map__fprintf_srccode(al
->map
, al
->addr
, stdout
,
1902 &thread
->srccode_state
))
1906 if (PRINT_FIELD(METRIC
))
1907 perf_sample__fprint_metric(script
, thread
, evsel
, sample
, fp
);
1913 static struct scripting_ops
*scripting_ops
;
1915 static void __process_stat(struct evsel
*counter
, u64 tstamp
)
1917 int nthreads
= perf_thread_map__nr(counter
->core
.threads
);
1918 int ncpus
= perf_evsel__nr_cpus(counter
);
1920 static int header_printed
;
1922 if (counter
->core
.system_wide
)
1925 if (!header_printed
) {
1926 printf("%3s %8s %15s %15s %15s %15s %s\n",
1927 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
1931 for (thread
= 0; thread
< nthreads
; thread
++) {
1932 for (cpu
= 0; cpu
< ncpus
; cpu
++) {
1933 struct perf_counts_values
*counts
;
1935 counts
= perf_counts(counter
->counts
, cpu
, thread
);
1937 printf("%3d %8d %15" PRIu64
" %15" PRIu64
" %15" PRIu64
" %15" PRIu64
" %s\n",
1938 counter
->core
.cpus
->map
[cpu
],
1939 perf_thread_map__pid(counter
->core
.threads
, thread
),
1944 perf_evsel__name(counter
));
1949 static void process_stat(struct evsel
*counter
, u64 tstamp
)
1951 if (scripting_ops
&& scripting_ops
->process_stat
)
1952 scripting_ops
->process_stat(&stat_config
, counter
, tstamp
);
1954 __process_stat(counter
, tstamp
);
1957 static void process_stat_interval(u64 tstamp
)
1959 if (scripting_ops
&& scripting_ops
->process_stat_interval
)
1960 scripting_ops
->process_stat_interval(tstamp
);
1963 static void setup_scripting(void)
1965 setup_perl_scripting();
1966 setup_python_scripting();
1969 static int flush_scripting(void)
1971 return scripting_ops
? scripting_ops
->flush_script() : 0;
1974 static int cleanup_scripting(void)
1976 pr_debug("\nperf script stopped\n");
1978 return scripting_ops
? scripting_ops
->stop_script() : 0;
1981 static bool filter_cpu(struct perf_sample
*sample
)
1984 return !test_bit(sample
->cpu
, cpu_bitmap
);
1988 static int process_sample_event(struct perf_tool
*tool
,
1989 union perf_event
*event
,
1990 struct perf_sample
*sample
,
1991 struct evsel
*evsel
,
1992 struct machine
*machine
)
1994 struct perf_script
*scr
= container_of(tool
, struct perf_script
, tool
);
1995 struct addr_location al
;
1997 if (perf_time__ranges_skip_sample(scr
->ptime_range
, scr
->range_num
,
2003 if (sample
->time
< last_timestamp
) {
2004 pr_err("Samples misordered, previous: %" PRIu64
2005 " this: %" PRIu64
"\n", last_timestamp
,
2009 last_timestamp
= sample
->time
;
2013 if (machine__resolve(machine
, &al
, sample
) < 0) {
2014 pr_err("problem processing %d event, skipping it.\n",
2015 event
->header
.type
);
2022 if (filter_cpu(sample
))
2026 scripting_ops
->process_event(event
, sample
, evsel
, &al
);
2028 process_event(scr
, sample
, evsel
, &al
, machine
);
2031 addr_location__put(&al
);
2035 static int process_attr(struct perf_tool
*tool
, union perf_event
*event
,
2036 struct evlist
**pevlist
)
2038 struct perf_script
*scr
= container_of(tool
, struct perf_script
, tool
);
2039 struct evlist
*evlist
;
2040 struct evsel
*evsel
, *pos
;
2042 static struct evsel_script
*es
;
2044 err
= perf_event__process_attr(tool
, event
, pevlist
);
2049 evsel
= evlist__last(*pevlist
);
2052 if (scr
->per_event_dump
) {
2053 evsel
->priv
= perf_evsel_script__new(evsel
,
2054 scr
->session
->data
);
2056 es
= zalloc(sizeof(*es
));
2064 if (evsel
->core
.attr
.type
>= PERF_TYPE_MAX
&&
2065 evsel
->core
.attr
.type
!= PERF_TYPE_SYNTH
)
2068 evlist__for_each_entry(evlist
, pos
) {
2069 if (pos
->core
.attr
.type
== evsel
->core
.attr
.type
&& pos
!= evsel
)
2073 set_print_ip_opts(&evsel
->core
.attr
);
2075 if (evsel
->core
.attr
.sample_type
)
2076 err
= perf_evsel__check_attr(evsel
, scr
->session
);
2081 static int process_comm_event(struct perf_tool
*tool
,
2082 union perf_event
*event
,
2083 struct perf_sample
*sample
,
2084 struct machine
*machine
)
2086 struct thread
*thread
;
2087 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2088 struct perf_session
*session
= script
->session
;
2089 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2092 thread
= machine__findnew_thread(machine
, event
->comm
.pid
, event
->comm
.tid
);
2093 if (thread
== NULL
) {
2094 pr_debug("problem processing COMM event, skipping it.\n");
2098 if (perf_event__process_comm(tool
, event
, sample
, machine
) < 0)
2101 if (!evsel
->core
.attr
.sample_id_all
) {
2104 sample
->tid
= event
->comm
.tid
;
2105 sample
->pid
= event
->comm
.pid
;
2107 if (!filter_cpu(sample
)) {
2108 perf_sample__fprintf_start(sample
, thread
, evsel
,
2109 PERF_RECORD_COMM
, stdout
);
2110 perf_event__fprintf(event
, stdout
);
2114 thread__put(thread
);
2118 static int process_namespaces_event(struct perf_tool
*tool
,
2119 union perf_event
*event
,
2120 struct perf_sample
*sample
,
2121 struct machine
*machine
)
2123 struct thread
*thread
;
2124 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2125 struct perf_session
*session
= script
->session
;
2126 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2129 thread
= machine__findnew_thread(machine
, event
->namespaces
.pid
,
2130 event
->namespaces
.tid
);
2131 if (thread
== NULL
) {
2132 pr_debug("problem processing NAMESPACES event, skipping it.\n");
2136 if (perf_event__process_namespaces(tool
, event
, sample
, machine
) < 0)
2139 if (!evsel
->core
.attr
.sample_id_all
) {
2142 sample
->tid
= event
->namespaces
.tid
;
2143 sample
->pid
= event
->namespaces
.pid
;
2145 if (!filter_cpu(sample
)) {
2146 perf_sample__fprintf_start(sample
, thread
, evsel
,
2147 PERF_RECORD_NAMESPACES
, stdout
);
2148 perf_event__fprintf(event
, stdout
);
2152 thread__put(thread
);
2156 static int process_fork_event(struct perf_tool
*tool
,
2157 union perf_event
*event
,
2158 struct perf_sample
*sample
,
2159 struct machine
*machine
)
2161 struct thread
*thread
;
2162 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2163 struct perf_session
*session
= script
->session
;
2164 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2166 if (perf_event__process_fork(tool
, event
, sample
, machine
) < 0)
2169 thread
= machine__findnew_thread(machine
, event
->fork
.pid
, event
->fork
.tid
);
2170 if (thread
== NULL
) {
2171 pr_debug("problem processing FORK event, skipping it.\n");
2175 if (!evsel
->core
.attr
.sample_id_all
) {
2177 sample
->time
= event
->fork
.time
;
2178 sample
->tid
= event
->fork
.tid
;
2179 sample
->pid
= event
->fork
.pid
;
2181 if (!filter_cpu(sample
)) {
2182 perf_sample__fprintf_start(sample
, thread
, evsel
,
2183 PERF_RECORD_FORK
, stdout
);
2184 perf_event__fprintf(event
, stdout
);
2186 thread__put(thread
);
2190 static int process_exit_event(struct perf_tool
*tool
,
2191 union perf_event
*event
,
2192 struct perf_sample
*sample
,
2193 struct machine
*machine
)
2196 struct thread
*thread
;
2197 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2198 struct perf_session
*session
= script
->session
;
2199 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2201 thread
= machine__findnew_thread(machine
, event
->fork
.pid
, event
->fork
.tid
);
2202 if (thread
== NULL
) {
2203 pr_debug("problem processing EXIT event, skipping it.\n");
2207 if (!evsel
->core
.attr
.sample_id_all
) {
2210 sample
->tid
= event
->fork
.tid
;
2211 sample
->pid
= event
->fork
.pid
;
2213 if (!filter_cpu(sample
)) {
2214 perf_sample__fprintf_start(sample
, thread
, evsel
,
2215 PERF_RECORD_EXIT
, stdout
);
2216 perf_event__fprintf(event
, stdout
);
2219 if (perf_event__process_exit(tool
, event
, sample
, machine
) < 0)
2222 thread__put(thread
);
2226 static int process_mmap_event(struct perf_tool
*tool
,
2227 union perf_event
*event
,
2228 struct perf_sample
*sample
,
2229 struct machine
*machine
)
2231 struct thread
*thread
;
2232 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2233 struct perf_session
*session
= script
->session
;
2234 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2236 if (perf_event__process_mmap(tool
, event
, sample
, machine
) < 0)
2239 thread
= machine__findnew_thread(machine
, event
->mmap
.pid
, event
->mmap
.tid
);
2240 if (thread
== NULL
) {
2241 pr_debug("problem processing MMAP event, skipping it.\n");
2245 if (!evsel
->core
.attr
.sample_id_all
) {
2248 sample
->tid
= event
->mmap
.tid
;
2249 sample
->pid
= event
->mmap
.pid
;
2251 if (!filter_cpu(sample
)) {
2252 perf_sample__fprintf_start(sample
, thread
, evsel
,
2253 PERF_RECORD_MMAP
, stdout
);
2254 perf_event__fprintf(event
, stdout
);
2256 thread__put(thread
);
2260 static int process_mmap2_event(struct perf_tool
*tool
,
2261 union perf_event
*event
,
2262 struct perf_sample
*sample
,
2263 struct machine
*machine
)
2265 struct thread
*thread
;
2266 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2267 struct perf_session
*session
= script
->session
;
2268 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2270 if (perf_event__process_mmap2(tool
, event
, sample
, machine
) < 0)
2273 thread
= machine__findnew_thread(machine
, event
->mmap2
.pid
, event
->mmap2
.tid
);
2274 if (thread
== NULL
) {
2275 pr_debug("problem processing MMAP2 event, skipping it.\n");
2279 if (!evsel
->core
.attr
.sample_id_all
) {
2282 sample
->tid
= event
->mmap2
.tid
;
2283 sample
->pid
= event
->mmap2
.pid
;
2285 if (!filter_cpu(sample
)) {
2286 perf_sample__fprintf_start(sample
, thread
, evsel
,
2287 PERF_RECORD_MMAP2
, stdout
);
2288 perf_event__fprintf(event
, stdout
);
2290 thread__put(thread
);
2294 static int process_switch_event(struct perf_tool
*tool
,
2295 union perf_event
*event
,
2296 struct perf_sample
*sample
,
2297 struct machine
*machine
)
2299 struct thread
*thread
;
2300 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2301 struct perf_session
*session
= script
->session
;
2302 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2304 if (perf_event__process_switch(tool
, event
, sample
, machine
) < 0)
2307 if (scripting_ops
&& scripting_ops
->process_switch
)
2308 scripting_ops
->process_switch(event
, sample
, machine
);
2310 if (!script
->show_switch_events
)
2313 thread
= machine__findnew_thread(machine
, sample
->pid
,
2315 if (thread
== NULL
) {
2316 pr_debug("problem processing SWITCH event, skipping it.\n");
2320 if (!filter_cpu(sample
)) {
2321 perf_sample__fprintf_start(sample
, thread
, evsel
,
2322 PERF_RECORD_SWITCH
, stdout
);
2323 perf_event__fprintf(event
, stdout
);
2325 thread__put(thread
);
2330 process_lost_event(struct perf_tool
*tool
,
2331 union perf_event
*event
,
2332 struct perf_sample
*sample
,
2333 struct machine
*machine
)
2335 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2336 struct perf_session
*session
= script
->session
;
2337 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2338 struct thread
*thread
;
2340 thread
= machine__findnew_thread(machine
, sample
->pid
,
2345 if (!filter_cpu(sample
)) {
2346 perf_sample__fprintf_start(sample
, thread
, evsel
,
2347 PERF_RECORD_LOST
, stdout
);
2348 perf_event__fprintf(event
, stdout
);
2350 thread__put(thread
);
2355 process_finished_round_event(struct perf_tool
*tool __maybe_unused
,
2356 union perf_event
*event
,
2357 struct ordered_events
*oe __maybe_unused
)
2360 perf_event__fprintf(event
, stdout
);
2365 process_bpf_events(struct perf_tool
*tool __maybe_unused
,
2366 union perf_event
*event
,
2367 struct perf_sample
*sample
,
2368 struct machine
*machine
)
2370 struct thread
*thread
;
2371 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
2372 struct perf_session
*session
= script
->session
;
2373 struct evsel
*evsel
= perf_evlist__id2evsel(session
->evlist
, sample
->id
);
2375 if (machine__process_ksymbol(machine
, event
, sample
) < 0)
2378 if (!evsel
->core
.attr
.sample_id_all
) {
2379 perf_event__fprintf(event
, stdout
);
2383 thread
= machine__findnew_thread(machine
, sample
->pid
, sample
->tid
);
2384 if (thread
== NULL
) {
2385 pr_debug("problem processing MMAP event, skipping it.\n");
2389 if (!filter_cpu(sample
)) {
2390 perf_sample__fprintf_start(sample
, thread
, evsel
,
2391 event
->header
.type
, stdout
);
2392 perf_event__fprintf(event
, stdout
);
2395 thread__put(thread
);
2399 static void sig_handler(int sig __maybe_unused
)
2404 static void perf_script__fclose_per_event_dump(struct perf_script
*script
)
2406 struct evlist
*evlist
= script
->session
->evlist
;
2407 struct evsel
*evsel
;
2409 evlist__for_each_entry(evlist
, evsel
) {
2412 perf_evsel_script__delete(evsel
->priv
);
2417 static int perf_script__fopen_per_event_dump(struct perf_script
*script
)
2419 struct evsel
*evsel
;
2421 evlist__for_each_entry(script
->session
->evlist
, evsel
) {
2423 * Already setup? I.e. we may be called twice in cases like
2424 * Intel PT, one for the intel_pt// and dummy events, then
2425 * for the evsels syntheized from the auxtrace info.
2427 * Ses perf_script__process_auxtrace_info.
2429 if (evsel
->priv
!= NULL
)
2432 evsel
->priv
= perf_evsel_script__new(evsel
, script
->session
->data
);
2433 if (evsel
->priv
== NULL
)
2434 goto out_err_fclose
;
2440 perf_script__fclose_per_event_dump(script
);
2444 static int perf_script__setup_per_event_dump(struct perf_script
*script
)
2446 struct evsel
*evsel
;
2447 static struct evsel_script es_stdout
;
2449 if (script
->per_event_dump
)
2450 return perf_script__fopen_per_event_dump(script
);
2452 es_stdout
.fp
= stdout
;
2454 evlist__for_each_entry(script
->session
->evlist
, evsel
)
2455 evsel
->priv
= &es_stdout
;
2460 static void perf_script__exit_per_event_dump_stats(struct perf_script
*script
)
2462 struct evsel
*evsel
;
2464 evlist__for_each_entry(script
->session
->evlist
, evsel
) {
2465 struct evsel_script
*es
= evsel
->priv
;
2467 perf_evsel_script__fprintf(es
, stdout
);
2468 perf_evsel_script__delete(es
);
2473 static int __cmd_script(struct perf_script
*script
)
2477 signal(SIGINT
, sig_handler
);
2479 perf_stat__init_shadow_stats();
2481 /* override event processing functions */
2482 if (script
->show_task_events
) {
2483 script
->tool
.comm
= process_comm_event
;
2484 script
->tool
.fork
= process_fork_event
;
2485 script
->tool
.exit
= process_exit_event
;
2487 if (script
->show_mmap_events
) {
2488 script
->tool
.mmap
= process_mmap_event
;
2489 script
->tool
.mmap2
= process_mmap2_event
;
2491 if (script
->show_switch_events
|| (scripting_ops
&& scripting_ops
->process_switch
))
2492 script
->tool
.context_switch
= process_switch_event
;
2493 if (script
->show_namespace_events
)
2494 script
->tool
.namespaces
= process_namespaces_event
;
2495 if (script
->show_lost_events
)
2496 script
->tool
.lost
= process_lost_event
;
2497 if (script
->show_round_events
) {
2498 script
->tool
.ordered_events
= false;
2499 script
->tool
.finished_round
= process_finished_round_event
;
2501 if (script
->show_bpf_events
) {
2502 script
->tool
.ksymbol
= process_bpf_events
;
2503 script
->tool
.bpf
= process_bpf_events
;
2506 if (perf_script__setup_per_event_dump(script
)) {
2507 pr_err("Couldn't create the per event dump files\n");
2511 ret
= perf_session__process_events(script
->session
);
2513 if (script
->per_event_dump
)
2514 perf_script__exit_per_event_dump_stats(script
);
2517 pr_err("Misordered timestamps: %" PRIu64
"\n", nr_unordered
);
2522 struct script_spec
{
2523 struct list_head node
;
2524 struct scripting_ops
*ops
;
2528 static LIST_HEAD(script_specs
);
2530 static struct script_spec
*script_spec__new(const char *spec
,
2531 struct scripting_ops
*ops
)
2533 struct script_spec
*s
= malloc(sizeof(*s
) + strlen(spec
) + 1);
2536 strcpy(s
->spec
, spec
);
2543 static void script_spec__add(struct script_spec
*s
)
2545 list_add_tail(&s
->node
, &script_specs
);
2548 static struct script_spec
*script_spec__find(const char *spec
)
2550 struct script_spec
*s
;
2552 list_for_each_entry(s
, &script_specs
, node
)
2553 if (strcasecmp(s
->spec
, spec
) == 0)
2558 int script_spec_register(const char *spec
, struct scripting_ops
*ops
)
2560 struct script_spec
*s
;
2562 s
= script_spec__find(spec
);
2566 s
= script_spec__new(spec
, ops
);
2570 script_spec__add(s
);
2575 static struct scripting_ops
*script_spec__lookup(const char *spec
)
2577 struct script_spec
*s
= script_spec__find(spec
);
2584 static void list_available_languages(void)
2586 struct script_spec
*s
;
2588 fprintf(stderr
, "\n");
2589 fprintf(stderr
, "Scripting language extensions (used in "
2590 "perf script -s [spec:]script.[spec]):\n\n");
2592 list_for_each_entry(s
, &script_specs
, node
)
2593 fprintf(stderr
, " %-42s [%s]\n", s
->spec
, s
->ops
->name
);
2595 fprintf(stderr
, "\n");
2598 static int parse_scriptname(const struct option
*opt __maybe_unused
,
2599 const char *str
, int unset __maybe_unused
)
2601 char spec
[PATH_MAX
];
2602 const char *script
, *ext
;
2605 if (strcmp(str
, "lang") == 0) {
2606 list_available_languages();
2610 script
= strchr(str
, ':');
2613 if (len
>= PATH_MAX
) {
2614 fprintf(stderr
, "invalid language specifier");
2617 strncpy(spec
, str
, len
);
2619 scripting_ops
= script_spec__lookup(spec
);
2620 if (!scripting_ops
) {
2621 fprintf(stderr
, "invalid language specifier");
2627 ext
= strrchr(script
, '.');
2629 fprintf(stderr
, "invalid script extension");
2632 scripting_ops
= script_spec__lookup(++ext
);
2633 if (!scripting_ops
) {
2634 fprintf(stderr
, "invalid script extension");
2639 script_name
= strdup(script
);
2644 static int parse_output_fields(const struct option
*opt __maybe_unused
,
2645 const char *arg
, int unset __maybe_unused
)
2647 char *tok
, *strtok_saveptr
= NULL
;
2648 int i
, imax
= ARRAY_SIZE(all_output_options
);
2651 char *str
= strdup(arg
);
2653 enum { DEFAULT
, SET
, ADD
, REMOVE
} change
= DEFAULT
;
2658 /* first word can state for which event type the user is specifying
2659 * the fields. If no type exists, the specified fields apply to all
2660 * event types found in the file minus the invalid fields for a type.
2662 tok
= strchr(str
, ':');
2666 if (!strcmp(str
, "hw"))
2667 type
= PERF_TYPE_HARDWARE
;
2668 else if (!strcmp(str
, "sw"))
2669 type
= PERF_TYPE_SOFTWARE
;
2670 else if (!strcmp(str
, "trace"))
2671 type
= PERF_TYPE_TRACEPOINT
;
2672 else if (!strcmp(str
, "raw"))
2673 type
= PERF_TYPE_RAW
;
2674 else if (!strcmp(str
, "break"))
2675 type
= PERF_TYPE_BREAKPOINT
;
2676 else if (!strcmp(str
, "synth"))
2677 type
= OUTPUT_TYPE_SYNTH
;
2679 fprintf(stderr
, "Invalid event type in field string.\n");
2684 if (output
[type
].user_set
)
2685 pr_warning("Overriding previous field request for %s events.\n",
2688 /* Don't override defaults for +- */
2689 if (strchr(tok
, '+') || strchr(tok
, '-'))
2692 output
[type
].fields
= 0;
2693 output
[type
].user_set
= true;
2694 output
[type
].wildcard_set
= false;
2698 if (strlen(str
) == 0) {
2700 "Cannot set fields to 'none' for all event types.\n");
2705 /* Don't override defaults for +- */
2706 if (strchr(str
, '+') || strchr(str
, '-'))
2709 if (output_set_by_user())
2710 pr_warning("Overriding previous field request for all events.\n");
2712 for (j
= 0; j
< OUTPUT_TYPE_MAX
; ++j
) {
2713 output
[j
].fields
= 0;
2714 output
[j
].user_set
= true;
2715 output
[j
].wildcard_set
= true;
2720 for (tok
= strtok_r(tok
, ",", &strtok_saveptr
); tok
; tok
= strtok_r(NULL
, ",", &strtok_saveptr
)) {
2726 } else if (*tok
== '-') {
2732 if (change
!= SET
&& change
!= DEFAULT
)
2737 for (i
= 0; i
< imax
; ++i
) {
2738 if (strcmp(tok
, all_output_options
[i
].str
) == 0)
2741 if (i
== imax
&& strcmp(tok
, "flags") == 0) {
2742 print_flags
= change
== REMOVE
? false : true;
2746 fprintf(stderr
, "Invalid field requested.\n");
2752 /* add user option to all events types for
2755 for (j
= 0; j
< OUTPUT_TYPE_MAX
; ++j
) {
2756 if (output
[j
].invalid_fields
& all_output_options
[i
].field
) {
2757 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2758 all_output_options
[i
].str
, event_type(j
));
2760 if (change
== REMOVE
) {
2761 output
[j
].fields
&= ~all_output_options
[i
].field
;
2762 output
[j
].user_set_fields
&= ~all_output_options
[i
].field
;
2764 output
[j
].fields
|= all_output_options
[i
].field
;
2765 output
[j
].user_set_fields
|= all_output_options
[i
].field
;
2767 output
[j
].user_set
= true;
2768 output
[j
].wildcard_set
= true;
2772 if (output
[type
].invalid_fields
& all_output_options
[i
].field
) {
2773 fprintf(stderr
, "\'%s\' not valid for %s events.\n",
2774 all_output_options
[i
].str
, event_type(type
));
2779 if (change
== REMOVE
)
2780 output
[type
].fields
&= ~all_output_options
[i
].field
;
2782 output
[type
].fields
|= all_output_options
[i
].field
;
2783 output
[type
].user_set
= true;
2784 output
[type
].wildcard_set
= true;
2789 if (output
[type
].fields
== 0) {
2790 pr_debug("No fields requested for %s type. "
2791 "Events will not be displayed.\n", event_type(type
));
2797 fprintf(stderr
, "Cannot mix +-field with overridden fields\n");
2804 #define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2805 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2806 if ((lang_dirent->d_type == DT_DIR || \
2807 (lang_dirent->d_type == DT_UNKNOWN && \
2808 is_directory(scripts_path, lang_dirent))) && \
2809 (strcmp(lang_dirent->d_name, ".")) && \
2810 (strcmp(lang_dirent->d_name, "..")))
2812 #define for_each_script(lang_path, lang_dir, script_dirent) \
2813 while ((script_dirent = readdir(lang_dir)) != NULL) \
2814 if (script_dirent->d_type != DT_DIR && \
2815 (script_dirent->d_type != DT_UNKNOWN || \
2816 !is_directory(lang_path, script_dirent)))
2819 #define RECORD_SUFFIX "-record"
2820 #define REPORT_SUFFIX "-report"
2822 struct script_desc
{
2823 struct list_head node
;
2829 static LIST_HEAD(script_descs
);
2831 static struct script_desc
*script_desc__new(const char *name
)
2833 struct script_desc
*s
= zalloc(sizeof(*s
));
2835 if (s
!= NULL
&& name
)
2836 s
->name
= strdup(name
);
2841 static void script_desc__delete(struct script_desc
*s
)
2844 zfree(&s
->half_liner
);
2849 static void script_desc__add(struct script_desc
*s
)
2851 list_add_tail(&s
->node
, &script_descs
);
2854 static struct script_desc
*script_desc__find(const char *name
)
2856 struct script_desc
*s
;
2858 list_for_each_entry(s
, &script_descs
, node
)
2859 if (strcasecmp(s
->name
, name
) == 0)
2864 static struct script_desc
*script_desc__findnew(const char *name
)
2866 struct script_desc
*s
= script_desc__find(name
);
2871 s
= script_desc__new(name
);
2875 script_desc__add(s
);
2880 static const char *ends_with(const char *str
, const char *suffix
)
2882 size_t suffix_len
= strlen(suffix
);
2883 const char *p
= str
;
2885 if (strlen(str
) > suffix_len
) {
2886 p
= str
+ strlen(str
) - suffix_len
;
2887 if (!strncmp(p
, suffix
, suffix_len
))
2894 static int read_script_info(struct script_desc
*desc
, const char *filename
)
2896 char line
[BUFSIZ
], *p
;
2899 fp
= fopen(filename
, "r");
2903 while (fgets(line
, sizeof(line
), fp
)) {
2904 p
= skip_spaces(line
);
2910 if (strlen(p
) && *p
== '!')
2914 if (strlen(p
) && p
[strlen(p
) - 1] == '\n')
2915 p
[strlen(p
) - 1] = '\0';
2917 if (!strncmp(p
, "description:", strlen("description:"))) {
2918 p
+= strlen("description:");
2919 desc
->half_liner
= strdup(skip_spaces(p
));
2923 if (!strncmp(p
, "args:", strlen("args:"))) {
2924 p
+= strlen("args:");
2925 desc
->args
= strdup(skip_spaces(p
));
2935 static char *get_script_root(struct dirent
*script_dirent
, const char *suffix
)
2937 char *script_root
, *str
;
2939 script_root
= strdup(script_dirent
->d_name
);
2943 str
= (char *)ends_with(script_root
, suffix
);
2953 static int list_available_scripts(const struct option
*opt __maybe_unused
,
2954 const char *s __maybe_unused
,
2955 int unset __maybe_unused
)
2957 struct dirent
*script_dirent
, *lang_dirent
;
2958 char scripts_path
[MAXPATHLEN
];
2959 DIR *scripts_dir
, *lang_dir
;
2960 char script_path
[MAXPATHLEN
];
2961 char lang_path
[MAXPATHLEN
];
2962 struct script_desc
*desc
;
2963 char first_half
[BUFSIZ
];
2966 snprintf(scripts_path
, MAXPATHLEN
, "%s/scripts", get_argv_exec_path());
2968 scripts_dir
= opendir(scripts_path
);
2971 "open(%s) failed.\n"
2972 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
2977 for_each_lang(scripts_path
, scripts_dir
, lang_dirent
) {
2978 scnprintf(lang_path
, MAXPATHLEN
, "%s/%s/bin", scripts_path
,
2979 lang_dirent
->d_name
);
2980 lang_dir
= opendir(lang_path
);
2984 for_each_script(lang_path
, lang_dir
, script_dirent
) {
2985 script_root
= get_script_root(script_dirent
, REPORT_SUFFIX
);
2987 desc
= script_desc__findnew(script_root
);
2988 scnprintf(script_path
, MAXPATHLEN
, "%s/%s",
2989 lang_path
, script_dirent
->d_name
);
2990 read_script_info(desc
, script_path
);
2996 fprintf(stdout
, "List of available trace scripts:\n");
2997 list_for_each_entry(desc
, &script_descs
, node
) {
2998 sprintf(first_half
, "%s %s", desc
->name
,
2999 desc
->args
? desc
->args
: "");
3000 fprintf(stdout
, " %-36s %s\n", first_half
,
3001 desc
->half_liner
? desc
->half_liner
: "");
3008 * Some scripts specify the required events in their "xxx-record" file,
3009 * this function will check if the events in perf.data match those
3010 * mentioned in the "xxx-record".
3012 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
3013 * which is covered well now. And new parsing code should be added to
3014 * cover the future complexing formats like event groups etc.
3016 static int check_ev_match(char *dir_name
, char *scriptname
,
3017 struct perf_session
*session
)
3019 char filename
[MAXPATHLEN
], evname
[128];
3020 char line
[BUFSIZ
], *p
;
3025 scnprintf(filename
, MAXPATHLEN
, "%s/bin/%s-record", dir_name
, scriptname
);
3027 fp
= fopen(filename
, "r");
3031 while (fgets(line
, sizeof(line
), fp
)) {
3032 p
= skip_spaces(line
);
3037 p
= strstr(p
, "-e");
3043 len
= strcspn(p
, " \t");
3047 snprintf(evname
, len
+ 1, "%s", p
);
3050 evlist__for_each_entry(session
->evlist
, pos
) {
3051 if (!strcmp(perf_evsel__name(pos
), evname
)) {
3069 * Return -1 if none is found, otherwise the actual scripts number.
3071 * Currently the only user of this function is the script browser, which
3072 * will list all statically runnable scripts, select one, execute it and
3073 * show the output in a perf browser.
3075 int find_scripts(char **scripts_array
, char **scripts_path_array
, int num
,
3078 struct dirent
*script_dirent
, *lang_dirent
;
3079 char scripts_path
[MAXPATHLEN
], lang_path
[MAXPATHLEN
];
3080 DIR *scripts_dir
, *lang_dir
;
3081 struct perf_session
*session
;
3082 struct perf_data data
= {
3084 .mode
= PERF_DATA_MODE_READ
,
3089 session
= perf_session__new(&data
, false, NULL
);
3090 if (IS_ERR(session
))
3091 return PTR_ERR(session
);
3093 snprintf(scripts_path
, MAXPATHLEN
, "%s/scripts", get_argv_exec_path());
3095 scripts_dir
= opendir(scripts_path
);
3097 perf_session__delete(session
);
3101 for_each_lang(scripts_path
, scripts_dir
, lang_dirent
) {
3102 scnprintf(lang_path
, MAXPATHLEN
, "%s/%s", scripts_path
,
3103 lang_dirent
->d_name
);
3104 #ifndef HAVE_LIBPERL_SUPPORT
3105 if (strstr(lang_path
, "perl"))
3108 #ifndef HAVE_LIBPYTHON_SUPPORT
3109 if (strstr(lang_path
, "python"))
3113 lang_dir
= opendir(lang_path
);
3117 for_each_script(lang_path
, lang_dir
, script_dirent
) {
3118 /* Skip those real time scripts: xxxtop.p[yl] */
3119 if (strstr(script_dirent
->d_name
, "top."))
3123 snprintf(scripts_path_array
[i
], pathlen
, "%s/%s",
3125 script_dirent
->d_name
);
3126 temp
= strchr(script_dirent
->d_name
, '.');
3127 snprintf(scripts_array
[i
],
3128 (temp
- script_dirent
->d_name
) + 1,
3129 "%s", script_dirent
->d_name
);
3131 if (check_ev_match(lang_path
,
3132 scripts_array
[i
], session
))
3140 closedir(scripts_dir
);
3141 perf_session__delete(session
);
3145 static char *get_script_path(const char *script_root
, const char *suffix
)
3147 struct dirent
*script_dirent
, *lang_dirent
;
3148 char scripts_path
[MAXPATHLEN
];
3149 char script_path
[MAXPATHLEN
];
3150 DIR *scripts_dir
, *lang_dir
;
3151 char lang_path
[MAXPATHLEN
];
3152 char *__script_root
;
3154 snprintf(scripts_path
, MAXPATHLEN
, "%s/scripts", get_argv_exec_path());
3156 scripts_dir
= opendir(scripts_path
);
3160 for_each_lang(scripts_path
, scripts_dir
, lang_dirent
) {
3161 scnprintf(lang_path
, MAXPATHLEN
, "%s/%s/bin", scripts_path
,
3162 lang_dirent
->d_name
);
3163 lang_dir
= opendir(lang_path
);
3167 for_each_script(lang_path
, lang_dir
, script_dirent
) {
3168 __script_root
= get_script_root(script_dirent
, suffix
);
3169 if (__script_root
&& !strcmp(script_root
, __script_root
)) {
3170 free(__script_root
);
3172 closedir(scripts_dir
);
3173 scnprintf(script_path
, MAXPATHLEN
, "%s/%s",
3174 lang_path
, script_dirent
->d_name
);
3175 return strdup(script_path
);
3177 free(__script_root
);
3181 closedir(scripts_dir
);
3186 static bool is_top_script(const char *script_path
)
3188 return ends_with(script_path
, "top") == NULL
? false : true;
3191 static int has_required_arg(char *script_path
)
3193 struct script_desc
*desc
;
3197 desc
= script_desc__new(NULL
);
3199 if (read_script_info(desc
, script_path
))
3205 for (p
= desc
->args
; *p
; p
++)
3209 script_desc__delete(desc
);
3214 static int have_cmd(int argc
, const char **argv
)
3216 char **__argv
= malloc(sizeof(const char *) * argc
);
3219 pr_err("malloc failed\n");
3223 memcpy(__argv
, argv
, sizeof(const char *) * argc
);
3224 argc
= parse_options(argc
, (const char **)__argv
, record_options
,
3225 NULL
, PARSE_OPT_STOP_AT_NON_OPTION
);
3228 system_wide
= (argc
== 0);
3233 static void script__setup_sample_type(struct perf_script
*script
)
3235 struct perf_session
*session
= script
->session
;
3236 u64 sample_type
= perf_evlist__combined_sample_type(session
->evlist
);
3238 if (symbol_conf
.use_callchain
|| symbol_conf
.cumulate_callchain
) {
3239 if ((sample_type
& PERF_SAMPLE_REGS_USER
) &&
3240 (sample_type
& PERF_SAMPLE_STACK_USER
)) {
3241 callchain_param
.record_mode
= CALLCHAIN_DWARF
;
3242 dwarf_callchain_users
= true;
3243 } else if (sample_type
& PERF_SAMPLE_BRANCH_STACK
)
3244 callchain_param
.record_mode
= CALLCHAIN_LBR
;
3246 callchain_param
.record_mode
= CALLCHAIN_FP
;
3250 static int process_stat_round_event(struct perf_session
*session
,
3251 union perf_event
*event
)
3253 struct perf_record_stat_round
*round
= &event
->stat_round
;
3254 struct evsel
*counter
;
3256 evlist__for_each_entry(session
->evlist
, counter
) {
3257 perf_stat_process_counter(&stat_config
, counter
);
3258 process_stat(counter
, round
->time
);
3261 process_stat_interval(round
->time
);
3265 static int process_stat_config_event(struct perf_session
*session __maybe_unused
,
3266 union perf_event
*event
)
3268 perf_event__read_stat_config(&stat_config
, &event
->stat_config
);
3272 static int set_maps(struct perf_script
*script
)
3274 struct evlist
*evlist
= script
->session
->evlist
;
3276 if (!script
->cpus
|| !script
->threads
)
3279 if (WARN_ONCE(script
->allocated
, "stats double allocation\n"))
3282 perf_evlist__set_maps(&evlist
->core
, script
->cpus
, script
->threads
);
3284 if (perf_evlist__alloc_stats(evlist
, true))
3287 script
->allocated
= true;
3292 int process_thread_map_event(struct perf_session
*session
,
3293 union perf_event
*event
)
3295 struct perf_tool
*tool
= session
->tool
;
3296 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
3298 if (script
->threads
) {
3299 pr_warning("Extra thread map event, ignoring.\n");
3303 script
->threads
= thread_map__new_event(&event
->thread_map
);
3304 if (!script
->threads
)
3307 return set_maps(script
);
3311 int process_cpu_map_event(struct perf_session
*session
,
3312 union perf_event
*event
)
3314 struct perf_tool
*tool
= session
->tool
;
3315 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
3318 pr_warning("Extra cpu map event, ignoring.\n");
3322 script
->cpus
= cpu_map__new_data(&event
->cpu_map
.data
);
3326 return set_maps(script
);
3329 static int process_feature_event(struct perf_session
*session
,
3330 union perf_event
*event
)
3332 if (event
->feat
.feat_id
< HEADER_LAST_FEATURE
)
3333 return perf_event__process_feature(session
, event
);
3337 #ifdef HAVE_AUXTRACE_SUPPORT
3338 static int perf_script__process_auxtrace_info(struct perf_session
*session
,
3339 union perf_event
*event
)
3341 struct perf_tool
*tool
= session
->tool
;
3343 int ret
= perf_event__process_auxtrace_info(session
, event
);
3346 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
3348 ret
= perf_script__setup_per_event_dump(script
);
3354 #define perf_script__process_auxtrace_info 0
3357 static int parse_insn_trace(const struct option
*opt __maybe_unused
,
3358 const char *str __maybe_unused
,
3359 int unset __maybe_unused
)
3361 parse_output_fields(NULL
, "+insn,-event,-period", 0);
3362 itrace_parse_synth_opts(opt
, "i0ns", 0);
3363 symbol_conf
.nanosecs
= true;
3367 static int parse_xed(const struct option
*opt __maybe_unused
,
3368 const char *str __maybe_unused
,
3369 int unset __maybe_unused
)
3371 force_pager("xed -F insn: -A -64 | less");
3375 static int parse_call_trace(const struct option
*opt __maybe_unused
,
3376 const char *str __maybe_unused
,
3377 int unset __maybe_unused
)
3379 parse_output_fields(NULL
, "-ip,-addr,-event,-period,+callindent", 0);
3380 itrace_parse_synth_opts(opt
, "cewp", 0);
3381 symbol_conf
.nanosecs
= true;
3382 symbol_conf
.pad_output_len_dso
= 50;
3386 static int parse_callret_trace(const struct option
*opt __maybe_unused
,
3387 const char *str __maybe_unused
,
3388 int unset __maybe_unused
)
3390 parse_output_fields(NULL
, "-ip,-addr,-event,-period,+callindent,+flags", 0);
3391 itrace_parse_synth_opts(opt
, "crewp", 0);
3392 symbol_conf
.nanosecs
= true;
3396 int cmd_script(int argc
, const char **argv
)
3398 bool show_full_info
= false;
3399 bool header
= false;
3400 bool header_only
= false;
3401 bool script_started
= false;
3402 char *rec_script_path
= NULL
;
3403 char *rep_script_path
= NULL
;
3404 struct perf_session
*session
;
3405 struct itrace_synth_opts itrace_synth_opts
= {
3407 .default_no_sample
= true,
3410 char *script_path
= NULL
;
3411 const char **__argv
;
3413 struct perf_script script
= {
3415 .sample
= process_sample_event
,
3416 .mmap
= perf_event__process_mmap
,
3417 .mmap2
= perf_event__process_mmap2
,
3418 .comm
= perf_event__process_comm
,
3419 .namespaces
= perf_event__process_namespaces
,
3420 .exit
= perf_event__process_exit
,
3421 .fork
= perf_event__process_fork
,
3422 .attr
= process_attr
,
3423 .event_update
= perf_event__process_event_update
,
3424 .tracing_data
= perf_event__process_tracing_data
,
3425 .feature
= process_feature_event
,
3426 .build_id
= perf_event__process_build_id
,
3427 .id_index
= perf_event__process_id_index
,
3428 .auxtrace_info
= perf_script__process_auxtrace_info
,
3429 .auxtrace
= perf_event__process_auxtrace
,
3430 .auxtrace_error
= perf_event__process_auxtrace_error
,
3431 .stat
= perf_event__process_stat_event
,
3432 .stat_round
= process_stat_round_event
,
3433 .stat_config
= process_stat_config_event
,
3434 .thread_map
= process_thread_map_event
,
3435 .cpu_map
= process_cpu_map_event
,
3436 .ordered_events
= true,
3437 .ordering_requires_timestamps
= true,
3440 struct perf_data data
= {
3441 .mode
= PERF_DATA_MODE_READ
,
3443 const struct option options
[] = {
3444 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace
,
3445 "dump raw trace in ASCII"),
3446 OPT_INCR('v', "verbose", &verbose
,
3447 "be more verbose (show symbol address, etc)"),
3448 OPT_BOOLEAN('L', "Latency", &latency_format
,
3449 "show latency attributes (irqs/preemption disabled, etc)"),
3450 OPT_CALLBACK_NOOPT('l', "list", NULL
, NULL
, "list available scripts",
3451 list_available_scripts
),
3452 OPT_CALLBACK('s', "script", NULL
, "name",
3453 "script file name (lang:script name, script name, or *)",
3455 OPT_STRING('g', "gen-script", &generate_script_lang
, "lang",
3456 "generate perf-script.xx script in specified language"),
3457 OPT_STRING('i', "input", &input_name
, "file", "input file name"),
3458 OPT_BOOLEAN('d', "debug-mode", &debug_mode
,
3459 "do various checks like samples ordering and lost events"),
3460 OPT_BOOLEAN(0, "header", &header
, "Show data header."),
3461 OPT_BOOLEAN(0, "header-only", &header_only
, "Show only data header."),
3462 OPT_STRING('k', "vmlinux", &symbol_conf
.vmlinux_name
,
3463 "file", "vmlinux pathname"),
3464 OPT_STRING(0, "kallsyms", &symbol_conf
.kallsyms_name
,
3465 "file", "kallsyms pathname"),
3466 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain
,
3467 "When printing symbols do not display call chain"),
3468 OPT_CALLBACK(0, "symfs", NULL
, "directory",
3469 "Look for files with symbols relative to this directory",
3470 symbol__config_symfs
),
3471 OPT_CALLBACK('F', "fields", NULL
, "str",
3472 "comma separated output fields prepend with 'type:'. "
3473 "+field to add and -field to remove."
3474 "Valid types: hw,sw,trace,raw,synth. "
3475 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
3476 "addr,symoff,srcline,period,iregs,uregs,brstack,"
3477 "brstacksym,flags,bpf-output,brstackinsn,brstackoff,"
3478 "callindent,insn,insnlen,synth,phys_addr,metric,misc,ipc",
3479 parse_output_fields
),
3480 OPT_BOOLEAN('a', "all-cpus", &system_wide
,
3481 "system-wide collection from all CPUs"),
3482 OPT_STRING('S', "symbols", &symbol_conf
.sym_list_str
, "symbol[,symbol...]",
3483 "only consider these symbols"),
3484 OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts
, NULL
, NULL
,
3485 "Decode instructions from itrace", parse_insn_trace
),
3486 OPT_CALLBACK_OPTARG(0, "xed", NULL
, NULL
, NULL
,
3487 "Run xed disassembler on output", parse_xed
),
3488 OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts
, NULL
, NULL
,
3489 "Decode calls from from itrace", parse_call_trace
),
3490 OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts
, NULL
, NULL
,
3491 "Decode calls and returns from itrace", parse_callret_trace
),
3492 OPT_STRING(0, "graph-function", &symbol_conf
.graph_function
, "symbol[,symbol...]",
3493 "Only print symbols and callees with --call-trace/--call-ret-trace"),
3494 OPT_STRING(0, "stop-bt", &symbol_conf
.bt_stop_list_str
, "symbol[,symbol...]",
3495 "Stop display of callgraph at these symbols"),
3496 OPT_STRING('C', "cpu", &cpu_list
, "cpu", "list of cpus to profile"),
3497 OPT_STRING('c', "comms", &symbol_conf
.comm_list_str
, "comm[,comm...]",
3498 "only display events for these comms"),
3499 OPT_STRING(0, "pid", &symbol_conf
.pid_list_str
, "pid[,pid...]",
3500 "only consider symbols in these pids"),
3501 OPT_STRING(0, "tid", &symbol_conf
.tid_list_str
, "tid[,tid...]",
3502 "only consider symbols in these tids"),
3503 OPT_UINTEGER(0, "max-stack", &scripting_max_stack
,
3504 "Set the maximum stack depth when parsing the callchain, "
3505 "anything beyond the specified depth will be ignored. "
3506 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH
)),
3507 OPT_BOOLEAN(0, "reltime", &reltime
, "Show time stamps relative to start"),
3508 OPT_BOOLEAN('I', "show-info", &show_full_info
,
3509 "display extended information from perf.data file"),
3510 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf
.show_kernel_path
,
3511 "Show the path of [kernel.kallsyms]"),
3512 OPT_BOOLEAN('\0', "show-task-events", &script
.show_task_events
,
3513 "Show the fork/comm/exit events"),
3514 OPT_BOOLEAN('\0', "show-mmap-events", &script
.show_mmap_events
,
3515 "Show the mmap events"),
3516 OPT_BOOLEAN('\0', "show-switch-events", &script
.show_switch_events
,
3517 "Show context switch events (if recorded)"),
3518 OPT_BOOLEAN('\0', "show-namespace-events", &script
.show_namespace_events
,
3519 "Show namespace events (if recorded)"),
3520 OPT_BOOLEAN('\0', "show-lost-events", &script
.show_lost_events
,
3521 "Show lost events (if recorded)"),
3522 OPT_BOOLEAN('\0', "show-round-events", &script
.show_round_events
,
3523 "Show round events (if recorded)"),
3524 OPT_BOOLEAN('\0', "show-bpf-events", &script
.show_bpf_events
,
3525 "Show bpf related events (if recorded)"),
3526 OPT_BOOLEAN('\0', "per-event-dump", &script
.per_event_dump
,
3527 "Dump trace output to files named by the monitored events"),
3528 OPT_BOOLEAN('f', "force", &symbol_conf
.force
, "don't complain, do it"),
3529 OPT_INTEGER(0, "max-blocks", &max_blocks
,
3530 "Maximum number of code blocks to dump with brstackinsn"),
3531 OPT_BOOLEAN(0, "ns", &symbol_conf
.nanosecs
,
3532 "Use 9 decimal places when displaying time"),
3533 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts
, NULL
, "opts",
3534 "Instruction Tracing options\n" ITRACE_HELP
,
3535 itrace_parse_synth_opts
),
3536 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename
,
3537 "Show full source file name path for source lines"),
3538 OPT_BOOLEAN(0, "demangle", &symbol_conf
.demangle
,
3539 "Enable symbol demangling"),
3540 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf
.demangle_kernel
,
3541 "Enable kernel symbol demangling"),
3542 OPT_STRING(0, "time", &script
.time_str
, "str",
3543 "Time span of interest (start,stop)"),
3544 OPT_BOOLEAN(0, "inline", &symbol_conf
.inline_name
,
3545 "Show inline function"),
3546 OPT_STRING(0, "guestmount", &symbol_conf
.guestmount
, "directory",
3547 "guest mount directory under which every guest os"
3548 " instance has a subdir"),
3549 OPT_STRING(0, "guestvmlinux", &symbol_conf
.default_guest_vmlinux_name
,
3550 "file", "file saving guest os vmlinux"),
3551 OPT_STRING(0, "guestkallsyms", &symbol_conf
.default_guest_kallsyms
,
3552 "file", "file saving guest os /proc/kallsyms"),
3553 OPT_STRING(0, "guestmodules", &symbol_conf
.default_guest_modules
,
3554 "file", "file saving guest os /proc/modules"),
3555 OPTS_EVSWITCH(&script
.evswitch
),
3558 const char * const script_subcommands
[] = { "record", "report", NULL
};
3559 const char *script_usage
[] = {
3560 "perf script [<options>]",
3561 "perf script [<options>] record <script> [<record-options>] <command>",
3562 "perf script [<options>] report <script> [script-args]",
3563 "perf script [<options>] <script> [<record-options>] <command>",
3564 "perf script [<options>] <top-script> [script-args]",
3568 perf_set_singlethreaded();
3572 argc
= parse_options_subcommand(argc
, argv
, options
, script_subcommands
, script_usage
,
3573 PARSE_OPT_STOP_AT_NON_OPTION
);
3575 if (symbol_conf
.guestmount
||
3576 symbol_conf
.default_guest_vmlinux_name
||
3577 symbol_conf
.default_guest_kallsyms
||
3578 symbol_conf
.default_guest_modules
) {
3580 * Enable guest sample processing.
3585 data
.path
= input_name
;
3586 data
.force
= symbol_conf
.force
;
3588 if (argc
> 1 && !strncmp(argv
[0], "rec", strlen("rec"))) {
3589 rec_script_path
= get_script_path(argv
[1], RECORD_SUFFIX
);
3590 if (!rec_script_path
)
3591 return cmd_record(argc
, argv
);
3594 if (argc
> 1 && !strncmp(argv
[0], "rep", strlen("rep"))) {
3595 rep_script_path
= get_script_path(argv
[1], REPORT_SUFFIX
);
3596 if (!rep_script_path
) {
3598 "Please specify a valid report script"
3599 "(see 'perf script -l' for listing)\n");
3604 if (script
.time_str
&& reltime
) {
3605 fprintf(stderr
, "Don't combine --reltime with --time\n");
3609 if (itrace_synth_opts
.callchain
&&
3610 itrace_synth_opts
.callchain_sz
> scripting_max_stack
)
3611 scripting_max_stack
= itrace_synth_opts
.callchain_sz
;
3613 /* make sure PERF_EXEC_PATH is set for scripts */
3614 set_argv_exec_path(get_argv_exec_path());
3616 if (argc
&& !script_name
&& !rec_script_path
&& !rep_script_path
) {
3621 rec_script_path
= get_script_path(argv
[0], RECORD_SUFFIX
);
3622 rep_script_path
= get_script_path(argv
[0], REPORT_SUFFIX
);
3624 if (!rec_script_path
&& !rep_script_path
) {
3625 usage_with_options_msg(script_usage
, options
,
3626 "Couldn't find script `%s'\n\n See perf"
3627 " script -l for available scripts.\n", argv
[0]);
3630 if (is_top_script(argv
[0])) {
3631 rep_args
= argc
- 1;
3635 rep_args
= has_required_arg(rep_script_path
);
3636 rec_args
= (argc
- 1) - rep_args
;
3638 usage_with_options_msg(script_usage
, options
,
3639 "`%s' script requires options."
3640 "\n\n See perf script -l for available "
3641 "scripts and options.\n", argv
[0]);
3645 if (pipe(live_pipe
) < 0) {
3646 perror("failed to create pipe");
3652 perror("failed to fork");
3659 dup2(live_pipe
[1], 1);
3660 close(live_pipe
[0]);
3662 if (is_top_script(argv
[0])) {
3664 } else if (!system_wide
) {
3665 if (have_cmd(argc
- rep_args
, &argv
[rep_args
]) != 0) {
3671 __argv
= malloc((argc
+ 6) * sizeof(const char *));
3673 pr_err("malloc failed\n");
3678 __argv
[j
++] = "/bin/sh";
3679 __argv
[j
++] = rec_script_path
;
3685 for (i
= rep_args
+ 1; i
< argc
; i
++)
3686 __argv
[j
++] = argv
[i
];
3689 execvp("/bin/sh", (char **)__argv
);
3694 dup2(live_pipe
[0], 0);
3695 close(live_pipe
[1]);
3697 __argv
= malloc((argc
+ 4) * sizeof(const char *));
3699 pr_err("malloc failed\n");
3705 __argv
[j
++] = "/bin/sh";
3706 __argv
[j
++] = rep_script_path
;
3707 for (i
= 1; i
< rep_args
+ 1; i
++)
3708 __argv
[j
++] = argv
[i
];
3713 execvp("/bin/sh", (char **)__argv
);
3718 if (rec_script_path
)
3719 script_path
= rec_script_path
;
3720 if (rep_script_path
)
3721 script_path
= rep_script_path
;
3726 if (!rec_script_path
)
3727 system_wide
= false;
3728 else if (!system_wide
) {
3729 if (have_cmd(argc
- 1, &argv
[1]) != 0) {
3735 __argv
= malloc((argc
+ 2) * sizeof(const char *));
3737 pr_err("malloc failed\n");
3742 __argv
[j
++] = "/bin/sh";
3743 __argv
[j
++] = script_path
;
3746 for (i
= 2; i
< argc
; i
++)
3747 __argv
[j
++] = argv
[i
];
3750 execvp("/bin/sh", (char **)__argv
);
3760 session
= perf_session__new(&data
, false, &script
.tool
);
3761 if (IS_ERR(session
))
3762 return PTR_ERR(session
);
3764 if (header
|| header_only
) {
3765 script
.tool
.show_feat_hdr
= SHOW_FEAT_HEADER
;
3766 perf_session__fprintf_info(session
, stdout
, show_full_info
);
3771 script
.tool
.show_feat_hdr
= SHOW_FEAT_HEADER_FULL_INFO
;
3773 if (symbol__init(&session
->header
.env
) < 0)
3777 if (data
.is_pipe
|| /* assume pipe_mode indicates native_arch */
3778 !strcmp(uts
.machine
, session
->header
.env
.arch
) ||
3779 (!strcmp(uts
.machine
, "x86_64") &&
3780 !strcmp(session
->header
.env
.arch
, "i386")))
3783 script
.session
= session
;
3784 script__setup_sample_type(&script
);
3786 if ((output
[PERF_TYPE_HARDWARE
].fields
& PERF_OUTPUT_CALLINDENT
) ||
3787 symbol_conf
.graph_function
)
3788 itrace_synth_opts
.thread_stack
= true;
3790 session
->itrace_synth_opts
= &itrace_synth_opts
;
3793 err
= perf_session__cpu_bitmap(session
, cpu_list
, cpu_bitmap
);
3796 itrace_synth_opts
.cpu_bitmap
= cpu_bitmap
;
3800 symbol_conf
.use_callchain
= true;
3802 symbol_conf
.use_callchain
= false;
3804 if (session
->tevent
.pevent
&&
3805 tep_set_function_resolver(session
->tevent
.pevent
,
3806 machine__resolve_kernel_addr
,
3807 &session
->machines
.host
) < 0) {
3808 pr_err("%s: failed to set libtraceevent function resolver\n", __func__
);
3813 if (generate_script_lang
) {
3814 struct stat perf_stat
;
3817 if (output_set_by_user()) {
3819 "custom fields not supported for generated scripts");
3824 input
= open(data
.path
, O_RDONLY
); /* input_name */
3827 perror("failed to open file");
3831 err
= fstat(input
, &perf_stat
);
3833 perror("failed to stat file");
3837 if (!perf_stat
.st_size
) {
3838 fprintf(stderr
, "zero-sized file, nothing to do!\n");
3842 scripting_ops
= script_spec__lookup(generate_script_lang
);
3843 if (!scripting_ops
) {
3844 fprintf(stderr
, "invalid language specifier");
3849 err
= scripting_ops
->generate_script(session
->tevent
.pevent
,
3855 err
= scripting_ops
->start_script(script_name
, argc
, argv
);
3858 pr_debug("perf script started with script %s\n\n", script_name
);
3859 script_started
= true;
3863 err
= perf_session__check_output_opt(session
);
3867 if (script
.time_str
) {
3868 err
= perf_time__parse_for_ranges(script
.time_str
, session
,
3869 &script
.ptime_range
,
3875 itrace_synth_opts__set_time_range(&itrace_synth_opts
,
3880 err
= evswitch__init(&script
.evswitch
, session
->evlist
, stderr
);
3884 err
= __cmd_script(&script
);
3889 if (script
.ptime_range
) {
3890 itrace_synth_opts__clear_time_range(&itrace_synth_opts
);
3891 zfree(&script
.ptime_range
);
3894 perf_evlist__free_stats(session
->evlist
);
3895 perf_session__delete(session
);
3898 cleanup_scripting();