Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
[linux-block.git] / tools / perf / builtin-top.c
CommitLineData
07800601 1/*
bf9e1876
IM
2 * builtin-top.c
3 *
4 * Builtin top command: Display a continuously updated profile of
5 * any workload, CPU or specific PID.
6 *
7 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
ab81f3fd 8 * 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
bf9e1876
IM
9 *
10 * Improvements and fixes by:
11 *
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>
17 *
18 * Released under the GPL v2. (and only v2, not any later version)
07800601 19 */
bf9e1876 20#include "builtin.h"
07800601 21
1a482f38 22#include "perf.h"
bf9e1876 23
36532461 24#include "util/annotate.h"
c0443df1 25#include "util/cache.h"
8fc0321f 26#include "util/color.h"
361c99a6 27#include "util/evlist.h"
69aad6f1 28#include "util/evsel.h"
b3165f41
ACM
29#include "util/session.h"
30#include "util/symbol.h"
439d473b 31#include "util/thread.h"
fd78260b 32#include "util/thread_map.h"
8c3e10eb 33#include "util/top.h"
148be2c1 34#include "util/util.h"
43cbcd8a 35#include <linux/rbtree.h>
b456bae0
IM
36#include "util/parse-options.h"
37#include "util/parse-events.h"
a12b51c4 38#include "util/cpumap.h"
69aad6f1 39#include "util/xyarray.h"
ab81f3fd 40#include "util/sort.h"
07800601 41
8f28827a
FW
42#include "util/debug.h"
43
07800601
IM
44#include <assert.h>
45#include <fcntl.h>
0e9b20b8 46
07800601 47#include <stdio.h>
923c42c1
MG
48#include <termios.h>
49#include <unistd.h>
9486aa38 50#include <inttypes.h>
0e9b20b8 51
07800601 52#include <errno.h>
07800601
IM
53#include <time.h>
54#include <sched.h>
07800601
IM
55
56#include <sys/syscall.h>
57#include <sys/ioctl.h>
58#include <sys/poll.h>
59#include <sys/prctl.h>
60#include <sys/wait.h>
61#include <sys/uio.h>
62#include <sys/mman.h>
63
64#include <linux/unistd.h>
65#include <linux/types.h>
66
923c42c1 67
895f0edc 68void get_term_dimensions(struct winsize *ws)
3b6ed988 69{
13cc5079
ACM
70 char *s = getenv("LINES");
71
72 if (s != NULL) {
73 ws->ws_row = atoi(s);
74 s = getenv("COLUMNS");
75 if (s != NULL) {
76 ws->ws_col = atoi(s);
77 if (ws->ws_row && ws->ws_col)
78 return;
79 }
3b6ed988 80 }
13cc5079
ACM
81#ifdef TIOCGWINSZ
82 if (ioctl(1, TIOCGWINSZ, ws) == 0 &&
83 ws->ws_row && ws->ws_col)
84 return;
3b6ed988 85#endif
13cc5079
ACM
86 ws->ws_row = 25;
87 ws->ws_col = 80;
3b6ed988
ACM
88}
89
1758af10 90static void perf_top__update_print_entries(struct perf_top *top)
3b6ed988 91{
1758af10
ACM
92 if (top->print_entries > 9)
93 top->print_entries -= 9;
3b6ed988
ACM
94}
95
1758af10 96static void perf_top__sig_winch(int sig __used, siginfo_t *info __used, void *arg)
3b6ed988 97{
1758af10
ACM
98 struct perf_top *top = arg;
99
100 get_term_dimensions(&top->winsize);
509605db
SE
101 if (!top->print_entries
102 || (top->print_entries+4) > top->winsize.ws_row) {
103 top->print_entries = top->winsize.ws_row;
104 } else {
105 top->print_entries += 4;
106 top->winsize.ws_row = top->print_entries;
107 }
1758af10 108 perf_top__update_print_entries(top);
3b6ed988
ACM
109}
110
1758af10 111static int perf_top__parse_source(struct perf_top *top, struct hist_entry *he)
923c42c1
MG
112{
113 struct symbol *sym;
ce6f4fab 114 struct annotation *notes;
439d473b 115 struct map *map;
36532461 116 int err = -1;
923c42c1 117
ab81f3fd 118 if (!he || !he->ms.sym)
b0a9ab62
ACM
119 return -1;
120
ab81f3fd
ACM
121 sym = he->ms.sym;
122 map = he->ms.map;
b0a9ab62
ACM
123
124 /*
125 * We can't annotate with just /proc/kallsyms
126 */
878b439d 127 if (map->dso->symtab_type == SYMTAB__KALLSYMS) {
ce6f4fab
ACM
128 pr_err("Can't annotate %s: No vmlinux file was found in the "
129 "path\n", sym->name);
130 sleep(1);
b0a9ab62 131 return -1;
b269876c
ACM
132 }
133
ce6f4fab
ACM
134 notes = symbol__annotation(sym);
135 if (notes->src != NULL) {
136 pthread_mutex_lock(&notes->lock);
923c42c1
MG
137 goto out_assign;
138 }
923c42c1 139
ce6f4fab 140 pthread_mutex_lock(&notes->lock);
923c42c1 141
d04b35f8 142 if (symbol__alloc_hist(sym) < 0) {
c97cf422 143 pthread_mutex_unlock(&notes->lock);
36532461
ACM
144 pr_err("Not enough memory for annotating '%s' symbol!\n",
145 sym->name);
ce6f4fab 146 sleep(1);
c97cf422 147 return err;
923c42c1 148 }
36532461 149
ab81f3fd 150 err = symbol__annotate(sym, map, 0);
36532461 151 if (err == 0) {
923c42c1 152out_assign:
1758af10 153 top->sym_filter_entry = he;
36532461 154 }
c97cf422 155
ce6f4fab 156 pthread_mutex_unlock(&notes->lock);
36532461 157 return err;
923c42c1
MG
158}
159
ab81f3fd 160static void __zero_source_counters(struct hist_entry *he)
923c42c1 161{
ab81f3fd 162 struct symbol *sym = he->ms.sym;
36532461 163 symbol__annotate_zero_histograms(sym);
923c42c1
MG
164}
165
1758af10
ACM
166static void perf_top__record_precise_ip(struct perf_top *top,
167 struct hist_entry *he,
168 int counter, u64 ip)
923c42c1 169{
ce6f4fab
ACM
170 struct annotation *notes;
171 struct symbol *sym;
172
ab81f3fd 173 if (he == NULL || he->ms.sym == NULL ||
1758af10
ACM
174 ((top->sym_filter_entry == NULL ||
175 top->sym_filter_entry->ms.sym != he->ms.sym) && use_browser != 1))
923c42c1
MG
176 return;
177
ab81f3fd 178 sym = he->ms.sym;
ce6f4fab
ACM
179 notes = symbol__annotation(sym);
180
181 if (pthread_mutex_trylock(&notes->lock))
923c42c1
MG
182 return;
183
d04b35f8 184 if (notes->src == NULL && symbol__alloc_hist(sym) < 0) {
ab81f3fd
ACM
185 pthread_mutex_unlock(&notes->lock);
186 pr_err("Not enough memory for annotating '%s' symbol!\n",
187 sym->name);
188 sleep(1);
189 return;
190 }
191
192 ip = he->ms.map->map_ip(he->ms.map, ip);
193 symbol__inc_addr_samples(sym, he->ms.map, counter, ip);
c7ad21af 194
ce6f4fab 195 pthread_mutex_unlock(&notes->lock);
923c42c1
MG
196}
197
1758af10 198static void perf_top__show_details(struct perf_top *top)
923c42c1 199{
1758af10 200 struct hist_entry *he = top->sym_filter_entry;
ce6f4fab 201 struct annotation *notes;
923c42c1 202 struct symbol *symbol;
36532461 203 int more;
923c42c1 204
ab81f3fd 205 if (!he)
923c42c1
MG
206 return;
207
ab81f3fd 208 symbol = he->ms.sym;
ce6f4fab
ACM
209 notes = symbol__annotation(symbol);
210
211 pthread_mutex_lock(&notes->lock);
212
213 if (notes->src == NULL)
214 goto out_unlock;
923c42c1 215
1758af10
ACM
216 printf("Showing %s for %s\n", event_name(top->sym_evsel), symbol->name);
217 printf(" Events Pcnt (>=%d%%)\n", top->sym_pcnt_filter);
923c42c1 218
1758af10
ACM
219 more = symbol__annotate_printf(symbol, he->ms.map, top->sym_evsel->idx,
220 0, top->sym_pcnt_filter, top->print_entries, 4);
221 if (top->zero)
222 symbol__annotate_zero_histogram(symbol, top->sym_evsel->idx);
36532461 223 else
1758af10 224 symbol__annotate_decay_histogram(symbol, top->sym_evsel->idx);
36532461 225 if (more != 0)
923c42c1 226 printf("%d lines not displayed, maybe increase display entries [e]\n", more);
ce6f4fab
ACM
227out_unlock:
228 pthread_mutex_unlock(&notes->lock);
923c42c1 229}
07800601 230
07800601
IM
231static const char CONSOLE_CLEAR[] = "\e[H\e[2J";
232
743eb868
ACM
233static struct hist_entry *perf_evsel__add_hist_entry(struct perf_evsel *evsel,
234 struct addr_location *al,
235 struct perf_sample *sample)
de04687f 236{
ab81f3fd
ACM
237 struct hist_entry *he;
238
239 he = __hists__add_entry(&evsel->hists, al, NULL, sample->period);
240 if (he == NULL)
241 return NULL;
242
ab81f3fd
ACM
243 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
244 return he;
de04687f 245}
07800601 246
1758af10 247static void perf_top__print_sym_table(struct perf_top *top)
07800601 248{
8c3e10eb
ACM
249 char bf[160];
250 int printed = 0;
1758af10 251 const int win_width = top->winsize.ws_col - 1;
d94b9430 252
0f5486b5 253 puts(CONSOLE_CLEAR);
07800601 254
1758af10 255 perf_top__header_snprintf(top, bf, sizeof(bf));
8c3e10eb 256 printf("%s\n", bf);
07800601 257
1758af10 258 perf_top__reset_sample_counters(top);
07800601 259
1a105f74 260 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
07800601 261
1758af10
ACM
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];
7b27509f
ACM
266 color_fprintf(stdout, PERF_COLOR_RED,
267 "WARNING: LOST %d chunks, Check IO/CPU overload",
1758af10 268 top->sym_evsel->hists.stats.nr_lost_warned);
ab81f3fd 269 ++printed;
93fc64f1
ACM
270 }
271
1758af10
ACM
272 if (top->sym_filter_entry) {
273 perf_top__show_details(top);
923c42c1
MG
274 return;
275 }
276
1758af10
ACM
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);
7cc017ed 284 putchar('\n');
1758af10
ACM
285 hists__fprintf(&top->sym_evsel->hists, NULL, false, false,
286 top->winsize.ws_row - 4 - printed, win_width, stdout);
07800601
IM
287}
288
923c42c1
MG
289static void prompt_integer(int *target, const char *msg)
290{
291 char *buf = malloc(0), *p;
292 size_t dummy = 0;
293 int tmp;
294
295 fprintf(stdout, "\n%s: ", msg);
296 if (getline(&buf, &dummy, stdin) < 0)
297 return;
298
299 p = strchr(buf, '\n');
300 if (p)
301 *p = 0;
302
303 p = buf;
304 while(*p) {
305 if (!isdigit(*p))
306 goto out_free;
307 p++;
308 }
309 tmp = strtoul(buf, NULL, 10);
310 *target = tmp;
311out_free:
312 free(buf);
313}
314
315static void prompt_percent(int *target, const char *msg)
316{
317 int tmp = 0;
318
319 prompt_integer(&tmp, msg);
320 if (tmp >= 0 && tmp <= 100)
321 *target = tmp;
322}
323
1758af10 324static void perf_top__prompt_symbol(struct perf_top *top, const char *msg)
923c42c1
MG
325{
326 char *buf = malloc(0), *p;
1758af10 327 struct hist_entry *syme = top->sym_filter_entry, *n, *found = NULL;
ab81f3fd 328 struct rb_node *next;
923c42c1
MG
329 size_t dummy = 0;
330
331 /* zero counters of active symbol */
332 if (syme) {
923c42c1 333 __zero_source_counters(syme);
1758af10 334 top->sym_filter_entry = NULL;
923c42c1
MG
335 }
336
337 fprintf(stdout, "\n%s: ", msg);
338 if (getline(&buf, &dummy, stdin) < 0)
339 goto out_free;
340
341 p = strchr(buf, '\n');
342 if (p)
343 *p = 0;
344
1758af10 345 next = rb_first(&top->sym_evsel->hists.entries);
ab81f3fd
ACM
346 while (next) {
347 n = rb_entry(next, struct hist_entry, rb_node);
348 if (n->ms.sym && !strcmp(buf, n->ms.sym->name)) {
349 found = n;
923c42c1
MG
350 break;
351 }
ab81f3fd 352 next = rb_next(&n->rb_node);
923c42c1
MG
353 }
354
355 if (!found) {
66aeb6d5 356 fprintf(stderr, "Sorry, %s is not active.\n", buf);
923c42c1 357 sleep(1);
923c42c1 358 } else
1758af10 359 perf_top__parse_source(top, found);
923c42c1
MG
360
361out_free:
362 free(buf);
363}
364
1758af10 365static void perf_top__print_mapped_keys(struct perf_top *top)
923c42c1 366{
091bd2e9
MG
367 char *name = NULL;
368
1758af10
ACM
369 if (top->sym_filter_entry) {
370 struct symbol *sym = top->sym_filter_entry->ms.sym;
091bd2e9
MG
371 name = sym->name;
372 }
373
374 fprintf(stdout, "\nMapped keys:\n");
1758af10
ACM
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);
091bd2e9 377
1758af10
ACM
378 if (top->evlist->nr_entries > 1)
379 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", event_name(top->sym_evsel));
091bd2e9 380
1758af10 381 fprintf(stdout, "\t[f] profile display filter (count). \t(%d)\n", top->count_filter);
091bd2e9 382
1758af10 383 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", top->sym_pcnt_filter);
6cff0e8d
KS
384 fprintf(stdout, "\t[s] annotate symbol. \t(%s)\n", name?: "NULL");
385 fprintf(stdout, "\t[S] stop annotation.\n");
091bd2e9 386
8ffcda17 387 fprintf(stdout,
1a72cfa6 388 "\t[K] hide kernel_symbols symbols. \t(%s)\n",
1758af10 389 top->hide_kernel_symbols ? "yes" : "no");
8ffcda17
ACM
390 fprintf(stdout,
391 "\t[U] hide user symbols. \t(%s)\n",
1758af10
ACM
392 top->hide_user_symbols ? "yes" : "no");
393 fprintf(stdout, "\t[z] toggle sample zeroing. \t(%d)\n", top->zero ? 1 : 0);
091bd2e9
MG
394 fprintf(stdout, "\t[qQ] quit.\n");
395}
396
1758af10 397static int perf_top__key_mapped(struct perf_top *top, int c)
091bd2e9
MG
398{
399 switch (c) {
400 case 'd':
401 case 'e':
402 case 'f':
403 case 'z':
404 case 'q':
405 case 'Q':
8ffcda17
ACM
406 case 'K':
407 case 'U':
6cff0e8d
KS
408 case 'F':
409 case 's':
410 case 'S':
091bd2e9
MG
411 return 1;
412 case 'E':
1758af10 413 return top->evlist->nr_entries > 1 ? 1 : 0;
83a0944f
IM
414 default:
415 break;
091bd2e9
MG
416 }
417
418 return 0;
923c42c1
MG
419}
420
1758af10 421static void perf_top__handle_keypress(struct perf_top *top, int c)
923c42c1 422{
1758af10 423 if (!perf_top__key_mapped(top, c)) {
091bd2e9
MG
424 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
425 struct termios tc, save;
426
1758af10 427 perf_top__print_mapped_keys(top);
091bd2e9
MG
428 fprintf(stdout, "\nEnter selection, or unmapped key to continue: ");
429 fflush(stdout);
430
431 tcgetattr(0, &save);
432 tc = save;
433 tc.c_lflag &= ~(ICANON | ECHO);
434 tc.c_cc[VMIN] = 0;
435 tc.c_cc[VTIME] = 0;
436 tcsetattr(0, TCSANOW, &tc);
437
438 poll(&stdin_poll, 1, -1);
439 c = getc(stdin);
440
441 tcsetattr(0, TCSAFLUSH, &save);
1758af10 442 if (!perf_top__key_mapped(top, c))
091bd2e9
MG
443 return;
444 }
445
923c42c1
MG
446 switch (c) {
447 case 'd':
1758af10
ACM
448 prompt_integer(&top->delay_secs, "Enter display delay");
449 if (top->delay_secs < 1)
450 top->delay_secs = 1;
923c42c1
MG
451 break;
452 case 'e':
1758af10
ACM
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,
458 };
459 perf_top__sig_winch(SIGWINCH, NULL, top);
460 sigaction(SIGWINCH, &act, NULL);
509605db
SE
461 } else {
462 perf_top__sig_winch(SIGWINCH, NULL, top);
3b6ed988 463 signal(SIGWINCH, SIG_DFL);
509605db 464 }
923c42c1
MG
465 break;
466 case 'E':
1758af10 467 if (top->evlist->nr_entries > 1) {
ce2d17ca
AN
468 /* Select 0 as the default event: */
469 int counter = 0;
470
923c42c1 471 fprintf(stderr, "\nAvailable events:");
69aad6f1 472
1758af10
ACM
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));
923c42c1 475
ec52d976 476 prompt_integer(&counter, "Enter details event counter");
923c42c1 477
1758af10
ACM
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));
923c42c1 481 sleep(1);
69aad6f1 482 break;
923c42c1 483 }
1758af10
ACM
484 list_for_each_entry(top->sym_evsel, &top->evlist->entries, node)
485 if (top->sym_evsel->idx == counter)
69aad6f1 486 break;
ec52d976 487 } else
1758af10 488 top->sym_evsel = list_entry(top->evlist->entries.next, struct perf_evsel, node);
923c42c1
MG
489 break;
490 case 'f':
1758af10 491 prompt_integer(&top->count_filter, "Enter display event count filter");
923c42c1
MG
492 break;
493 case 'F':
1758af10
ACM
494 prompt_percent(&top->sym_pcnt_filter,
495 "Enter details display event filter (percent)");
923c42c1 496 break;
8ffcda17 497 case 'K':
1758af10 498 top->hide_kernel_symbols = !top->hide_kernel_symbols;
8ffcda17 499 break;
923c42c1
MG
500 case 'q':
501 case 'Q':
502 printf("exiting.\n");
1758af10
ACM
503 if (top->dump_symtab)
504 perf_session__fprintf_dsos(top->session, stderr);
923c42c1
MG
505 exit(0);
506 case 's':
1758af10 507 perf_top__prompt_symbol(top, "Enter details symbol");
923c42c1
MG
508 break;
509 case 'S':
1758af10 510 if (!top->sym_filter_entry)
923c42c1
MG
511 break;
512 else {
1758af10 513 struct hist_entry *syme = top->sym_filter_entry;
923c42c1 514
1758af10 515 top->sym_filter_entry = NULL;
923c42c1 516 __zero_source_counters(syme);
923c42c1
MG
517 }
518 break;
8ffcda17 519 case 'U':
1758af10 520 top->hide_user_symbols = !top->hide_user_symbols;
8ffcda17 521 break;
923c42c1 522 case 'z':
1758af10 523 top->zero = !top->zero;
923c42c1 524 break;
83a0944f
IM
525 default:
526 break;
923c42c1
MG
527 }
528}
529
ab81f3fd
ACM
530static void perf_top__sort_new_samples(void *arg)
531{
532 struct perf_top *t = arg;
533 perf_top__reset_sample_counters(t);
534
535 if (t->evlist->selected != NULL)
536 t->sym_evsel = t->evlist->selected;
537
538 hists__collapse_resort_threaded(&t->sym_evsel->hists);
539 hists__output_resort_threaded(&t->sym_evsel->hists);
b079d4e9 540 hists__decay_entries_threaded(&t->sym_evsel->hists,
1758af10
ACM
541 t->hide_user_symbols,
542 t->hide_kernel_symbols);
ab81f3fd
ACM
543}
544
1758af10 545static void *display_thread_tui(void *arg)
c0443df1 546{
1758af10 547 struct perf_top *top = arg;
ab81f3fd
ACM
548 const char *help = "For a higher level overview, try: perf top --sort comm,dso";
549
1758af10
ACM
550 perf_top__sort_new_samples(top);
551 perf_evlist__tui_browse_hists(top->evlist, help,
ab81f3fd 552 perf_top__sort_new_samples,
1758af10 553 top, top->delay_secs);
ab81f3fd 554
c0443df1
ACM
555 exit_browser(0);
556 exit(0);
557 return NULL;
558}
559
1758af10 560static void *display_thread(void *arg)
07800601 561{
0f5486b5 562 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
923c42c1 563 struct termios tc, save;
1758af10 564 struct perf_top *top = arg;
923c42c1
MG
565 int delay_msecs, c;
566
567 tcgetattr(0, &save);
568 tc = save;
569 tc.c_lflag &= ~(ICANON | ECHO);
570 tc.c_cc[VMIN] = 0;
571 tc.c_cc[VTIME] = 0;
091bd2e9 572
3af6e338 573 pthread__unblock_sigwinch();
923c42c1 574repeat:
1758af10 575 delay_msecs = top->delay_secs * 1000;
923c42c1
MG
576 tcsetattr(0, TCSANOW, &tc);
577 /* trash return*/
578 getc(stdin);
07800601 579
3af6e338 580 while (1) {
1758af10 581 perf_top__print_sym_table(top);
3af6e338
ACM
582 /*
583 * Either timeout expired or we got an EINTR due to SIGWINCH,
584 * refresh screen in both cases.
585 */
586 switch (poll(&stdin_poll, 1, delay_msecs)) {
587 case 0:
588 continue;
589 case -1:
590 if (errno == EINTR)
591 continue;
592 /* Fall trhu */
593 default:
594 goto process_hotkey;
595 }
596 }
597process_hotkey:
923c42c1
MG
598 c = getc(stdin);
599 tcsetattr(0, TCSAFLUSH, &save);
600
1758af10 601 perf_top__handle_keypress(top, c);
923c42c1 602 goto repeat;
07800601
IM
603
604 return NULL;
605}
606
2ab52083 607/* Tag samples to be skipped. */
f37a291c 608static const char *skip_symbols[] = {
2ab52083 609 "default_idle",
b0e8572f 610 "native_safe_halt",
2ab52083
AB
611 "cpu_idle",
612 "enter_idle",
613 "exit_idle",
614 "mwait_idle",
59b90056 615 "mwait_idle_with_hints",
8357275b 616 "poll_idle",
3a3393ef
AB
617 "ppc64_runlatch_off",
618 "pseries_dedicated_idle_sleep",
2ab52083
AB
619 NULL
620};
621
ab81f3fd 622static int symbol_filter(struct map *map __used, struct symbol *sym)
07800601 623{
de04687f 624 const char *name = sym->name;
2ab52083 625 int i;
de04687f 626
3a3393ef
AB
627 /*
628 * ppc64 uses function descriptors and appends a '.' to the
629 * start of every instruction address. Remove it.
630 */
631 if (name[0] == '.')
632 name++;
633
de04687f
ACM
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"))
07800601 641 return 1;
07800601 642
2ab52083
AB
643 for (i = 0; skip_symbols[i]; i++) {
644 if (!strcmp(skip_symbols[i], name)) {
171b3be9 645 sym->ignore = true;
2ab52083
AB
646 break;
647 }
648 }
07800601 649
07800601
IM
650 return 0;
651}
652
1758af10
ACM
653static void perf_event__process_sample(struct perf_tool *tool,
654 const union perf_event *event,
7b27509f 655 struct perf_evsel *evsel,
8115d60c 656 struct perf_sample *sample,
743eb868 657 struct machine *machine)
07800601 658{
1758af10 659 struct perf_top *top = container_of(tool, struct perf_top, tool);
19d4ac3c 660 struct symbol *parent = NULL;
8115d60c 661 u64 ip = event->ip.ip;
1ed091c4 662 struct addr_location al;
19d4ac3c 663 int err;
5b2bb75a 664
23346f21 665 if (!machine && perf_guest) {
a1645ce1 666 pr_err("Can't find guest [%d]'s kernel information\n",
8115d60c 667 event->ip.pid);
a1645ce1
ZY
668 return;
669 }
670
8115d60c 671 if (event->header.misc & PERF_RECORD_MISC_EXACT_IP)
1758af10 672 top->exact_samples++;
1676b8a0 673
743eb868 674 if (perf_event__preprocess_sample(event, machine, &al, sample,
8115d60c 675 symbol_filter) < 0 ||
72b8fa17 676 al.filtered)
1ed091c4 677 return;
07800601 678
1758af10 679 if (!top->kptr_restrict_warned &&
5f6f5580
ACM
680 symbol_conf.kptr_restrict &&
681 al.cpumode == PERF_RECORD_MISC_KERNEL) {
682 ui__warning(
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]) ?
687 " modules" : "");
688 if (use_browser <= 0)
689 sleep(5);
1758af10 690 top->kptr_restrict_warned = true;
5f6f5580
ACM
691 }
692
72b8fa17 693 if (al.sym == NULL) {
e4a338d0 694 const char *msg = "Kernel samples will not be resolved.\n";
72b8fa17
ACM
695 /*
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.
701 *
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 ;-)
705 */
1758af10 706 if (!top->kptr_restrict_warned && !top->vmlinux_warned &&
e4a338d0 707 al.map == machine->vmlinux_maps[MAP__FUNCTION] &&
72b8fa17 708 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) {
e4a338d0
ACM
709 if (symbol_conf.vmlinux_name) {
710 ui__warning("The %s file can't be used.\n%s",
711 symbol_conf.vmlinux_name, msg);
712 } else {
713 ui__warning("A vmlinux file was not found.\n%s",
714 msg);
715 }
716
717 if (use_browser <= 0)
718 sleep(5);
1758af10 719 top->vmlinux_warned = true;
72b8fa17 720 }
6cff0e8d
KS
721 }
722
ab81f3fd 723 if (al.sym == NULL || !al.sym->ignore) {
ab81f3fd 724 struct hist_entry *he;
70db7533 725
19d4ac3c
ACM
726 if ((sort__has_parent || symbol_conf.use_callchain) &&
727 sample->callchain) {
743eb868
ACM
728 err = machine__resolve_callchain(machine, evsel, al.thread,
729 sample->callchain, &parent);
19d4ac3c
ACM
730 if (err)
731 return;
732 }
733
743eb868 734 he = perf_evsel__add_hist_entry(evsel, &al, sample);
ab81f3fd
ACM
735 if (he == NULL) {
736 pr_err("Problem incrementing symbol period, skipping event\n");
737 return;
5807806a 738 }
ab81f3fd 739
19d4ac3c 740 if (symbol_conf.use_callchain) {
246d4ce8 741 err = callchain_append(he->callchain, &evsel->hists.callchain_cursor,
19d4ac3c
ACM
742 sample->period);
743 if (err)
744 return;
745 }
746
1758af10
ACM
747 if (top->sort_has_symbols)
748 perf_top__record_precise_ip(top, he, evsel->idx, ip);
5b2bb75a 749 }
ab81f3fd
ACM
750
751 return;
07800601
IM
752}
753
1758af10 754static void perf_top__mmap_read_idx(struct perf_top *top, int idx)
07800601 755{
8d50e5b4 756 struct perf_sample sample;
7b27509f 757 struct perf_evsel *evsel;
1758af10 758 struct perf_session *session = top->session;
8115d60c 759 union perf_event *event;
743eb868
ACM
760 struct machine *machine;
761 u8 origin;
5538beca 762 int ret;
07800601 763
1758af10
ACM
764 while ((event = perf_evlist__mmap_read(top->evlist, idx)) != NULL) {
765 ret = perf_session__parse_sample(session, event, &sample);
5538beca
FW
766 if (ret) {
767 pr_err("Can't parse sample, err = %d\n", ret);
768 continue;
769 }
04391deb 770
1758af10 771 evsel = perf_evlist__id2evsel(session->evlist, sample.id);
7b27509f
ACM
772 assert(evsel != NULL);
773
743eb868
ACM
774 origin = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
775
5b2bb75a 776 if (event->header.type == PERF_RECORD_SAMPLE)
1758af10 777 ++top->samples;
743eb868
ACM
778
779 switch (origin) {
780 case PERF_RECORD_MISC_USER:
1758af10
ACM
781 ++top->us_samples;
782 if (top->hide_user_symbols)
743eb868 783 continue;
1758af10 784 machine = perf_session__find_host_machine(session);
743eb868
ACM
785 break;
786 case PERF_RECORD_MISC_KERNEL:
1758af10
ACM
787 ++top->kernel_samples;
788 if (top->hide_kernel_symbols)
743eb868 789 continue;
1758af10 790 machine = perf_session__find_host_machine(session);
743eb868
ACM
791 break;
792 case PERF_RECORD_MISC_GUEST_KERNEL:
1758af10
ACM
793 ++top->guest_kernel_samples;
794 machine = perf_session__find_machine(session, event->ip.pid);
743eb868
ACM
795 break;
796 case PERF_RECORD_MISC_GUEST_USER:
1758af10 797 ++top->guest_us_samples;
743eb868
ACM
798 /*
799 * TODO: we don't process guest user from host side
800 * except simple counting.
801 */
802 /* Fall thru */
803 default:
804 continue;
805 }
806
807
1758af10
ACM
808 if (event->header.type == PERF_RECORD_SAMPLE) {
809 perf_event__process_sample(&top->tool, event, evsel,
810 &sample, machine);
811 } else if (event->header.type < PERF_RECORD_MAX) {
7b27509f 812 hists__inc_nr_events(&evsel->hists, event->header.type);
1758af10 813 perf_event__process(&top->tool, event, &sample, machine);
7b27509f 814 } else
1758af10 815 ++session->hists.stats.nr_unknown_events;
07800601 816 }
07800601
IM
817}
818
1758af10 819static void perf_top__mmap_read(struct perf_top *top)
2f01190a 820{
70db7533
ACM
821 int i;
822
1758af10
ACM
823 for (i = 0; i < top->evlist->nr_mmaps; i++)
824 perf_top__mmap_read_idx(top, i);
2f01190a
FW
825}
826
1758af10 827static void perf_top__start_counters(struct perf_top *top)
72cb7013 828{
727ab04e 829 struct perf_evsel *counter, *first;
1758af10 830 struct perf_evlist *evlist = top->evlist;
727ab04e
ACM
831
832 first = list_entry(evlist->entries.next, struct perf_evsel, node);
7e4ff9e3 833
72cb7013
ACM
834 list_for_each_entry(counter, &evlist->entries, node) {
835 struct perf_event_attr *attr = &counter->attr;
727ab04e
ACM
836 struct xyarray *group_fd = NULL;
837
1758af10 838 if (top->group && counter != first)
727ab04e 839 group_fd = first->fd;
716c69fe 840
72cb7013
ACM
841 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
842
1758af10 843 if (top->freq) {
72cb7013
ACM
844 attr->sample_type |= PERF_SAMPLE_PERIOD;
845 attr->freq = 1;
1758af10 846 attr->sample_freq = top->freq;
72cb7013 847 }
d6d901c2 848
70db7533
ACM
849 if (evlist->nr_entries > 1) {
850 attr->sample_type |= PERF_SAMPLE_ID;
851 attr->read_format |= PERF_FORMAT_ID;
852 }
853
19d4ac3c
ACM
854 if (symbol_conf.use_callchain)
855 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
856
72cb7013 857 attr->mmap = 1;
ab81f3fd 858 attr->comm = 1;
1758af10 859 attr->inherit = top->inherit;
bc76efe6
ACM
860fallback_missing_features:
861 if (top->exclude_guest_missing)
862 attr->exclude_guest = attr->exclude_host = 0;
7b27509f 863retry_sample_id:
1758af10 864 attr->sample_id_all = top->sample_id_all_avail ? 1 : 0;
72cb7013 865try_again:
1758af10
ACM
866 if (perf_evsel__open(counter, top->evlist->cpus,
867 top->evlist->threads, top->group,
727ab04e 868 group_fd) < 0) {
d6d901c2
ZY
869 int err = errno;
870
c286c419 871 if (err == EPERM || err == EACCES) {
b8631e6e 872 ui__error_paranoid();
c286c419 873 goto out_err;
bc76efe6
ACM
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) {
882 /*
883 * Old kernel, no attr->sample_id_type_all field
884 */
885 top->sample_id_all_avail = false;
886 goto retry_sample_id;
887 }
c286c419 888 }
d6d901c2
ZY
889 /*
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:
893 */
72cb7013
ACM
894 if (attr->type == PERF_TYPE_HARDWARE &&
895 attr->config == PERF_COUNT_HW_CPU_CYCLES) {
d6d901c2 896 if (verbose)
c286c419
ACM
897 ui__warning("Cycles event not supported,\n"
898 "trying to fall back to cpu-clock-ticks\n");
d6d901c2
ZY
899
900 attr->type = PERF_TYPE_SOFTWARE;
901 attr->config = PERF_COUNT_SW_CPU_CLOCK;
902 goto try_again;
903 }
c286c419 904
ca6a4258
DA
905 if (err == ENOENT) {
906 ui__warning("The %s event is not supported.\n",
907 event_name(counter));
908 goto out_err;
cdce4459
NK
909 } else if (err == EMFILE) {
910 ui__warning("Too many events are opened.\n"
911 "Try again after reducing the number of events\n");
912 goto out_err;
ca6a4258
DA
913 }
914
c286c419
ACM
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));
920 goto out_err;
d6d901c2 921 }
716c69fe 922 }
70db7533 923
1758af10 924 if (perf_evlist__mmap(evlist, top->mmap_pages, false) < 0) {
c286c419
ACM
925 ui__warning("Failed to mmap with %d (%s)\n",
926 errno, strerror(errno));
927 goto out_err;
928 }
929
930 return;
931
932out_err:
933 exit_browser(0);
934 exit(0);
716c69fe
IM
935}
936
1758af10 937static int perf_top__setup_sample_type(struct perf_top *top)
19d4ac3c 938{
1758af10 939 if (!top->sort_has_symbols) {
19d4ac3c
ACM
940 if (symbol_conf.use_callchain) {
941 ui__warning("Selected -g but \"sym\" not present in --sort/-s.");
942 return -EINVAL;
943 }
1758af10 944 } else if (!top->dont_use_callchains && callchain_param.mode != CHAIN_NONE) {
19d4ac3c
ACM
945 if (callchain_register_param(&callchain_param) < 0) {
946 ui__warning("Can't register callchain params.\n");
947 return -EINVAL;
948 }
949 }
950
951 return 0;
952}
953
1758af10 954static int __cmd_top(struct perf_top *top)
716c69fe
IM
955{
956 pthread_t thread;
19d4ac3c 957 int ret;
d8f66248 958 /*
b3165f41
ACM
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.
d8f66248 961 */
1758af10
ACM
962 top->session = perf_session__new(NULL, O_WRONLY, false, false, NULL);
963 if (top->session == NULL)
b3165f41 964 return -ENOMEM;
07800601 965
1758af10 966 ret = perf_top__setup_sample_type(top);
19d4ac3c
ACM
967 if (ret)
968 goto out_delete;
969
1758af10
ACM
970 if (top->target_tid != -1)
971 perf_event__synthesize_thread_map(&top->tool, top->evlist->threads,
743eb868 972 perf_event__process,
1758af10 973 &top->session->host_machine);
5b2bb75a 974 else
1758af10
ACM
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);
07800601 980
2f01190a 981 /* Wait for a minimal set of events before starting the snapshot */
1758af10 982 poll(top->evlist->pollfd, top->evlist->nr_fds, 100);
2f01190a 983
1758af10 984 perf_top__mmap_read(top);
2f01190a 985
c0443df1 986 if (pthread_create(&thread, NULL, (use_browser > 0 ? display_thread_tui :
1758af10 987 display_thread), top)) {
07800601
IM
988 printf("Could not create display thread.\n");
989 exit(-1);
990 }
991
1758af10 992 if (top->realtime_prio) {
07800601
IM
993 struct sched_param param;
994
1758af10 995 param.sched_priority = top->realtime_prio;
07800601
IM
996 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
997 printf("Could not set realtime priority.\n");
998 exit(-1);
999 }
1000 }
1001
1002 while (1) {
1758af10 1003 u64 hits = top->samples;
07800601 1004
1758af10 1005 perf_top__mmap_read(top);
07800601 1006
1758af10
ACM
1007 if (hits == top->samples)
1008 ret = poll(top->evlist->pollfd, top->evlist->nr_fds, 100);
07800601
IM
1009 }
1010
19d4ac3c 1011out_delete:
1758af10
ACM
1012 perf_session__delete(top->session);
1013 top->session = NULL;
19d4ac3c
ACM
1014
1015 return 0;
1016}
1017
1018static int
1758af10 1019parse_callchain_opt(const struct option *opt, const char *arg, int unset)
19d4ac3c 1020{
1758af10 1021 struct perf_top *top = (struct perf_top *)opt->value;
19d4ac3c
ACM
1022 char *tok, *tok2;
1023 char *endptr;
1024
1025 /*
1026 * --no-call-graph
1027 */
1028 if (unset) {
1758af10 1029 top->dont_use_callchains = true;
19d4ac3c
ACM
1030 return 0;
1031 }
1032
1033 symbol_conf.use_callchain = true;
1034
1035 if (!arg)
1036 return 0;
1037
1038 tok = strtok((char *)arg, ",");
1039 if (!tok)
1040 return -1;
1041
1042 /* get the output mode */
1043 if (!strncmp(tok, "graph", strlen(arg)))
1044 callchain_param.mode = CHAIN_GRAPH_ABS;
1045
1046 else if (!strncmp(tok, "flat", strlen(arg)))
1047 callchain_param.mode = CHAIN_FLAT;
1048
1049 else if (!strncmp(tok, "fractal", strlen(arg)))
1050 callchain_param.mode = CHAIN_GRAPH_REL;
1051
1052 else if (!strncmp(tok, "none", strlen(arg))) {
1053 callchain_param.mode = CHAIN_NONE;
1054 symbol_conf.use_callchain = false;
1055
1056 return 0;
806fb630 1057 } else
19d4ac3c
ACM
1058 return -1;
1059
1060 /* get the min percentage */
1061 tok = strtok(NULL, ",");
1062 if (!tok)
1063 goto setup;
1064
1065 callchain_param.min_percent = strtod(tok, &endptr);
1066 if (tok == endptr)
1067 return -1;
1068
1069 /* get the print limit */
1070 tok2 = strtok(NULL, ",");
1071 if (!tok2)
1072 goto setup;
1073
1074 if (tok2[0] != 'c') {
1075 callchain_param.print_limit = strtod(tok2, &endptr);
1076 tok2 = strtok(NULL, ",");
1077 if (!tok2)
1078 goto setup;
1079 }
1080
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;
1086 else
1087 return -1;
1088setup:
1089 if (callchain_register_param(&callchain_param) < 0) {
1090 fprintf(stderr, "Can't register callchain params\n");
1091 return -1;
1092 }
07800601
IM
1093 return 0;
1094}
b456bae0
IM
1095
1096static const char * const top_usage[] = {
1097 "perf top [<options>]",
1098 NULL
1099};
1100
1758af10
ACM
1101int cmd_top(int argc, const char **argv, const char *prefix __used)
1102{
1103 struct perf_evsel *pos;
1104 int status = -ENOMEM;
1105 struct perf_top top = {
1106 .count_filter = 5,
1107 .delay_secs = 2,
1108 .target_pid = -1,
1109 .target_tid = -1,
1110 .freq = 1000, /* 1 KHz */
1111 .sample_id_all_avail = true,
1112 .mmap_pages = 128,
1113 .sym_pcnt_filter = 5,
1114 };
1115 char callchain_default_opt[] = "fractal,0.5,callee";
1116 const struct option options[] = {
8c3e10eb 1117 OPT_CALLBACK('e', "event", &top.evlist, "event",
86847b62 1118 "event selector. use 'perf list' to list available events",
f120f9d5 1119 parse_events_option),
1758af10 1120 OPT_INTEGER('c', "count", &top.default_interval,
b456bae0 1121 "event period to sample"),
8c3e10eb 1122 OPT_INTEGER('p', "pid", &top.target_pid,
d6d901c2 1123 "profile events on existing process id"),
8c3e10eb 1124 OPT_INTEGER('t', "tid", &top.target_tid,
d6d901c2 1125 "profile events on existing thread id"),
1758af10 1126 OPT_BOOLEAN('a', "all-cpus", &top.system_wide,
b456bae0 1127 "system-wide collection from all CPUs"),
8c3e10eb 1128 OPT_STRING('C', "cpu", &top.cpu_list, "cpu",
c45c6ea2 1129 "list of cpus to monitor"),
b32d133a
ACM
1130 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1131 "file", "vmlinux pathname"),
8c3e10eb 1132 OPT_BOOLEAN('K', "hide_kernel_symbols", &top.hide_kernel_symbols,
8ffcda17 1133 "hide kernel symbols"),
1758af10
ACM
1134 OPT_UINTEGER('m', "mmap-pages", &top.mmap_pages, "number of mmap data pages"),
1135 OPT_INTEGER('r', "realtime", &top.realtime_prio,
b456bae0 1136 "collect data with this RT SCHED_FIFO priority"),
8c3e10eb 1137 OPT_INTEGER('d', "delay", &top.delay_secs,
b456bae0 1138 "number of seconds to delay between refreshes"),
1758af10 1139 OPT_BOOLEAN('D', "dump-symtab", &top.dump_symtab,
b456bae0 1140 "dump the symbol table used for profiling"),
8c3e10eb 1141 OPT_INTEGER('f', "count-filter", &top.count_filter,
b456bae0 1142 "only display functions with more events than this"),
1758af10 1143 OPT_BOOLEAN('g', "group", &top.group,
b456bae0 1144 "put the counters into a counter group"),
1758af10 1145 OPT_BOOLEAN('i', "inherit", &top.inherit,
0fdc7e67 1146 "child tasks inherit counters"),
1758af10 1147 OPT_STRING(0, "sym-annotate", &top.sym_filter, "symbol name",
6cff0e8d 1148 "symbol to annotate"),
8c3e10eb 1149 OPT_BOOLEAN('z', "zero", &top.zero,
b456bae0 1150 "zero history across updates"),
8c3e10eb 1151 OPT_INTEGER('F', "freq", &top.freq,
b456bae0 1152 "profile at this frequency"),
8c3e10eb 1153 OPT_INTEGER('E', "entries", &top.print_entries,
6e53cdf1 1154 "display this many functions"),
8c3e10eb 1155 OPT_BOOLEAN('U', "hide_user_symbols", &top.hide_user_symbols,
8ffcda17 1156 "hide user symbols"),
1758af10
ACM
1157 OPT_BOOLEAN(0, "tui", &top.use_tui, "Use the TUI interface"),
1158 OPT_BOOLEAN(0, "stdio", &top.use_stdio, "Use the stdio interface"),
c0555642 1159 OPT_INCR('v', "verbose", &verbose,
3da297a6 1160 "be more verbose (show counter open errors, etc)"),
ab81f3fd
ACM
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"),
1758af10 1165 OPT_CALLBACK_DEFAULT('G', "call-graph", &top, "output_type,min_percent, call_order",
19d4ac3c
ACM
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),
ab81f3fd
ACM
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"),
64c6f0c7
ACM
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)"),
b456bae0 1183 OPT_END()
1758af10 1184 };
b456bae0 1185
8c3e10eb
ACM
1186 top.evlist = perf_evlist__new(NULL, NULL);
1187 if (top.evlist == NULL)
361c99a6
ACM
1188 return -ENOMEM;
1189
ab81f3fd 1190 symbol_conf.exclude_other = false;
b456bae0 1191
b456bae0
IM
1192 argc = parse_options(argc, argv, options, top_usage, 0);
1193 if (argc)
1194 usage_with_options(top_usage, options);
1195
ab81f3fd
ACM
1196 if (sort_order == default_sort_order)
1197 sort_order = "dso,symbol";
1198
1199 setup_sorting(top_usage, options);
1200
1758af10 1201 if (top.use_stdio)
c0443df1 1202 use_browser = 0;
1758af10 1203 else if (top.use_tui)
c0443df1
ACM
1204 use_browser = 1;
1205
1206 setup_browser(false);
1207
b456bae0 1208 /* CPU and PID are mutually exclusive */
8c3e10eb 1209 if (top.target_tid > 0 && top.cpu_list) {
b456bae0
IM
1210 printf("WARNING: PID switch overriding CPU\n");
1211 sleep(1);
8c3e10eb 1212 top.cpu_list = NULL;
b456bae0
IM
1213 }
1214
8c3e10eb
ACM
1215 if (top.target_pid != -1)
1216 top.target_tid = top.target_pid;
7e2ed097 1217
8c3e10eb
ACM
1218 if (perf_evlist__create_maps(top.evlist, top.target_pid,
1219 top.target_tid, top.cpu_list) < 0)
7e2ed097
ACM
1220 usage_with_options(top_usage, options);
1221
8c3e10eb
ACM
1222 if (!top.evlist->nr_entries &&
1223 perf_evlist__add_default(top.evlist) < 0) {
69aad6f1
ACM
1224 pr_err("Not enough memory for event selector list\n");
1225 return -ENOMEM;
1226 }
5a8e5a30 1227
d04b35f8
ACM
1228 symbol_conf.nr_events = top.evlist->nr_entries;
1229
8c3e10eb
ACM
1230 if (top.delay_secs < 1)
1231 top.delay_secs = 1;
2f335a02 1232
7e4ff9e3
MG
1233 /*
1234 * User specified count overrides default frequency.
1235 */
1758af10 1236 if (top.default_interval)
8c3e10eb
ACM
1237 top.freq = 0;
1238 else if (top.freq) {
1758af10 1239 top.default_interval = top.freq;
7e4ff9e3
MG
1240 } else {
1241 fprintf(stderr, "frequency and count are zero, aborting\n");
1242 exit(EXIT_FAILURE);
1243 }
1244
8c3e10eb 1245 list_for_each_entry(pos, &top.evlist->entries, node) {
69aad6f1
ACM
1246 /*
1247 * Fill in the ones not specifically initialized via -c:
1248 */
806fb630
ACM
1249 if (!pos->attr.sample_period)
1250 pos->attr.sample_period = top.default_interval;
69aad6f1
ACM
1251 }
1252
8c3e10eb 1253 top.sym_evsel = list_entry(top.evlist->entries.next, struct perf_evsel, node);
cc841580 1254
ab81f3fd 1255 symbol_conf.priv_size = sizeof(struct annotation);
69aad6f1
ACM
1256
1257 symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
1258 if (symbol__init() < 0)
1259 return -1;
1260
ab81f3fd
ACM
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);
1264
19d4ac3c
ACM
1265 /*
1266 * Avoid annotation data structures overhead when symbols aren't on the
1267 * sort list.
1268 */
1758af10 1269 top.sort_has_symbols = sort_sym.list.next != NULL;
19d4ac3c 1270
1758af10 1271 get_term_dimensions(&top.winsize);
8c3e10eb 1272 if (top.print_entries == 0) {
1758af10
ACM
1273 struct sigaction act = {
1274 .sa_sigaction = perf_top__sig_winch,
1275 .sa_flags = SA_SIGINFO,
1276 };
1277 perf_top__update_print_entries(&top);
1278 sigaction(SIGWINCH, &act, NULL);
3b6ed988
ACM
1279 }
1280
1758af10 1281 status = __cmd_top(&top);
806fb630 1282
8c3e10eb 1283 perf_evlist__delete(top.evlist);
69aad6f1
ACM
1284
1285 return status;
b456bae0 1286}