Linux 4.19.133
[linux/fpc-iii.git] / tools / perf / builtin-top.c
blobd0733251a386e75ac86981303936e1075bc5c898
1 /*
2 * builtin-top.c
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)
20 #include "builtin.h"
22 #include "perf.h"
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"
36 #include "util/top.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"
50 #include <assert.h>
51 #include <elf.h>
52 #include <fcntl.h>
54 #include <stdio.h>
55 #include <termios.h>
56 #include <unistd.h>
57 #include <inttypes.h>
59 #include <errno.h>
60 #include <time.h>
61 #include <sched.h>
62 #include <signal.h>
64 #include <sys/syscall.h>
65 #include <sys/ioctl.h>
66 #include <poll.h>
67 #include <sys/prctl.h>
68 #include <sys/wait.h>
69 #include <sys/uio.h>
70 #include <sys/utsname.h>
71 #include <sys/mman.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)
91 resize = 1;
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)
102 struct perf_evsel *evsel;
103 struct symbol *sym;
104 struct annotation *notes;
105 struct map *map;
106 int err = -1;
108 if (!he || !he->ms.sym)
109 return -1;
111 evsel = hists_to_evsel(he->hists);
113 sym = he->ms.sym;
114 map = he->ms.map;
117 * We can't annotate with just /proc/kallsyms
119 if (map->dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS &&
120 !dso__is_kcore(map->dso)) {
121 pr_err("Can't annotate %s: No vmlinux file was found in the "
122 "path\n", sym->name);
123 sleep(1);
124 return -1;
127 notes = symbol__annotation(sym);
128 pthread_mutex_lock(&notes->lock);
130 if (!symbol__hists(sym, top->evlist->nr_entries)) {
131 pthread_mutex_unlock(&notes->lock);
132 pr_err("Not enough memory for annotating '%s' symbol!\n",
133 sym->name);
134 sleep(1);
135 return err;
138 err = symbol__annotate(sym, map, evsel, 0, &top->annotation_opts, NULL);
139 if (err == 0) {
140 top->sym_filter_entry = he;
141 } else {
142 char msg[BUFSIZ];
143 symbol__strerror_disassemble(sym, map, err, msg, sizeof(msg));
144 pr_err("Couldn't annotate %s: %s\n", sym->name, msg);
147 pthread_mutex_unlock(&notes->lock);
148 return err;
151 static void __zero_source_counters(struct hist_entry *he)
153 struct symbol *sym = he->ms.sym;
154 symbol__annotate_zero_histograms(sym);
157 static void ui__warn_map_erange(struct map *map, struct symbol *sym, u64 ip)
159 struct utsname uts;
160 int err = uname(&uts);
162 ui__warning("Out of bounds address found:\n\n"
163 "Addr: %" PRIx64 "\n"
164 "DSO: %s %c\n"
165 "Map: %" PRIx64 "-%" PRIx64 "\n"
166 "Symbol: %" PRIx64 "-%" PRIx64 " %c %s\n"
167 "Arch: %s\n"
168 "Kernel: %s\n"
169 "Tools: %s\n\n"
170 "Not all samples will be on the annotation output.\n\n"
171 "Please report to linux-kernel@vger.kernel.org\n",
172 ip, map->dso->long_name, dso__symtab_origin(map->dso),
173 map->start, map->end, sym->start, sym->end,
174 sym->binding == STB_GLOBAL ? 'g' :
175 sym->binding == STB_LOCAL ? 'l' : 'w', sym->name,
176 err ? "[unknown]" : uts.machine,
177 err ? "[unknown]" : uts.release, perf_version_string);
178 if (use_browser <= 0)
179 sleep(5);
181 map->erange_warned = true;
184 static void perf_top__record_precise_ip(struct perf_top *top,
185 struct hist_entry *he,
186 struct perf_sample *sample,
187 struct perf_evsel *evsel, u64 ip)
189 struct annotation *notes;
190 struct symbol *sym = he->ms.sym;
191 int err = 0;
193 if (sym == NULL || (use_browser == 0 &&
194 (top->sym_filter_entry == NULL ||
195 top->sym_filter_entry->ms.sym != sym)))
196 return;
198 notes = symbol__annotation(sym);
200 if (pthread_mutex_trylock(&notes->lock))
201 return;
203 err = hist_entry__inc_addr_samples(he, sample, evsel, ip);
205 pthread_mutex_unlock(&notes->lock);
207 if (unlikely(err)) {
209 * This function is now called with he->hists->lock held.
210 * Release it before going to sleep.
212 pthread_mutex_unlock(&he->hists->lock);
214 if (err == -ERANGE && !he->ms.map->erange_warned)
215 ui__warn_map_erange(he->ms.map, sym, ip);
216 else if (err == -ENOMEM) {
217 pr_err("Not enough memory for annotating '%s' symbol!\n",
218 sym->name);
219 sleep(1);
222 pthread_mutex_lock(&he->hists->lock);
226 static void perf_top__show_details(struct perf_top *top)
228 struct hist_entry *he = top->sym_filter_entry;
229 struct perf_evsel *evsel;
230 struct annotation *notes;
231 struct symbol *symbol;
232 int more;
234 if (!he)
235 return;
237 evsel = hists_to_evsel(he->hists);
239 symbol = he->ms.sym;
240 notes = symbol__annotation(symbol);
242 pthread_mutex_lock(&notes->lock);
244 symbol__calc_percent(symbol, evsel);
246 if (notes->src == NULL)
247 goto out_unlock;
249 printf("Showing %s for %s\n", perf_evsel__name(top->sym_evsel), symbol->name);
250 printf(" Events Pcnt (>=%d%%)\n", top->annotation_opts.min_pcnt);
252 more = symbol__annotate_printf(symbol, he->ms.map, top->sym_evsel, &top->annotation_opts);
254 if (top->evlist->enabled) {
255 if (top->zero)
256 symbol__annotate_zero_histogram(symbol, top->sym_evsel->idx);
257 else
258 symbol__annotate_decay_histogram(symbol, top->sym_evsel->idx);
260 if (more != 0)
261 printf("%d lines not displayed, maybe increase display entries [e]\n", more);
262 out_unlock:
263 pthread_mutex_unlock(&notes->lock);
266 static void perf_top__print_sym_table(struct perf_top *top)
268 char bf[160];
269 int printed = 0;
270 const int win_width = top->winsize.ws_col - 1;
271 struct perf_evsel *evsel = top->sym_evsel;
272 struct hists *hists = evsel__hists(evsel);
274 puts(CONSOLE_CLEAR);
276 perf_top__header_snprintf(top, bf, sizeof(bf));
277 printf("%s\n", bf);
279 perf_top__reset_sample_counters(top);
281 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
283 if (!top->record_opts.overwrite &&
284 (hists->stats.nr_lost_warned !=
285 hists->stats.nr_events[PERF_RECORD_LOST])) {
286 hists->stats.nr_lost_warned =
287 hists->stats.nr_events[PERF_RECORD_LOST];
288 color_fprintf(stdout, PERF_COLOR_RED,
289 "WARNING: LOST %d chunks, Check IO/CPU overload",
290 hists->stats.nr_lost_warned);
291 ++printed;
294 if (top->sym_filter_entry) {
295 perf_top__show_details(top);
296 return;
299 if (top->evlist->enabled) {
300 if (top->zero) {
301 hists__delete_entries(hists);
302 } else {
303 hists__decay_entries(hists, top->hide_user_symbols,
304 top->hide_kernel_symbols);
308 hists__collapse_resort(hists, NULL);
309 perf_evsel__output_resort(evsel, NULL);
311 hists__output_recalc_col_len(hists, top->print_entries - printed);
312 putchar('\n');
313 hists__fprintf(hists, false, top->print_entries - printed, win_width,
314 top->min_percent, stdout, !symbol_conf.use_callchain);
317 static void prompt_integer(int *target, const char *msg)
319 char *buf = malloc(0), *p;
320 size_t dummy = 0;
321 int tmp;
323 fprintf(stdout, "\n%s: ", msg);
324 if (getline(&buf, &dummy, stdin) < 0)
325 return;
327 p = strchr(buf, '\n');
328 if (p)
329 *p = 0;
331 p = buf;
332 while(*p) {
333 if (!isdigit(*p))
334 goto out_free;
335 p++;
337 tmp = strtoul(buf, NULL, 10);
338 *target = tmp;
339 out_free:
340 free(buf);
343 static void prompt_percent(int *target, const char *msg)
345 int tmp = 0;
347 prompt_integer(&tmp, msg);
348 if (tmp >= 0 && tmp <= 100)
349 *target = tmp;
352 static void perf_top__prompt_symbol(struct perf_top *top, const char *msg)
354 char *buf = malloc(0), *p;
355 struct hist_entry *syme = top->sym_filter_entry, *n, *found = NULL;
356 struct hists *hists = evsel__hists(top->sym_evsel);
357 struct rb_node *next;
358 size_t dummy = 0;
360 /* zero counters of active symbol */
361 if (syme) {
362 __zero_source_counters(syme);
363 top->sym_filter_entry = NULL;
366 fprintf(stdout, "\n%s: ", msg);
367 if (getline(&buf, &dummy, stdin) < 0)
368 goto out_free;
370 p = strchr(buf, '\n');
371 if (p)
372 *p = 0;
374 next = rb_first(&hists->entries);
375 while (next) {
376 n = rb_entry(next, struct hist_entry, rb_node);
377 if (n->ms.sym && !strcmp(buf, n->ms.sym->name)) {
378 found = n;
379 break;
381 next = rb_next(&n->rb_node);
384 if (!found) {
385 fprintf(stderr, "Sorry, %s is not active.\n", buf);
386 sleep(1);
387 } else
388 perf_top__parse_source(top, found);
390 out_free:
391 free(buf);
394 static void perf_top__print_mapped_keys(struct perf_top *top)
396 char *name = NULL;
398 if (top->sym_filter_entry) {
399 struct symbol *sym = top->sym_filter_entry->ms.sym;
400 name = sym->name;
403 fprintf(stdout, "\nMapped keys:\n");
404 fprintf(stdout, "\t[d] display refresh delay. \t(%d)\n", top->delay_secs);
405 fprintf(stdout, "\t[e] display entries (lines). \t(%d)\n", top->print_entries);
407 if (top->evlist->nr_entries > 1)
408 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", perf_evsel__name(top->sym_evsel));
410 fprintf(stdout, "\t[f] profile display filter (count). \t(%d)\n", top->count_filter);
412 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", top->annotation_opts.min_pcnt);
413 fprintf(stdout, "\t[s] annotate symbol. \t(%s)\n", name?: "NULL");
414 fprintf(stdout, "\t[S] stop annotation.\n");
416 fprintf(stdout,
417 "\t[K] hide kernel symbols. \t(%s)\n",
418 top->hide_kernel_symbols ? "yes" : "no");
419 fprintf(stdout,
420 "\t[U] hide user symbols. \t(%s)\n",
421 top->hide_user_symbols ? "yes" : "no");
422 fprintf(stdout, "\t[z] toggle sample zeroing. \t(%d)\n", top->zero ? 1 : 0);
423 fprintf(stdout, "\t[qQ] quit.\n");
426 static int perf_top__key_mapped(struct perf_top *top, int c)
428 switch (c) {
429 case 'd':
430 case 'e':
431 case 'f':
432 case 'z':
433 case 'q':
434 case 'Q':
435 case 'K':
436 case 'U':
437 case 'F':
438 case 's':
439 case 'S':
440 return 1;
441 case 'E':
442 return top->evlist->nr_entries > 1 ? 1 : 0;
443 default:
444 break;
447 return 0;
450 static bool perf_top__handle_keypress(struct perf_top *top, int c)
452 bool ret = true;
454 if (!perf_top__key_mapped(top, c)) {
455 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
456 struct termios save;
458 perf_top__print_mapped_keys(top);
459 fprintf(stdout, "\nEnter selection, or unmapped key to continue: ");
460 fflush(stdout);
462 set_term_quiet_input(&save);
464 poll(&stdin_poll, 1, -1);
465 c = getc(stdin);
467 tcsetattr(0, TCSAFLUSH, &save);
468 if (!perf_top__key_mapped(top, c))
469 return ret;
472 switch (c) {
473 case 'd':
474 prompt_integer(&top->delay_secs, "Enter display delay");
475 if (top->delay_secs < 1)
476 top->delay_secs = 1;
477 break;
478 case 'e':
479 prompt_integer(&top->print_entries, "Enter display entries (lines)");
480 if (top->print_entries == 0) {
481 perf_top__resize(top);
482 signal(SIGWINCH, winch_sig);
483 } else {
484 signal(SIGWINCH, SIG_DFL);
486 break;
487 case 'E':
488 if (top->evlist->nr_entries > 1) {
489 /* Select 0 as the default event: */
490 int counter = 0;
492 fprintf(stderr, "\nAvailable events:");
494 evlist__for_each_entry(top->evlist, top->sym_evsel)
495 fprintf(stderr, "\n\t%d %s", top->sym_evsel->idx, perf_evsel__name(top->sym_evsel));
497 prompt_integer(&counter, "Enter details event counter");
499 if (counter >= top->evlist->nr_entries) {
500 top->sym_evsel = perf_evlist__first(top->evlist);
501 fprintf(stderr, "Sorry, no such event, using %s.\n", perf_evsel__name(top->sym_evsel));
502 sleep(1);
503 break;
505 evlist__for_each_entry(top->evlist, top->sym_evsel)
506 if (top->sym_evsel->idx == counter)
507 break;
508 } else
509 top->sym_evsel = perf_evlist__first(top->evlist);
510 break;
511 case 'f':
512 prompt_integer(&top->count_filter, "Enter display event count filter");
513 break;
514 case 'F':
515 prompt_percent(&top->annotation_opts.min_pcnt,
516 "Enter details display event filter (percent)");
517 break;
518 case 'K':
519 top->hide_kernel_symbols = !top->hide_kernel_symbols;
520 break;
521 case 'q':
522 case 'Q':
523 printf("exiting.\n");
524 if (top->dump_symtab)
525 perf_session__fprintf_dsos(top->session, stderr);
526 ret = false;
527 break;
528 case 's':
529 perf_top__prompt_symbol(top, "Enter details symbol");
530 break;
531 case 'S':
532 if (!top->sym_filter_entry)
533 break;
534 else {
535 struct hist_entry *syme = top->sym_filter_entry;
537 top->sym_filter_entry = NULL;
538 __zero_source_counters(syme);
540 break;
541 case 'U':
542 top->hide_user_symbols = !top->hide_user_symbols;
543 break;
544 case 'z':
545 top->zero = !top->zero;
546 break;
547 default:
548 break;
551 return ret;
554 static void perf_top__sort_new_samples(void *arg)
556 struct perf_top *t = arg;
557 struct perf_evsel *evsel = t->sym_evsel;
558 struct hists *hists;
560 perf_top__reset_sample_counters(t);
562 if (t->evlist->selected != NULL)
563 t->sym_evsel = t->evlist->selected;
565 hists = evsel__hists(evsel);
567 if (t->evlist->enabled) {
568 if (t->zero) {
569 hists__delete_entries(hists);
570 } else {
571 hists__decay_entries(hists, t->hide_user_symbols,
572 t->hide_kernel_symbols);
576 hists__collapse_resort(hists, NULL);
577 perf_evsel__output_resort(evsel, NULL);
580 static void *display_thread_tui(void *arg)
582 struct perf_evsel *pos;
583 struct perf_top *top = arg;
584 const char *help = "For a higher level overview, try: perf top --sort comm,dso";
585 struct hist_browser_timer hbt = {
586 .timer = perf_top__sort_new_samples,
587 .arg = top,
588 .refresh = top->delay_secs,
591 /* In order to read symbols from other namespaces perf to needs to call
592 * setns(2). This isn't permitted if the struct_fs has multiple users.
593 * unshare(2) the fs so that we may continue to setns into namespaces
594 * that we're observing.
596 unshare(CLONE_FS);
598 perf_top__sort_new_samples(top);
601 * Initialize the uid_filter_str, in the future the TUI will allow
602 * Zooming in/out UIDs. For now juse use whatever the user passed
603 * via --uid.
605 evlist__for_each_entry(top->evlist, pos) {
606 struct hists *hists = evsel__hists(pos);
607 hists->uid_filter_str = top->record_opts.target.uid_str;
610 perf_evlist__tui_browse_hists(top->evlist, help, &hbt,
611 top->min_percent,
612 &top->session->header.env,
613 !top->record_opts.overwrite,
614 &top->annotation_opts);
616 done = 1;
617 return NULL;
620 static void display_sig(int sig __maybe_unused)
622 done = 1;
625 static void display_setup_sig(void)
627 signal(SIGSEGV, sighandler_dump_stack);
628 signal(SIGFPE, sighandler_dump_stack);
629 signal(SIGINT, display_sig);
630 signal(SIGQUIT, display_sig);
631 signal(SIGTERM, display_sig);
634 static void *display_thread(void *arg)
636 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
637 struct termios save;
638 struct perf_top *top = arg;
639 int delay_msecs, c;
641 /* In order to read symbols from other namespaces perf to needs to call
642 * setns(2). This isn't permitted if the struct_fs has multiple users.
643 * unshare(2) the fs so that we may continue to setns into namespaces
644 * that we're observing.
646 unshare(CLONE_FS);
648 display_setup_sig();
649 pthread__unblock_sigwinch();
650 repeat:
651 delay_msecs = top->delay_secs * MSEC_PER_SEC;
652 set_term_quiet_input(&save);
653 /* trash return*/
654 getc(stdin);
656 while (!done) {
657 perf_top__print_sym_table(top);
659 * Either timeout expired or we got an EINTR due to SIGWINCH,
660 * refresh screen in both cases.
662 switch (poll(&stdin_poll, 1, delay_msecs)) {
663 case 0:
664 continue;
665 case -1:
666 if (errno == EINTR)
667 continue;
668 __fallthrough;
669 default:
670 c = getc(stdin);
671 tcsetattr(0, TCSAFLUSH, &save);
673 if (perf_top__handle_keypress(top, c))
674 goto repeat;
675 done = 1;
679 tcsetattr(0, TCSAFLUSH, &save);
680 return NULL;
683 static int hist_iter__top_callback(struct hist_entry_iter *iter,
684 struct addr_location *al, bool single,
685 void *arg)
687 struct perf_top *top = arg;
688 struct hist_entry *he = iter->he;
689 struct perf_evsel *evsel = iter->evsel;
691 if (perf_hpp_list.sym && single)
692 perf_top__record_precise_ip(top, he, iter->sample, evsel, al->addr);
694 hist__account_cycles(iter->sample->branch_stack, al, iter->sample,
695 !(top->record_opts.branch_stack & PERF_SAMPLE_BRANCH_ANY));
696 return 0;
699 static void perf_event__process_sample(struct perf_tool *tool,
700 const union perf_event *event,
701 struct perf_evsel *evsel,
702 struct perf_sample *sample,
703 struct machine *machine)
705 struct perf_top *top = container_of(tool, struct perf_top, tool);
706 struct addr_location al;
707 int err;
709 if (!machine && perf_guest) {
710 static struct intlist *seen;
712 if (!seen)
713 seen = intlist__new(NULL);
715 if (!intlist__has_entry(seen, sample->pid)) {
716 pr_err("Can't find guest [%d]'s kernel information\n",
717 sample->pid);
718 intlist__add(seen, sample->pid);
720 return;
723 if (!machine) {
724 pr_err("%u unprocessable samples recorded.\r",
725 top->session->evlist->stats.nr_unprocessable_samples++);
726 return;
729 if (event->header.misc & PERF_RECORD_MISC_EXACT_IP)
730 top->exact_samples++;
732 if (machine__resolve(machine, &al, sample) < 0)
733 return;
735 if (!machine->kptr_restrict_warned &&
736 symbol_conf.kptr_restrict &&
737 al.cpumode == PERF_RECORD_MISC_KERNEL) {
738 if (!perf_evlist__exclude_kernel(top->session->evlist)) {
739 ui__warning(
740 "Kernel address maps (/proc/{kallsyms,modules}) are restricted.\n\n"
741 "Check /proc/sys/kernel/kptr_restrict.\n\n"
742 "Kernel%s samples will not be resolved.\n",
743 al.map && map__has_symbols(al.map) ?
744 " modules" : "");
745 if (use_browser <= 0)
746 sleep(5);
748 machine->kptr_restrict_warned = true;
751 if (al.sym == NULL && al.map != NULL) {
752 const char *msg = "Kernel samples will not be resolved.\n";
754 * As we do lazy loading of symtabs we only will know if the
755 * specified vmlinux file is invalid when we actually have a
756 * hit in kernel space and then try to load it. So if we get
757 * here and there are _no_ symbols in the DSO backing the
758 * kernel map, bail out.
760 * We may never get here, for instance, if we use -K/
761 * --hide-kernel-symbols, even if the user specifies an
762 * invalid --vmlinux ;-)
764 if (!machine->kptr_restrict_warned && !top->vmlinux_warned &&
765 __map__is_kernel(al.map) && map__has_symbols(al.map)) {
766 if (symbol_conf.vmlinux_name) {
767 char serr[256];
768 dso__strerror_load(al.map->dso, serr, sizeof(serr));
769 ui__warning("The %s file can't be used: %s\n%s",
770 symbol_conf.vmlinux_name, serr, msg);
771 } else {
772 ui__warning("A vmlinux file was not found.\n%s",
773 msg);
776 if (use_browser <= 0)
777 sleep(5);
778 top->vmlinux_warned = true;
782 if (al.sym == NULL || !al.sym->idle) {
783 struct hists *hists = evsel__hists(evsel);
784 struct hist_entry_iter iter = {
785 .evsel = evsel,
786 .sample = sample,
787 .add_entry_cb = hist_iter__top_callback,
790 if (symbol_conf.cumulate_callchain)
791 iter.ops = &hist_iter_cumulative;
792 else
793 iter.ops = &hist_iter_normal;
795 pthread_mutex_lock(&hists->lock);
797 err = hist_entry_iter__add(&iter, &al, top->max_stack, top);
798 if (err < 0)
799 pr_err("Problem incrementing symbol period, skipping event\n");
801 pthread_mutex_unlock(&hists->lock);
804 addr_location__put(&al);
807 static void perf_top__mmap_read_idx(struct perf_top *top, int idx)
809 struct record_opts *opts = &top->record_opts;
810 struct perf_evlist *evlist = top->evlist;
811 struct perf_sample sample;
812 struct perf_evsel *evsel;
813 struct perf_mmap *md;
814 struct perf_session *session = top->session;
815 union perf_event *event;
816 struct machine *machine;
817 int ret;
819 md = opts->overwrite ? &evlist->overwrite_mmap[idx] : &evlist->mmap[idx];
820 if (perf_mmap__read_init(md) < 0)
821 return;
823 while ((event = perf_mmap__read_event(md)) != NULL) {
824 ret = perf_evlist__parse_sample(evlist, event, &sample);
825 if (ret) {
826 pr_err("Can't parse sample, err = %d\n", ret);
827 goto next_event;
830 evsel = perf_evlist__id2evsel(session->evlist, sample.id);
831 assert(evsel != NULL);
833 if (event->header.type == PERF_RECORD_SAMPLE)
834 ++top->samples;
836 switch (sample.cpumode) {
837 case PERF_RECORD_MISC_USER:
838 ++top->us_samples;
839 if (top->hide_user_symbols)
840 goto next_event;
841 machine = &session->machines.host;
842 break;
843 case PERF_RECORD_MISC_KERNEL:
844 ++top->kernel_samples;
845 if (top->hide_kernel_symbols)
846 goto next_event;
847 machine = &session->machines.host;
848 break;
849 case PERF_RECORD_MISC_GUEST_KERNEL:
850 ++top->guest_kernel_samples;
851 machine = perf_session__find_machine(session,
852 sample.pid);
853 break;
854 case PERF_RECORD_MISC_GUEST_USER:
855 ++top->guest_us_samples;
857 * TODO: we don't process guest user from host side
858 * except simple counting.
860 goto next_event;
861 default:
862 if (event->header.type == PERF_RECORD_SAMPLE)
863 goto next_event;
864 machine = &session->machines.host;
865 break;
869 if (event->header.type == PERF_RECORD_SAMPLE) {
870 perf_event__process_sample(&top->tool, event, evsel,
871 &sample, machine);
872 } else if (event->header.type < PERF_RECORD_MAX) {
873 hists__inc_nr_events(evsel__hists(evsel), event->header.type);
874 machine__process_event(machine, event, &sample);
875 } else
876 ++session->evlist->stats.nr_unknown_events;
877 next_event:
878 perf_mmap__consume(md);
881 perf_mmap__read_done(md);
884 static void perf_top__mmap_read(struct perf_top *top)
886 bool overwrite = top->record_opts.overwrite;
887 struct perf_evlist *evlist = top->evlist;
888 unsigned long long start, end;
889 int i;
891 start = rdclock();
892 if (overwrite)
893 perf_evlist__toggle_bkw_mmap(evlist, BKW_MMAP_DATA_PENDING);
895 for (i = 0; i < top->evlist->nr_mmaps; i++)
896 perf_top__mmap_read_idx(top, i);
898 if (overwrite) {
899 perf_evlist__toggle_bkw_mmap(evlist, BKW_MMAP_EMPTY);
900 perf_evlist__toggle_bkw_mmap(evlist, BKW_MMAP_RUNNING);
902 end = rdclock();
904 if ((end - start) > (unsigned long long)top->delay_secs * NSEC_PER_SEC)
905 ui__warning("Too slow to read ring buffer.\n"
906 "Please try increasing the period (-c) or\n"
907 "decreasing the freq (-F) or\n"
908 "limiting the number of CPUs (-C)\n");
912 * Check per-event overwrite term.
913 * perf top should support consistent term for all events.
914 * - All events don't have per-event term
915 * E.g. "cpu/cpu-cycles/,cpu/instructions/"
916 * Nothing change, return 0.
917 * - All events have same per-event term
918 * E.g. "cpu/cpu-cycles,no-overwrite/,cpu/instructions,no-overwrite/
919 * Using the per-event setting to replace the opts->overwrite if
920 * they are different, then return 0.
921 * - Events have different per-event term
922 * E.g. "cpu/cpu-cycles,overwrite/,cpu/instructions,no-overwrite/"
923 * Return -1
924 * - Some of the event set per-event term, but some not.
925 * E.g. "cpu/cpu-cycles/,cpu/instructions,no-overwrite/"
926 * Return -1
928 static int perf_top__overwrite_check(struct perf_top *top)
930 struct record_opts *opts = &top->record_opts;
931 struct perf_evlist *evlist = top->evlist;
932 struct perf_evsel_config_term *term;
933 struct list_head *config_terms;
934 struct perf_evsel *evsel;
935 int set, overwrite = -1;
937 evlist__for_each_entry(evlist, evsel) {
938 set = -1;
939 config_terms = &evsel->config_terms;
940 list_for_each_entry(term, config_terms, list) {
941 if (term->type == PERF_EVSEL__CONFIG_TERM_OVERWRITE)
942 set = term->val.overwrite ? 1 : 0;
945 /* no term for current and previous event (likely) */
946 if ((overwrite < 0) && (set < 0))
947 continue;
949 /* has term for both current and previous event, compare */
950 if ((overwrite >= 0) && (set >= 0) && (overwrite != set))
951 return -1;
953 /* no term for current event but has term for previous one */
954 if ((overwrite >= 0) && (set < 0))
955 return -1;
957 /* has term for current event */
958 if ((overwrite < 0) && (set >= 0)) {
959 /* if it's first event, set overwrite */
960 if (evsel == perf_evlist__first(evlist))
961 overwrite = set;
962 else
963 return -1;
967 if ((overwrite >= 0) && (opts->overwrite != overwrite))
968 opts->overwrite = overwrite;
970 return 0;
973 static int perf_top_overwrite_fallback(struct perf_top *top,
974 struct perf_evsel *evsel)
976 struct record_opts *opts = &top->record_opts;
977 struct perf_evlist *evlist = top->evlist;
978 struct perf_evsel *counter;
980 if (!opts->overwrite)
981 return 0;
983 /* only fall back when first event fails */
984 if (evsel != perf_evlist__first(evlist))
985 return 0;
987 evlist__for_each_entry(evlist, counter)
988 counter->attr.write_backward = false;
989 opts->overwrite = false;
990 pr_debug2("fall back to non-overwrite mode\n");
991 return 1;
994 static int perf_top__start_counters(struct perf_top *top)
996 char msg[BUFSIZ];
997 struct perf_evsel *counter;
998 struct perf_evlist *evlist = top->evlist;
999 struct record_opts *opts = &top->record_opts;
1001 if (perf_top__overwrite_check(top)) {
1002 ui__error("perf top only support consistent per-event "
1003 "overwrite setting for all events\n");
1004 goto out_err;
1007 perf_evlist__config(evlist, opts, &callchain_param);
1009 evlist__for_each_entry(evlist, counter) {
1010 try_again:
1011 if (perf_evsel__open(counter, top->evlist->cpus,
1012 top->evlist->threads) < 0) {
1015 * Specially handle overwrite fall back.
1016 * Because perf top is the only tool which has
1017 * overwrite mode by default, support
1018 * both overwrite and non-overwrite mode, and
1019 * require consistent mode for all events.
1021 * May move it to generic code with more tools
1022 * have similar attribute.
1024 if (perf_missing_features.write_backward &&
1025 perf_top_overwrite_fallback(top, counter))
1026 goto try_again;
1028 if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) {
1029 if (verbose > 0)
1030 ui__warning("%s\n", msg);
1031 goto try_again;
1034 perf_evsel__open_strerror(counter, &opts->target,
1035 errno, msg, sizeof(msg));
1036 ui__error("%s\n", msg);
1037 goto out_err;
1041 if (perf_evlist__mmap(evlist, opts->mmap_pages) < 0) {
1042 ui__error("Failed to mmap with %d (%s)\n",
1043 errno, str_error_r(errno, msg, sizeof(msg)));
1044 goto out_err;
1047 return 0;
1049 out_err:
1050 return -1;
1053 static int callchain_param__setup_sample_type(struct callchain_param *callchain)
1055 if (!perf_hpp_list.sym) {
1056 if (callchain->enabled) {
1057 ui__error("Selected -g but \"sym\" not present in --sort/-s.");
1058 return -EINVAL;
1060 } else if (callchain->mode != CHAIN_NONE) {
1061 if (callchain_register_param(callchain) < 0) {
1062 ui__error("Can't register callchain params.\n");
1063 return -EINVAL;
1067 return 0;
1070 static int __cmd_top(struct perf_top *top)
1072 char msg[512];
1073 struct perf_evsel *pos;
1074 struct perf_evsel_config_term *err_term;
1075 struct perf_evlist *evlist = top->evlist;
1076 struct record_opts *opts = &top->record_opts;
1077 pthread_t thread;
1078 int ret;
1080 top->session = perf_session__new(NULL, false, NULL);
1081 if (top->session == NULL)
1082 return -1;
1084 if (!top->annotation_opts.objdump_path) {
1085 ret = perf_env__lookup_objdump(&top->session->header.env,
1086 &top->annotation_opts.objdump_path);
1087 if (ret)
1088 goto out_delete;
1091 ret = callchain_param__setup_sample_type(&callchain_param);
1092 if (ret)
1093 goto out_delete;
1095 if (perf_session__register_idle_thread(top->session) < 0)
1096 goto out_delete;
1098 if (top->nr_threads_synthesize > 1)
1099 perf_set_multithreaded();
1101 machine__synthesize_threads(&top->session->machines.host, &opts->target,
1102 top->evlist->threads, false,
1103 opts->proc_map_timeout,
1104 top->nr_threads_synthesize);
1106 if (top->nr_threads_synthesize > 1)
1107 perf_set_singlethreaded();
1109 if (perf_hpp_list.socket) {
1110 ret = perf_env__read_cpu_topology_map(&perf_env);
1111 if (ret < 0)
1112 goto out_err_cpu_topo;
1115 ret = perf_top__start_counters(top);
1116 if (ret)
1117 goto out_delete;
1119 ret = perf_evlist__apply_drv_configs(evlist, &pos, &err_term);
1120 if (ret) {
1121 pr_err("failed to set config \"%s\" on event %s with %d (%s)\n",
1122 err_term->val.drv_cfg, perf_evsel__name(pos), errno,
1123 str_error_r(errno, msg, sizeof(msg)));
1124 goto out_delete;
1127 top->session->evlist = top->evlist;
1128 perf_session__set_id_hdr_size(top->session);
1131 * When perf is starting the traced process, all the events (apart from
1132 * group members) have enable_on_exec=1 set, so don't spoil it by
1133 * prematurely enabling them.
1135 * XXX 'top' still doesn't start workloads like record, trace, but should,
1136 * so leave the check here.
1138 if (!target__none(&opts->target))
1139 perf_evlist__enable(top->evlist);
1141 /* Wait for a minimal set of events before starting the snapshot */
1142 perf_evlist__poll(top->evlist, 100);
1144 perf_top__mmap_read(top);
1146 ret = -1;
1147 if (pthread_create(&thread, NULL, (use_browser > 0 ? display_thread_tui :
1148 display_thread), top)) {
1149 ui__error("Could not create display thread.\n");
1150 goto out_delete;
1153 if (top->realtime_prio) {
1154 struct sched_param param;
1156 param.sched_priority = top->realtime_prio;
1157 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
1158 ui__error("Could not set realtime priority.\n");
1159 goto out_join;
1163 while (!done) {
1164 u64 hits = top->samples;
1166 perf_top__mmap_read(top);
1168 if (opts->overwrite || (hits == top->samples))
1169 ret = perf_evlist__poll(top->evlist, 100);
1171 if (resize) {
1172 perf_top__resize(top);
1173 resize = 0;
1177 ret = 0;
1178 out_join:
1179 pthread_join(thread, NULL);
1180 out_delete:
1181 perf_session__delete(top->session);
1182 top->session = NULL;
1184 return ret;
1186 out_err_cpu_topo: {
1187 char errbuf[BUFSIZ];
1188 const char *err = str_error_r(-ret, errbuf, sizeof(errbuf));
1190 ui__error("Could not read the CPU topology map: %s\n", err);
1191 goto out_delete;
1195 static int
1196 callchain_opt(const struct option *opt, const char *arg, int unset)
1198 symbol_conf.use_callchain = true;
1199 return record_callchain_opt(opt, arg, unset);
1202 static int
1203 parse_callchain_opt(const struct option *opt, const char *arg, int unset)
1205 struct callchain_param *callchain = opt->value;
1207 callchain->enabled = !unset;
1208 callchain->record_mode = CALLCHAIN_FP;
1211 * --no-call-graph
1213 if (unset) {
1214 symbol_conf.use_callchain = false;
1215 callchain->record_mode = CALLCHAIN_NONE;
1216 return 0;
1219 return parse_callchain_top_opt(arg);
1222 static int perf_top_config(const char *var, const char *value, void *cb __maybe_unused)
1224 if (!strcmp(var, "top.call-graph")) {
1225 var = "call-graph.record-mode";
1226 return perf_default_config(var, value, cb);
1228 if (!strcmp(var, "top.children")) {
1229 symbol_conf.cumulate_callchain = perf_config_bool(var, value);
1230 return 0;
1233 return 0;
1236 static int
1237 parse_percent_limit(const struct option *opt, const char *arg,
1238 int unset __maybe_unused)
1240 struct perf_top *top = opt->value;
1242 top->min_percent = strtof(arg, NULL);
1243 return 0;
1246 const char top_callchain_help[] = CALLCHAIN_RECORD_HELP CALLCHAIN_REPORT_HELP
1247 "\n\t\t\t\tDefault: fp,graph,0.5,caller,function";
1249 int cmd_top(int argc, const char **argv)
1251 char errbuf[BUFSIZ];
1252 struct perf_top top = {
1253 .count_filter = 5,
1254 .delay_secs = 2,
1255 .record_opts = {
1256 .mmap_pages = UINT_MAX,
1257 .user_freq = UINT_MAX,
1258 .user_interval = ULLONG_MAX,
1259 .freq = 4000, /* 4 KHz */
1260 .target = {
1261 .uses_mmap = true,
1263 .proc_map_timeout = 500,
1264 .overwrite = 1,
1266 .max_stack = sysctl__max_stack(),
1267 .annotation_opts = annotation__default_options,
1268 .nr_threads_synthesize = UINT_MAX,
1270 struct record_opts *opts = &top.record_opts;
1271 struct target *target = &opts->target;
1272 const struct option options[] = {
1273 OPT_CALLBACK('e', "event", &top.evlist, "event",
1274 "event selector. use 'perf list' to list available events",
1275 parse_events_option),
1276 OPT_U64('c', "count", &opts->user_interval, "event period to sample"),
1277 OPT_STRING('p', "pid", &target->pid, "pid",
1278 "profile events on existing process id"),
1279 OPT_STRING('t', "tid", &target->tid, "tid",
1280 "profile events on existing thread id"),
1281 OPT_BOOLEAN('a', "all-cpus", &target->system_wide,
1282 "system-wide collection from all CPUs"),
1283 OPT_STRING('C', "cpu", &target->cpu_list, "cpu",
1284 "list of cpus to monitor"),
1285 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1286 "file", "vmlinux pathname"),
1287 OPT_BOOLEAN(0, "ignore-vmlinux", &symbol_conf.ignore_vmlinux,
1288 "don't load vmlinux even if found"),
1289 OPT_BOOLEAN('K', "hide_kernel_symbols", &top.hide_kernel_symbols,
1290 "hide kernel symbols"),
1291 OPT_CALLBACK('m', "mmap-pages", &opts->mmap_pages, "pages",
1292 "number of mmap data pages",
1293 perf_evlist__parse_mmap_pages),
1294 OPT_INTEGER('r', "realtime", &top.realtime_prio,
1295 "collect data with this RT SCHED_FIFO priority"),
1296 OPT_INTEGER('d', "delay", &top.delay_secs,
1297 "number of seconds to delay between refreshes"),
1298 OPT_BOOLEAN('D', "dump-symtab", &top.dump_symtab,
1299 "dump the symbol table used for profiling"),
1300 OPT_INTEGER('f', "count-filter", &top.count_filter,
1301 "only display functions with more events than this"),
1302 OPT_BOOLEAN(0, "group", &opts->group,
1303 "put the counters into a counter group"),
1304 OPT_BOOLEAN('i', "no-inherit", &opts->no_inherit,
1305 "child tasks do not inherit counters"),
1306 OPT_STRING(0, "sym-annotate", &top.sym_filter, "symbol name",
1307 "symbol to annotate"),
1308 OPT_BOOLEAN('z', "zero", &top.zero, "zero history across updates"),
1309 OPT_CALLBACK('F', "freq", &top.record_opts, "freq or 'max'",
1310 "profile at this frequency",
1311 record__parse_freq),
1312 OPT_INTEGER('E', "entries", &top.print_entries,
1313 "display this many functions"),
1314 OPT_BOOLEAN('U', "hide_user_symbols", &top.hide_user_symbols,
1315 "hide user symbols"),
1316 OPT_BOOLEAN(0, "tui", &top.use_tui, "Use the TUI interface"),
1317 OPT_BOOLEAN(0, "stdio", &top.use_stdio, "Use the stdio interface"),
1318 OPT_INCR('v', "verbose", &verbose,
1319 "be more verbose (show counter open errors, etc)"),
1320 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
1321 "sort by key(s): pid, comm, dso, symbol, parent, cpu, srcline, ..."
1322 " Please refer the man page for the complete list."),
1323 OPT_STRING(0, "fields", &field_order, "key[,keys...]",
1324 "output field(s): overhead, period, sample plus all of sort keys"),
1325 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
1326 "Show a column with the number of samples"),
1327 OPT_CALLBACK_NOOPT('g', NULL, &callchain_param,
1328 NULL, "enables call-graph recording and display",
1329 &callchain_opt),
1330 OPT_CALLBACK(0, "call-graph", &callchain_param,
1331 "record_mode[,record_size],print_type,threshold[,print_limit],order,sort_key[,branch]",
1332 top_callchain_help, &parse_callchain_opt),
1333 OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain,
1334 "Accumulate callchains of children and show total overhead as well"),
1335 OPT_INTEGER(0, "max-stack", &top.max_stack,
1336 "Set the maximum stack depth when parsing the callchain. "
1337 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
1338 OPT_CALLBACK(0, "ignore-callees", NULL, "regex",
1339 "ignore callees of these functions in call graphs",
1340 report_parse_ignore_callees_opt),
1341 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period,
1342 "Show a column with the sum of periods"),
1343 OPT_STRING(0, "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
1344 "only consider symbols in these dsos"),
1345 OPT_STRING(0, "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1346 "only consider symbols in these comms"),
1347 OPT_STRING(0, "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1348 "only consider these symbols"),
1349 OPT_BOOLEAN(0, "source", &top.annotation_opts.annotate_src,
1350 "Interleave source code with assembly code (default)"),
1351 OPT_BOOLEAN(0, "asm-raw", &top.annotation_opts.show_asm_raw,
1352 "Display raw encoding of assembly instructions (default)"),
1353 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
1354 "Enable kernel symbol demangling"),
1355 OPT_STRING(0, "objdump", &top.annotation_opts.objdump_path, "path",
1356 "objdump binary to use for disassembly and annotations"),
1357 OPT_STRING('M', "disassembler-style", &top.annotation_opts.disassembler_style, "disassembler style",
1358 "Specify disassembler style (e.g. -M intel for intel syntax)"),
1359 OPT_STRING('u', "uid", &target->uid_str, "user", "user to profile"),
1360 OPT_CALLBACK(0, "percent-limit", &top, "percent",
1361 "Don't show entries under that percent", parse_percent_limit),
1362 OPT_CALLBACK(0, "percentage", NULL, "relative|absolute",
1363 "How to display percentage of filtered entries", parse_filter_percentage),
1364 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
1365 "width[,width...]",
1366 "don't try to adjust column width, use these fixed values"),
1367 OPT_UINTEGER(0, "proc-map-timeout", &opts->proc_map_timeout,
1368 "per thread proc mmap processing timeout in ms"),
1369 OPT_CALLBACK_NOOPT('b', "branch-any", &opts->branch_stack,
1370 "branch any", "sample any taken branches",
1371 parse_branch_stack),
1372 OPT_CALLBACK('j', "branch-filter", &opts->branch_stack,
1373 "branch filter mask", "branch stack filter modes",
1374 parse_branch_stack),
1375 OPT_BOOLEAN(0, "raw-trace", &symbol_conf.raw_trace,
1376 "Show raw trace event output (do not use print fmt or plugins)"),
1377 OPT_BOOLEAN(0, "hierarchy", &symbol_conf.report_hierarchy,
1378 "Show entries in a hierarchy"),
1379 OPT_BOOLEAN(0, "force", &symbol_conf.force, "don't complain, do it"),
1380 OPT_UINTEGER(0, "num-thread-synthesize", &top.nr_threads_synthesize,
1381 "number of thread to run event synthesize"),
1382 OPT_END()
1384 const char * const top_usage[] = {
1385 "perf top [<options>]",
1386 NULL
1388 int status = hists__init();
1390 if (status < 0)
1391 return status;
1393 top.annotation_opts.min_pcnt = 5;
1394 top.annotation_opts.context = 4;
1396 top.evlist = perf_evlist__new();
1397 if (top.evlist == NULL)
1398 return -ENOMEM;
1400 status = perf_config(perf_top_config, &top);
1401 if (status)
1402 return status;
1404 argc = parse_options(argc, argv, options, top_usage, 0);
1405 if (argc)
1406 usage_with_options(top_usage, options);
1408 if (!top.evlist->nr_entries &&
1409 perf_evlist__add_default(top.evlist) < 0) {
1410 pr_err("Not enough memory for event selector list\n");
1411 goto out_delete_evlist;
1414 if (symbol_conf.report_hierarchy) {
1415 /* disable incompatible options */
1416 symbol_conf.event_group = false;
1417 symbol_conf.cumulate_callchain = false;
1419 if (field_order) {
1420 pr_err("Error: --hierarchy and --fields options cannot be used together\n");
1421 parse_options_usage(top_usage, options, "fields", 0);
1422 parse_options_usage(NULL, options, "hierarchy", 0);
1423 goto out_delete_evlist;
1427 sort__mode = SORT_MODE__TOP;
1428 /* display thread wants entries to be collapsed in a different tree */
1429 perf_hpp_list.need_collapse = 1;
1431 if (top.use_stdio)
1432 use_browser = 0;
1433 else if (top.use_tui)
1434 use_browser = 1;
1436 setup_browser(false);
1438 if (setup_sorting(top.evlist) < 0) {
1439 if (sort_order)
1440 parse_options_usage(top_usage, options, "s", 1);
1441 if (field_order)
1442 parse_options_usage(sort_order ? NULL : top_usage,
1443 options, "fields", 0);
1444 goto out_delete_evlist;
1447 status = target__validate(target);
1448 if (status) {
1449 target__strerror(target, status, errbuf, BUFSIZ);
1450 ui__warning("%s\n", errbuf);
1453 status = target__parse_uid(target);
1454 if (status) {
1455 int saved_errno = errno;
1457 target__strerror(target, status, errbuf, BUFSIZ);
1458 ui__error("%s\n", errbuf);
1460 status = -saved_errno;
1461 goto out_delete_evlist;
1464 if (target__none(target))
1465 target->system_wide = true;
1467 if (perf_evlist__create_maps(top.evlist, target) < 0) {
1468 ui__error("Couldn't create thread/CPU maps: %s\n",
1469 errno == ENOENT ? "No such process" : str_error_r(errno, errbuf, sizeof(errbuf)));
1470 goto out_delete_evlist;
1473 if (top.delay_secs < 1)
1474 top.delay_secs = 1;
1476 if (record_opts__config(opts)) {
1477 status = -EINVAL;
1478 goto out_delete_evlist;
1481 top.sym_evsel = perf_evlist__first(top.evlist);
1483 if (!callchain_param.enabled) {
1484 symbol_conf.cumulate_callchain = false;
1485 perf_hpp__cancel_cumulate();
1488 if (symbol_conf.cumulate_callchain && !callchain_param.order_set)
1489 callchain_param.order = ORDER_CALLER;
1491 status = symbol__annotation_init();
1492 if (status < 0)
1493 goto out_delete_evlist;
1495 annotation_config__init();
1497 symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
1498 status = symbol__init(NULL);
1499 if (status < 0)
1500 goto out_delete_evlist;
1502 sort__setup_elide(stdout);
1504 get_term_dimensions(&top.winsize);
1505 if (top.print_entries == 0) {
1506 perf_top__update_print_entries(&top);
1507 signal(SIGWINCH, winch_sig);
1510 status = __cmd_top(&top);
1512 out_delete_evlist:
1513 perf_evlist__delete(top.evlist);
1515 return status;