4 * Builtin top command: Display a continuously updated profile of
5 * any workload, CPU or specific PID.
7 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
8 * 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
10 * Improvements and fixes by:
12 * Arjan van de Ven <arjan@linux.intel.com>
13 * Yanmin Zhang <yanmin.zhang@intel.com>
14 * Wu Fengguang <fengguang.wu@intel.com>
15 * Mike Galbraith <efault@gmx.de>
16 * Paul Mackerras <paulus@samba.org>
18 * Released under the GPL v2. (and only v2, not any later version)
24 #include "util/annotate.h"
25 #include "util/config.h"
26 #include "util/color.h"
27 #include "util/drv_configs.h"
28 #include "util/evlist.h"
29 #include "util/evsel.h"
30 #include "util/event.h"
31 #include "util/machine.h"
32 #include "util/session.h"
33 #include "util/symbol.h"
34 #include "util/thread.h"
35 #include "util/thread_map.h"
37 #include <linux/rbtree.h>
38 #include <subcmd/parse-options.h>
39 #include "util/parse-events.h"
40 #include "util/cpumap.h"
41 #include "util/xyarray.h"
42 #include "util/sort.h"
43 #include "util/term.h"
44 #include "util/intlist.h"
45 #include "util/parse-branch-options.h"
46 #include "arch/common.h"
48 #include "util/debug.h"
64 #include <sys/syscall.h>
65 #include <sys/ioctl.h>
67 #include <sys/prctl.h>
70 #include <sys/utsname.h>
73 #include <linux/stringify.h>
74 #include <linux/time64.h>
75 #include <linux/types.h>
77 #include "sane_ctype.h"
79 static volatile int done
;
80 static volatile int resize
;
82 #define HEADER_LINE_NR 5
84 static void perf_top__update_print_entries(struct perf_top
*top
)
86 top
->print_entries
= top
->winsize
.ws_row
- HEADER_LINE_NR
;
89 static void winch_sig(int sig __maybe_unused
)
94 static void perf_top__resize(struct perf_top
*top
)
96 get_term_dimensions(&top
->winsize
);
97 perf_top__update_print_entries(top
);
100 static int perf_top__parse_source(struct perf_top
*top
, struct hist_entry
*he
)
103 struct annotation
*notes
;
107 if (!he
|| !he
->ms
.sym
)
114 * We can't annotate with just /proc/kallsyms
116 if (map
->dso
->symtab_type
== DSO_BINARY_TYPE__KALLSYMS
&&
117 !dso__is_kcore(map
->dso
)) {
118 pr_err("Can't annotate %s: No vmlinux file was found in the "
119 "path\n", sym
->name
);
124 notes
= symbol__annotation(sym
);
125 if (notes
->src
!= NULL
) {
126 pthread_mutex_lock(¬es
->lock
);
130 pthread_mutex_lock(¬es
->lock
);
132 if (symbol__alloc_hist(sym
) < 0) {
133 pthread_mutex_unlock(¬es
->lock
);
134 pr_err("Not enough memory for annotating '%s' symbol!\n",
140 err
= symbol__disassemble(sym
, map
, NULL
, 0, NULL
, NULL
);
143 top
->sym_filter_entry
= he
;
146 symbol__strerror_disassemble(sym
, map
, err
, msg
, sizeof(msg
));
147 pr_err("Couldn't annotate %s: %s\n", sym
->name
, msg
);
150 pthread_mutex_unlock(¬es
->lock
);
154 static void __zero_source_counters(struct hist_entry
*he
)
156 struct symbol
*sym
= he
->ms
.sym
;
157 symbol__annotate_zero_histograms(sym
);
160 static void ui__warn_map_erange(struct map
*map
, struct symbol
*sym
, u64 ip
)
163 int err
= uname(&uts
);
165 ui__warning("Out of bounds address found:\n\n"
166 "Addr: %" PRIx64
"\n"
168 "Map: %" PRIx64
"-%" PRIx64
"\n"
169 "Symbol: %" PRIx64
"-%" PRIx64
" %c %s\n"
173 "Not all samples will be on the annotation output.\n\n"
174 "Please report to linux-kernel@vger.kernel.org\n",
175 ip
, map
->dso
->long_name
, dso__symtab_origin(map
->dso
),
176 map
->start
, map
->end
, sym
->start
, sym
->end
,
177 sym
->binding
== STB_GLOBAL
? 'g' :
178 sym
->binding
== STB_LOCAL
? 'l' : 'w', sym
->name
,
179 err
? "[unknown]" : uts
.machine
,
180 err
? "[unknown]" : uts
.release
, perf_version_string
);
181 if (use_browser
<= 0)
184 map
->erange_warned
= true;
187 static void perf_top__record_precise_ip(struct perf_top
*top
,
188 struct hist_entry
*he
,
189 struct perf_sample
*sample
,
192 struct annotation
*notes
;
193 struct symbol
*sym
= he
->ms
.sym
;
196 if (sym
== NULL
|| (use_browser
== 0 &&
197 (top
->sym_filter_entry
== NULL
||
198 top
->sym_filter_entry
->ms
.sym
!= sym
)))
201 notes
= symbol__annotation(sym
);
203 if (pthread_mutex_trylock(¬es
->lock
))
206 err
= hist_entry__inc_addr_samples(he
, sample
, counter
, ip
);
208 pthread_mutex_unlock(¬es
->lock
);
212 * This function is now called with he->hists->lock held.
213 * Release it before going to sleep.
215 pthread_mutex_unlock(&he
->hists
->lock
);
217 if (err
== -ERANGE
&& !he
->ms
.map
->erange_warned
)
218 ui__warn_map_erange(he
->ms
.map
, sym
, ip
);
219 else if (err
== -ENOMEM
) {
220 pr_err("Not enough memory for annotating '%s' symbol!\n",
225 pthread_mutex_lock(&he
->hists
->lock
);
229 static void perf_top__show_details(struct perf_top
*top
)
231 struct hist_entry
*he
= top
->sym_filter_entry
;
232 struct annotation
*notes
;
233 struct symbol
*symbol
;
240 notes
= symbol__annotation(symbol
);
242 pthread_mutex_lock(¬es
->lock
);
244 if (notes
->src
== NULL
)
247 printf("Showing %s for %s\n", perf_evsel__name(top
->sym_evsel
), symbol
->name
);
248 printf(" Events Pcnt (>=%d%%)\n", top
->sym_pcnt_filter
);
250 more
= symbol__annotate_printf(symbol
, he
->ms
.map
, top
->sym_evsel
,
251 0, top
->sym_pcnt_filter
, top
->print_entries
, 4);
253 if (top
->evlist
->enabled
) {
255 symbol__annotate_zero_histogram(symbol
, top
->sym_evsel
->idx
);
257 symbol__annotate_decay_histogram(symbol
, top
->sym_evsel
->idx
);
260 printf("%d lines not displayed, maybe increase display entries [e]\n", more
);
262 pthread_mutex_unlock(¬es
->lock
);
265 static void perf_top__print_sym_table(struct perf_top
*top
)
269 const int win_width
= top
->winsize
.ws_col
- 1;
270 struct perf_evsel
*evsel
= top
->sym_evsel
;
271 struct hists
*hists
= evsel__hists(evsel
);
275 perf_top__header_snprintf(top
, bf
, sizeof(bf
));
278 perf_top__reset_sample_counters(top
);
280 printf("%-*.*s\n", win_width
, win_width
, graph_dotted_line
);
282 if (hists
->stats
.nr_lost_warned
!=
283 hists
->stats
.nr_events
[PERF_RECORD_LOST
]) {
284 hists
->stats
.nr_lost_warned
=
285 hists
->stats
.nr_events
[PERF_RECORD_LOST
];
286 color_fprintf(stdout
, PERF_COLOR_RED
,
287 "WARNING: LOST %d chunks, Check IO/CPU overload",
288 hists
->stats
.nr_lost_warned
);
292 if (top
->sym_filter_entry
) {
293 perf_top__show_details(top
);
297 if (top
->evlist
->enabled
) {
299 hists__delete_entries(hists
);
301 hists__decay_entries(hists
, top
->hide_user_symbols
,
302 top
->hide_kernel_symbols
);
306 hists__collapse_resort(hists
, NULL
);
307 perf_evsel__output_resort(evsel
, NULL
);
309 hists__output_recalc_col_len(hists
, top
->print_entries
- printed
);
311 hists__fprintf(hists
, false, top
->print_entries
- printed
, win_width
,
312 top
->min_percent
, stdout
, symbol_conf
.use_callchain
);
315 static void prompt_integer(int *target
, const char *msg
)
317 char *buf
= malloc(0), *p
;
321 fprintf(stdout
, "\n%s: ", msg
);
322 if (getline(&buf
, &dummy
, stdin
) < 0)
325 p
= strchr(buf
, '\n');
335 tmp
= strtoul(buf
, NULL
, 10);
341 static void prompt_percent(int *target
, const char *msg
)
345 prompt_integer(&tmp
, msg
);
346 if (tmp
>= 0 && tmp
<= 100)
350 static void perf_top__prompt_symbol(struct perf_top
*top
, const char *msg
)
352 char *buf
= malloc(0), *p
;
353 struct hist_entry
*syme
= top
->sym_filter_entry
, *n
, *found
= NULL
;
354 struct hists
*hists
= evsel__hists(top
->sym_evsel
);
355 struct rb_node
*next
;
358 /* zero counters of active symbol */
360 __zero_source_counters(syme
);
361 top
->sym_filter_entry
= NULL
;
364 fprintf(stdout
, "\n%s: ", msg
);
365 if (getline(&buf
, &dummy
, stdin
) < 0)
368 p
= strchr(buf
, '\n');
372 next
= rb_first(&hists
->entries
);
374 n
= rb_entry(next
, struct hist_entry
, rb_node
);
375 if (n
->ms
.sym
&& !strcmp(buf
, n
->ms
.sym
->name
)) {
379 next
= rb_next(&n
->rb_node
);
383 fprintf(stderr
, "Sorry, %s is not active.\n", buf
);
386 perf_top__parse_source(top
, found
);
392 static void perf_top__print_mapped_keys(struct perf_top
*top
)
396 if (top
->sym_filter_entry
) {
397 struct symbol
*sym
= top
->sym_filter_entry
->ms
.sym
;
401 fprintf(stdout
, "\nMapped keys:\n");
402 fprintf(stdout
, "\t[d] display refresh delay. \t(%d)\n", top
->delay_secs
);
403 fprintf(stdout
, "\t[e] display entries (lines). \t(%d)\n", top
->print_entries
);
405 if (top
->evlist
->nr_entries
> 1)
406 fprintf(stdout
, "\t[E] active event counter. \t(%s)\n", perf_evsel__name(top
->sym_evsel
));
408 fprintf(stdout
, "\t[f] profile display filter (count). \t(%d)\n", top
->count_filter
);
410 fprintf(stdout
, "\t[F] annotate display filter (percent). \t(%d%%)\n", top
->sym_pcnt_filter
);
411 fprintf(stdout
, "\t[s] annotate symbol. \t(%s)\n", name
?: "NULL");
412 fprintf(stdout
, "\t[S] stop annotation.\n");
415 "\t[K] hide kernel_symbols symbols. \t(%s)\n",
416 top
->hide_kernel_symbols
? "yes" : "no");
418 "\t[U] hide user symbols. \t(%s)\n",
419 top
->hide_user_symbols
? "yes" : "no");
420 fprintf(stdout
, "\t[z] toggle sample zeroing. \t(%d)\n", top
->zero
? 1 : 0);
421 fprintf(stdout
, "\t[qQ] quit.\n");
424 static int perf_top__key_mapped(struct perf_top
*top
, int c
)
440 return top
->evlist
->nr_entries
> 1 ? 1 : 0;
448 static bool perf_top__handle_keypress(struct perf_top
*top
, int c
)
452 if (!perf_top__key_mapped(top
, c
)) {
453 struct pollfd stdin_poll
= { .fd
= 0, .events
= POLLIN
};
456 perf_top__print_mapped_keys(top
);
457 fprintf(stdout
, "\nEnter selection, or unmapped key to continue: ");
460 set_term_quiet_input(&save
);
462 poll(&stdin_poll
, 1, -1);
465 tcsetattr(0, TCSAFLUSH
, &save
);
466 if (!perf_top__key_mapped(top
, c
))
472 prompt_integer(&top
->delay_secs
, "Enter display delay");
473 if (top
->delay_secs
< 1)
477 prompt_integer(&top
->print_entries
, "Enter display entries (lines)");
478 if (top
->print_entries
== 0) {
479 perf_top__resize(top
);
480 signal(SIGWINCH
, winch_sig
);
482 signal(SIGWINCH
, SIG_DFL
);
486 if (top
->evlist
->nr_entries
> 1) {
487 /* Select 0 as the default event: */
490 fprintf(stderr
, "\nAvailable events:");
492 evlist__for_each_entry(top
->evlist
, top
->sym_evsel
)
493 fprintf(stderr
, "\n\t%d %s", top
->sym_evsel
->idx
, perf_evsel__name(top
->sym_evsel
));
495 prompt_integer(&counter
, "Enter details event counter");
497 if (counter
>= top
->evlist
->nr_entries
) {
498 top
->sym_evsel
= perf_evlist__first(top
->evlist
);
499 fprintf(stderr
, "Sorry, no such event, using %s.\n", perf_evsel__name(top
->sym_evsel
));
503 evlist__for_each_entry(top
->evlist
, top
->sym_evsel
)
504 if (top
->sym_evsel
->idx
== counter
)
507 top
->sym_evsel
= perf_evlist__first(top
->evlist
);
510 prompt_integer(&top
->count_filter
, "Enter display event count filter");
513 prompt_percent(&top
->sym_pcnt_filter
,
514 "Enter details display event filter (percent)");
517 top
->hide_kernel_symbols
= !top
->hide_kernel_symbols
;
521 printf("exiting.\n");
522 if (top
->dump_symtab
)
523 perf_session__fprintf_dsos(top
->session
, stderr
);
527 perf_top__prompt_symbol(top
, "Enter details symbol");
530 if (!top
->sym_filter_entry
)
533 struct hist_entry
*syme
= top
->sym_filter_entry
;
535 top
->sym_filter_entry
= NULL
;
536 __zero_source_counters(syme
);
540 top
->hide_user_symbols
= !top
->hide_user_symbols
;
543 top
->zero
= !top
->zero
;
552 static void perf_top__sort_new_samples(void *arg
)
554 struct perf_top
*t
= arg
;
555 struct perf_evsel
*evsel
= t
->sym_evsel
;
558 perf_top__reset_sample_counters(t
);
560 if (t
->evlist
->selected
!= NULL
)
561 t
->sym_evsel
= t
->evlist
->selected
;
563 hists
= evsel__hists(evsel
);
565 if (t
->evlist
->enabled
) {
567 hists__delete_entries(hists
);
569 hists__decay_entries(hists
, t
->hide_user_symbols
,
570 t
->hide_kernel_symbols
);
574 hists__collapse_resort(hists
, NULL
);
575 perf_evsel__output_resort(evsel
, NULL
);
578 static void *display_thread_tui(void *arg
)
580 struct perf_evsel
*pos
;
581 struct perf_top
*top
= arg
;
582 const char *help
= "For a higher level overview, try: perf top --sort comm,dso";
583 struct hist_browser_timer hbt
= {
584 .timer
= perf_top__sort_new_samples
,
586 .refresh
= top
->delay_secs
,
589 /* In order to read symbols from other namespaces perf to needs to call
590 * setns(2). This isn't permitted if the struct_fs has multiple users.
591 * unshare(2) the fs so that we may continue to setns into namespaces
592 * that we're observing.
596 perf_top__sort_new_samples(top
);
599 * Initialize the uid_filter_str, in the future the TUI will allow
600 * Zooming in/out UIDs. For now juse use whatever the user passed
603 evlist__for_each_entry(top
->evlist
, pos
) {
604 struct hists
*hists
= evsel__hists(pos
);
605 hists
->uid_filter_str
= top
->record_opts
.target
.uid_str
;
608 perf_evlist__tui_browse_hists(top
->evlist
, help
, &hbt
,
610 &top
->session
->header
.env
);
616 static void display_sig(int sig __maybe_unused
)
621 static void display_setup_sig(void)
623 signal(SIGSEGV
, sighandler_dump_stack
);
624 signal(SIGFPE
, sighandler_dump_stack
);
625 signal(SIGINT
, display_sig
);
626 signal(SIGQUIT
, display_sig
);
627 signal(SIGTERM
, display_sig
);
630 static void *display_thread(void *arg
)
632 struct pollfd stdin_poll
= { .fd
= 0, .events
= POLLIN
};
634 struct perf_top
*top
= arg
;
637 /* In order to read symbols from other namespaces perf to needs to call
638 * setns(2). This isn't permitted if the struct_fs has multiple users.
639 * unshare(2) the fs so that we may continue to setns into namespaces
640 * that we're observing.
645 pthread__unblock_sigwinch();
647 delay_msecs
= top
->delay_secs
* MSEC_PER_SEC
;
648 set_term_quiet_input(&save
);
653 perf_top__print_sym_table(top
);
655 * Either timeout expired or we got an EINTR due to SIGWINCH,
656 * refresh screen in both cases.
658 switch (poll(&stdin_poll
, 1, delay_msecs
)) {
667 tcsetattr(0, TCSAFLUSH
, &save
);
669 if (perf_top__handle_keypress(top
, c
))
675 tcsetattr(0, TCSAFLUSH
, &save
);
679 static int hist_iter__top_callback(struct hist_entry_iter
*iter
,
680 struct addr_location
*al
, bool single
,
683 struct perf_top
*top
= arg
;
684 struct hist_entry
*he
= iter
->he
;
685 struct perf_evsel
*evsel
= iter
->evsel
;
687 if (perf_hpp_list
.sym
&& single
)
688 perf_top__record_precise_ip(top
, he
, iter
->sample
, evsel
->idx
, al
->addr
);
690 hist__account_cycles(iter
->sample
->branch_stack
, al
, iter
->sample
,
691 !(top
->record_opts
.branch_stack
& PERF_SAMPLE_BRANCH_ANY
));
695 static void perf_event__process_sample(struct perf_tool
*tool
,
696 const union perf_event
*event
,
697 struct perf_evsel
*evsel
,
698 struct perf_sample
*sample
,
699 struct machine
*machine
)
701 struct perf_top
*top
= container_of(tool
, struct perf_top
, tool
);
702 struct addr_location al
;
705 if (!machine
&& perf_guest
) {
706 static struct intlist
*seen
;
709 seen
= intlist__new(NULL
);
711 if (!intlist__has_entry(seen
, sample
->pid
)) {
712 pr_err("Can't find guest [%d]'s kernel information\n",
714 intlist__add(seen
, sample
->pid
);
720 pr_err("%u unprocessable samples recorded.\r",
721 top
->session
->evlist
->stats
.nr_unprocessable_samples
++);
725 if (event
->header
.misc
& PERF_RECORD_MISC_EXACT_IP
)
726 top
->exact_samples
++;
728 if (machine__resolve(machine
, &al
, sample
) < 0)
731 if (!machine
->kptr_restrict_warned
&&
732 symbol_conf
.kptr_restrict
&&
733 al
.cpumode
== PERF_RECORD_MISC_KERNEL
) {
734 if (!perf_evlist__exclude_kernel(top
->session
->evlist
)) {
736 "Kernel address maps (/proc/{kallsyms,modules}) are restricted.\n\n"
737 "Check /proc/sys/kernel/kptr_restrict.\n\n"
738 "Kernel%s samples will not be resolved.\n",
739 al
.map
&& !RB_EMPTY_ROOT(&al
.map
->dso
->symbols
[MAP__FUNCTION
]) ?
741 if (use_browser
<= 0)
744 machine
->kptr_restrict_warned
= true;
747 if (al
.sym
== NULL
) {
748 const char *msg
= "Kernel samples will not be resolved.\n";
750 * As we do lazy loading of symtabs we only will know if the
751 * specified vmlinux file is invalid when we actually have a
752 * hit in kernel space and then try to load it. So if we get
753 * here and there are _no_ symbols in the DSO backing the
754 * kernel map, bail out.
756 * We may never get here, for instance, if we use -K/
757 * --hide-kernel-symbols, even if the user specifies an
758 * invalid --vmlinux ;-)
760 if (!machine
->kptr_restrict_warned
&& !top
->vmlinux_warned
&&
761 al
.map
== machine
->vmlinux_maps
[MAP__FUNCTION
] &&
762 RB_EMPTY_ROOT(&al
.map
->dso
->symbols
[MAP__FUNCTION
])) {
763 if (symbol_conf
.vmlinux_name
) {
765 dso__strerror_load(al
.map
->dso
, serr
, sizeof(serr
));
766 ui__warning("The %s file can't be used: %s\n%s",
767 symbol_conf
.vmlinux_name
, serr
, msg
);
769 ui__warning("A vmlinux file was not found.\n%s",
773 if (use_browser
<= 0)
775 top
->vmlinux_warned
= true;
779 if (al
.sym
== NULL
|| !al
.sym
->idle
) {
780 struct hists
*hists
= evsel__hists(evsel
);
781 struct hist_entry_iter iter
= {
784 .add_entry_cb
= hist_iter__top_callback
,
787 if (symbol_conf
.cumulate_callchain
)
788 iter
.ops
= &hist_iter_cumulative
;
790 iter
.ops
= &hist_iter_normal
;
792 pthread_mutex_lock(&hists
->lock
);
794 err
= hist_entry_iter__add(&iter
, &al
, top
->max_stack
, top
);
796 pr_err("Problem incrementing symbol period, skipping event\n");
798 pthread_mutex_unlock(&hists
->lock
);
801 addr_location__put(&al
);
804 static void perf_top__mmap_read_idx(struct perf_top
*top
, int idx
)
806 struct perf_sample sample
;
807 struct perf_evsel
*evsel
;
808 struct perf_session
*session
= top
->session
;
809 union perf_event
*event
;
810 struct machine
*machine
;
813 while ((event
= perf_evlist__mmap_read(top
->evlist
, idx
)) != NULL
) {
814 ret
= perf_evlist__parse_sample(top
->evlist
, event
, &sample
);
816 pr_err("Can't parse sample, err = %d\n", ret
);
820 evsel
= perf_evlist__id2evsel(session
->evlist
, sample
.id
);
821 assert(evsel
!= NULL
);
823 if (event
->header
.type
== PERF_RECORD_SAMPLE
)
826 switch (sample
.cpumode
) {
827 case PERF_RECORD_MISC_USER
:
829 if (top
->hide_user_symbols
)
831 machine
= &session
->machines
.host
;
833 case PERF_RECORD_MISC_KERNEL
:
834 ++top
->kernel_samples
;
835 if (top
->hide_kernel_symbols
)
837 machine
= &session
->machines
.host
;
839 case PERF_RECORD_MISC_GUEST_KERNEL
:
840 ++top
->guest_kernel_samples
;
841 machine
= perf_session__find_machine(session
,
844 case PERF_RECORD_MISC_GUEST_USER
:
845 ++top
->guest_us_samples
;
847 * TODO: we don't process guest user from host side
848 * except simple counting.
852 if (event
->header
.type
== PERF_RECORD_SAMPLE
)
854 machine
= &session
->machines
.host
;
859 if (event
->header
.type
== PERF_RECORD_SAMPLE
) {
860 perf_event__process_sample(&top
->tool
, event
, evsel
,
862 } else if (event
->header
.type
< PERF_RECORD_MAX
) {
863 hists__inc_nr_events(evsel__hists(evsel
), event
->header
.type
);
864 machine__process_event(machine
, event
, &sample
);
866 ++session
->evlist
->stats
.nr_unknown_events
;
868 perf_evlist__mmap_consume(top
->evlist
, idx
);
872 static void perf_top__mmap_read(struct perf_top
*top
)
876 for (i
= 0; i
< top
->evlist
->nr_mmaps
; i
++)
877 perf_top__mmap_read_idx(top
, i
);
880 static int perf_top__start_counters(struct perf_top
*top
)
883 struct perf_evsel
*counter
;
884 struct perf_evlist
*evlist
= top
->evlist
;
885 struct record_opts
*opts
= &top
->record_opts
;
887 perf_evlist__config(evlist
, opts
, &callchain_param
);
889 evlist__for_each_entry(evlist
, counter
) {
891 if (perf_evsel__open(counter
, top
->evlist
->cpus
,
892 top
->evlist
->threads
) < 0) {
893 if (perf_evsel__fallback(counter
, errno
, msg
, sizeof(msg
))) {
895 ui__warning("%s\n", msg
);
899 perf_evsel__open_strerror(counter
, &opts
->target
,
900 errno
, msg
, sizeof(msg
));
901 ui__error("%s\n", msg
);
906 if (perf_evlist__mmap(evlist
, opts
->mmap_pages
, false) < 0) {
907 ui__error("Failed to mmap with %d (%s)\n",
908 errno
, str_error_r(errno
, msg
, sizeof(msg
)));
918 static int callchain_param__setup_sample_type(struct callchain_param
*callchain
)
920 if (!perf_hpp_list
.sym
) {
921 if (callchain
->enabled
) {
922 ui__error("Selected -g but \"sym\" not present in --sort/-s.");
925 } else if (callchain
->mode
!= CHAIN_NONE
) {
926 if (callchain_register_param(callchain
) < 0) {
927 ui__error("Can't register callchain params.\n");
935 static int __cmd_top(struct perf_top
*top
)
938 struct perf_evsel
*pos
;
939 struct perf_evsel_config_term
*err_term
;
940 struct perf_evlist
*evlist
= top
->evlist
;
941 struct record_opts
*opts
= &top
->record_opts
;
945 top
->session
= perf_session__new(NULL
, false, NULL
);
946 if (top
->session
== NULL
)
950 ret
= perf_env__lookup_objdump(&top
->session
->header
.env
);
955 ret
= callchain_param__setup_sample_type(&callchain_param
);
959 if (perf_session__register_idle_thread(top
->session
) < 0)
962 if (top
->nr_threads_synthesize
> 1)
963 perf_set_multithreaded();
965 machine__synthesize_threads(&top
->session
->machines
.host
, &opts
->target
,
966 top
->evlist
->threads
, false,
967 opts
->proc_map_timeout
,
968 top
->nr_threads_synthesize
);
970 if (top
->nr_threads_synthesize
> 1)
971 perf_set_singlethreaded();
973 if (perf_hpp_list
.socket
) {
974 ret
= perf_env__read_cpu_topology_map(&perf_env
);
976 goto out_err_cpu_topo
;
979 ret
= perf_top__start_counters(top
);
983 ret
= perf_evlist__apply_drv_configs(evlist
, &pos
, &err_term
);
985 pr_err("failed to set config \"%s\" on event %s with %d (%s)\n",
986 err_term
->val
.drv_cfg
, perf_evsel__name(pos
), errno
,
987 str_error_r(errno
, msg
, sizeof(msg
)));
991 top
->session
->evlist
= top
->evlist
;
992 perf_session__set_id_hdr_size(top
->session
);
995 * When perf is starting the traced process, all the events (apart from
996 * group members) have enable_on_exec=1 set, so don't spoil it by
997 * prematurely enabling them.
999 * XXX 'top' still doesn't start workloads like record, trace, but should,
1000 * so leave the check here.
1002 if (!target__none(&opts
->target
))
1003 perf_evlist__enable(top
->evlist
);
1005 /* Wait for a minimal set of events before starting the snapshot */
1006 perf_evlist__poll(top
->evlist
, 100);
1008 perf_top__mmap_read(top
);
1011 if (pthread_create(&thread
, NULL
, (use_browser
> 0 ? display_thread_tui
:
1012 display_thread
), top
)) {
1013 ui__error("Could not create display thread.\n");
1017 if (top
->realtime_prio
) {
1018 struct sched_param param
;
1020 param
.sched_priority
= top
->realtime_prio
;
1021 if (sched_setscheduler(0, SCHED_FIFO
, ¶m
)) {
1022 ui__error("Could not set realtime priority.\n");
1028 u64 hits
= top
->samples
;
1030 perf_top__mmap_read(top
);
1032 if (hits
== top
->samples
)
1033 ret
= perf_evlist__poll(top
->evlist
, 100);
1036 perf_top__resize(top
);
1043 pthread_join(thread
, NULL
);
1045 perf_session__delete(top
->session
);
1046 top
->session
= NULL
;
1051 char errbuf
[BUFSIZ
];
1052 const char *err
= str_error_r(-ret
, errbuf
, sizeof(errbuf
));
1054 ui__error("Could not read the CPU topology map: %s\n", err
);
1060 callchain_opt(const struct option
*opt
, const char *arg
, int unset
)
1062 symbol_conf
.use_callchain
= true;
1063 return record_callchain_opt(opt
, arg
, unset
);
1067 parse_callchain_opt(const struct option
*opt
, const char *arg
, int unset
)
1069 struct callchain_param
*callchain
= opt
->value
;
1071 callchain
->enabled
= !unset
;
1072 callchain
->record_mode
= CALLCHAIN_FP
;
1078 symbol_conf
.use_callchain
= false;
1079 callchain
->record_mode
= CALLCHAIN_NONE
;
1083 return parse_callchain_top_opt(arg
);
1086 static int perf_top_config(const char *var
, const char *value
, void *cb __maybe_unused
)
1088 if (!strcmp(var
, "top.call-graph"))
1089 var
= "call-graph.record-mode"; /* fall-through */
1090 if (!strcmp(var
, "top.children")) {
1091 symbol_conf
.cumulate_callchain
= perf_config_bool(var
, value
);
1099 parse_percent_limit(const struct option
*opt
, const char *arg
,
1100 int unset __maybe_unused
)
1102 struct perf_top
*top
= opt
->value
;
1104 top
->min_percent
= strtof(arg
, NULL
);
1108 const char top_callchain_help
[] = CALLCHAIN_RECORD_HELP CALLCHAIN_REPORT_HELP
1109 "\n\t\t\t\tDefault: fp,graph,0.5,caller,function";
1111 int cmd_top(int argc
, const char **argv
)
1113 char errbuf
[BUFSIZ
];
1114 struct perf_top top
= {
1118 .mmap_pages
= UINT_MAX
,
1119 .user_freq
= UINT_MAX
,
1120 .user_interval
= ULLONG_MAX
,
1121 .freq
= 4000, /* 4 KHz */
1125 .proc_map_timeout
= 500,
1127 .max_stack
= sysctl_perf_event_max_stack
,
1128 .sym_pcnt_filter
= 5,
1129 .nr_threads_synthesize
= UINT_MAX
,
1131 struct record_opts
*opts
= &top
.record_opts
;
1132 struct target
*target
= &opts
->target
;
1133 const struct option options
[] = {
1134 OPT_CALLBACK('e', "event", &top
.evlist
, "event",
1135 "event selector. use 'perf list' to list available events",
1136 parse_events_option
),
1137 OPT_U64('c', "count", &opts
->user_interval
, "event period to sample"),
1138 OPT_STRING('p', "pid", &target
->pid
, "pid",
1139 "profile events on existing process id"),
1140 OPT_STRING('t', "tid", &target
->tid
, "tid",
1141 "profile events on existing thread id"),
1142 OPT_BOOLEAN('a', "all-cpus", &target
->system_wide
,
1143 "system-wide collection from all CPUs"),
1144 OPT_STRING('C', "cpu", &target
->cpu_list
, "cpu",
1145 "list of cpus to monitor"),
1146 OPT_STRING('k', "vmlinux", &symbol_conf
.vmlinux_name
,
1147 "file", "vmlinux pathname"),
1148 OPT_BOOLEAN(0, "ignore-vmlinux", &symbol_conf
.ignore_vmlinux
,
1149 "don't load vmlinux even if found"),
1150 OPT_BOOLEAN('K', "hide_kernel_symbols", &top
.hide_kernel_symbols
,
1151 "hide kernel symbols"),
1152 OPT_CALLBACK('m', "mmap-pages", &opts
->mmap_pages
, "pages",
1153 "number of mmap data pages",
1154 perf_evlist__parse_mmap_pages
),
1155 OPT_INTEGER('r', "realtime", &top
.realtime_prio
,
1156 "collect data with this RT SCHED_FIFO priority"),
1157 OPT_INTEGER('d', "delay", &top
.delay_secs
,
1158 "number of seconds to delay between refreshes"),
1159 OPT_BOOLEAN('D', "dump-symtab", &top
.dump_symtab
,
1160 "dump the symbol table used for profiling"),
1161 OPT_INTEGER('f', "count-filter", &top
.count_filter
,
1162 "only display functions with more events than this"),
1163 OPT_BOOLEAN(0, "group", &opts
->group
,
1164 "put the counters into a counter group"),
1165 OPT_BOOLEAN('i', "no-inherit", &opts
->no_inherit
,
1166 "child tasks do not inherit counters"),
1167 OPT_STRING(0, "sym-annotate", &top
.sym_filter
, "symbol name",
1168 "symbol to annotate"),
1169 OPT_BOOLEAN('z', "zero", &top
.zero
, "zero history across updates"),
1170 OPT_UINTEGER('F', "freq", &opts
->user_freq
, "profile at this frequency"),
1171 OPT_INTEGER('E', "entries", &top
.print_entries
,
1172 "display this many functions"),
1173 OPT_BOOLEAN('U', "hide_user_symbols", &top
.hide_user_symbols
,
1174 "hide user symbols"),
1175 OPT_BOOLEAN(0, "tui", &top
.use_tui
, "Use the TUI interface"),
1176 OPT_BOOLEAN(0, "stdio", &top
.use_stdio
, "Use the stdio interface"),
1177 OPT_INCR('v', "verbose", &verbose
,
1178 "be more verbose (show counter open errors, etc)"),
1179 OPT_STRING('s', "sort", &sort_order
, "key[,key2...]",
1180 "sort by key(s): pid, comm, dso, symbol, parent, cpu, srcline, ..."
1181 " Please refer the man page for the complete list."),
1182 OPT_STRING(0, "fields", &field_order
, "key[,keys...]",
1183 "output field(s): overhead, period, sample plus all of sort keys"),
1184 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf
.show_nr_samples
,
1185 "Show a column with the number of samples"),
1186 OPT_CALLBACK_NOOPT('g', NULL
, &callchain_param
,
1187 NULL
, "enables call-graph recording and display",
1189 OPT_CALLBACK(0, "call-graph", &callchain_param
,
1190 "record_mode[,record_size],print_type,threshold[,print_limit],order,sort_key[,branch]",
1191 top_callchain_help
, &parse_callchain_opt
),
1192 OPT_BOOLEAN(0, "children", &symbol_conf
.cumulate_callchain
,
1193 "Accumulate callchains of children and show total overhead as well"),
1194 OPT_INTEGER(0, "max-stack", &top
.max_stack
,
1195 "Set the maximum stack depth when parsing the callchain. "
1196 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH
)),
1197 OPT_CALLBACK(0, "ignore-callees", NULL
, "regex",
1198 "ignore callees of these functions in call graphs",
1199 report_parse_ignore_callees_opt
),
1200 OPT_BOOLEAN(0, "show-total-period", &symbol_conf
.show_total_period
,
1201 "Show a column with the sum of periods"),
1202 OPT_STRING(0, "dsos", &symbol_conf
.dso_list_str
, "dso[,dso...]",
1203 "only consider symbols in these dsos"),
1204 OPT_STRING(0, "comms", &symbol_conf
.comm_list_str
, "comm[,comm...]",
1205 "only consider symbols in these comms"),
1206 OPT_STRING(0, "symbols", &symbol_conf
.sym_list_str
, "symbol[,symbol...]",
1207 "only consider these symbols"),
1208 OPT_BOOLEAN(0, "source", &symbol_conf
.annotate_src
,
1209 "Interleave source code with assembly code (default)"),
1210 OPT_BOOLEAN(0, "asm-raw", &symbol_conf
.annotate_asm_raw
,
1211 "Display raw encoding of assembly instructions (default)"),
1212 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf
.demangle_kernel
,
1213 "Enable kernel symbol demangling"),
1214 OPT_STRING(0, "objdump", &objdump_path
, "path",
1215 "objdump binary to use for disassembly and annotations"),
1216 OPT_STRING('M', "disassembler-style", &disassembler_style
, "disassembler style",
1217 "Specify disassembler style (e.g. -M intel for intel syntax)"),
1218 OPT_STRING('u', "uid", &target
->uid_str
, "user", "user to profile"),
1219 OPT_CALLBACK(0, "percent-limit", &top
, "percent",
1220 "Don't show entries under that percent", parse_percent_limit
),
1221 OPT_CALLBACK(0, "percentage", NULL
, "relative|absolute",
1222 "How to display percentage of filtered entries", parse_filter_percentage
),
1223 OPT_STRING('w', "column-widths", &symbol_conf
.col_width_list_str
,
1225 "don't try to adjust column width, use these fixed values"),
1226 OPT_UINTEGER(0, "proc-map-timeout", &opts
->proc_map_timeout
,
1227 "per thread proc mmap processing timeout in ms"),
1228 OPT_CALLBACK_NOOPT('b', "branch-any", &opts
->branch_stack
,
1229 "branch any", "sample any taken branches",
1230 parse_branch_stack
),
1231 OPT_CALLBACK('j', "branch-filter", &opts
->branch_stack
,
1232 "branch filter mask", "branch stack filter modes",
1233 parse_branch_stack
),
1234 OPT_BOOLEAN(0, "raw-trace", &symbol_conf
.raw_trace
,
1235 "Show raw trace event output (do not use print fmt or plugins)"),
1236 OPT_BOOLEAN(0, "hierarchy", &symbol_conf
.report_hierarchy
,
1237 "Show entries in a hierarchy"),
1238 OPT_BOOLEAN(0, "force", &symbol_conf
.force
, "don't complain, do it"),
1239 OPT_UINTEGER(0, "num-thread-synthesize", &top
.nr_threads_synthesize
,
1240 "number of thread to run event synthesize"),
1243 const char * const top_usage
[] = {
1244 "perf top [<options>]",
1247 int status
= hists__init();
1252 top
.evlist
= perf_evlist__new();
1253 if (top
.evlist
== NULL
)
1256 status
= perf_config(perf_top_config
, &top
);
1260 argc
= parse_options(argc
, argv
, options
, top_usage
, 0);
1262 usage_with_options(top_usage
, options
);
1264 if (!top
.evlist
->nr_entries
&&
1265 perf_evlist__add_default(top
.evlist
) < 0) {
1266 pr_err("Not enough memory for event selector list\n");
1267 goto out_delete_evlist
;
1270 if (symbol_conf
.report_hierarchy
) {
1271 /* disable incompatible options */
1272 symbol_conf
.event_group
= false;
1273 symbol_conf
.cumulate_callchain
= false;
1276 pr_err("Error: --hierarchy and --fields options cannot be used together\n");
1277 parse_options_usage(top_usage
, options
, "fields", 0);
1278 parse_options_usage(NULL
, options
, "hierarchy", 0);
1279 goto out_delete_evlist
;
1283 sort__mode
= SORT_MODE__TOP
;
1284 /* display thread wants entries to be collapsed in a different tree */
1285 perf_hpp_list
.need_collapse
= 1;
1289 else if (top
.use_tui
)
1292 setup_browser(false);
1294 if (setup_sorting(top
.evlist
) < 0) {
1296 parse_options_usage(top_usage
, options
, "s", 1);
1298 parse_options_usage(sort_order
? NULL
: top_usage
,
1299 options
, "fields", 0);
1300 goto out_delete_evlist
;
1303 status
= target__validate(target
);
1305 target__strerror(target
, status
, errbuf
, BUFSIZ
);
1306 ui__warning("%s\n", errbuf
);
1309 status
= target__parse_uid(target
);
1311 int saved_errno
= errno
;
1313 target__strerror(target
, status
, errbuf
, BUFSIZ
);
1314 ui__error("%s\n", errbuf
);
1316 status
= -saved_errno
;
1317 goto out_delete_evlist
;
1320 if (target__none(target
))
1321 target
->system_wide
= true;
1323 if (perf_evlist__create_maps(top
.evlist
, target
) < 0) {
1324 ui__error("Couldn't create thread/CPU maps: %s\n",
1325 errno
== ENOENT
? "No such process" : str_error_r(errno
, errbuf
, sizeof(errbuf
)));
1326 goto out_delete_evlist
;
1329 symbol_conf
.nr_events
= top
.evlist
->nr_entries
;
1331 if (top
.delay_secs
< 1)
1334 if (record_opts__config(opts
)) {
1336 goto out_delete_evlist
;
1339 top
.sym_evsel
= perf_evlist__first(top
.evlist
);
1341 if (!callchain_param
.enabled
) {
1342 symbol_conf
.cumulate_callchain
= false;
1343 perf_hpp__cancel_cumulate();
1346 if (symbol_conf
.cumulate_callchain
&& !callchain_param
.order_set
)
1347 callchain_param
.order
= ORDER_CALLER
;
1349 status
= symbol__annotation_init();
1351 goto out_delete_evlist
;
1353 symbol_conf
.try_vmlinux_path
= (symbol_conf
.vmlinux_name
== NULL
);
1354 if (symbol__init(NULL
) < 0)
1357 sort__setup_elide(stdout
);
1359 get_term_dimensions(&top
.winsize
);
1360 if (top
.print_entries
== 0) {
1361 perf_top__update_print_entries(&top
);
1362 signal(SIGWINCH
, winch_sig
);
1365 status
= __cmd_top(&top
);
1368 perf_evlist__delete(top
.evlist
);