4 #include "util/cache.h"
5 #include "util/debug.h"
6 #include "util/exec_cmd.h"
7 #include "util/header.h"
8 #include "util/parse-options.h"
9 #include "util/session.h"
10 #include "util/tool.h"
11 #include "util/symbol.h"
12 #include "util/thread.h"
13 #include "util/trace-event.h"
14 #include "util/util.h"
15 #include "util/evlist.h"
16 #include "util/evsel.h"
17 #include "util/sort.h"
18 #include "util/data.h"
19 #include <linux/bitmap.h>
21 static char const *script_name
;
22 static char const *generate_script_lang
;
23 static bool debug_mode
;
24 static u64 last_timestamp
;
25 static u64 nr_unordered
;
26 extern const struct option record_options
[];
27 static bool no_callchain
;
28 static bool latency_format
;
29 static bool system_wide
;
30 static const char *cpu_list
;
31 static DECLARE_BITMAP(cpu_bitmap
, MAX_NR_CPUS
);
33 enum perf_output_field
{
34 PERF_OUTPUT_COMM
= 1U << 0,
35 PERF_OUTPUT_TID
= 1U << 1,
36 PERF_OUTPUT_PID
= 1U << 2,
37 PERF_OUTPUT_TIME
= 1U << 3,
38 PERF_OUTPUT_CPU
= 1U << 4,
39 PERF_OUTPUT_EVNAME
= 1U << 5,
40 PERF_OUTPUT_TRACE
= 1U << 6,
41 PERF_OUTPUT_IP
= 1U << 7,
42 PERF_OUTPUT_SYM
= 1U << 8,
43 PERF_OUTPUT_DSO
= 1U << 9,
44 PERF_OUTPUT_ADDR
= 1U << 10,
45 PERF_OUTPUT_SYMOFFSET
= 1U << 11,
46 PERF_OUTPUT_SRCLINE
= 1U << 12,
49 struct output_option
{
51 enum perf_output_field field
;
52 } all_output_options
[] = {
53 {.str
= "comm", .field
= PERF_OUTPUT_COMM
},
54 {.str
= "tid", .field
= PERF_OUTPUT_TID
},
55 {.str
= "pid", .field
= PERF_OUTPUT_PID
},
56 {.str
= "time", .field
= PERF_OUTPUT_TIME
},
57 {.str
= "cpu", .field
= PERF_OUTPUT_CPU
},
58 {.str
= "event", .field
= PERF_OUTPUT_EVNAME
},
59 {.str
= "trace", .field
= PERF_OUTPUT_TRACE
},
60 {.str
= "ip", .field
= PERF_OUTPUT_IP
},
61 {.str
= "sym", .field
= PERF_OUTPUT_SYM
},
62 {.str
= "dso", .field
= PERF_OUTPUT_DSO
},
63 {.str
= "addr", .field
= PERF_OUTPUT_ADDR
},
64 {.str
= "symoff", .field
= PERF_OUTPUT_SYMOFFSET
},
65 {.str
= "srcline", .field
= PERF_OUTPUT_SRCLINE
},
68 /* default set to maintain compatibility with current format */
72 unsigned int print_ip_opts
;
75 } output
[PERF_TYPE_MAX
] = {
77 [PERF_TYPE_HARDWARE
] = {
80 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
81 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
82 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
83 PERF_OUTPUT_SYM
| PERF_OUTPUT_DSO
,
85 .invalid_fields
= PERF_OUTPUT_TRACE
,
88 [PERF_TYPE_SOFTWARE
] = {
91 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
92 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
93 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
94 PERF_OUTPUT_SYM
| PERF_OUTPUT_DSO
,
96 .invalid_fields
= PERF_OUTPUT_TRACE
,
99 [PERF_TYPE_TRACEPOINT
] = {
102 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
103 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
104 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_TRACE
,
110 .fields
= PERF_OUTPUT_COMM
| PERF_OUTPUT_TID
|
111 PERF_OUTPUT_CPU
| PERF_OUTPUT_TIME
|
112 PERF_OUTPUT_EVNAME
| PERF_OUTPUT_IP
|
113 PERF_OUTPUT_SYM
| PERF_OUTPUT_DSO
,
115 .invalid_fields
= PERF_OUTPUT_TRACE
,
119 static bool output_set_by_user(void)
122 for (j
= 0; j
< PERF_TYPE_MAX
; ++j
) {
123 if (output
[j
].user_set
)
129 static const char *output_field2str(enum perf_output_field field
)
131 int i
, imax
= ARRAY_SIZE(all_output_options
);
132 const char *str
= "";
134 for (i
= 0; i
< imax
; ++i
) {
135 if (all_output_options
[i
].field
== field
) {
136 str
= all_output_options
[i
].str
;
143 #define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
145 static int perf_evsel__check_stype(struct perf_evsel
*evsel
,
146 u64 sample_type
, const char *sample_msg
,
147 enum perf_output_field field
)
149 struct perf_event_attr
*attr
= &evsel
->attr
;
150 int type
= attr
->type
;
153 if (attr
->sample_type
& sample_type
)
156 if (output
[type
].user_set
) {
157 evname
= perf_evsel__name(evsel
);
158 pr_err("Samples for '%s' event do not have %s attribute set. "
159 "Cannot print '%s' field.\n",
160 evname
, sample_msg
, output_field2str(field
));
164 /* user did not ask for it explicitly so remove from the default list */
165 output
[type
].fields
&= ~field
;
166 evname
= perf_evsel__name(evsel
);
167 pr_debug("Samples for '%s' event do not have %s attribute set. "
168 "Skipping '%s' field.\n",
169 evname
, sample_msg
, output_field2str(field
));
174 static int perf_evsel__check_attr(struct perf_evsel
*evsel
,
175 struct perf_session
*session
)
177 struct perf_event_attr
*attr
= &evsel
->attr
;
179 if (PRINT_FIELD(TRACE
) &&
180 !perf_session__has_traces(session
, "record -R"))
183 if (PRINT_FIELD(IP
)) {
184 if (perf_evsel__check_stype(evsel
, PERF_SAMPLE_IP
, "IP",
189 !(attr
->sample_type
& PERF_SAMPLE_CALLCHAIN
))
190 symbol_conf
.use_callchain
= false;
193 if (PRINT_FIELD(ADDR
) &&
194 perf_evsel__check_stype(evsel
, PERF_SAMPLE_ADDR
, "ADDR",
198 if (PRINT_FIELD(SYM
) && !PRINT_FIELD(IP
) && !PRINT_FIELD(ADDR
)) {
199 pr_err("Display of symbols requested but neither sample IP nor "
200 "sample address\nis selected. Hence, no addresses to convert "
204 if (PRINT_FIELD(SYMOFFSET
) && !PRINT_FIELD(SYM
)) {
205 pr_err("Display of offsets requested but symbol is not"
209 if (PRINT_FIELD(DSO
) && !PRINT_FIELD(IP
) && !PRINT_FIELD(ADDR
)) {
210 pr_err("Display of DSO requested but neither sample IP nor "
211 "sample address\nis selected. Hence, no addresses to convert "
215 if (PRINT_FIELD(SRCLINE
) && !PRINT_FIELD(IP
)) {
216 pr_err("Display of source line number requested but sample IP is not\n"
217 "selected. Hence, no address to lookup the source line number.\n");
221 if ((PRINT_FIELD(PID
) || PRINT_FIELD(TID
)) &&
222 perf_evsel__check_stype(evsel
, PERF_SAMPLE_TID
, "TID",
223 PERF_OUTPUT_TID
|PERF_OUTPUT_PID
))
226 if (PRINT_FIELD(TIME
) &&
227 perf_evsel__check_stype(evsel
, PERF_SAMPLE_TIME
, "TIME",
231 if (PRINT_FIELD(CPU
) &&
232 perf_evsel__check_stype(evsel
, PERF_SAMPLE_CPU
, "CPU",
239 static void set_print_ip_opts(struct perf_event_attr
*attr
)
241 unsigned int type
= attr
->type
;
243 output
[type
].print_ip_opts
= 0;
245 output
[type
].print_ip_opts
|= PRINT_IP_OPT_IP
;
247 if (PRINT_FIELD(SYM
))
248 output
[type
].print_ip_opts
|= PRINT_IP_OPT_SYM
;
250 if (PRINT_FIELD(DSO
))
251 output
[type
].print_ip_opts
|= PRINT_IP_OPT_DSO
;
253 if (PRINT_FIELD(SYMOFFSET
))
254 output
[type
].print_ip_opts
|= PRINT_IP_OPT_SYMOFFSET
;
256 if (PRINT_FIELD(SRCLINE
))
257 output
[type
].print_ip_opts
|= PRINT_IP_OPT_SRCLINE
;
261 * verify all user requested events exist and the samples
262 * have the expected data
264 static int perf_session__check_output_opt(struct perf_session
*session
)
267 struct perf_evsel
*evsel
;
269 for (j
= 0; j
< PERF_TYPE_MAX
; ++j
) {
270 evsel
= perf_session__find_first_evtype(session
, j
);
273 * even if fields is set to 0 (ie., show nothing) event must
274 * exist if user explicitly includes it on the command line
276 if (!evsel
&& output
[j
].user_set
&& !output
[j
].wildcard_set
) {
277 pr_err("%s events do not exist. "
278 "Remove corresponding -f option to proceed.\n",
283 if (evsel
&& output
[j
].fields
&&
284 perf_evsel__check_attr(evsel
, session
))
290 set_print_ip_opts(&evsel
->attr
);
294 * set default for tracepoints to print symbols only
295 * if callchains are present
297 if (symbol_conf
.use_callchain
&&
298 !output
[PERF_TYPE_TRACEPOINT
].user_set
) {
299 struct perf_event_attr
*attr
;
301 j
= PERF_TYPE_TRACEPOINT
;
302 evsel
= perf_session__find_first_evtype(session
, j
);
308 if (attr
->sample_type
& PERF_SAMPLE_CALLCHAIN
) {
309 output
[j
].fields
|= PERF_OUTPUT_IP
;
310 output
[j
].fields
|= PERF_OUTPUT_SYM
;
311 output
[j
].fields
|= PERF_OUTPUT_DSO
;
312 set_print_ip_opts(attr
);
320 static void print_sample_start(struct perf_sample
*sample
,
321 struct thread
*thread
,
322 struct perf_evsel
*evsel
)
324 struct perf_event_attr
*attr
= &evsel
->attr
;
327 unsigned long long nsecs
;
329 if (PRINT_FIELD(COMM
)) {
331 printf("%8.8s ", thread__comm_str(thread
));
332 else if (PRINT_FIELD(IP
) && symbol_conf
.use_callchain
)
333 printf("%s ", thread__comm_str(thread
));
335 printf("%16s ", thread__comm_str(thread
));
338 if (PRINT_FIELD(PID
) && PRINT_FIELD(TID
))
339 printf("%5d/%-5d ", sample
->pid
, sample
->tid
);
340 else if (PRINT_FIELD(PID
))
341 printf("%5d ", sample
->pid
);
342 else if (PRINT_FIELD(TID
))
343 printf("%5d ", sample
->tid
);
345 if (PRINT_FIELD(CPU
)) {
347 printf("%3d ", sample
->cpu
);
349 printf("[%03d] ", sample
->cpu
);
352 if (PRINT_FIELD(TIME
)) {
353 nsecs
= sample
->time
;
354 secs
= nsecs
/ NSECS_PER_SEC
;
355 nsecs
-= secs
* NSECS_PER_SEC
;
356 usecs
= nsecs
/ NSECS_PER_USEC
;
357 printf("%5lu.%06lu: ", secs
, usecs
);
361 static void print_sample_addr(union perf_event
*event
,
362 struct perf_sample
*sample
,
363 struct machine
*machine
,
364 struct thread
*thread
,
365 struct perf_event_attr
*attr
)
367 struct addr_location al
;
369 printf("%16" PRIx64
, sample
->addr
);
371 if (!sample_addr_correlates_sym(attr
))
374 perf_event__preprocess_sample_addr(event
, sample
, machine
, thread
, &al
);
376 if (PRINT_FIELD(SYM
)) {
378 if (PRINT_FIELD(SYMOFFSET
))
379 symbol__fprintf_symname_offs(al
.sym
, &al
, stdout
);
381 symbol__fprintf_symname(al
.sym
, stdout
);
384 if (PRINT_FIELD(DSO
)) {
386 map__fprintf_dsoname(al
.map
, stdout
);
391 static void print_sample_bts(union perf_event
*event
,
392 struct perf_sample
*sample
,
393 struct perf_evsel
*evsel
,
394 struct thread
*thread
,
395 struct addr_location
*al
)
397 struct perf_event_attr
*attr
= &evsel
->attr
;
398 bool print_srcline_last
= false;
400 /* print branch_from information */
401 if (PRINT_FIELD(IP
)) {
402 unsigned int print_opts
= output
[attr
->type
].print_ip_opts
;
404 if (symbol_conf
.use_callchain
&& sample
->callchain
) {
408 if (print_opts
& PRINT_IP_OPT_SRCLINE
) {
409 print_srcline_last
= true;
410 print_opts
&= ~PRINT_IP_OPT_SRCLINE
;
413 perf_evsel__print_ip(evsel
, sample
, al
, print_opts
,
414 PERF_MAX_STACK_DEPTH
);
417 /* print branch_to information */
418 if (PRINT_FIELD(ADDR
) ||
419 ((evsel
->attr
.sample_type
& PERF_SAMPLE_ADDR
) &&
420 !output
[attr
->type
].user_set
)) {
422 print_sample_addr(event
, sample
, al
->machine
, thread
, attr
);
425 if (print_srcline_last
)
426 map__fprintf_srcline(al
->map
, al
->addr
, "\n ", stdout
);
431 static void process_event(union perf_event
*event
, struct perf_sample
*sample
,
432 struct perf_evsel
*evsel
, struct thread
*thread
,
433 struct addr_location
*al
)
435 struct perf_event_attr
*attr
= &evsel
->attr
;
437 if (output
[attr
->type
].fields
== 0)
440 print_sample_start(sample
, thread
, evsel
);
442 if (PRINT_FIELD(EVNAME
)) {
443 const char *evname
= perf_evsel__name(evsel
);
444 printf("%s: ", evname
? evname
: "[unknown]");
447 if (is_bts_event(attr
)) {
448 print_sample_bts(event
, sample
, evsel
, thread
, al
);
452 if (PRINT_FIELD(TRACE
))
453 event_format__print(evsel
->tp_format
, sample
->cpu
,
454 sample
->raw_data
, sample
->raw_size
);
455 if (PRINT_FIELD(ADDR
))
456 print_sample_addr(event
, sample
, al
->machine
, thread
, attr
);
458 if (PRINT_FIELD(IP
)) {
459 if (!symbol_conf
.use_callchain
)
464 perf_evsel__print_ip(evsel
, sample
, al
,
465 output
[attr
->type
].print_ip_opts
,
466 PERF_MAX_STACK_DEPTH
);
472 static int default_start_script(const char *script __maybe_unused
,
473 int argc __maybe_unused
,
474 const char **argv __maybe_unused
)
479 static int default_stop_script(void)
484 static int default_generate_script(struct pevent
*pevent __maybe_unused
,
485 const char *outfile __maybe_unused
)
490 static struct scripting_ops default_scripting_ops
= {
491 .start_script
= default_start_script
,
492 .stop_script
= default_stop_script
,
493 .process_event
= process_event
,
494 .generate_script
= default_generate_script
,
497 static struct scripting_ops
*scripting_ops
;
499 static void setup_scripting(void)
501 setup_perl_scripting();
502 setup_python_scripting();
504 scripting_ops
= &default_scripting_ops
;
507 static int cleanup_scripting(void)
509 pr_debug("\nperf script stopped\n");
511 return scripting_ops
->stop_script();
514 static int process_sample_event(struct perf_tool
*tool __maybe_unused
,
515 union perf_event
*event
,
516 struct perf_sample
*sample
,
517 struct perf_evsel
*evsel
,
518 struct machine
*machine
)
520 struct addr_location al
;
521 struct thread
*thread
= machine__findnew_thread(machine
, sample
->pid
,
524 if (thread
== NULL
) {
525 pr_debug("problem processing %d event, skipping it.\n",
531 if (sample
->time
< last_timestamp
) {
532 pr_err("Samples misordered, previous: %" PRIu64
533 " this: %" PRIu64
"\n", last_timestamp
,
537 last_timestamp
= sample
->time
;
541 if (perf_event__preprocess_sample(event
, machine
, &al
, sample
) < 0) {
542 pr_err("problem processing %d event, skipping it.\n",
550 if (cpu_list
&& !test_bit(sample
->cpu
, cpu_bitmap
))
553 scripting_ops
->process_event(event
, sample
, evsel
, thread
, &al
);
555 evsel
->hists
.stats
.total_period
+= sample
->period
;
560 struct perf_tool tool
;
561 struct perf_session
*session
;
562 bool show_task_events
;
563 bool show_mmap_events
;
566 static int process_attr(struct perf_tool
*tool
, union perf_event
*event
,
567 struct perf_evlist
**pevlist
)
569 struct perf_script
*scr
= container_of(tool
, struct perf_script
, tool
);
570 struct perf_evlist
*evlist
;
571 struct perf_evsel
*evsel
, *pos
;
574 err
= perf_event__process_attr(tool
, event
, pevlist
);
579 evsel
= perf_evlist__last(*pevlist
);
581 if (evsel
->attr
.type
>= PERF_TYPE_MAX
)
584 evlist__for_each(evlist
, pos
) {
585 if (pos
->attr
.type
== evsel
->attr
.type
&& pos
!= evsel
)
589 set_print_ip_opts(&evsel
->attr
);
591 return perf_evsel__check_attr(evsel
, scr
->session
);
594 static int process_comm_event(struct perf_tool
*tool
,
595 union perf_event
*event
,
596 struct perf_sample
*sample
,
597 struct machine
*machine
)
599 struct thread
*thread
;
600 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
601 struct perf_session
*session
= script
->session
;
602 struct perf_evsel
*evsel
= perf_evlist__first(session
->evlist
);
605 thread
= machine__findnew_thread(machine
, event
->comm
.pid
, event
->comm
.tid
);
606 if (thread
== NULL
) {
607 pr_debug("problem processing COMM event, skipping it.\n");
611 if (perf_event__process_comm(tool
, event
, sample
, machine
) < 0)
614 if (!evsel
->attr
.sample_id_all
) {
617 sample
->tid
= event
->comm
.tid
;
618 sample
->pid
= event
->comm
.pid
;
620 print_sample_start(sample
, thread
, evsel
);
621 perf_event__fprintf(event
, stdout
);
628 static int process_fork_event(struct perf_tool
*tool
,
629 union perf_event
*event
,
630 struct perf_sample
*sample
,
631 struct machine
*machine
)
633 struct thread
*thread
;
634 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
635 struct perf_session
*session
= script
->session
;
636 struct perf_evsel
*evsel
= perf_evlist__first(session
->evlist
);
638 if (perf_event__process_fork(tool
, event
, sample
, machine
) < 0)
641 thread
= machine__findnew_thread(machine
, event
->fork
.pid
, event
->fork
.tid
);
642 if (thread
== NULL
) {
643 pr_debug("problem processing FORK event, skipping it.\n");
647 if (!evsel
->attr
.sample_id_all
) {
649 sample
->time
= event
->fork
.time
;
650 sample
->tid
= event
->fork
.tid
;
651 sample
->pid
= event
->fork
.pid
;
653 print_sample_start(sample
, thread
, evsel
);
654 perf_event__fprintf(event
, stdout
);
658 static int process_exit_event(struct perf_tool
*tool
,
659 union perf_event
*event
,
660 struct perf_sample
*sample
,
661 struct machine
*machine
)
663 struct thread
*thread
;
664 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
665 struct perf_session
*session
= script
->session
;
666 struct perf_evsel
*evsel
= perf_evlist__first(session
->evlist
);
668 thread
= machine__findnew_thread(machine
, event
->fork
.pid
, event
->fork
.tid
);
669 if (thread
== NULL
) {
670 pr_debug("problem processing EXIT event, skipping it.\n");
674 if (!evsel
->attr
.sample_id_all
) {
677 sample
->tid
= event
->comm
.tid
;
678 sample
->pid
= event
->comm
.pid
;
680 print_sample_start(sample
, thread
, evsel
);
681 perf_event__fprintf(event
, stdout
);
683 if (perf_event__process_exit(tool
, event
, sample
, machine
) < 0)
689 static int process_mmap_event(struct perf_tool
*tool
,
690 union perf_event
*event
,
691 struct perf_sample
*sample
,
692 struct machine
*machine
)
694 struct thread
*thread
;
695 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
696 struct perf_session
*session
= script
->session
;
697 struct perf_evsel
*evsel
= perf_evlist__first(session
->evlist
);
699 if (perf_event__process_mmap(tool
, event
, sample
, machine
) < 0)
702 thread
= machine__findnew_thread(machine
, event
->mmap
.pid
, event
->mmap
.tid
);
703 if (thread
== NULL
) {
704 pr_debug("problem processing MMAP event, skipping it.\n");
708 if (!evsel
->attr
.sample_id_all
) {
711 sample
->tid
= event
->mmap
.tid
;
712 sample
->pid
= event
->mmap
.pid
;
714 print_sample_start(sample
, thread
, evsel
);
715 perf_event__fprintf(event
, stdout
);
720 static int process_mmap2_event(struct perf_tool
*tool
,
721 union perf_event
*event
,
722 struct perf_sample
*sample
,
723 struct machine
*machine
)
725 struct thread
*thread
;
726 struct perf_script
*script
= container_of(tool
, struct perf_script
, tool
);
727 struct perf_session
*session
= script
->session
;
728 struct perf_evsel
*evsel
= perf_evlist__first(session
->evlist
);
730 if (perf_event__process_mmap2(tool
, event
, sample
, machine
) < 0)
733 thread
= machine__findnew_thread(machine
, event
->mmap2
.pid
, event
->mmap2
.tid
);
734 if (thread
== NULL
) {
735 pr_debug("problem processing MMAP2 event, skipping it.\n");
739 if (!evsel
->attr
.sample_id_all
) {
742 sample
->tid
= event
->mmap2
.tid
;
743 sample
->pid
= event
->mmap2
.pid
;
745 print_sample_start(sample
, thread
, evsel
);
746 perf_event__fprintf(event
, stdout
);
751 static void sig_handler(int sig __maybe_unused
)
756 static int __cmd_script(struct perf_script
*script
)
760 signal(SIGINT
, sig_handler
);
762 /* override event processing functions */
763 if (script
->show_task_events
) {
764 script
->tool
.comm
= process_comm_event
;
765 script
->tool
.fork
= process_fork_event
;
766 script
->tool
.exit
= process_exit_event
;
768 if (script
->show_mmap_events
) {
769 script
->tool
.mmap
= process_mmap_event
;
770 script
->tool
.mmap2
= process_mmap2_event
;
773 ret
= perf_session__process_events(script
->session
, &script
->tool
);
776 pr_err("Misordered timestamps: %" PRIu64
"\n", nr_unordered
);
782 struct list_head node
;
783 struct scripting_ops
*ops
;
787 static LIST_HEAD(script_specs
);
789 static struct script_spec
*script_spec__new(const char *spec
,
790 struct scripting_ops
*ops
)
792 struct script_spec
*s
= malloc(sizeof(*s
) + strlen(spec
) + 1);
795 strcpy(s
->spec
, spec
);
802 static void script_spec__add(struct script_spec
*s
)
804 list_add_tail(&s
->node
, &script_specs
);
807 static struct script_spec
*script_spec__find(const char *spec
)
809 struct script_spec
*s
;
811 list_for_each_entry(s
, &script_specs
, node
)
812 if (strcasecmp(s
->spec
, spec
) == 0)
817 static struct script_spec
*script_spec__findnew(const char *spec
,
818 struct scripting_ops
*ops
)
820 struct script_spec
*s
= script_spec__find(spec
);
825 s
= script_spec__new(spec
, ops
);
834 int script_spec_register(const char *spec
, struct scripting_ops
*ops
)
836 struct script_spec
*s
;
838 s
= script_spec__find(spec
);
842 s
= script_spec__findnew(spec
, ops
);
849 static struct scripting_ops
*script_spec__lookup(const char *spec
)
851 struct script_spec
*s
= script_spec__find(spec
);
858 static void list_available_languages(void)
860 struct script_spec
*s
;
862 fprintf(stderr
, "\n");
863 fprintf(stderr
, "Scripting language extensions (used in "
864 "perf script -s [spec:]script.[spec]):\n\n");
866 list_for_each_entry(s
, &script_specs
, node
)
867 fprintf(stderr
, " %-42s [%s]\n", s
->spec
, s
->ops
->name
);
869 fprintf(stderr
, "\n");
872 static int parse_scriptname(const struct option
*opt __maybe_unused
,
873 const char *str
, int unset __maybe_unused
)
876 const char *script
, *ext
;
879 if (strcmp(str
, "lang") == 0) {
880 list_available_languages();
884 script
= strchr(str
, ':');
887 if (len
>= PATH_MAX
) {
888 fprintf(stderr
, "invalid language specifier");
891 strncpy(spec
, str
, len
);
893 scripting_ops
= script_spec__lookup(spec
);
894 if (!scripting_ops
) {
895 fprintf(stderr
, "invalid language specifier");
901 ext
= strrchr(script
, '.');
903 fprintf(stderr
, "invalid script extension");
906 scripting_ops
= script_spec__lookup(++ext
);
907 if (!scripting_ops
) {
908 fprintf(stderr
, "invalid script extension");
913 script_name
= strdup(script
);
918 static int parse_output_fields(const struct option
*opt __maybe_unused
,
919 const char *arg
, int unset __maybe_unused
)
922 int i
, imax
= ARRAY_SIZE(all_output_options
);
925 char *str
= strdup(arg
);
931 /* first word can state for which event type the user is specifying
932 * the fields. If no type exists, the specified fields apply to all
933 * event types found in the file minus the invalid fields for a type.
935 tok
= strchr(str
, ':');
939 if (!strcmp(str
, "hw"))
940 type
= PERF_TYPE_HARDWARE
;
941 else if (!strcmp(str
, "sw"))
942 type
= PERF_TYPE_SOFTWARE
;
943 else if (!strcmp(str
, "trace"))
944 type
= PERF_TYPE_TRACEPOINT
;
945 else if (!strcmp(str
, "raw"))
946 type
= PERF_TYPE_RAW
;
948 fprintf(stderr
, "Invalid event type in field string.\n");
953 if (output
[type
].user_set
)
954 pr_warning("Overriding previous field request for %s events.\n",
957 output
[type
].fields
= 0;
958 output
[type
].user_set
= true;
959 output
[type
].wildcard_set
= false;
963 if (strlen(str
) == 0) {
965 "Cannot set fields to 'none' for all event types.\n");
970 if (output_set_by_user())
971 pr_warning("Overriding previous field request for all events.\n");
973 for (j
= 0; j
< PERF_TYPE_MAX
; ++j
) {
974 output
[j
].fields
= 0;
975 output
[j
].user_set
= true;
976 output
[j
].wildcard_set
= true;
980 tok
= strtok(tok
, ",");
982 for (i
= 0; i
< imax
; ++i
) {
983 if (strcmp(tok
, all_output_options
[i
].str
) == 0)
987 fprintf(stderr
, "Invalid field requested.\n");
993 /* add user option to all events types for
996 for (j
= 0; j
< PERF_TYPE_MAX
; ++j
) {
997 if (output
[j
].invalid_fields
& all_output_options
[i
].field
) {
998 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
999 all_output_options
[i
].str
, event_type(j
));
1001 output
[j
].fields
|= all_output_options
[i
].field
;
1004 if (output
[type
].invalid_fields
& all_output_options
[i
].field
) {
1005 fprintf(stderr
, "\'%s\' not valid for %s events.\n",
1006 all_output_options
[i
].str
, event_type(type
));
1011 output
[type
].fields
|= all_output_options
[i
].field
;
1014 tok
= strtok(NULL
, ",");
1018 if (output
[type
].fields
== 0) {
1019 pr_debug("No fields requested for %s type. "
1020 "Events will not be displayed.\n", event_type(type
));
1029 /* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1030 static int is_directory(const char *base_path
, const struct dirent
*dent
)
1032 char path
[PATH_MAX
];
1035 sprintf(path
, "%s/%s", base_path
, dent
->d_name
);
1036 if (stat(path
, &st
))
1039 return S_ISDIR(st
.st_mode
);
1042 #define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
1043 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
1045 if ((lang_dirent.d_type == DT_DIR || \
1046 (lang_dirent.d_type == DT_UNKNOWN && \
1047 is_directory(scripts_path, &lang_dirent))) && \
1048 (strcmp(lang_dirent.d_name, ".")) && \
1049 (strcmp(lang_dirent.d_name, "..")))
1051 #define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
1052 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
1054 if (script_dirent.d_type != DT_DIR && \
1055 (script_dirent.d_type != DT_UNKNOWN || \
1056 !is_directory(lang_path, &script_dirent)))
1059 #define RECORD_SUFFIX "-record"
1060 #define REPORT_SUFFIX "-report"
1062 struct script_desc
{
1063 struct list_head node
;
1069 static LIST_HEAD(script_descs
);
1071 static struct script_desc
*script_desc__new(const char *name
)
1073 struct script_desc
*s
= zalloc(sizeof(*s
));
1075 if (s
!= NULL
&& name
)
1076 s
->name
= strdup(name
);
1081 static void script_desc__delete(struct script_desc
*s
)
1084 zfree(&s
->half_liner
);
1089 static void script_desc__add(struct script_desc
*s
)
1091 list_add_tail(&s
->node
, &script_descs
);
1094 static struct script_desc
*script_desc__find(const char *name
)
1096 struct script_desc
*s
;
1098 list_for_each_entry(s
, &script_descs
, node
)
1099 if (strcasecmp(s
->name
, name
) == 0)
1104 static struct script_desc
*script_desc__findnew(const char *name
)
1106 struct script_desc
*s
= script_desc__find(name
);
1111 s
= script_desc__new(name
);
1113 goto out_delete_desc
;
1115 script_desc__add(s
);
1120 script_desc__delete(s
);
1125 static const char *ends_with(const char *str
, const char *suffix
)
1127 size_t suffix_len
= strlen(suffix
);
1128 const char *p
= str
;
1130 if (strlen(str
) > suffix_len
) {
1131 p
= str
+ strlen(str
) - suffix_len
;
1132 if (!strncmp(p
, suffix
, suffix_len
))
1139 static int read_script_info(struct script_desc
*desc
, const char *filename
)
1141 char line
[BUFSIZ
], *p
;
1144 fp
= fopen(filename
, "r");
1148 while (fgets(line
, sizeof(line
), fp
)) {
1155 if (strlen(p
) && *p
== '!')
1159 if (strlen(p
) && p
[strlen(p
) - 1] == '\n')
1160 p
[strlen(p
) - 1] = '\0';
1162 if (!strncmp(p
, "description:", strlen("description:"))) {
1163 p
+= strlen("description:");
1164 desc
->half_liner
= strdup(ltrim(p
));
1168 if (!strncmp(p
, "args:", strlen("args:"))) {
1169 p
+= strlen("args:");
1170 desc
->args
= strdup(ltrim(p
));
1180 static char *get_script_root(struct dirent
*script_dirent
, const char *suffix
)
1182 char *script_root
, *str
;
1184 script_root
= strdup(script_dirent
->d_name
);
1188 str
= (char *)ends_with(script_root
, suffix
);
1198 static int list_available_scripts(const struct option
*opt __maybe_unused
,
1199 const char *s __maybe_unused
,
1200 int unset __maybe_unused
)
1202 struct dirent
*script_next
, *lang_next
, script_dirent
, lang_dirent
;
1203 char scripts_path
[MAXPATHLEN
];
1204 DIR *scripts_dir
, *lang_dir
;
1205 char script_path
[MAXPATHLEN
];
1206 char lang_path
[MAXPATHLEN
];
1207 struct script_desc
*desc
;
1208 char first_half
[BUFSIZ
];
1211 snprintf(scripts_path
, MAXPATHLEN
, "%s/scripts", perf_exec_path());
1213 scripts_dir
= opendir(scripts_path
);
1217 for_each_lang(scripts_path
, scripts_dir
, lang_dirent
, lang_next
) {
1218 snprintf(lang_path
, MAXPATHLEN
, "%s/%s/bin", scripts_path
,
1219 lang_dirent
.d_name
);
1220 lang_dir
= opendir(lang_path
);
1224 for_each_script(lang_path
, lang_dir
, script_dirent
, script_next
) {
1225 script_root
= get_script_root(&script_dirent
, REPORT_SUFFIX
);
1227 desc
= script_desc__findnew(script_root
);
1228 snprintf(script_path
, MAXPATHLEN
, "%s/%s",
1229 lang_path
, script_dirent
.d_name
);
1230 read_script_info(desc
, script_path
);
1236 fprintf(stdout
, "List of available trace scripts:\n");
1237 list_for_each_entry(desc
, &script_descs
, node
) {
1238 sprintf(first_half
, "%s %s", desc
->name
,
1239 desc
->args
? desc
->args
: "");
1240 fprintf(stdout
, " %-36s %s\n", first_half
,
1241 desc
->half_liner
? desc
->half_liner
: "");
1248 * Some scripts specify the required events in their "xxx-record" file,
1249 * this function will check if the events in perf.data match those
1250 * mentioned in the "xxx-record".
1252 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1253 * which is covered well now. And new parsing code should be added to
1254 * cover the future complexing formats like event groups etc.
1256 static int check_ev_match(char *dir_name
, char *scriptname
,
1257 struct perf_session
*session
)
1259 char filename
[MAXPATHLEN
], evname
[128];
1260 char line
[BUFSIZ
], *p
;
1261 struct perf_evsel
*pos
;
1265 sprintf(filename
, "%s/bin/%s-record", dir_name
, scriptname
);
1267 fp
= fopen(filename
, "r");
1271 while (fgets(line
, sizeof(line
), fp
)) {
1277 p
= strstr(p
, "-e");
1283 len
= strcspn(p
, " \t");
1287 snprintf(evname
, len
+ 1, "%s", p
);
1290 evlist__for_each(session
->evlist
, pos
) {
1291 if (!strcmp(perf_evsel__name(pos
), evname
)) {
1309 * Return -1 if none is found, otherwise the actual scripts number.
1311 * Currently the only user of this function is the script browser, which
1312 * will list all statically runnable scripts, select one, execute it and
1313 * show the output in a perf browser.
1315 int find_scripts(char **scripts_array
, char **scripts_path_array
)
1317 struct dirent
*script_next
, *lang_next
, script_dirent
, lang_dirent
;
1318 char scripts_path
[MAXPATHLEN
], lang_path
[MAXPATHLEN
];
1319 DIR *scripts_dir
, *lang_dir
;
1320 struct perf_session
*session
;
1321 struct perf_data_file file
= {
1323 .mode
= PERF_DATA_MODE_READ
,
1328 session
= perf_session__new(&file
, false, NULL
);
1332 snprintf(scripts_path
, MAXPATHLEN
, "%s/scripts", perf_exec_path());
1334 scripts_dir
= opendir(scripts_path
);
1336 perf_session__delete(session
);
1340 for_each_lang(scripts_path
, scripts_dir
, lang_dirent
, lang_next
) {
1341 snprintf(lang_path
, MAXPATHLEN
, "%s/%s", scripts_path
,
1342 lang_dirent
.d_name
);
1344 if (strstr(lang_path
, "perl"))
1348 if (strstr(lang_path
, "python"))
1352 lang_dir
= opendir(lang_path
);
1356 for_each_script(lang_path
, lang_dir
, script_dirent
, script_next
) {
1357 /* Skip those real time scripts: xxxtop.p[yl] */
1358 if (strstr(script_dirent
.d_name
, "top."))
1360 sprintf(scripts_path_array
[i
], "%s/%s", lang_path
,
1361 script_dirent
.d_name
);
1362 temp
= strchr(script_dirent
.d_name
, '.');
1363 snprintf(scripts_array
[i
],
1364 (temp
- script_dirent
.d_name
) + 1,
1365 "%s", script_dirent
.d_name
);
1367 if (check_ev_match(lang_path
,
1368 scripts_array
[i
], session
))
1376 closedir(scripts_dir
);
1377 perf_session__delete(session
);
1381 static char *get_script_path(const char *script_root
, const char *suffix
)
1383 struct dirent
*script_next
, *lang_next
, script_dirent
, lang_dirent
;
1384 char scripts_path
[MAXPATHLEN
];
1385 char script_path
[MAXPATHLEN
];
1386 DIR *scripts_dir
, *lang_dir
;
1387 char lang_path
[MAXPATHLEN
];
1388 char *__script_root
;
1390 snprintf(scripts_path
, MAXPATHLEN
, "%s/scripts", perf_exec_path());
1392 scripts_dir
= opendir(scripts_path
);
1396 for_each_lang(scripts_path
, scripts_dir
, lang_dirent
, lang_next
) {
1397 snprintf(lang_path
, MAXPATHLEN
, "%s/%s/bin", scripts_path
,
1398 lang_dirent
.d_name
);
1399 lang_dir
= opendir(lang_path
);
1403 for_each_script(lang_path
, lang_dir
, script_dirent
, script_next
) {
1404 __script_root
= get_script_root(&script_dirent
, suffix
);
1405 if (__script_root
&& !strcmp(script_root
, __script_root
)) {
1406 free(__script_root
);
1408 closedir(scripts_dir
);
1409 snprintf(script_path
, MAXPATHLEN
, "%s/%s",
1410 lang_path
, script_dirent
.d_name
);
1411 return strdup(script_path
);
1413 free(__script_root
);
1417 closedir(scripts_dir
);
1422 static bool is_top_script(const char *script_path
)
1424 return ends_with(script_path
, "top") == NULL
? false : true;
1427 static int has_required_arg(char *script_path
)
1429 struct script_desc
*desc
;
1433 desc
= script_desc__new(NULL
);
1435 if (read_script_info(desc
, script_path
))
1441 for (p
= desc
->args
; *p
; p
++)
1445 script_desc__delete(desc
);
1450 static int have_cmd(int argc
, const char **argv
)
1452 char **__argv
= malloc(sizeof(const char *) * argc
);
1455 pr_err("malloc failed\n");
1459 memcpy(__argv
, argv
, sizeof(const char *) * argc
);
1460 argc
= parse_options(argc
, (const char **)__argv
, record_options
,
1461 NULL
, PARSE_OPT_STOP_AT_NON_OPTION
);
1464 system_wide
= (argc
== 0);
1469 int cmd_script(int argc
, const char **argv
, const char *prefix __maybe_unused
)
1471 bool show_full_info
= false;
1472 bool header
= false;
1473 bool header_only
= false;
1474 char *rec_script_path
= NULL
;
1475 char *rep_script_path
= NULL
;
1476 struct perf_session
*session
;
1477 char *script_path
= NULL
;
1478 const char **__argv
;
1480 struct perf_script script
= {
1482 .sample
= process_sample_event
,
1483 .mmap
= perf_event__process_mmap
,
1484 .mmap2
= perf_event__process_mmap2
,
1485 .comm
= perf_event__process_comm
,
1486 .exit
= perf_event__process_exit
,
1487 .fork
= perf_event__process_fork
,
1488 .attr
= process_attr
,
1489 .tracing_data
= perf_event__process_tracing_data
,
1490 .build_id
= perf_event__process_build_id
,
1491 .ordered_samples
= true,
1492 .ordering_requires_timestamps
= true,
1495 const struct option options
[] = {
1496 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace
,
1497 "dump raw trace in ASCII"),
1498 OPT_INCR('v', "verbose", &verbose
,
1499 "be more verbose (show symbol address, etc)"),
1500 OPT_BOOLEAN('L', "Latency", &latency_format
,
1501 "show latency attributes (irqs/preemption disabled, etc)"),
1502 OPT_CALLBACK_NOOPT('l', "list", NULL
, NULL
, "list available scripts",
1503 list_available_scripts
),
1504 OPT_CALLBACK('s', "script", NULL
, "name",
1505 "script file name (lang:script name, script name, or *)",
1507 OPT_STRING('g', "gen-script", &generate_script_lang
, "lang",
1508 "generate perf-script.xx script in specified language"),
1509 OPT_STRING('i', "input", &input_name
, "file", "input file name"),
1510 OPT_BOOLEAN('d', "debug-mode", &debug_mode
,
1511 "do various checks like samples ordering and lost events"),
1512 OPT_BOOLEAN(0, "header", &header
, "Show data header."),
1513 OPT_BOOLEAN(0, "header-only", &header_only
, "Show only data header."),
1514 OPT_STRING('k', "vmlinux", &symbol_conf
.vmlinux_name
,
1515 "file", "vmlinux pathname"),
1516 OPT_STRING(0, "kallsyms", &symbol_conf
.kallsyms_name
,
1517 "file", "kallsyms pathname"),
1518 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain
,
1519 "When printing symbols do not display call chain"),
1520 OPT_STRING(0, "symfs", &symbol_conf
.symfs
, "directory",
1521 "Look for files with symbols relative to this directory"),
1522 OPT_CALLBACK('f', "fields", NULL
, "str",
1523 "comma separated output fields prepend with 'type:'. "
1524 "Valid types: hw,sw,trace,raw. "
1525 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
1526 "addr,symoff", parse_output_fields
),
1527 OPT_BOOLEAN('a', "all-cpus", &system_wide
,
1528 "system-wide collection from all CPUs"),
1529 OPT_STRING('S', "symbols", &symbol_conf
.sym_list_str
, "symbol[,symbol...]",
1530 "only consider these symbols"),
1531 OPT_STRING('C', "cpu", &cpu_list
, "cpu", "list of cpus to profile"),
1532 OPT_STRING('c', "comms", &symbol_conf
.comm_list_str
, "comm[,comm...]",
1533 "only display events for these comms"),
1534 OPT_BOOLEAN('I', "show-info", &show_full_info
,
1535 "display extended information from perf.data file"),
1536 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf
.show_kernel_path
,
1537 "Show the path of [kernel.kallsyms]"),
1538 OPT_BOOLEAN('\0', "show-task-events", &script
.show_task_events
,
1539 "Show the fork/comm/exit events"),
1540 OPT_BOOLEAN('\0', "show-mmap-events", &script
.show_mmap_events
,
1541 "Show the mmap events"),
1544 const char * const script_usage
[] = {
1545 "perf script [<options>]",
1546 "perf script [<options>] record <script> [<record-options>] <command>",
1547 "perf script [<options>] report <script> [script-args]",
1548 "perf script [<options>] <script> [<record-options>] <command>",
1549 "perf script [<options>] <top-script> [script-args]",
1552 struct perf_data_file file
= {
1553 .mode
= PERF_DATA_MODE_READ
,
1558 argc
= parse_options(argc
, argv
, options
, script_usage
,
1559 PARSE_OPT_STOP_AT_NON_OPTION
);
1561 file
.path
= input_name
;
1563 if (argc
> 1 && !strncmp(argv
[0], "rec", strlen("rec"))) {
1564 rec_script_path
= get_script_path(argv
[1], RECORD_SUFFIX
);
1565 if (!rec_script_path
)
1566 return cmd_record(argc
, argv
, NULL
);
1569 if (argc
> 1 && !strncmp(argv
[0], "rep", strlen("rep"))) {
1570 rep_script_path
= get_script_path(argv
[1], REPORT_SUFFIX
);
1571 if (!rep_script_path
) {
1573 "Please specify a valid report script"
1574 "(see 'perf script -l' for listing)\n");
1579 /* make sure PERF_EXEC_PATH is set for scripts */
1580 perf_set_argv_exec_path(perf_exec_path());
1582 if (argc
&& !script_name
&& !rec_script_path
&& !rep_script_path
) {
1587 rec_script_path
= get_script_path(argv
[0], RECORD_SUFFIX
);
1588 rep_script_path
= get_script_path(argv
[0], REPORT_SUFFIX
);
1590 if (!rec_script_path
&& !rep_script_path
) {
1591 fprintf(stderr
, " Couldn't find script %s\n\n See perf"
1592 " script -l for available scripts.\n", argv
[0]);
1593 usage_with_options(script_usage
, options
);
1596 if (is_top_script(argv
[0])) {
1597 rep_args
= argc
- 1;
1601 rep_args
= has_required_arg(rep_script_path
);
1602 rec_args
= (argc
- 1) - rep_args
;
1604 fprintf(stderr
, " %s script requires options."
1605 "\n\n See perf script -l for available "
1606 "scripts and options.\n", argv
[0]);
1607 usage_with_options(script_usage
, options
);
1611 if (pipe(live_pipe
) < 0) {
1612 perror("failed to create pipe");
1618 perror("failed to fork");
1625 dup2(live_pipe
[1], 1);
1626 close(live_pipe
[0]);
1628 if (is_top_script(argv
[0])) {
1630 } else if (!system_wide
) {
1631 if (have_cmd(argc
- rep_args
, &argv
[rep_args
]) != 0) {
1637 __argv
= malloc((argc
+ 6) * sizeof(const char *));
1639 pr_err("malloc failed\n");
1644 __argv
[j
++] = "/bin/sh";
1645 __argv
[j
++] = rec_script_path
;
1651 for (i
= rep_args
+ 1; i
< argc
; i
++)
1652 __argv
[j
++] = argv
[i
];
1655 execvp("/bin/sh", (char **)__argv
);
1660 dup2(live_pipe
[0], 0);
1661 close(live_pipe
[1]);
1663 __argv
= malloc((argc
+ 4) * sizeof(const char *));
1665 pr_err("malloc failed\n");
1671 __argv
[j
++] = "/bin/sh";
1672 __argv
[j
++] = rep_script_path
;
1673 for (i
= 1; i
< rep_args
+ 1; i
++)
1674 __argv
[j
++] = argv
[i
];
1679 execvp("/bin/sh", (char **)__argv
);
1684 if (rec_script_path
)
1685 script_path
= rec_script_path
;
1686 if (rep_script_path
)
1687 script_path
= rep_script_path
;
1692 if (!rec_script_path
)
1693 system_wide
= false;
1694 else if (!system_wide
) {
1695 if (have_cmd(argc
- 1, &argv
[1]) != 0) {
1701 __argv
= malloc((argc
+ 2) * sizeof(const char *));
1703 pr_err("malloc failed\n");
1708 __argv
[j
++] = "/bin/sh";
1709 __argv
[j
++] = script_path
;
1712 for (i
= 2; i
< argc
; i
++)
1713 __argv
[j
++] = argv
[i
];
1716 execvp("/bin/sh", (char **)__argv
);
1721 if (symbol__init() < 0)
1726 session
= perf_session__new(&file
, false, &script
.tool
);
1727 if (session
== NULL
)
1730 if (header
|| header_only
) {
1731 perf_session__fprintf_info(session
, stdout
, show_full_info
);
1736 script
.session
= session
;
1739 if (perf_session__cpu_bitmap(session
, cpu_list
, cpu_bitmap
))
1744 symbol_conf
.use_callchain
= true;
1746 symbol_conf
.use_callchain
= false;
1748 if (generate_script_lang
) {
1749 struct stat perf_stat
;
1752 if (output_set_by_user()) {
1754 "custom fields not supported for generated scripts");
1758 input
= open(file
.path
, O_RDONLY
); /* input_name */
1760 perror("failed to open file");
1764 err
= fstat(input
, &perf_stat
);
1766 perror("failed to stat file");
1770 if (!perf_stat
.st_size
) {
1771 fprintf(stderr
, "zero-sized file, nothing to do!\n");
1775 scripting_ops
= script_spec__lookup(generate_script_lang
);
1776 if (!scripting_ops
) {
1777 fprintf(stderr
, "invalid language specifier");
1781 err
= scripting_ops
->generate_script(session
->tevent
.pevent
,
1787 err
= scripting_ops
->start_script(script_name
, argc
, argv
);
1790 pr_debug("perf script started with script %s\n\n", script_name
);
1794 err
= perf_session__check_output_opt(session
);
1798 err
= __cmd_script(&script
);
1800 perf_session__delete(session
);
1801 cleanup_scripting();