]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/builtin-top.c
Merge branch 'perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux...
[mirror_ubuntu-bionic-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>
8 *
9 * Improvements and fixes by:
10 *
11 * Arjan van de Ven <arjan@linux.intel.com>
12 * Yanmin Zhang <yanmin.zhang@intel.com>
13 * Wu Fengguang <fengguang.wu@intel.com>
14 * Mike Galbraith <efault@gmx.de>
15 * Paul Mackerras <paulus@samba.org>
16 *
17 * Released under the GPL v2. (and only v2, not any later version)
07800601 18 */
bf9e1876 19#include "builtin.h"
07800601 20
1a482f38 21#include "perf.h"
bf9e1876 22
36532461 23#include "util/annotate.h"
c0443df1 24#include "util/cache.h"
8fc0321f 25#include "util/color.h"
361c99a6 26#include "util/evlist.h"
69aad6f1 27#include "util/evsel.h"
b3165f41
ACM
28#include "util/session.h"
29#include "util/symbol.h"
439d473b 30#include "util/thread.h"
fd78260b 31#include "util/thread_map.h"
8c3e10eb 32#include "util/top.h"
148be2c1 33#include "util/util.h"
43cbcd8a 34#include <linux/rbtree.h>
b456bae0
IM
35#include "util/parse-options.h"
36#include "util/parse-events.h"
a12b51c4 37#include "util/cpumap.h"
69aad6f1 38#include "util/xyarray.h"
07800601 39
8f28827a
FW
40#include "util/debug.h"
41
07800601
IM
42#include <assert.h>
43#include <fcntl.h>
0e9b20b8 44
07800601 45#include <stdio.h>
923c42c1
MG
46#include <termios.h>
47#include <unistd.h>
9486aa38 48#include <inttypes.h>
0e9b20b8 49
07800601 50#include <errno.h>
07800601
IM
51#include <time.h>
52#include <sched.h>
07800601
IM
53
54#include <sys/syscall.h>
55#include <sys/ioctl.h>
56#include <sys/poll.h>
57#include <sys/prctl.h>
58#include <sys/wait.h>
59#include <sys/uio.h>
60#include <sys/mman.h>
61
62#include <linux/unistd.h>
63#include <linux/types.h>
64
69aad6f1 65#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
07800601 66
8c3e10eb
ACM
67static struct perf_top top = {
68 .count_filter = 5,
69 .delay_secs = 2,
70 .display_weighted = -1,
71 .target_pid = -1,
72 .target_tid = -1,
73 .active_symbols = LIST_HEAD_INIT(top.active_symbols),
74 .active_symbols_lock = PTHREAD_MUTEX_INITIALIZER,
5807806a 75 .active_symbols_cond = PTHREAD_COND_INITIALIZER,
8c3e10eb
ACM
76 .freq = 1000, /* 1 KHz */
77};
361c99a6 78
c0555642 79static bool system_wide = false;
07800601 80
c0443df1
ACM
81static bool use_tui, use_stdio;
82
7e4ff9e3 83static int default_interval = 0;
07800601 84
c0555642 85static bool inherit = false;
1967936d 86static int realtime_prio = 0;
c0555642 87static bool group = false;
07800601 88static unsigned int page_size;
70db7533 89static unsigned int mmap_pages = 128;
07800601 90
c0555642 91static bool dump_symtab = false;
07800601 92
13cc5079 93static struct winsize winsize;
8ffcda17 94
edb7c60e 95static const char *sym_filter = NULL;
6cff0e8d 96struct sym_entry *sym_filter_entry_sched = NULL;
42e59d7d 97static int sym_pcnt_filter = 5;
07800601 98
923c42c1
MG
99/*
100 * Source functions
101 */
102
895f0edc 103void get_term_dimensions(struct winsize *ws)
3b6ed988 104{
13cc5079
ACM
105 char *s = getenv("LINES");
106
107 if (s != NULL) {
108 ws->ws_row = atoi(s);
109 s = getenv("COLUMNS");
110 if (s != NULL) {
111 ws->ws_col = atoi(s);
112 if (ws->ws_row && ws->ws_col)
113 return;
114 }
3b6ed988 115 }
13cc5079
ACM
116#ifdef TIOCGWINSZ
117 if (ioctl(1, TIOCGWINSZ, ws) == 0 &&
118 ws->ws_row && ws->ws_col)
119 return;
3b6ed988 120#endif
13cc5079
ACM
121 ws->ws_row = 25;
122 ws->ws_col = 80;
3b6ed988
ACM
123}
124
13cc5079 125static void update_print_entries(struct winsize *ws)
3b6ed988 126{
8c3e10eb 127 top.print_entries = ws->ws_row;
13cc5079 128
8c3e10eb
ACM
129 if (top.print_entries > 9)
130 top.print_entries -= 9;
3b6ed988
ACM
131}
132
133static void sig_winch_handler(int sig __used)
134{
13cc5079
ACM
135 get_term_dimensions(&winsize);
136 update_print_entries(&winsize);
3b6ed988
ACM
137}
138
b0a9ab62 139static int parse_source(struct sym_entry *syme)
923c42c1
MG
140{
141 struct symbol *sym;
ce6f4fab 142 struct annotation *notes;
439d473b 143 struct map *map;
36532461 144 int err = -1;
923c42c1
MG
145
146 if (!syme)
b0a9ab62
ACM
147 return -1;
148
149 sym = sym_entry__symbol(syme);
150 map = syme->map;
151
152 /*
153 * We can't annotate with just /proc/kallsyms
154 */
ce6f4fab
ACM
155 if (map->dso->origin == DSO__ORIG_KERNEL) {
156 pr_err("Can't annotate %s: No vmlinux file was found in the "
157 "path\n", sym->name);
158 sleep(1);
b0a9ab62 159 return -1;
b269876c
ACM
160 }
161
ce6f4fab
ACM
162 notes = symbol__annotation(sym);
163 if (notes->src != NULL) {
164 pthread_mutex_lock(&notes->lock);
923c42c1
MG
165 goto out_assign;
166 }
923c42c1 167
ce6f4fab 168 pthread_mutex_lock(&notes->lock);
923c42c1 169
36532461 170 if (symbol__alloc_hist(sym, top.evlist->nr_entries) < 0) {
c97cf422 171 pthread_mutex_unlock(&notes->lock);
36532461
ACM
172 pr_err("Not enough memory for annotating '%s' symbol!\n",
173 sym->name);
ce6f4fab 174 sleep(1);
c97cf422 175 return err;
923c42c1 176 }
36532461 177
ce6f4fab 178 err = symbol__annotate(sym, syme->map, 0);
36532461 179 if (err == 0) {
923c42c1 180out_assign:
c97cf422 181 top.sym_filter_entry = syme;
36532461 182 }
c97cf422 183
ce6f4fab 184 pthread_mutex_unlock(&notes->lock);
36532461 185 return err;
923c42c1
MG
186}
187
188static void __zero_source_counters(struct sym_entry *syme)
189{
36532461
ACM
190 struct symbol *sym = sym_entry__symbol(syme);
191 symbol__annotate_zero_histograms(sym);
923c42c1
MG
192}
193
194static void record_precise_ip(struct sym_entry *syme, int counter, u64 ip)
195{
ce6f4fab
ACM
196 struct annotation *notes;
197 struct symbol *sym;
198
c97cf422 199 if (syme != top.sym_filter_entry)
923c42c1
MG
200 return;
201
ce6f4fab
ACM
202 sym = sym_entry__symbol(syme);
203 notes = symbol__annotation(sym);
204
205 if (pthread_mutex_trylock(&notes->lock))
923c42c1
MG
206 return;
207
36532461 208 ip = syme->map->map_ip(syme->map, ip);
ce6f4fab 209 symbol__inc_addr_samples(sym, syme->map, counter, ip);
c7ad21af 210
ce6f4fab 211 pthread_mutex_unlock(&notes->lock);
923c42c1
MG
212}
213
923c42c1
MG
214static void show_details(struct sym_entry *syme)
215{
ce6f4fab 216 struct annotation *notes;
923c42c1 217 struct symbol *symbol;
36532461 218 int more;
923c42c1
MG
219
220 if (!syme)
221 return;
222
36532461 223 symbol = sym_entry__symbol(syme);
ce6f4fab
ACM
224 notes = symbol__annotation(symbol);
225
226 pthread_mutex_lock(&notes->lock);
227
228 if (notes->src == NULL)
229 goto out_unlock;
923c42c1 230
8c3e10eb 231 printf("Showing %s for %s\n", event_name(top.sym_evsel), symbol->name);
923c42c1
MG
232 printf(" Events Pcnt (>=%d%%)\n", sym_pcnt_filter);
233
ce6f4fab 234 more = symbol__annotate_printf(symbol, syme->map, top.sym_evsel->idx,
d5e3d747 235 0, sym_pcnt_filter, top.print_entries, 4);
36532461
ACM
236 if (top.zero)
237 symbol__annotate_zero_histogram(symbol, top.sym_evsel->idx);
238 else
ce6f4fab 239 symbol__annotate_decay_histogram(symbol, top.sym_evsel->idx);
36532461 240 if (more != 0)
923c42c1 241 printf("%d lines not displayed, maybe increase display entries [e]\n", more);
ce6f4fab
ACM
242out_unlock:
243 pthread_mutex_unlock(&notes->lock);
923c42c1 244}
07800601 245
07800601
IM
246static const char CONSOLE_CLEAR[] = "\e[H\e[2J";
247
c44613a4 248static void __list_insert_active_sym(struct sym_entry *syme)
de04687f 249{
8c3e10eb 250 list_add(&syme->node, &top.active_symbols);
de04687f 251}
07800601 252
93fc64f1 253static void print_sym_table(struct perf_session *session)
07800601 254{
8c3e10eb
ACM
255 char bf[160];
256 int printed = 0;
de04687f 257 struct rb_node *nd;
8c3e10eb
ACM
258 struct sym_entry *syme;
259 struct rb_root tmp = RB_ROOT;
13cc5079 260 const int win_width = winsize.ws_col - 1;
8c3e10eb
ACM
261 int sym_width, dso_width, dso_short_width;
262 float sum_ksamples = perf_top__decay_samples(&top, &tmp);
d94b9430 263
0f5486b5 264 puts(CONSOLE_CLEAR);
07800601 265
8c3e10eb
ACM
266 perf_top__header_snprintf(&top, bf, sizeof(bf));
267 printf("%s\n", bf);
07800601 268
8c3e10eb 269 perf_top__reset_sample_counters(&top);
07800601 270
1a105f74 271 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
07800601 272
93fc64f1
ACM
273 if (session->hists.stats.total_lost != 0) {
274 color_fprintf(stdout, PERF_COLOR_RED, "WARNING:");
275 printf(" LOST %" PRIu64 " events, Check IO/CPU overload\n",
276 session->hists.stats.total_lost);
277 }
278
c97cf422
ACM
279 if (top.sym_filter_entry) {
280 show_details(top.sym_filter_entry);
923c42c1
MG
281 return;
282 }
283
8c3e10eb
ACM
284 perf_top__find_widths(&top, &tmp, &dso_width, &dso_short_width,
285 &sym_width);
13cc5079 286
b63be8d7
ACM
287 if (sym_width + dso_width > winsize.ws_col - 29) {
288 dso_width = dso_short_width;
289 if (sym_width + dso_width > winsize.ws_col - 29)
290 sym_width = winsize.ws_col - dso_width - 29;
291 }
7cc017ed 292 putchar('\n');
8c3e10eb 293 if (top.evlist->nr_entries == 1)
5b2bb75a 294 printf(" samples pcnt");
07800601 295 else
5b2bb75a 296 printf(" weight samples pcnt");
07800601 297
7ced156b
ACM
298 if (verbose)
299 printf(" RIP ");
7cc017ed 300 printf(" %-*.*s DSO\n", sym_width, sym_width, "function");
5b2bb75a 301 printf(" %s _______ _____",
8c3e10eb 302 top.evlist->nr_entries == 1 ? " " : "______");
7ced156b 303 if (verbose)
5b2bb75a 304 printf(" ________________");
1a105f74 305 printf(" %-*.*s", sym_width, sym_width, graph_line);
7cc017ed 306 printf(" %-*.*s", dso_width, dso_width, graph_line);
1a105f74 307 puts("\n");
07800601 308
de04687f 309 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
83a0944f 310 struct symbol *sym;
8fc0321f 311 double pcnt;
d94b9430 312
83a0944f 313 syme = rb_entry(nd, struct sym_entry, rb_node);
51a472de 314 sym = sym_entry__symbol(syme);
8c3e10eb
ACM
315 if (++printed > top.print_entries ||
316 (int)syme->snap_count < top.count_filter)
c44613a4 317 continue;
d94b9430 318
2debbc83
IM
319 pcnt = 100.0 - (100.0 * ((sum_ksamples - syme->snap_count) /
320 sum_ksamples));
d94b9430 321
8c3e10eb 322 if (top.evlist->nr_entries == 1 || !top.display_weighted)
5b2bb75a 323 printf("%20.2f ", syme->weight);
d94b9430 324 else
5b2bb75a 325 printf("%9.1f %10ld ", syme->weight, syme->snap_count);
8fc0321f 326
1e11fd82 327 percent_color_fprintf(stdout, "%4.1f%%", pcnt);
7ced156b 328 if (verbose)
9486aa38 329 printf(" %016" PRIx64, sym->start);
13cc5079 330 printf(" %-*.*s", sym_width, sym_width, sym->name);
7cc017ed
ACM
331 printf(" %-*.*s\n", dso_width, dso_width,
332 dso_width >= syme->map->dso->long_name_len ?
333 syme->map->dso->long_name :
334 syme->map->dso->short_name);
07800601 335 }
07800601
IM
336}
337
923c42c1
MG
338static void prompt_integer(int *target, const char *msg)
339{
340 char *buf = malloc(0), *p;
341 size_t dummy = 0;
342 int tmp;
343
344 fprintf(stdout, "\n%s: ", msg);
345 if (getline(&buf, &dummy, stdin) < 0)
346 return;
347
348 p = strchr(buf, '\n');
349 if (p)
350 *p = 0;
351
352 p = buf;
353 while(*p) {
354 if (!isdigit(*p))
355 goto out_free;
356 p++;
357 }
358 tmp = strtoul(buf, NULL, 10);
359 *target = tmp;
360out_free:
361 free(buf);
362}
363
364static void prompt_percent(int *target, const char *msg)
365{
366 int tmp = 0;
367
368 prompt_integer(&tmp, msg);
369 if (tmp >= 0 && tmp <= 100)
370 *target = tmp;
371}
372
373static void prompt_symbol(struct sym_entry **target, const char *msg)
374{
375 char *buf = malloc(0), *p;
376 struct sym_entry *syme = *target, *n, *found = NULL;
377 size_t dummy = 0;
378
379 /* zero counters of active symbol */
380 if (syme) {
923c42c1
MG
381 __zero_source_counters(syme);
382 *target = NULL;
923c42c1
MG
383 }
384
385 fprintf(stdout, "\n%s: ", msg);
386 if (getline(&buf, &dummy, stdin) < 0)
387 goto out_free;
388
389 p = strchr(buf, '\n');
390 if (p)
391 *p = 0;
392
8c3e10eb
ACM
393 pthread_mutex_lock(&top.active_symbols_lock);
394 syme = list_entry(top.active_symbols.next, struct sym_entry, node);
395 pthread_mutex_unlock(&top.active_symbols_lock);
923c42c1 396
8c3e10eb 397 list_for_each_entry_safe_from(syme, n, &top.active_symbols, node) {
51a472de 398 struct symbol *sym = sym_entry__symbol(syme);
923c42c1
MG
399
400 if (!strcmp(buf, sym->name)) {
401 found = syme;
402 break;
403 }
404 }
405
406 if (!found) {
66aeb6d5 407 fprintf(stderr, "Sorry, %s is not active.\n", buf);
923c42c1
MG
408 sleep(1);
409 return;
410 } else
411 parse_source(found);
412
413out_free:
414 free(buf);
415}
416
091bd2e9 417static void print_mapped_keys(void)
923c42c1 418{
091bd2e9
MG
419 char *name = NULL;
420
c97cf422
ACM
421 if (top.sym_filter_entry) {
422 struct symbol *sym = sym_entry__symbol(top.sym_filter_entry);
091bd2e9
MG
423 name = sym->name;
424 }
425
426 fprintf(stdout, "\nMapped keys:\n");
8c3e10eb
ACM
427 fprintf(stdout, "\t[d] display refresh delay. \t(%d)\n", top.delay_secs);
428 fprintf(stdout, "\t[e] display entries (lines). \t(%d)\n", top.print_entries);
091bd2e9 429
8c3e10eb
ACM
430 if (top.evlist->nr_entries > 1)
431 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", event_name(top.sym_evsel));
091bd2e9 432
8c3e10eb 433 fprintf(stdout, "\t[f] profile display filter (count). \t(%d)\n", top.count_filter);
091bd2e9 434
6cff0e8d
KS
435 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", sym_pcnt_filter);
436 fprintf(stdout, "\t[s] annotate symbol. \t(%s)\n", name?: "NULL");
437 fprintf(stdout, "\t[S] stop annotation.\n");
091bd2e9 438
8c3e10eb
ACM
439 if (top.evlist->nr_entries > 1)
440 fprintf(stdout, "\t[w] toggle display weighted/count[E]r. \t(%d)\n", top.display_weighted ? 1 : 0);
091bd2e9 441
8ffcda17 442 fprintf(stdout,
1a72cfa6 443 "\t[K] hide kernel_symbols symbols. \t(%s)\n",
8c3e10eb 444 top.hide_kernel_symbols ? "yes" : "no");
8ffcda17
ACM
445 fprintf(stdout,
446 "\t[U] hide user symbols. \t(%s)\n",
8c3e10eb
ACM
447 top.hide_user_symbols ? "yes" : "no");
448 fprintf(stdout, "\t[z] toggle sample zeroing. \t(%d)\n", top.zero ? 1 : 0);
091bd2e9
MG
449 fprintf(stdout, "\t[qQ] quit.\n");
450}
451
452static int key_mapped(int c)
453{
454 switch (c) {
455 case 'd':
456 case 'e':
457 case 'f':
458 case 'z':
459 case 'q':
460 case 'Q':
8ffcda17
ACM
461 case 'K':
462 case 'U':
6cff0e8d
KS
463 case 'F':
464 case 's':
465 case 'S':
091bd2e9
MG
466 return 1;
467 case 'E':
468 case 'w':
8c3e10eb 469 return top.evlist->nr_entries > 1 ? 1 : 0;
83a0944f
IM
470 default:
471 break;
091bd2e9
MG
472 }
473
474 return 0;
923c42c1
MG
475}
476
a1645ce1 477static void handle_keypress(struct perf_session *session, int c)
923c42c1 478{
091bd2e9
MG
479 if (!key_mapped(c)) {
480 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
481 struct termios tc, save;
482
483 print_mapped_keys();
484 fprintf(stdout, "\nEnter selection, or unmapped key to continue: ");
485 fflush(stdout);
486
487 tcgetattr(0, &save);
488 tc = save;
489 tc.c_lflag &= ~(ICANON | ECHO);
490 tc.c_cc[VMIN] = 0;
491 tc.c_cc[VTIME] = 0;
492 tcsetattr(0, TCSANOW, &tc);
493
494 poll(&stdin_poll, 1, -1);
495 c = getc(stdin);
496
497 tcsetattr(0, TCSAFLUSH, &save);
498 if (!key_mapped(c))
499 return;
500 }
501
923c42c1
MG
502 switch (c) {
503 case 'd':
8c3e10eb
ACM
504 prompt_integer(&top.delay_secs, "Enter display delay");
505 if (top.delay_secs < 1)
506 top.delay_secs = 1;
923c42c1
MG
507 break;
508 case 'e':
8c3e10eb
ACM
509 prompt_integer(&top.print_entries, "Enter display entries (lines)");
510 if (top.print_entries == 0) {
13cc5079 511 sig_winch_handler(SIGWINCH);
3b6ed988
ACM
512 signal(SIGWINCH, sig_winch_handler);
513 } else
514 signal(SIGWINCH, SIG_DFL);
923c42c1
MG
515 break;
516 case 'E':
8c3e10eb 517 if (top.evlist->nr_entries > 1) {
923c42c1 518 fprintf(stderr, "\nAvailable events:");
69aad6f1 519
8c3e10eb
ACM
520 list_for_each_entry(top.sym_evsel, &top.evlist->entries, node)
521 fprintf(stderr, "\n\t%d %s", top.sym_evsel->idx, event_name(top.sym_evsel));
923c42c1 522
8c3e10eb 523 prompt_integer(&top.sym_counter, "Enter details event counter");
923c42c1 524
8c3e10eb
ACM
525 if (top.sym_counter >= top.evlist->nr_entries) {
526 top.sym_evsel = list_entry(top.evlist->entries.next, struct perf_evsel, node);
527 top.sym_counter = 0;
528 fprintf(stderr, "Sorry, no such event, using %s.\n", event_name(top.sym_evsel));
923c42c1 529 sleep(1);
69aad6f1 530 break;
923c42c1 531 }
8c3e10eb
ACM
532 list_for_each_entry(top.sym_evsel, &top.evlist->entries, node)
533 if (top.sym_evsel->idx == top.sym_counter)
69aad6f1 534 break;
8c3e10eb 535 } else top.sym_counter = 0;
923c42c1
MG
536 break;
537 case 'f':
8c3e10eb 538 prompt_integer(&top.count_filter, "Enter display event count filter");
923c42c1
MG
539 break;
540 case 'F':
541 prompt_percent(&sym_pcnt_filter, "Enter details display event filter (percent)");
542 break;
8ffcda17 543 case 'K':
8c3e10eb 544 top.hide_kernel_symbols = !top.hide_kernel_symbols;
8ffcda17 545 break;
923c42c1
MG
546 case 'q':
547 case 'Q':
548 printf("exiting.\n");
c338aee8 549 if (dump_symtab)
cbf69680 550 perf_session__fprintf_dsos(session, stderr);
923c42c1
MG
551 exit(0);
552 case 's':
c97cf422 553 prompt_symbol(&top.sym_filter_entry, "Enter details symbol");
923c42c1
MG
554 break;
555 case 'S':
c97cf422 556 if (!top.sym_filter_entry)
923c42c1
MG
557 break;
558 else {
c97cf422 559 struct sym_entry *syme = top.sym_filter_entry;
923c42c1 560
c97cf422 561 top.sym_filter_entry = NULL;
923c42c1 562 __zero_source_counters(syme);
923c42c1
MG
563 }
564 break;
8ffcda17 565 case 'U':
8c3e10eb 566 top.hide_user_symbols = !top.hide_user_symbols;
8ffcda17 567 break;
46ab9764 568 case 'w':
8c3e10eb 569 top.display_weighted = ~top.display_weighted;
46ab9764 570 break;
923c42c1 571 case 'z':
8c3e10eb 572 top.zero = !top.zero;
923c42c1 573 break;
83a0944f
IM
574 default:
575 break;
923c42c1
MG
576 }
577}
578
c0443df1
ACM
579static void *display_thread_tui(void *arg __used)
580{
5807806a
ACM
581 int err = 0;
582 pthread_mutex_lock(&top.active_symbols_lock);
583 while (list_empty(&top.active_symbols)) {
584 err = pthread_cond_wait(&top.active_symbols_cond,
585 &top.active_symbols_lock);
586 if (err)
587 break;
588 }
589 pthread_mutex_unlock(&top.active_symbols_lock);
590 if (!err)
591 perf_top__tui_browser(&top);
c0443df1
ACM
592 exit_browser(0);
593 exit(0);
594 return NULL;
595}
596
f37a291c 597static void *display_thread(void *arg __used)
07800601 598{
0f5486b5 599 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
923c42c1
MG
600 struct termios tc, save;
601 int delay_msecs, c;
a1645ce1 602 struct perf_session *session = (struct perf_session *) arg;
923c42c1
MG
603
604 tcgetattr(0, &save);
605 tc = save;
606 tc.c_lflag &= ~(ICANON | ECHO);
607 tc.c_cc[VMIN] = 0;
608 tc.c_cc[VTIME] = 0;
091bd2e9 609
923c42c1 610repeat:
8c3e10eb 611 delay_msecs = top.delay_secs * 1000;
923c42c1
MG
612 tcsetattr(0, TCSANOW, &tc);
613 /* trash return*/
614 getc(stdin);
07800601 615
0f5486b5 616 do {
93fc64f1 617 print_sym_table(session);
0f5486b5
FW
618 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
619
923c42c1
MG
620 c = getc(stdin);
621 tcsetattr(0, TCSAFLUSH, &save);
622
a1645ce1 623 handle_keypress(session, c);
923c42c1 624 goto repeat;
07800601
IM
625
626 return NULL;
627}
628
2ab52083 629/* Tag samples to be skipped. */
f37a291c 630static const char *skip_symbols[] = {
2ab52083 631 "default_idle",
b0e8572f 632 "native_safe_halt",
2ab52083
AB
633 "cpu_idle",
634 "enter_idle",
635 "exit_idle",
636 "mwait_idle",
59b90056 637 "mwait_idle_with_hints",
8357275b 638 "poll_idle",
3a3393ef
AB
639 "ppc64_runlatch_off",
640 "pseries_dedicated_idle_sleep",
2ab52083
AB
641 NULL
642};
643
439d473b 644static int symbol_filter(struct map *map, struct symbol *sym)
07800601 645{
de04687f
ACM
646 struct sym_entry *syme;
647 const char *name = sym->name;
2ab52083 648 int i;
de04687f 649
3a3393ef
AB
650 /*
651 * ppc64 uses function descriptors and appends a '.' to the
652 * start of every instruction address. Remove it.
653 */
654 if (name[0] == '.')
655 name++;
656
de04687f
ACM
657 if (!strcmp(name, "_text") ||
658 !strcmp(name, "_etext") ||
659 !strcmp(name, "_sinittext") ||
660 !strncmp("init_module", name, 11) ||
661 !strncmp("cleanup_module", name, 14) ||
662 strstr(name, "_text_start") ||
663 strstr(name, "_text_end"))
07800601 664 return 1;
07800601 665
00a192b3 666 syme = symbol__priv(sym);
439d473b 667 syme->map = map;
ce6f4fab 668 symbol__annotate_init(map, sym);
6cff0e8d 669
c97cf422 670 if (!top.sym_filter_entry && sym_filter && !strcmp(name, sym_filter)) {
6cff0e8d
KS
671 /* schedule initial sym_filter_entry setup */
672 sym_filter_entry_sched = syme;
673 sym_filter = NULL;
674 }
923c42c1 675
2ab52083
AB
676 for (i = 0; skip_symbols[i]; i++) {
677 if (!strcmp(skip_symbols[i], name)) {
678 syme->skip = 1;
679 break;
680 }
681 }
07800601 682
07800601
IM
683 return 0;
684}
685
8115d60c
ACM
686static void perf_event__process_sample(const union perf_event *event,
687 struct perf_sample *sample,
688 struct perf_session *session)
07800601 689{
8115d60c 690 u64 ip = event->ip.ip;
5b2bb75a 691 struct sym_entry *syme;
1ed091c4 692 struct addr_location al;
23346f21 693 struct machine *machine;
8115d60c 694 u8 origin = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
5b2bb75a 695
8c3e10eb 696 ++top.samples;
24bfef0f 697
8ffcda17 698 switch (origin) {
1ed091c4 699 case PERF_RECORD_MISC_USER:
8c3e10eb
ACM
700 ++top.us_samples;
701 if (top.hide_user_symbols)
8ffcda17 702 return;
23346f21 703 machine = perf_session__find_host_machine(session);
1ed091c4 704 break;
5b2bb75a 705 case PERF_RECORD_MISC_KERNEL:
8c3e10eb
ACM
706 ++top.kernel_samples;
707 if (top.hide_kernel_symbols)
8ffcda17 708 return;
23346f21 709 machine = perf_session__find_host_machine(session);
a1645ce1
ZY
710 break;
711 case PERF_RECORD_MISC_GUEST_KERNEL:
8c3e10eb 712 ++top.guest_kernel_samples;
8115d60c 713 machine = perf_session__find_machine(session, event->ip.pid);
5b2bb75a 714 break;
a1645ce1 715 case PERF_RECORD_MISC_GUEST_USER:
8c3e10eb 716 ++top.guest_us_samples;
a1645ce1
ZY
717 /*
718 * TODO: we don't process guest user from host side
719 * except simple counting.
720 */
721 return;
5b2bb75a
ACM
722 default:
723 return;
724 }
725
23346f21 726 if (!machine && perf_guest) {
a1645ce1 727 pr_err("Can't find guest [%d]'s kernel information\n",
8115d60c 728 event->ip.pid);
a1645ce1
ZY
729 return;
730 }
731
8115d60c 732 if (event->header.misc & PERF_RECORD_MISC_EXACT_IP)
8c3e10eb 733 top.exact_samples++;
1676b8a0 734
8115d60c
ACM
735 if (perf_event__preprocess_sample(event, session, &al, sample,
736 symbol_filter) < 0 ||
72b8fa17 737 al.filtered)
1ed091c4 738 return;
07800601 739
72b8fa17
ACM
740 if (al.sym == NULL) {
741 /*
742 * As we do lazy loading of symtabs we only will know if the
743 * specified vmlinux file is invalid when we actually have a
744 * hit in kernel space and then try to load it. So if we get
745 * here and there are _no_ symbols in the DSO backing the
746 * kernel map, bail out.
747 *
748 * We may never get here, for instance, if we use -K/
749 * --hide-kernel-symbols, even if the user specifies an
750 * invalid --vmlinux ;-)
751 */
23346f21 752 if (al.map == machine->vmlinux_maps[MAP__FUNCTION] &&
72b8fa17 753 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) {
374cfe56
ACM
754 ui__warning("The %s file can't be used\n",
755 symbol_conf.vmlinux_name);
756 exit_browser(0);
72b8fa17
ACM
757 exit(1);
758 }
759
760 return;
761 }
762
6cff0e8d
KS
763 /* let's see, whether we need to install initial sym_filter_entry */
764 if (sym_filter_entry_sched) {
c97cf422 765 top.sym_filter_entry = sym_filter_entry_sched;
6cff0e8d 766 sym_filter_entry_sched = NULL;
c97cf422
ACM
767 if (parse_source(top.sym_filter_entry) < 0) {
768 struct symbol *sym = sym_entry__symbol(top.sym_filter_entry);
b0a9ab62
ACM
769
770 pr_err("Can't annotate %s", sym->name);
c97cf422 771 if (top.sym_filter_entry->map->dso->origin == DSO__ORIG_KERNEL) {
b0a9ab62 772 pr_err(": No vmlinux file was found in the path:\n");
5ad90e4e 773 machine__fprintf_vmlinux_path(machine, stderr);
b0a9ab62
ACM
774 } else
775 pr_err(".\n");
776 exit(1);
777 }
6cff0e8d
KS
778 }
779
1ed091c4 780 syme = symbol__priv(al.sym);
5b2bb75a 781 if (!syme->skip) {
70db7533
ACM
782 struct perf_evsel *evsel;
783
8ffcda17 784 syme->origin = origin;
8c3e10eb 785 evsel = perf_evlist__id2evsel(top.evlist, sample->id);
70db7533
ACM
786 assert(evsel != NULL);
787 syme->count[evsel->idx]++;
69aad6f1 788 record_precise_ip(syme, evsel->idx, ip);
8c3e10eb 789 pthread_mutex_lock(&top.active_symbols_lock);
5807806a
ACM
790 if (list_empty(&syme->node) || !syme->node.next) {
791 static bool first = true;
5b2bb75a 792 __list_insert_active_sym(syme);
5807806a
ACM
793 if (first) {
794 pthread_cond_broadcast(&top.active_symbols_cond);
795 first = false;
796 }
797 }
8c3e10eb 798 pthread_mutex_unlock(&top.active_symbols_lock);
5b2bb75a 799 }
07800601
IM
800}
801
70db7533 802static void perf_session__mmap_read_cpu(struct perf_session *self, int cpu)
07800601 803{
8d50e5b4 804 struct perf_sample sample;
8115d60c 805 union perf_event *event;
07800601 806
8c3e10eb 807 while ((event = perf_evlist__read_on_cpu(top.evlist, cpu)) != NULL) {
d0dd74e8 808 perf_session__parse_sample(self, event, &sample);
04391deb 809
5b2bb75a 810 if (event->header.type == PERF_RECORD_SAMPLE)
8115d60c 811 perf_event__process_sample(event, &sample, self);
5b2bb75a 812 else
8115d60c 813 perf_event__process(event, &sample, self);
07800601 814 }
07800601
IM
815}
816
d8f66248 817static void perf_session__mmap_read(struct perf_session *self)
2f01190a 818{
70db7533
ACM
819 int i;
820
8c3e10eb 821 for (i = 0; i < top.evlist->cpus->nr; i++)
70db7533 822 perf_session__mmap_read_cpu(self, i);
2f01190a
FW
823}
824
72cb7013
ACM
825static void start_counters(struct perf_evlist *evlist)
826{
827 struct perf_evsel *counter;
7e4ff9e3 828
72cb7013
ACM
829 list_for_each_entry(counter, &evlist->entries, node) {
830 struct perf_event_attr *attr = &counter->attr;
716c69fe 831
72cb7013
ACM
832 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
833
8c3e10eb 834 if (top.freq) {
72cb7013
ACM
835 attr->sample_type |= PERF_SAMPLE_PERIOD;
836 attr->freq = 1;
8c3e10eb 837 attr->sample_freq = top.freq;
72cb7013 838 }
d6d901c2 839
70db7533
ACM
840 if (evlist->nr_entries > 1) {
841 attr->sample_type |= PERF_SAMPLE_ID;
842 attr->read_format |= PERF_FORMAT_ID;
843 }
844
72cb7013
ACM
845 attr->mmap = 1;
846try_again:
8c3e10eb
ACM
847 if (perf_evsel__open(counter, top.evlist->cpus,
848 top.evlist->threads, group, inherit) < 0) {
d6d901c2
ZY
849 int err = errno;
850
851 if (err == EPERM || err == EACCES)
d9cf837e
CA
852 die("Permission error - are you root?\n"
853 "\t Consider tweaking"
854 " /proc/sys/kernel/perf_event_paranoid.\n");
d6d901c2
ZY
855 /*
856 * If it's cycles then fall back to hrtimer
857 * based cpu-clock-tick sw counter, which
858 * is always available even if no PMU support:
859 */
72cb7013
ACM
860 if (attr->type == PERF_TYPE_HARDWARE &&
861 attr->config == PERF_COUNT_HW_CPU_CYCLES) {
d6d901c2
ZY
862
863 if (verbose)
864 warning(" ... trying to fall back to cpu-clock-ticks\n");
865
866 attr->type = PERF_TYPE_SOFTWARE;
867 attr->config = PERF_COUNT_SW_CPU_CLOCK;
868 goto try_again;
869 }
870 printf("\n");
72cb7013
ACM
871 error("sys_perf_event_open() syscall returned with %d "
872 "(%s). /bin/dmesg may provide additional information.\n",
873 err, strerror(err));
d6d901c2
ZY
874 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
875 exit(-1);
876 }
716c69fe 877 }
70db7533 878
7e2ed097 879 if (perf_evlist__mmap(evlist, mmap_pages, false) < 0)
70db7533 880 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
716c69fe
IM
881}
882
883static int __cmd_top(void)
884{
885 pthread_t thread;
fb7d0b3c 886 int ret __used;
d8f66248 887 /*
b3165f41
ACM
888 * FIXME: perf_session__new should allow passing a O_MMAP, so that all this
889 * mmap reading, etc is encapsulated in it. Use O_WRONLY for now.
d8f66248 890 */
21ef97f0 891 struct perf_session *session = perf_session__new(NULL, O_WRONLY, false, false, NULL);
b3165f41
ACM
892 if (session == NULL)
893 return -ENOMEM;
07800601 894
8c3e10eb 895 if (top.target_tid != -1)
7c940c18
ACM
896 perf_event__synthesize_thread_map(top.evlist->threads,
897 perf_event__process, session);
5b2bb75a 898 else
8115d60c 899 perf_event__synthesize_threads(perf_event__process, session);
5b2bb75a 900
8c3e10eb 901 start_counters(top.evlist);
a91e5431
ACM
902 session->evlist = top.evlist;
903 perf_session__update_sample_type(session);
07800601 904
2f01190a 905 /* Wait for a minimal set of events before starting the snapshot */
8c3e10eb 906 poll(top.evlist->pollfd, top.evlist->nr_fds, 100);
2f01190a 907
d8f66248 908 perf_session__mmap_read(session);
2f01190a 909
c0443df1
ACM
910 if (pthread_create(&thread, NULL, (use_browser > 0 ? display_thread_tui :
911 display_thread), session)) {
07800601
IM
912 printf("Could not create display thread.\n");
913 exit(-1);
914 }
915
916 if (realtime_prio) {
917 struct sched_param param;
918
919 param.sched_priority = realtime_prio;
920 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
921 printf("Could not set realtime priority.\n");
922 exit(-1);
923 }
924 }
925
926 while (1) {
8c3e10eb 927 u64 hits = top.samples;
07800601 928
d8f66248 929 perf_session__mmap_read(session);
07800601 930
8c3e10eb
ACM
931 if (hits == top.samples)
932 ret = poll(top.evlist->pollfd, top.evlist->nr_fds, 100);
07800601
IM
933 }
934
935 return 0;
936}
b456bae0
IM
937
938static const char * const top_usage[] = {
939 "perf top [<options>]",
940 NULL
941};
942
b456bae0 943static const struct option options[] = {
8c3e10eb 944 OPT_CALLBACK('e', "event", &top.evlist, "event",
86847b62
TG
945 "event selector. use 'perf list' to list available events",
946 parse_events),
b456bae0
IM
947 OPT_INTEGER('c', "count", &default_interval,
948 "event period to sample"),
8c3e10eb 949 OPT_INTEGER('p', "pid", &top.target_pid,
d6d901c2 950 "profile events on existing process id"),
8c3e10eb 951 OPT_INTEGER('t', "tid", &top.target_tid,
d6d901c2 952 "profile events on existing thread id"),
b456bae0
IM
953 OPT_BOOLEAN('a', "all-cpus", &system_wide,
954 "system-wide collection from all CPUs"),
8c3e10eb 955 OPT_STRING('C', "cpu", &top.cpu_list, "cpu",
c45c6ea2 956 "list of cpus to monitor"),
b32d133a
ACM
957 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
958 "file", "vmlinux pathname"),
8c3e10eb 959 OPT_BOOLEAN('K', "hide_kernel_symbols", &top.hide_kernel_symbols,
8ffcda17 960 "hide kernel symbols"),
1967936d 961 OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
b456bae0
IM
962 OPT_INTEGER('r', "realtime", &realtime_prio,
963 "collect data with this RT SCHED_FIFO priority"),
8c3e10eb 964 OPT_INTEGER('d', "delay", &top.delay_secs,
b456bae0
IM
965 "number of seconds to delay between refreshes"),
966 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
967 "dump the symbol table used for profiling"),
8c3e10eb 968 OPT_INTEGER('f', "count-filter", &top.count_filter,
b456bae0
IM
969 "only display functions with more events than this"),
970 OPT_BOOLEAN('g', "group", &group,
971 "put the counters into a counter group"),
0fdc7e67
MG
972 OPT_BOOLEAN('i', "inherit", &inherit,
973 "child tasks inherit counters"),
923c42c1 974 OPT_STRING('s', "sym-annotate", &sym_filter, "symbol name",
6cff0e8d 975 "symbol to annotate"),
8c3e10eb 976 OPT_BOOLEAN('z', "zero", &top.zero,
b456bae0 977 "zero history across updates"),
8c3e10eb 978 OPT_INTEGER('F', "freq", &top.freq,
b456bae0 979 "profile at this frequency"),
8c3e10eb 980 OPT_INTEGER('E', "entries", &top.print_entries,
6e53cdf1 981 "display this many functions"),
8c3e10eb 982 OPT_BOOLEAN('U', "hide_user_symbols", &top.hide_user_symbols,
8ffcda17 983 "hide user symbols"),
c0443df1
ACM
984 OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"),
985 OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"),
c0555642 986 OPT_INCR('v', "verbose", &verbose,
3da297a6 987 "be more verbose (show counter open errors, etc)"),
b456bae0
IM
988 OPT_END()
989};
990
f37a291c 991int cmd_top(int argc, const char **argv, const char *prefix __used)
b456bae0 992{
69aad6f1
ACM
993 struct perf_evsel *pos;
994 int status = -ENOMEM;
b456bae0 995
8c3e10eb
ACM
996 top.evlist = perf_evlist__new(NULL, NULL);
997 if (top.evlist == NULL)
361c99a6
ACM
998 return -ENOMEM;
999
b456bae0
IM
1000 page_size = sysconf(_SC_PAGE_SIZE);
1001
b456bae0
IM
1002 argc = parse_options(argc, argv, options, top_usage, 0);
1003 if (argc)
1004 usage_with_options(top_usage, options);
1005
c0443df1
ACM
1006 /*
1007 * XXX For now start disabled, only using TUI if explicitely asked for.
1008 * Change that when handle_keys equivalent gets written, live annotation
1009 * done, etc.
1010 */
1011 use_browser = 0;
1012
1013 if (use_stdio)
1014 use_browser = 0;
1015 else if (use_tui)
1016 use_browser = 1;
1017
1018 setup_browser(false);
1019
b456bae0 1020 /* CPU and PID are mutually exclusive */
8c3e10eb 1021 if (top.target_tid > 0 && top.cpu_list) {
b456bae0
IM
1022 printf("WARNING: PID switch overriding CPU\n");
1023 sleep(1);
8c3e10eb 1024 top.cpu_list = NULL;
b456bae0
IM
1025 }
1026
8c3e10eb
ACM
1027 if (top.target_pid != -1)
1028 top.target_tid = top.target_pid;
7e2ed097 1029
8c3e10eb
ACM
1030 if (perf_evlist__create_maps(top.evlist, top.target_pid,
1031 top.target_tid, top.cpu_list) < 0)
7e2ed097
ACM
1032 usage_with_options(top_usage, options);
1033
8c3e10eb
ACM
1034 if (!top.evlist->nr_entries &&
1035 perf_evlist__add_default(top.evlist) < 0) {
69aad6f1
ACM
1036 pr_err("Not enough memory for event selector list\n");
1037 return -ENOMEM;
1038 }
5a8e5a30 1039
8c3e10eb
ACM
1040 if (top.delay_secs < 1)
1041 top.delay_secs = 1;
2f335a02 1042
7e4ff9e3
MG
1043 /*
1044 * User specified count overrides default frequency.
1045 */
1046 if (default_interval)
8c3e10eb
ACM
1047 top.freq = 0;
1048 else if (top.freq) {
1049 default_interval = top.freq;
7e4ff9e3
MG
1050 } else {
1051 fprintf(stderr, "frequency and count are zero, aborting\n");
1052 exit(EXIT_FAILURE);
1053 }
1054
8c3e10eb
ACM
1055 list_for_each_entry(pos, &top.evlist->entries, node) {
1056 if (perf_evsel__alloc_fd(pos, top.evlist->cpus->nr,
1057 top.evlist->threads->nr) < 0)
69aad6f1
ACM
1058 goto out_free_fd;
1059 /*
1060 * Fill in the ones not specifically initialized via -c:
1061 */
1062 if (pos->attr.sample_period)
1063 continue;
1064
1065 pos->attr.sample_period = default_interval;
1066 }
1067
8c3e10eb
ACM
1068 if (perf_evlist__alloc_pollfd(top.evlist) < 0 ||
1069 perf_evlist__alloc_mmap(top.evlist) < 0)
5c581041
ACM
1070 goto out_free_fd;
1071
8c3e10eb 1072 top.sym_evsel = list_entry(top.evlist->entries.next, struct perf_evsel, node);
cc841580 1073
36532461 1074 symbol_conf.priv_size = (sizeof(struct sym_entry) + sizeof(struct annotation) +
8c3e10eb 1075 (top.evlist->nr_entries + 1) * sizeof(unsigned long));
69aad6f1
ACM
1076
1077 symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
1078 if (symbol__init() < 0)
1079 return -1;
1080
13cc5079 1081 get_term_dimensions(&winsize);
8c3e10eb 1082 if (top.print_entries == 0) {
13cc5079 1083 update_print_entries(&winsize);
3b6ed988
ACM
1084 signal(SIGWINCH, sig_winch_handler);
1085 }
1086
69aad6f1
ACM
1087 status = __cmd_top();
1088out_free_fd:
8c3e10eb 1089 perf_evlist__delete(top.evlist);
69aad6f1
ACM
1090
1091 return status;
b456bae0 1092}