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/cache.h"
26 #include "util/color.h"
27 #include "util/evlist.h"
28 #include "util/evsel.h"
29 #include "util/session.h"
30 #include "util/symbol.h"
31 #include "util/thread.h"
32 #include "util/thread_map.h"
34 #include "util/util.h"
35 #include <linux/rbtree.h>
36 #include "util/parse-options.h"
37 #include "util/parse-events.h"
38 #include "util/cpumap.h"
39 #include "util/xyarray.h"
40 #include "util/sort.h"
42 #include "util/debug.h"
56 #include <sys/syscall.h>
57 #include <sys/ioctl.h>
59 #include <sys/prctl.h>
64 #include <linux/unistd.h>
65 #include <linux/types.h>
68 void get_term_dimensions(struct winsize
*ws
)
70 char *s
= getenv("LINES");
74 s
= getenv("COLUMNS");
77 if (ws
->ws_row
&& ws
->ws_col
)
82 if (ioctl(1, TIOCGWINSZ
, ws
) == 0 &&
83 ws
->ws_row
&& ws
->ws_col
)
90 static void perf_top__update_print_entries(struct perf_top
*top
)
92 if (top
->print_entries
> 9)
93 top
->print_entries
-= 9;
96 static void perf_top__sig_winch(int sig __used
, siginfo_t
*info __used
, void *arg
)
98 struct perf_top
*top
= arg
;
100 get_term_dimensions(&top
->winsize
);
101 if (!top
->print_entries
102 || (top
->print_entries
+4) > top
->winsize
.ws_row
) {
103 top
->print_entries
= top
->winsize
.ws_row
;
105 top
->print_entries
+= 4;
106 top
->winsize
.ws_row
= top
->print_entries
;
108 perf_top__update_print_entries(top
);
111 static int perf_top__parse_source(struct perf_top
*top
, struct hist_entry
*he
)
114 struct annotation
*notes
;
118 if (!he
|| !he
->ms
.sym
)
125 * We can't annotate with just /proc/kallsyms
127 if (map
->dso
->symtab_type
== SYMTAB__KALLSYMS
) {
128 pr_err("Can't annotate %s: No vmlinux file was found in the "
129 "path\n", sym
->name
);
134 notes
= symbol__annotation(sym
);
135 if (notes
->src
!= NULL
) {
136 pthread_mutex_lock(¬es
->lock
);
140 pthread_mutex_lock(¬es
->lock
);
142 if (symbol__alloc_hist(sym
) < 0) {
143 pthread_mutex_unlock(¬es
->lock
);
144 pr_err("Not enough memory for annotating '%s' symbol!\n",
150 err
= symbol__annotate(sym
, map
, 0);
153 top
->sym_filter_entry
= he
;
156 pthread_mutex_unlock(¬es
->lock
);
160 static void __zero_source_counters(struct hist_entry
*he
)
162 struct symbol
*sym
= he
->ms
.sym
;
163 symbol__annotate_zero_histograms(sym
);
166 static void perf_top__record_precise_ip(struct perf_top
*top
,
167 struct hist_entry
*he
,
170 struct annotation
*notes
;
173 if (he
== NULL
|| he
->ms
.sym
== NULL
||
174 ((top
->sym_filter_entry
== NULL
||
175 top
->sym_filter_entry
->ms
.sym
!= he
->ms
.sym
) && use_browser
!= 1))
179 notes
= symbol__annotation(sym
);
181 if (pthread_mutex_trylock(¬es
->lock
))
184 if (notes
->src
== NULL
&& symbol__alloc_hist(sym
) < 0) {
185 pthread_mutex_unlock(¬es
->lock
);
186 pr_err("Not enough memory for annotating '%s' symbol!\n",
192 ip
= he
->ms
.map
->map_ip(he
->ms
.map
, ip
);
193 symbol__inc_addr_samples(sym
, he
->ms
.map
, counter
, ip
);
195 pthread_mutex_unlock(¬es
->lock
);
198 static void perf_top__show_details(struct perf_top
*top
)
200 struct hist_entry
*he
= top
->sym_filter_entry
;
201 struct annotation
*notes
;
202 struct symbol
*symbol
;
209 notes
= symbol__annotation(symbol
);
211 pthread_mutex_lock(¬es
->lock
);
213 if (notes
->src
== NULL
)
216 printf("Showing %s for %s\n", event_name(top
->sym_evsel
), symbol
->name
);
217 printf(" Events Pcnt (>=%d%%)\n", top
->sym_pcnt_filter
);
219 more
= symbol__annotate_printf(symbol
, he
->ms
.map
, top
->sym_evsel
->idx
,
220 0, top
->sym_pcnt_filter
, top
->print_entries
, 4);
222 symbol__annotate_zero_histogram(symbol
, top
->sym_evsel
->idx
);
224 symbol__annotate_decay_histogram(symbol
, top
->sym_evsel
->idx
);
226 printf("%d lines not displayed, maybe increase display entries [e]\n", more
);
228 pthread_mutex_unlock(¬es
->lock
);
231 static const char CONSOLE_CLEAR
[] = "\e[H\e[2J";
233 static struct hist_entry
*perf_evsel__add_hist_entry(struct perf_evsel
*evsel
,
234 struct addr_location
*al
,
235 struct perf_sample
*sample
)
237 struct hist_entry
*he
;
239 he
= __hists__add_entry(&evsel
->hists
, al
, NULL
, sample
->period
);
243 hists__inc_nr_events(&evsel
->hists
, PERF_RECORD_SAMPLE
);
247 static void perf_top__print_sym_table(struct perf_top
*top
)
251 const int win_width
= top
->winsize
.ws_col
- 1;
255 perf_top__header_snprintf(top
, bf
, sizeof(bf
));
258 perf_top__reset_sample_counters(top
);
260 printf("%-*.*s\n", win_width
, win_width
, graph_dotted_line
);
262 if (top
->sym_evsel
->hists
.stats
.nr_lost_warned
!=
263 top
->sym_evsel
->hists
.stats
.nr_events
[PERF_RECORD_LOST
]) {
264 top
->sym_evsel
->hists
.stats
.nr_lost_warned
=
265 top
->sym_evsel
->hists
.stats
.nr_events
[PERF_RECORD_LOST
];
266 color_fprintf(stdout
, PERF_COLOR_RED
,
267 "WARNING: LOST %d chunks, Check IO/CPU overload",
268 top
->sym_evsel
->hists
.stats
.nr_lost_warned
);
272 if (top
->sym_filter_entry
) {
273 perf_top__show_details(top
);
277 hists__collapse_resort_threaded(&top
->sym_evsel
->hists
);
278 hists__output_resort_threaded(&top
->sym_evsel
->hists
);
279 hists__decay_entries_threaded(&top
->sym_evsel
->hists
,
280 top
->hide_user_symbols
,
281 top
->hide_kernel_symbols
);
282 hists__output_recalc_col_len(&top
->sym_evsel
->hists
,
283 top
->winsize
.ws_row
- 3);
285 hists__fprintf(&top
->sym_evsel
->hists
, NULL
, false, false,
286 top
->winsize
.ws_row
- 4 - printed
, win_width
, stdout
);
289 static void prompt_integer(int *target
, const char *msg
)
291 char *buf
= malloc(0), *p
;
295 fprintf(stdout
, "\n%s: ", msg
);
296 if (getline(&buf
, &dummy
, stdin
) < 0)
299 p
= strchr(buf
, '\n');
309 tmp
= strtoul(buf
, NULL
, 10);
315 static void prompt_percent(int *target
, const char *msg
)
319 prompt_integer(&tmp
, msg
);
320 if (tmp
>= 0 && tmp
<= 100)
324 static void perf_top__prompt_symbol(struct perf_top
*top
, const char *msg
)
326 char *buf
= malloc(0), *p
;
327 struct hist_entry
*syme
= top
->sym_filter_entry
, *n
, *found
= NULL
;
328 struct rb_node
*next
;
331 /* zero counters of active symbol */
333 __zero_source_counters(syme
);
334 top
->sym_filter_entry
= NULL
;
337 fprintf(stdout
, "\n%s: ", msg
);
338 if (getline(&buf
, &dummy
, stdin
) < 0)
341 p
= strchr(buf
, '\n');
345 next
= rb_first(&top
->sym_evsel
->hists
.entries
);
347 n
= rb_entry(next
, struct hist_entry
, rb_node
);
348 if (n
->ms
.sym
&& !strcmp(buf
, n
->ms
.sym
->name
)) {
352 next
= rb_next(&n
->rb_node
);
356 fprintf(stderr
, "Sorry, %s is not active.\n", buf
);
359 perf_top__parse_source(top
, found
);
365 static void perf_top__print_mapped_keys(struct perf_top
*top
)
369 if (top
->sym_filter_entry
) {
370 struct symbol
*sym
= top
->sym_filter_entry
->ms
.sym
;
374 fprintf(stdout
, "\nMapped keys:\n");
375 fprintf(stdout
, "\t[d] display refresh delay. \t(%d)\n", top
->delay_secs
);
376 fprintf(stdout
, "\t[e] display entries (lines). \t(%d)\n", top
->print_entries
);
378 if (top
->evlist
->nr_entries
> 1)
379 fprintf(stdout
, "\t[E] active event counter. \t(%s)\n", event_name(top
->sym_evsel
));
381 fprintf(stdout
, "\t[f] profile display filter (count). \t(%d)\n", top
->count_filter
);
383 fprintf(stdout
, "\t[F] annotate display filter (percent). \t(%d%%)\n", top
->sym_pcnt_filter
);
384 fprintf(stdout
, "\t[s] annotate symbol. \t(%s)\n", name
?: "NULL");
385 fprintf(stdout
, "\t[S] stop annotation.\n");
388 "\t[K] hide kernel_symbols symbols. \t(%s)\n",
389 top
->hide_kernel_symbols
? "yes" : "no");
391 "\t[U] hide user symbols. \t(%s)\n",
392 top
->hide_user_symbols
? "yes" : "no");
393 fprintf(stdout
, "\t[z] toggle sample zeroing. \t(%d)\n", top
->zero
? 1 : 0);
394 fprintf(stdout
, "\t[qQ] quit.\n");
397 static int perf_top__key_mapped(struct perf_top
*top
, int c
)
413 return top
->evlist
->nr_entries
> 1 ? 1 : 0;
421 static void perf_top__handle_keypress(struct perf_top
*top
, int c
)
423 if (!perf_top__key_mapped(top
, c
)) {
424 struct pollfd stdin_poll
= { .fd
= 0, .events
= POLLIN
};
425 struct termios tc
, save
;
427 perf_top__print_mapped_keys(top
);
428 fprintf(stdout
, "\nEnter selection, or unmapped key to continue: ");
433 tc
.c_lflag
&= ~(ICANON
| ECHO
);
436 tcsetattr(0, TCSANOW
, &tc
);
438 poll(&stdin_poll
, 1, -1);
441 tcsetattr(0, TCSAFLUSH
, &save
);
442 if (!perf_top__key_mapped(top
, c
))
448 prompt_integer(&top
->delay_secs
, "Enter display delay");
449 if (top
->delay_secs
< 1)
453 prompt_integer(&top
->print_entries
, "Enter display entries (lines)");
454 if (top
->print_entries
== 0) {
455 struct sigaction act
= {
456 .sa_sigaction
= perf_top__sig_winch
,
457 .sa_flags
= SA_SIGINFO
,
459 perf_top__sig_winch(SIGWINCH
, NULL
, top
);
460 sigaction(SIGWINCH
, &act
, NULL
);
462 perf_top__sig_winch(SIGWINCH
, NULL
, top
);
463 signal(SIGWINCH
, SIG_DFL
);
467 if (top
->evlist
->nr_entries
> 1) {
468 /* Select 0 as the default event: */
471 fprintf(stderr
, "\nAvailable events:");
473 list_for_each_entry(top
->sym_evsel
, &top
->evlist
->entries
, node
)
474 fprintf(stderr
, "\n\t%d %s", top
->sym_evsel
->idx
, event_name(top
->sym_evsel
));
476 prompt_integer(&counter
, "Enter details event counter");
478 if (counter
>= top
->evlist
->nr_entries
) {
479 top
->sym_evsel
= list_entry(top
->evlist
->entries
.next
, struct perf_evsel
, node
);
480 fprintf(stderr
, "Sorry, no such event, using %s.\n", event_name(top
->sym_evsel
));
484 list_for_each_entry(top
->sym_evsel
, &top
->evlist
->entries
, node
)
485 if (top
->sym_evsel
->idx
== counter
)
488 top
->sym_evsel
= list_entry(top
->evlist
->entries
.next
, struct perf_evsel
, node
);
491 prompt_integer(&top
->count_filter
, "Enter display event count filter");
494 prompt_percent(&top
->sym_pcnt_filter
,
495 "Enter details display event filter (percent)");
498 top
->hide_kernel_symbols
= !top
->hide_kernel_symbols
;
502 printf("exiting.\n");
503 if (top
->dump_symtab
)
504 perf_session__fprintf_dsos(top
->session
, stderr
);
507 perf_top__prompt_symbol(top
, "Enter details symbol");
510 if (!top
->sym_filter_entry
)
513 struct hist_entry
*syme
= top
->sym_filter_entry
;
515 top
->sym_filter_entry
= NULL
;
516 __zero_source_counters(syme
);
520 top
->hide_user_symbols
= !top
->hide_user_symbols
;
523 top
->zero
= !top
->zero
;
530 static void perf_top__sort_new_samples(void *arg
)
532 struct perf_top
*t
= arg
;
533 perf_top__reset_sample_counters(t
);
535 if (t
->evlist
->selected
!= NULL
)
536 t
->sym_evsel
= t
->evlist
->selected
;
538 hists__collapse_resort_threaded(&t
->sym_evsel
->hists
);
539 hists__output_resort_threaded(&t
->sym_evsel
->hists
);
540 hists__decay_entries_threaded(&t
->sym_evsel
->hists
,
541 t
->hide_user_symbols
,
542 t
->hide_kernel_symbols
);
545 static void *display_thread_tui(void *arg
)
547 struct perf_top
*top
= arg
;
548 const char *help
= "For a higher level overview, try: perf top --sort comm,dso";
550 perf_top__sort_new_samples(top
);
551 perf_evlist__tui_browse_hists(top
->evlist
, help
,
552 perf_top__sort_new_samples
,
553 top
, top
->delay_secs
);
560 static void *display_thread(void *arg
)
562 struct pollfd stdin_poll
= { .fd
= 0, .events
= POLLIN
};
563 struct termios tc
, save
;
564 struct perf_top
*top
= arg
;
569 tc
.c_lflag
&= ~(ICANON
| ECHO
);
573 pthread__unblock_sigwinch();
575 delay_msecs
= top
->delay_secs
* 1000;
576 tcsetattr(0, TCSANOW
, &tc
);
581 perf_top__print_sym_table(top
);
583 * Either timeout expired or we got an EINTR due to SIGWINCH,
584 * refresh screen in both cases.
586 switch (poll(&stdin_poll
, 1, delay_msecs
)) {
599 tcsetattr(0, TCSAFLUSH
, &save
);
601 perf_top__handle_keypress(top
, c
);
607 /* Tag samples to be skipped. */
608 static const char *skip_symbols
[] = {
615 "mwait_idle_with_hints",
617 "ppc64_runlatch_off",
618 "pseries_dedicated_idle_sleep",
622 static int symbol_filter(struct map
*map __used
, struct symbol
*sym
)
624 const char *name
= sym
->name
;
628 * ppc64 uses function descriptors and appends a '.' to the
629 * start of every instruction address. Remove it.
634 if (!strcmp(name
, "_text") ||
635 !strcmp(name
, "_etext") ||
636 !strcmp(name
, "_sinittext") ||
637 !strncmp("init_module", name
, 11) ||
638 !strncmp("cleanup_module", name
, 14) ||
639 strstr(name
, "_text_start") ||
640 strstr(name
, "_text_end"))
643 for (i
= 0; skip_symbols
[i
]; i
++) {
644 if (!strcmp(skip_symbols
[i
], name
)) {
653 static void perf_event__process_sample(struct perf_tool
*tool
,
654 const union perf_event
*event
,
655 struct perf_evsel
*evsel
,
656 struct perf_sample
*sample
,
657 struct machine
*machine
)
659 struct perf_top
*top
= container_of(tool
, struct perf_top
, tool
);
660 struct symbol
*parent
= NULL
;
661 u64 ip
= event
->ip
.ip
;
662 struct addr_location al
;
665 if (!machine
&& perf_guest
) {
666 pr_err("Can't find guest [%d]'s kernel information\n",
671 if (event
->header
.misc
& PERF_RECORD_MISC_EXACT_IP
)
672 top
->exact_samples
++;
674 if (perf_event__preprocess_sample(event
, machine
, &al
, sample
,
675 symbol_filter
) < 0 ||
679 if (!top
->kptr_restrict_warned
&&
680 symbol_conf
.kptr_restrict
&&
681 al
.cpumode
== PERF_RECORD_MISC_KERNEL
) {
683 "Kernel address maps (/proc/{kallsyms,modules}) are restricted.\n\n"
684 "Check /proc/sys/kernel/kptr_restrict.\n\n"
685 "Kernel%s samples will not be resolved.\n",
686 !RB_EMPTY_ROOT(&al
.map
->dso
->symbols
[MAP__FUNCTION
]) ?
688 if (use_browser
<= 0)
690 top
->kptr_restrict_warned
= true;
693 if (al
.sym
== NULL
) {
694 const char *msg
= "Kernel samples will not be resolved.\n";
696 * As we do lazy loading of symtabs we only will know if the
697 * specified vmlinux file is invalid when we actually have a
698 * hit in kernel space and then try to load it. So if we get
699 * here and there are _no_ symbols in the DSO backing the
700 * kernel map, bail out.
702 * We may never get here, for instance, if we use -K/
703 * --hide-kernel-symbols, even if the user specifies an
704 * invalid --vmlinux ;-)
706 if (!top
->kptr_restrict_warned
&& !top
->vmlinux_warned
&&
707 al
.map
== machine
->vmlinux_maps
[MAP__FUNCTION
] &&
708 RB_EMPTY_ROOT(&al
.map
->dso
->symbols
[MAP__FUNCTION
])) {
709 if (symbol_conf
.vmlinux_name
) {
710 ui__warning("The %s file can't be used.\n%s",
711 symbol_conf
.vmlinux_name
, msg
);
713 ui__warning("A vmlinux file was not found.\n%s",
717 if (use_browser
<= 0)
719 top
->vmlinux_warned
= true;
723 if (al
.sym
== NULL
|| !al
.sym
->ignore
) {
724 struct hist_entry
*he
;
726 if ((sort__has_parent
|| symbol_conf
.use_callchain
) &&
728 err
= machine__resolve_callchain(machine
, evsel
, al
.thread
,
729 sample
->callchain
, &parent
);
734 he
= perf_evsel__add_hist_entry(evsel
, &al
, sample
);
736 pr_err("Problem incrementing symbol period, skipping event\n");
740 if (symbol_conf
.use_callchain
) {
741 err
= callchain_append(he
->callchain
, &evsel
->hists
.callchain_cursor
,
747 if (top
->sort_has_symbols
)
748 perf_top__record_precise_ip(top
, he
, evsel
->idx
, ip
);
754 static void perf_top__mmap_read_idx(struct perf_top
*top
, int idx
)
756 struct perf_sample sample
;
757 struct perf_evsel
*evsel
;
758 struct perf_session
*session
= top
->session
;
759 union perf_event
*event
;
760 struct machine
*machine
;
764 while ((event
= perf_evlist__mmap_read(top
->evlist
, idx
)) != NULL
) {
765 ret
= perf_session__parse_sample(session
, event
, &sample
);
767 pr_err("Can't parse sample, err = %d\n", ret
);
771 evsel
= perf_evlist__id2evsel(session
->evlist
, sample
.id
);
772 assert(evsel
!= NULL
);
774 origin
= event
->header
.misc
& PERF_RECORD_MISC_CPUMODE_MASK
;
776 if (event
->header
.type
== PERF_RECORD_SAMPLE
)
780 case PERF_RECORD_MISC_USER
:
782 if (top
->hide_user_symbols
)
784 machine
= perf_session__find_host_machine(session
);
786 case PERF_RECORD_MISC_KERNEL
:
787 ++top
->kernel_samples
;
788 if (top
->hide_kernel_symbols
)
790 machine
= perf_session__find_host_machine(session
);
792 case PERF_RECORD_MISC_GUEST_KERNEL
:
793 ++top
->guest_kernel_samples
;
794 machine
= perf_session__find_machine(session
, event
->ip
.pid
);
796 case PERF_RECORD_MISC_GUEST_USER
:
797 ++top
->guest_us_samples
;
799 * TODO: we don't process guest user from host side
800 * except simple counting.
808 if (event
->header
.type
== PERF_RECORD_SAMPLE
) {
809 perf_event__process_sample(&top
->tool
, event
, evsel
,
811 } else if (event
->header
.type
< PERF_RECORD_MAX
) {
812 hists__inc_nr_events(&evsel
->hists
, event
->header
.type
);
813 perf_event__process(&top
->tool
, event
, &sample
, machine
);
815 ++session
->hists
.stats
.nr_unknown_events
;
819 static void perf_top__mmap_read(struct perf_top
*top
)
823 for (i
= 0; i
< top
->evlist
->nr_mmaps
; i
++)
824 perf_top__mmap_read_idx(top
, i
);
827 static void perf_top__start_counters(struct perf_top
*top
)
829 struct perf_evsel
*counter
, *first
;
830 struct perf_evlist
*evlist
= top
->evlist
;
832 first
= list_entry(evlist
->entries
.next
, struct perf_evsel
, node
);
834 list_for_each_entry(counter
, &evlist
->entries
, node
) {
835 struct perf_event_attr
*attr
= &counter
->attr
;
836 struct xyarray
*group_fd
= NULL
;
838 if (top
->group
&& counter
!= first
)
839 group_fd
= first
->fd
;
841 attr
->sample_type
= PERF_SAMPLE_IP
| PERF_SAMPLE_TID
;
844 attr
->sample_type
|= PERF_SAMPLE_PERIOD
;
846 attr
->sample_freq
= top
->freq
;
849 if (evlist
->nr_entries
> 1) {
850 attr
->sample_type
|= PERF_SAMPLE_ID
;
851 attr
->read_format
|= PERF_FORMAT_ID
;
854 if (symbol_conf
.use_callchain
)
855 attr
->sample_type
|= PERF_SAMPLE_CALLCHAIN
;
859 attr
->inherit
= top
->inherit
;
860 fallback_missing_features
:
861 if (top
->exclude_guest_missing
)
862 attr
->exclude_guest
= attr
->exclude_host
= 0;
864 attr
->sample_id_all
= top
->sample_id_all_avail
? 1 : 0;
866 if (perf_evsel__open(counter
, top
->evlist
->cpus
,
867 top
->evlist
->threads
, top
->group
,
871 if (err
== EPERM
|| err
== EACCES
) {
872 ui__error_paranoid();
874 } else if (err
== EINVAL
) {
875 if (!top
->exclude_guest_missing
&&
876 (attr
->exclude_guest
|| attr
->exclude_host
)) {
877 pr_debug("Old kernel, cannot exclude "
878 "guest or host samples.\n");
879 top
->exclude_guest_missing
= true;
880 goto fallback_missing_features
;
881 } else if (top
->sample_id_all_avail
) {
883 * Old kernel, no attr->sample_id_type_all field
885 top
->sample_id_all_avail
= false;
886 goto retry_sample_id
;
890 * If it's cycles then fall back to hrtimer
891 * based cpu-clock-tick sw counter, which
892 * is always available even if no PMU support:
894 if (attr
->type
== PERF_TYPE_HARDWARE
&&
895 attr
->config
== PERF_COUNT_HW_CPU_CYCLES
) {
897 ui__warning("Cycles event not supported,\n"
898 "trying to fall back to cpu-clock-ticks\n");
900 attr
->type
= PERF_TYPE_SOFTWARE
;
901 attr
->config
= PERF_COUNT_SW_CPU_CLOCK
;
906 ui__warning("The %s event is not supported.\n",
907 event_name(counter
));
909 } else if (err
== EMFILE
) {
910 ui__warning("Too many events are opened.\n"
911 "Try again after reducing the number of events\n");
915 ui__warning("The sys_perf_event_open() syscall "
916 "returned with %d (%s). /bin/dmesg "
917 "may provide additional information.\n"
918 "No CONFIG_PERF_EVENTS=y kernel support "
919 "configured?\n", err
, strerror(err
));
924 if (perf_evlist__mmap(evlist
, top
->mmap_pages
, false) < 0) {
925 ui__warning("Failed to mmap with %d (%s)\n",
926 errno
, strerror(errno
));
937 static int perf_top__setup_sample_type(struct perf_top
*top
)
939 if (!top
->sort_has_symbols
) {
940 if (symbol_conf
.use_callchain
) {
941 ui__warning("Selected -g but \"sym\" not present in --sort/-s.");
944 } else if (!top
->dont_use_callchains
&& callchain_param
.mode
!= CHAIN_NONE
) {
945 if (callchain_register_param(&callchain_param
) < 0) {
946 ui__warning("Can't register callchain params.\n");
954 static int __cmd_top(struct perf_top
*top
)
959 * FIXME: perf_session__new should allow passing a O_MMAP, so that all this
960 * mmap reading, etc is encapsulated in it. Use O_WRONLY for now.
962 top
->session
= perf_session__new(NULL
, O_WRONLY
, false, false, NULL
);
963 if (top
->session
== NULL
)
966 ret
= perf_top__setup_sample_type(top
);
970 if (top
->target_tid
!= -1)
971 perf_event__synthesize_thread_map(&top
->tool
, top
->evlist
->threads
,
973 &top
->session
->host_machine
);
975 perf_event__synthesize_threads(&top
->tool
, perf_event__process
,
976 &top
->session
->host_machine
);
977 perf_top__start_counters(top
);
978 top
->session
->evlist
= top
->evlist
;
979 perf_session__update_sample_type(top
->session
);
981 /* Wait for a minimal set of events before starting the snapshot */
982 poll(top
->evlist
->pollfd
, top
->evlist
->nr_fds
, 100);
984 perf_top__mmap_read(top
);
986 if (pthread_create(&thread
, NULL
, (use_browser
> 0 ? display_thread_tui
:
987 display_thread
), top
)) {
988 printf("Could not create display thread.\n");
992 if (top
->realtime_prio
) {
993 struct sched_param param
;
995 param
.sched_priority
= top
->realtime_prio
;
996 if (sched_setscheduler(0, SCHED_FIFO
, ¶m
)) {
997 printf("Could not set realtime priority.\n");
1003 u64 hits
= top
->samples
;
1005 perf_top__mmap_read(top
);
1007 if (hits
== top
->samples
)
1008 ret
= poll(top
->evlist
->pollfd
, top
->evlist
->nr_fds
, 100);
1012 perf_session__delete(top
->session
);
1013 top
->session
= NULL
;
1019 parse_callchain_opt(const struct option
*opt
, const char *arg
, int unset
)
1021 struct perf_top
*top
= (struct perf_top
*)opt
->value
;
1029 top
->dont_use_callchains
= true;
1033 symbol_conf
.use_callchain
= true;
1038 tok
= strtok((char *)arg
, ",");
1042 /* get the output mode */
1043 if (!strncmp(tok
, "graph", strlen(arg
)))
1044 callchain_param
.mode
= CHAIN_GRAPH_ABS
;
1046 else if (!strncmp(tok
, "flat", strlen(arg
)))
1047 callchain_param
.mode
= CHAIN_FLAT
;
1049 else if (!strncmp(tok
, "fractal", strlen(arg
)))
1050 callchain_param
.mode
= CHAIN_GRAPH_REL
;
1052 else if (!strncmp(tok
, "none", strlen(arg
))) {
1053 callchain_param
.mode
= CHAIN_NONE
;
1054 symbol_conf
.use_callchain
= false;
1060 /* get the min percentage */
1061 tok
= strtok(NULL
, ",");
1065 callchain_param
.min_percent
= strtod(tok
, &endptr
);
1069 /* get the print limit */
1070 tok2
= strtok(NULL
, ",");
1074 if (tok2
[0] != 'c') {
1075 callchain_param
.print_limit
= strtod(tok2
, &endptr
);
1076 tok2
= strtok(NULL
, ",");
1081 /* get the call chain order */
1082 if (!strcmp(tok2
, "caller"))
1083 callchain_param
.order
= ORDER_CALLER
;
1084 else if (!strcmp(tok2
, "callee"))
1085 callchain_param
.order
= ORDER_CALLEE
;
1089 if (callchain_register_param(&callchain_param
) < 0) {
1090 fprintf(stderr
, "Can't register callchain params\n");
1096 static const char * const top_usage
[] = {
1097 "perf top [<options>]",
1101 int cmd_top(int argc
, const char **argv
, const char *prefix __used
)
1103 struct perf_evsel
*pos
;
1104 int status
= -ENOMEM
;
1105 struct perf_top top
= {
1110 .freq
= 1000, /* 1 KHz */
1111 .sample_id_all_avail
= true,
1113 .sym_pcnt_filter
= 5,
1115 char callchain_default_opt
[] = "fractal,0.5,callee";
1116 const struct option options
[] = {
1117 OPT_CALLBACK('e', "event", &top
.evlist
, "event",
1118 "event selector. use 'perf list' to list available events",
1119 parse_events_option
),
1120 OPT_INTEGER('c', "count", &top
.default_interval
,
1121 "event period to sample"),
1122 OPT_INTEGER('p', "pid", &top
.target_pid
,
1123 "profile events on existing process id"),
1124 OPT_INTEGER('t', "tid", &top
.target_tid
,
1125 "profile events on existing thread id"),
1126 OPT_BOOLEAN('a', "all-cpus", &top
.system_wide
,
1127 "system-wide collection from all CPUs"),
1128 OPT_STRING('C', "cpu", &top
.cpu_list
, "cpu",
1129 "list of cpus to monitor"),
1130 OPT_STRING('k', "vmlinux", &symbol_conf
.vmlinux_name
,
1131 "file", "vmlinux pathname"),
1132 OPT_BOOLEAN('K', "hide_kernel_symbols", &top
.hide_kernel_symbols
,
1133 "hide kernel symbols"),
1134 OPT_UINTEGER('m', "mmap-pages", &top
.mmap_pages
, "number of mmap data pages"),
1135 OPT_INTEGER('r', "realtime", &top
.realtime_prio
,
1136 "collect data with this RT SCHED_FIFO priority"),
1137 OPT_INTEGER('d', "delay", &top
.delay_secs
,
1138 "number of seconds to delay between refreshes"),
1139 OPT_BOOLEAN('D', "dump-symtab", &top
.dump_symtab
,
1140 "dump the symbol table used for profiling"),
1141 OPT_INTEGER('f', "count-filter", &top
.count_filter
,
1142 "only display functions with more events than this"),
1143 OPT_BOOLEAN('g', "group", &top
.group
,
1144 "put the counters into a counter group"),
1145 OPT_BOOLEAN('i', "inherit", &top
.inherit
,
1146 "child tasks inherit counters"),
1147 OPT_STRING(0, "sym-annotate", &top
.sym_filter
, "symbol name",
1148 "symbol to annotate"),
1149 OPT_BOOLEAN('z', "zero", &top
.zero
,
1150 "zero history across updates"),
1151 OPT_INTEGER('F', "freq", &top
.freq
,
1152 "profile at this frequency"),
1153 OPT_INTEGER('E', "entries", &top
.print_entries
,
1154 "display this many functions"),
1155 OPT_BOOLEAN('U', "hide_user_symbols", &top
.hide_user_symbols
,
1156 "hide user symbols"),
1157 OPT_BOOLEAN(0, "tui", &top
.use_tui
, "Use the TUI interface"),
1158 OPT_BOOLEAN(0, "stdio", &top
.use_stdio
, "Use the stdio interface"),
1159 OPT_INCR('v', "verbose", &verbose
,
1160 "be more verbose (show counter open errors, etc)"),
1161 OPT_STRING('s', "sort", &sort_order
, "key[,key2...]",
1162 "sort by key(s): pid, comm, dso, symbol, parent"),
1163 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf
.show_nr_samples
,
1164 "Show a column with the number of samples"),
1165 OPT_CALLBACK_DEFAULT('G', "call-graph", &top
, "output_type,min_percent, call_order",
1166 "Display callchains using output_type (graph, flat, fractal, or none), min percent threshold and callchain order. "
1167 "Default: fractal,0.5,callee", &parse_callchain_opt
,
1168 callchain_default_opt
),
1169 OPT_BOOLEAN(0, "show-total-period", &symbol_conf
.show_total_period
,
1170 "Show a column with the sum of periods"),
1171 OPT_STRING(0, "dsos", &symbol_conf
.dso_list_str
, "dso[,dso...]",
1172 "only consider symbols in these dsos"),
1173 OPT_STRING(0, "comms", &symbol_conf
.comm_list_str
, "comm[,comm...]",
1174 "only consider symbols in these comms"),
1175 OPT_STRING(0, "symbols", &symbol_conf
.sym_list_str
, "symbol[,symbol...]",
1176 "only consider these symbols"),
1177 OPT_BOOLEAN(0, "source", &symbol_conf
.annotate_src
,
1178 "Interleave source code with assembly code (default)"),
1179 OPT_BOOLEAN(0, "asm-raw", &symbol_conf
.annotate_asm_raw
,
1180 "Display raw encoding of assembly instructions (default)"),
1181 OPT_STRING('M', "disassembler-style", &disassembler_style
, "disassembler style",
1182 "Specify disassembler style (e.g. -M intel for intel syntax)"),
1186 top
.evlist
= perf_evlist__new(NULL
, NULL
);
1187 if (top
.evlist
== NULL
)
1190 symbol_conf
.exclude_other
= false;
1192 argc
= parse_options(argc
, argv
, options
, top_usage
, 0);
1194 usage_with_options(top_usage
, options
);
1196 if (sort_order
== default_sort_order
)
1197 sort_order
= "dso,symbol";
1199 setup_sorting(top_usage
, options
);
1203 else if (top
.use_tui
)
1206 setup_browser(false);
1208 /* CPU and PID are mutually exclusive */
1209 if (top
.target_tid
> 0 && top
.cpu_list
) {
1210 printf("WARNING: PID switch overriding CPU\n");
1212 top
.cpu_list
= NULL
;
1215 if (top
.target_pid
!= -1)
1216 top
.target_tid
= top
.target_pid
;
1218 if (perf_evlist__create_maps(top
.evlist
, top
.target_pid
,
1219 top
.target_tid
, top
.cpu_list
) < 0)
1220 usage_with_options(top_usage
, options
);
1222 if (!top
.evlist
->nr_entries
&&
1223 perf_evlist__add_default(top
.evlist
) < 0) {
1224 pr_err("Not enough memory for event selector list\n");
1228 symbol_conf
.nr_events
= top
.evlist
->nr_entries
;
1230 if (top
.delay_secs
< 1)
1234 * User specified count overrides default frequency.
1236 if (top
.default_interval
)
1238 else if (top
.freq
) {
1239 top
.default_interval
= top
.freq
;
1241 fprintf(stderr
, "frequency and count are zero, aborting\n");
1245 list_for_each_entry(pos
, &top
.evlist
->entries
, node
) {
1247 * Fill in the ones not specifically initialized via -c:
1249 if (!pos
->attr
.sample_period
)
1250 pos
->attr
.sample_period
= top
.default_interval
;
1253 top
.sym_evsel
= list_entry(top
.evlist
->entries
.next
, struct perf_evsel
, node
);
1255 symbol_conf
.priv_size
= sizeof(struct annotation
);
1257 symbol_conf
.try_vmlinux_path
= (symbol_conf
.vmlinux_name
== NULL
);
1258 if (symbol__init() < 0)
1261 sort_entry__setup_elide(&sort_dso
, symbol_conf
.dso_list
, "dso", stdout
);
1262 sort_entry__setup_elide(&sort_comm
, symbol_conf
.comm_list
, "comm", stdout
);
1263 sort_entry__setup_elide(&sort_sym
, symbol_conf
.sym_list
, "symbol", stdout
);
1266 * Avoid annotation data structures overhead when symbols aren't on the
1269 top
.sort_has_symbols
= sort_sym
.list
.next
!= NULL
;
1271 get_term_dimensions(&top
.winsize
);
1272 if (top
.print_entries
== 0) {
1273 struct sigaction act
= {
1274 .sa_sigaction
= perf_top__sig_winch
,
1275 .sa_flags
= SA_SIGINFO
,
1277 perf_top__update_print_entries(&top
);
1278 sigaction(SIGWINCH
, &act
, NULL
);
1281 status
= __cmd_top(&top
);
1283 perf_evlist__delete(top
.evlist
);