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