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