]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - tools/perf/builtin-top.c
perf, ui: Eliminate stack-smashing protection compiler complaint
[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>
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
8fc0321f 23#include "util/color.h"
b3165f41
ACM
24#include "util/session.h"
25#include "util/symbol.h"
439d473b 26#include "util/thread.h"
148be2c1 27#include "util/util.h"
43cbcd8a 28#include <linux/rbtree.h>
b456bae0
IM
29#include "util/parse-options.h"
30#include "util/parse-events.h"
a12b51c4 31#include "util/cpumap.h"
07800601 32
8f28827a
FW
33#include "util/debug.h"
34
07800601
IM
35#include <assert.h>
36#include <fcntl.h>
0e9b20b8 37
07800601 38#include <stdio.h>
923c42c1
MG
39#include <termios.h>
40#include <unistd.h>
0e9b20b8 41
07800601 42#include <errno.h>
07800601
IM
43#include <time.h>
44#include <sched.h>
45#include <pthread.h>
46
47#include <sys/syscall.h>
48#include <sys/ioctl.h>
49#include <sys/poll.h>
50#include <sys/prctl.h>
51#include <sys/wait.h>
52#include <sys/uio.h>
53#include <sys/mman.h>
54
55#include <linux/unistd.h>
56#include <linux/types.h>
57
d6d901c2 58static int *fd[MAX_NR_CPUS][MAX_COUNTERS];
07800601 59
c0555642 60static bool system_wide = false;
07800601 61
7e4ff9e3 62static int default_interval = 0;
07800601 63
42e59d7d 64static int count_filter = 5;
3b6ed988 65static int print_entries;
07800601 66
42e59d7d 67static int target_pid = -1;
d6d901c2
ZY
68static int target_tid = -1;
69static pid_t *all_tids = NULL;
70static int thread_num = 0;
c0555642 71static bool inherit = false;
42e59d7d
IM
72static int profile_cpu = -1;
73static int nr_cpus = 0;
1967936d 74static int realtime_prio = 0;
c0555642 75static bool group = false;
07800601 76static unsigned int page_size;
42e59d7d
IM
77static unsigned int mmap_pages = 16;
78static int freq = 1000; /* 1 KHz */
07800601 79
42e59d7d 80static int delay_secs = 2;
c0555642
IM
81static bool zero = false;
82static bool dump_symtab = false;
07800601 83
8ffcda17
ACM
84static bool hide_kernel_symbols = false;
85static bool hide_user_symbols = false;
13cc5079 86static struct winsize winsize;
8ffcda17 87
923c42c1
MG
88/*
89 * Source
90 */
91
92struct source_line {
93 u64 eip;
94 unsigned long count[MAX_COUNTERS];
95 char *line;
96 struct source_line *next;
97};
98
edb7c60e 99static const char *sym_filter = NULL;
42e59d7d 100struct sym_entry *sym_filter_entry = NULL;
6cff0e8d 101struct sym_entry *sym_filter_entry_sched = NULL;
42e59d7d
IM
102static int sym_pcnt_filter = 5;
103static int sym_counter = 0;
104static int display_weighted = -1;
c45c6ea2 105static const char *cpu_list;
923c42c1 106
07800601
IM
107/*
108 * Symbols
109 */
110
b269876c
ACM
111struct sym_entry_source {
112 struct source_line *source;
113 struct source_line *lines;
114 struct source_line **lines_tail;
115 pthread_mutex_t lock;
116};
117
07800601 118struct sym_entry {
de04687f
ACM
119 struct rb_node rb_node;
120 struct list_head node;
c44613a4
ACM
121 unsigned long snap_count;
122 double weight;
07800601 123 int skip;
13cc5079 124 u16 name_len;
8ffcda17 125 u8 origin;
439d473b 126 struct map *map;
b269876c 127 struct sym_entry_source *src;
5a8e5a30 128 unsigned long count[0];
07800601
IM
129};
130
923c42c1
MG
131/*
132 * Source functions
133 */
134
51a472de
ACM
135static inline struct symbol *sym_entry__symbol(struct sym_entry *self)
136{
b32d133a 137 return ((void *)self) + symbol_conf.priv_size;
51a472de
ACM
138}
139
895f0edc 140void get_term_dimensions(struct winsize *ws)
3b6ed988 141{
13cc5079
ACM
142 char *s = getenv("LINES");
143
144 if (s != NULL) {
145 ws->ws_row = atoi(s);
146 s = getenv("COLUMNS");
147 if (s != NULL) {
148 ws->ws_col = atoi(s);
149 if (ws->ws_row && ws->ws_col)
150 return;
151 }
3b6ed988 152 }
13cc5079
ACM
153#ifdef TIOCGWINSZ
154 if (ioctl(1, TIOCGWINSZ, ws) == 0 &&
155 ws->ws_row && ws->ws_col)
156 return;
3b6ed988 157#endif
13cc5079
ACM
158 ws->ws_row = 25;
159 ws->ws_col = 80;
3b6ed988
ACM
160}
161
13cc5079 162static void update_print_entries(struct winsize *ws)
3b6ed988 163{
13cc5079
ACM
164 print_entries = ws->ws_row;
165
3b6ed988
ACM
166 if (print_entries > 9)
167 print_entries -= 9;
168}
169
170static void sig_winch_handler(int sig __used)
171{
13cc5079
ACM
172 get_term_dimensions(&winsize);
173 update_print_entries(&winsize);
3b6ed988
ACM
174}
175
b0a9ab62 176static int parse_source(struct sym_entry *syme)
923c42c1
MG
177{
178 struct symbol *sym;
b269876c 179 struct sym_entry_source *source;
439d473b 180 struct map *map;
923c42c1 181 FILE *file;
83a0944f 182 char command[PATH_MAX*2];
439d473b
ACM
183 const char *path;
184 u64 len;
923c42c1
MG
185
186 if (!syme)
b0a9ab62
ACM
187 return -1;
188
189 sym = sym_entry__symbol(syme);
190 map = syme->map;
191
192 /*
193 * We can't annotate with just /proc/kallsyms
194 */
195 if (map->dso->origin == DSO__ORIG_KERNEL)
196 return -1;
923c42c1 197
b269876c 198 if (syme->src == NULL) {
36479484 199 syme->src = zalloc(sizeof(*source));
b269876c 200 if (syme->src == NULL)
b0a9ab62 201 return -1;
b269876c
ACM
202 pthread_mutex_init(&syme->src->lock, NULL);
203 }
204
205 source = syme->src;
206
207 if (source->lines) {
208 pthread_mutex_lock(&source->lock);
923c42c1
MG
209 goto out_assign;
210 }
439d473b 211 path = map->dso->long_name;
923c42c1 212
923c42c1
MG
213 len = sym->end - sym->start;
214
439d473b 215 sprintf(command,
5f485364
ACM
216 "objdump --start-address=%#0*Lx --stop-address=%#0*Lx -dS %s",
217 BITS_PER_LONG / 4, map__rip_2objdump(map, sym->start),
218 BITS_PER_LONG / 4, map__rip_2objdump(map, sym->end), path);
923c42c1
MG
219
220 file = popen(command, "r");
221 if (!file)
b0a9ab62 222 return -1;
923c42c1 223
b269876c
ACM
224 pthread_mutex_lock(&source->lock);
225 source->lines_tail = &source->lines;
923c42c1
MG
226 while (!feof(file)) {
227 struct source_line *src;
228 size_t dummy = 0;
ee11b90b 229 char *c, *sep;
923c42c1
MG
230
231 src = malloc(sizeof(struct source_line));
232 assert(src != NULL);
233 memset(src, 0, sizeof(struct source_line));
234
235 if (getline(&src->line, &dummy, file) < 0)
236 break;
237 if (!src->line)
238 break;
239
240 c = strchr(src->line, '\n');
241 if (c)
242 *c = 0;
243
244 src->next = NULL;
b269876c
ACM
245 *source->lines_tail = src;
246 source->lines_tail = &src->next;
923c42c1 247
ee11b90b
KS
248 src->eip = strtoull(src->line, &sep, 16);
249 if (*sep == ':')
250 src->eip = map__objdump_2ip(map, src->eip);
251 else /* this line has no ip info (e.g. source line) */
252 src->eip = 0;
923c42c1
MG
253 }
254 pclose(file);
255out_assign:
256 sym_filter_entry = syme;
b269876c 257 pthread_mutex_unlock(&source->lock);
b0a9ab62 258 return 0;
923c42c1
MG
259}
260
261static void __zero_source_counters(struct sym_entry *syme)
262{
263 int i;
264 struct source_line *line;
265
b269876c 266 line = syme->src->lines;
923c42c1
MG
267 while (line) {
268 for (i = 0; i < nr_counters; i++)
269 line->count[i] = 0;
270 line = line->next;
271 }
272}
273
274static void record_precise_ip(struct sym_entry *syme, int counter, u64 ip)
275{
276 struct source_line *line;
277
278 if (syme != sym_filter_entry)
279 return;
280
b269876c 281 if (pthread_mutex_trylock(&syme->src->lock))
923c42c1
MG
282 return;
283
b269876c 284 if (syme->src == NULL || syme->src->source == NULL)
923c42c1
MG
285 goto out_unlock;
286
b269876c 287 for (line = syme->src->lines; line; line = line->next) {
ee11b90b
KS
288 /* skip lines without IP info */
289 if (line->eip == 0)
290 continue;
923c42c1
MG
291 if (line->eip == ip) {
292 line->count[counter]++;
293 break;
294 }
295 if (line->eip > ip)
296 break;
297 }
298out_unlock:
b269876c 299 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
300}
301
c7ad21af
ACM
302#define PATTERN_LEN (BITS_PER_LONG / 4 + 2)
303
923c42c1
MG
304static void lookup_sym_source(struct sym_entry *syme)
305{
51a472de 306 struct symbol *symbol = sym_entry__symbol(syme);
923c42c1 307 struct source_line *line;
c7ad21af 308 char pattern[PATTERN_LEN + 1];
923c42c1 309
5f485364
ACM
310 sprintf(pattern, "%0*Lx <", BITS_PER_LONG / 4,
311 map__rip_2objdump(syme->map, symbol->start));
923c42c1 312
b269876c
ACM
313 pthread_mutex_lock(&syme->src->lock);
314 for (line = syme->src->lines; line; line = line->next) {
c7ad21af 315 if (memcmp(line->line, pattern, PATTERN_LEN) == 0) {
b269876c 316 syme->src->source = line;
923c42c1
MG
317 break;
318 }
319 }
b269876c 320 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
321}
322
323static void show_lines(struct source_line *queue, int count, int total)
324{
325 int i;
326 struct source_line *line;
327
328 line = queue;
329 for (i = 0; i < count; i++) {
330 float pcnt = 100.0*(float)line->count[sym_counter]/(float)total;
331
332 printf("%8li %4.1f%%\t%s\n", line->count[sym_counter], pcnt, line->line);
333 line = line->next;
334 }
335}
336
337#define TRACE_COUNT 3
338
339static void show_details(struct sym_entry *syme)
340{
341 struct symbol *symbol;
342 struct source_line *line;
343 struct source_line *line_queue = NULL;
344 int displayed = 0;
345 int line_queue_count = 0, total = 0, more = 0;
346
347 if (!syme)
348 return;
349
b269876c 350 if (!syme->src->source)
923c42c1
MG
351 lookup_sym_source(syme);
352
b269876c 353 if (!syme->src->source)
923c42c1
MG
354 return;
355
51a472de 356 symbol = sym_entry__symbol(syme);
923c42c1
MG
357 printf("Showing %s for %s\n", event_name(sym_counter), symbol->name);
358 printf(" Events Pcnt (>=%d%%)\n", sym_pcnt_filter);
359
b269876c
ACM
360 pthread_mutex_lock(&syme->src->lock);
361 line = syme->src->source;
923c42c1
MG
362 while (line) {
363 total += line->count[sym_counter];
364 line = line->next;
365 }
366
b269876c 367 line = syme->src->source;
923c42c1
MG
368 while (line) {
369 float pcnt = 0.0;
370
371 if (!line_queue_count)
372 line_queue = line;
373 line_queue_count++;
374
375 if (line->count[sym_counter])
376 pcnt = 100.0 * line->count[sym_counter] / (float)total;
377 if (pcnt >= (float)sym_pcnt_filter) {
378 if (displayed <= print_entries)
379 show_lines(line_queue, line_queue_count, total);
380 else more++;
381 displayed += line_queue_count;
382 line_queue_count = 0;
383 line_queue = NULL;
384 } else if (line_queue_count > TRACE_COUNT) {
385 line_queue = line_queue->next;
386 line_queue_count--;
387 }
388
389 line->count[sym_counter] = zero ? 0 : line->count[sym_counter] * 7 / 8;
390 line = line->next;
391 }
b269876c 392 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
393 if (more)
394 printf("%d lines not displayed, maybe increase display entries [e]\n", more);
395}
07800601 396
de04687f 397/*
5b2bb75a 398 * Symbols will be added here in event__process_sample and will get out
de04687f
ACM
399 * after decayed.
400 */
401static LIST_HEAD(active_symbols);
c44613a4 402static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
07800601 403
07800601
IM
404/*
405 * Ordering weight: count-1 * count-2 * ... / count-n
406 */
407static double sym_weight(const struct sym_entry *sym)
408{
c44613a4 409 double weight = sym->snap_count;
07800601
IM
410 int counter;
411
46ab9764
MG
412 if (!display_weighted)
413 return weight;
414
07800601
IM
415 for (counter = 1; counter < nr_counters-1; counter++)
416 weight *= sym->count[counter];
417
418 weight /= (sym->count[counter] + 1);
419
420 return weight;
421}
422
2debbc83 423static long samples;
a1645ce1 424static long kernel_samples, us_samples;
1676b8a0 425static long exact_samples;
a1645ce1 426static long guest_us_samples, guest_kernel_samples;
07800601
IM
427static const char CONSOLE_CLEAR[] = "\e[H\e[2J";
428
c44613a4 429static void __list_insert_active_sym(struct sym_entry *syme)
de04687f
ACM
430{
431 list_add(&syme->node, &active_symbols);
432}
433
c44613a4
ACM
434static void list_remove_active_sym(struct sym_entry *syme)
435{
436 pthread_mutex_lock(&active_symbols_lock);
437 list_del_init(&syme->node);
438 pthread_mutex_unlock(&active_symbols_lock);
439}
440
de04687f
ACM
441static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
442{
443 struct rb_node **p = &tree->rb_node;
444 struct rb_node *parent = NULL;
445 struct sym_entry *iter;
446
447 while (*p != NULL) {
448 parent = *p;
449 iter = rb_entry(parent, struct sym_entry, rb_node);
450
c44613a4 451 if (se->weight > iter->weight)
de04687f
ACM
452 p = &(*p)->rb_left;
453 else
454 p = &(*p)->rb_right;
455 }
456
457 rb_link_node(&se->rb_node, parent, p);
458 rb_insert_color(&se->rb_node, tree);
459}
07800601
IM
460
461static void print_sym_table(void)
462{
233f0b95 463 int printed = 0, j;
46ab9764 464 int counter, snap = !display_weighted ? sym_counter : 0;
2debbc83 465 float samples_per_sec = samples/delay_secs;
a1645ce1
ZY
466 float ksamples_per_sec = kernel_samples/delay_secs;
467 float us_samples_per_sec = (us_samples)/delay_secs;
468 float guest_kernel_samples_per_sec = (guest_kernel_samples)/delay_secs;
469 float guest_us_samples_per_sec = (guest_us_samples)/delay_secs;
1676b8a0 470 float esamples_percent = (100.0*exact_samples)/samples;
2debbc83 471 float sum_ksamples = 0.0;
de04687f
ACM
472 struct sym_entry *syme, *n;
473 struct rb_root tmp = RB_ROOT;
474 struct rb_node *nd;
00909e95 475 int sym_width = 0, dso_width = 0, dso_short_width = 0;
13cc5079 476 const int win_width = winsize.ws_col - 1;
07800601 477
a1645ce1
ZY
478 samples = us_samples = kernel_samples = exact_samples = 0;
479 guest_kernel_samples = guest_us_samples = 0;
07800601 480
de04687f 481 /* Sort the active symbols */
c44613a4
ACM
482 pthread_mutex_lock(&active_symbols_lock);
483 syme = list_entry(active_symbols.next, struct sym_entry, node);
484 pthread_mutex_unlock(&active_symbols_lock);
485
486 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
46ab9764 487 syme->snap_count = syme->count[snap];
c44613a4 488 if (syme->snap_count != 0) {
13cc5079 489
8ffcda17
ACM
490 if ((hide_user_symbols &&
491 syme->origin == PERF_RECORD_MISC_USER) ||
492 (hide_kernel_symbols &&
493 syme->origin == PERF_RECORD_MISC_KERNEL)) {
494 list_remove_active_sym(syme);
495 continue;
496 }
c44613a4 497 syme->weight = sym_weight(syme);
de04687f 498 rb_insert_active_sym(&tmp, syme);
2debbc83 499 sum_ksamples += syme->snap_count;
d94b9430
MG
500
501 for (j = 0; j < nr_counters; j++)
de04687f
ACM
502 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
503 } else
c44613a4 504 list_remove_active_sym(syme);
d94b9430
MG
505 }
506
0f5486b5 507 puts(CONSOLE_CLEAR);
07800601 508
13cc5079 509 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
a1645ce1
ZY
510 if (!perf_guest) {
511 printf(" PerfTop:%8.0f irqs/sec kernel:%4.1f%%"
512 " exact: %4.1f%% [",
513 samples_per_sec,
514 100.0 - (100.0 * ((samples_per_sec - ksamples_per_sec) /
515 samples_per_sec)),
516 esamples_percent);
517 } else {
518 printf(" PerfTop:%8.0f irqs/sec kernel:%4.1f%% us:%4.1f%%"
519 " guest kernel:%4.1f%% guest us:%4.1f%%"
520 " exact: %4.1f%% [",
521 samples_per_sec,
522 100.0 - (100.0 * ((samples_per_sec-ksamples_per_sec) /
523 samples_per_sec)),
524 100.0 - (100.0 * ((samples_per_sec-us_samples_per_sec) /
525 samples_per_sec)),
526 100.0 - (100.0 * ((samples_per_sec -
527 guest_kernel_samples_per_sec) /
528 samples_per_sec)),
529 100.0 - (100.0 * ((samples_per_sec -
530 guest_us_samples_per_sec) /
531 samples_per_sec)),
532 esamples_percent);
533 }
07800601 534
46ab9764 535 if (nr_counters == 1 || !display_weighted) {
9cffa8d5 536 printf("%Ld", (u64)attrs[0].sample_period);
cf1f4574
IM
537 if (freq)
538 printf("Hz ");
539 else
540 printf(" ");
541 }
07800601 542
46ab9764
MG
543 if (!display_weighted)
544 printf("%s", event_name(sym_counter));
545 else for (counter = 0; counter < nr_counters; counter++) {
07800601
IM
546 if (counter)
547 printf("/");
548
549 printf("%s", event_name(counter));
550 }
551
552 printf( "], ");
553
b456bae0
IM
554 if (target_pid != -1)
555 printf(" (target_pid: %d", target_pid);
d6d901c2
ZY
556 else if (target_tid != -1)
557 printf(" (target_tid: %d", target_tid);
07800601
IM
558 else
559 printf(" (all");
560
561 if (profile_cpu != -1)
562 printf(", cpu: %d)\n", profile_cpu);
563 else {
d6d901c2 564 if (target_tid != -1)
07800601
IM
565 printf(")\n");
566 else
567 printf(", %d CPUs)\n", nr_cpus);
568 }
569
1a105f74 570 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
07800601 571
923c42c1
MG
572 if (sym_filter_entry) {
573 show_details(sym_filter_entry);
574 return;
575 }
576
13cc5079
ACM
577 /*
578 * Find the longest symbol name that will be displayed
579 */
580 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
581 syme = rb_entry(nd, struct sym_entry, rb_node);
582 if (++printed > print_entries ||
583 (int)syme->snap_count < count_filter)
584 continue;
585
1a105f74
ACM
586 if (syme->map->dso->long_name_len > dso_width)
587 dso_width = syme->map->dso->long_name_len;
588
b63be8d7
ACM
589 if (syme->map->dso->short_name_len > dso_short_width)
590 dso_short_width = syme->map->dso->short_name_len;
591
13cc5079
ACM
592 if (syme->name_len > sym_width)
593 sym_width = syme->name_len;
594 }
595
596 printed = 0;
597
b63be8d7
ACM
598 if (sym_width + dso_width > winsize.ws_col - 29) {
599 dso_width = dso_short_width;
600 if (sym_width + dso_width > winsize.ws_col - 29)
601 sym_width = winsize.ws_col - dso_width - 29;
602 }
7cc017ed 603 putchar('\n');
07800601 604 if (nr_counters == 1)
5b2bb75a 605 printf(" samples pcnt");
07800601 606 else
5b2bb75a 607 printf(" weight samples pcnt");
07800601 608
7ced156b
ACM
609 if (verbose)
610 printf(" RIP ");
7cc017ed 611 printf(" %-*.*s DSO\n", sym_width, sym_width, "function");
5b2bb75a 612 printf(" %s _______ _____",
7ced156b
ACM
613 nr_counters == 1 ? " " : "______");
614 if (verbose)
5b2bb75a 615 printf(" ________________");
1a105f74 616 printf(" %-*.*s", sym_width, sym_width, graph_line);
7cc017ed 617 printf(" %-*.*s", dso_width, dso_width, graph_line);
1a105f74 618 puts("\n");
07800601 619
de04687f 620 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
83a0944f 621 struct symbol *sym;
8fc0321f 622 double pcnt;
d94b9430 623
83a0944f 624 syme = rb_entry(nd, struct sym_entry, rb_node);
51a472de 625 sym = sym_entry__symbol(syme);
923c42c1 626 if (++printed > print_entries || (int)syme->snap_count < count_filter)
c44613a4 627 continue;
d94b9430 628
2debbc83
IM
629 pcnt = 100.0 - (100.0 * ((sum_ksamples - syme->snap_count) /
630 sum_ksamples));
d94b9430 631
46ab9764 632 if (nr_counters == 1 || !display_weighted)
5b2bb75a 633 printf("%20.2f ", syme->weight);
d94b9430 634 else
5b2bb75a 635 printf("%9.1f %10ld ", syme->weight, syme->snap_count);
8fc0321f 636
1e11fd82 637 percent_color_fprintf(stdout, "%4.1f%%", pcnt);
7ced156b 638 if (verbose)
5b2bb75a 639 printf(" %016llx", sym->start);
13cc5079 640 printf(" %-*.*s", sym_width, sym_width, sym->name);
7cc017ed
ACM
641 printf(" %-*.*s\n", dso_width, dso_width,
642 dso_width >= syme->map->dso->long_name_len ?
643 syme->map->dso->long_name :
644 syme->map->dso->short_name);
07800601 645 }
07800601
IM
646}
647
923c42c1
MG
648static void prompt_integer(int *target, const char *msg)
649{
650 char *buf = malloc(0), *p;
651 size_t dummy = 0;
652 int tmp;
653
654 fprintf(stdout, "\n%s: ", msg);
655 if (getline(&buf, &dummy, stdin) < 0)
656 return;
657
658 p = strchr(buf, '\n');
659 if (p)
660 *p = 0;
661
662 p = buf;
663 while(*p) {
664 if (!isdigit(*p))
665 goto out_free;
666 p++;
667 }
668 tmp = strtoul(buf, NULL, 10);
669 *target = tmp;
670out_free:
671 free(buf);
672}
673
674static void prompt_percent(int *target, const char *msg)
675{
676 int tmp = 0;
677
678 prompt_integer(&tmp, msg);
679 if (tmp >= 0 && tmp <= 100)
680 *target = tmp;
681}
682
683static void prompt_symbol(struct sym_entry **target, const char *msg)
684{
685 char *buf = malloc(0), *p;
686 struct sym_entry *syme = *target, *n, *found = NULL;
687 size_t dummy = 0;
688
689 /* zero counters of active symbol */
690 if (syme) {
b269876c 691 pthread_mutex_lock(&syme->src->lock);
923c42c1
MG
692 __zero_source_counters(syme);
693 *target = NULL;
b269876c 694 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
695 }
696
697 fprintf(stdout, "\n%s: ", msg);
698 if (getline(&buf, &dummy, stdin) < 0)
699 goto out_free;
700
701 p = strchr(buf, '\n');
702 if (p)
703 *p = 0;
704
705 pthread_mutex_lock(&active_symbols_lock);
706 syme = list_entry(active_symbols.next, struct sym_entry, node);
707 pthread_mutex_unlock(&active_symbols_lock);
708
709 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
51a472de 710 struct symbol *sym = sym_entry__symbol(syme);
923c42c1
MG
711
712 if (!strcmp(buf, sym->name)) {
713 found = syme;
714 break;
715 }
716 }
717
718 if (!found) {
66aeb6d5 719 fprintf(stderr, "Sorry, %s is not active.\n", buf);
923c42c1
MG
720 sleep(1);
721 return;
722 } else
723 parse_source(found);
724
725out_free:
726 free(buf);
727}
728
091bd2e9 729static void print_mapped_keys(void)
923c42c1 730{
091bd2e9
MG
731 char *name = NULL;
732
733 if (sym_filter_entry) {
51a472de 734 struct symbol *sym = sym_entry__symbol(sym_filter_entry);
091bd2e9
MG
735 name = sym->name;
736 }
737
738 fprintf(stdout, "\nMapped keys:\n");
739 fprintf(stdout, "\t[d] display refresh delay. \t(%d)\n", delay_secs);
740 fprintf(stdout, "\t[e] display entries (lines). \t(%d)\n", print_entries);
741
742 if (nr_counters > 1)
743 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", event_name(sym_counter));
744
745 fprintf(stdout, "\t[f] profile display filter (count). \t(%d)\n", count_filter);
746
6cff0e8d
KS
747 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", sym_pcnt_filter);
748 fprintf(stdout, "\t[s] annotate symbol. \t(%s)\n", name?: "NULL");
749 fprintf(stdout, "\t[S] stop annotation.\n");
091bd2e9
MG
750
751 if (nr_counters > 1)
752 fprintf(stdout, "\t[w] toggle display weighted/count[E]r. \t(%d)\n", display_weighted ? 1 : 0);
753
8ffcda17 754 fprintf(stdout,
1a72cfa6 755 "\t[K] hide kernel_symbols symbols. \t(%s)\n",
8ffcda17
ACM
756 hide_kernel_symbols ? "yes" : "no");
757 fprintf(stdout,
758 "\t[U] hide user symbols. \t(%s)\n",
759 hide_user_symbols ? "yes" : "no");
46ab9764 760 fprintf(stdout, "\t[z] toggle sample zeroing. \t(%d)\n", zero ? 1 : 0);
091bd2e9
MG
761 fprintf(stdout, "\t[qQ] quit.\n");
762}
763
764static int key_mapped(int c)
765{
766 switch (c) {
767 case 'd':
768 case 'e':
769 case 'f':
770 case 'z':
771 case 'q':
772 case 'Q':
8ffcda17
ACM
773 case 'K':
774 case 'U':
6cff0e8d
KS
775 case 'F':
776 case 's':
777 case 'S':
091bd2e9
MG
778 return 1;
779 case 'E':
780 case 'w':
781 return nr_counters > 1 ? 1 : 0;
83a0944f
IM
782 default:
783 break;
091bd2e9
MG
784 }
785
786 return 0;
923c42c1
MG
787}
788
a1645ce1 789static void handle_keypress(struct perf_session *session, int c)
923c42c1 790{
091bd2e9
MG
791 if (!key_mapped(c)) {
792 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
793 struct termios tc, save;
794
795 print_mapped_keys();
796 fprintf(stdout, "\nEnter selection, or unmapped key to continue: ");
797 fflush(stdout);
798
799 tcgetattr(0, &save);
800 tc = save;
801 tc.c_lflag &= ~(ICANON | ECHO);
802 tc.c_cc[VMIN] = 0;
803 tc.c_cc[VTIME] = 0;
804 tcsetattr(0, TCSANOW, &tc);
805
806 poll(&stdin_poll, 1, -1);
807 c = getc(stdin);
808
809 tcsetattr(0, TCSAFLUSH, &save);
810 if (!key_mapped(c))
811 return;
812 }
813
923c42c1
MG
814 switch (c) {
815 case 'd':
816 prompt_integer(&delay_secs, "Enter display delay");
dc79959a
TB
817 if (delay_secs < 1)
818 delay_secs = 1;
923c42c1
MG
819 break;
820 case 'e':
821 prompt_integer(&print_entries, "Enter display entries (lines)");
3b6ed988 822 if (print_entries == 0) {
13cc5079 823 sig_winch_handler(SIGWINCH);
3b6ed988
ACM
824 signal(SIGWINCH, sig_winch_handler);
825 } else
826 signal(SIGWINCH, SIG_DFL);
923c42c1
MG
827 break;
828 case 'E':
829 if (nr_counters > 1) {
830 int i;
831
832 fprintf(stderr, "\nAvailable events:");
833 for (i = 0; i < nr_counters; i++)
834 fprintf(stderr, "\n\t%d %s", i, event_name(i));
835
836 prompt_integer(&sym_counter, "Enter details event counter");
837
838 if (sym_counter >= nr_counters) {
839 fprintf(stderr, "Sorry, no such event, using %s.\n", event_name(0));
840 sym_counter = 0;
841 sleep(1);
842 }
843 } else sym_counter = 0;
844 break;
845 case 'f':
846 prompt_integer(&count_filter, "Enter display event count filter");
847 break;
848 case 'F':
849 prompt_percent(&sym_pcnt_filter, "Enter details display event filter (percent)");
850 break;
8ffcda17
ACM
851 case 'K':
852 hide_kernel_symbols = !hide_kernel_symbols;
853 break;
923c42c1
MG
854 case 'q':
855 case 'Q':
856 printf("exiting.\n");
c338aee8 857 if (dump_symtab)
cbf69680 858 perf_session__fprintf_dsos(session, stderr);
923c42c1
MG
859 exit(0);
860 case 's':
861 prompt_symbol(&sym_filter_entry, "Enter details symbol");
862 break;
863 case 'S':
864 if (!sym_filter_entry)
865 break;
866 else {
867 struct sym_entry *syme = sym_filter_entry;
868
b269876c 869 pthread_mutex_lock(&syme->src->lock);
923c42c1
MG
870 sym_filter_entry = NULL;
871 __zero_source_counters(syme);
b269876c 872 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
873 }
874 break;
8ffcda17
ACM
875 case 'U':
876 hide_user_symbols = !hide_user_symbols;
877 break;
46ab9764
MG
878 case 'w':
879 display_weighted = ~display_weighted;
880 break;
923c42c1 881 case 'z':
c0555642 882 zero = !zero;
923c42c1 883 break;
83a0944f
IM
884 default:
885 break;
923c42c1
MG
886 }
887}
888
f37a291c 889static void *display_thread(void *arg __used)
07800601 890{
0f5486b5 891 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
923c42c1
MG
892 struct termios tc, save;
893 int delay_msecs, c;
a1645ce1 894 struct perf_session *session = (struct perf_session *) arg;
923c42c1
MG
895
896 tcgetattr(0, &save);
897 tc = save;
898 tc.c_lflag &= ~(ICANON | ECHO);
899 tc.c_cc[VMIN] = 0;
900 tc.c_cc[VTIME] = 0;
091bd2e9 901
923c42c1
MG
902repeat:
903 delay_msecs = delay_secs * 1000;
904 tcsetattr(0, TCSANOW, &tc);
905 /* trash return*/
906 getc(stdin);
07800601 907
0f5486b5 908 do {
07800601 909 print_sym_table();
0f5486b5
FW
910 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
911
923c42c1
MG
912 c = getc(stdin);
913 tcsetattr(0, TCSAFLUSH, &save);
914
a1645ce1 915 handle_keypress(session, c);
923c42c1 916 goto repeat;
07800601
IM
917
918 return NULL;
919}
920
2ab52083 921/* Tag samples to be skipped. */
f37a291c 922static const char *skip_symbols[] = {
2ab52083
AB
923 "default_idle",
924 "cpu_idle",
925 "enter_idle",
926 "exit_idle",
927 "mwait_idle",
59b90056 928 "mwait_idle_with_hints",
8357275b 929 "poll_idle",
3a3393ef
AB
930 "ppc64_runlatch_off",
931 "pseries_dedicated_idle_sleep",
2ab52083
AB
932 NULL
933};
934
439d473b 935static int symbol_filter(struct map *map, struct symbol *sym)
07800601 936{
de04687f
ACM
937 struct sym_entry *syme;
938 const char *name = sym->name;
2ab52083 939 int i;
de04687f 940
3a3393ef
AB
941 /*
942 * ppc64 uses function descriptors and appends a '.' to the
943 * start of every instruction address. Remove it.
944 */
945 if (name[0] == '.')
946 name++;
947
de04687f
ACM
948 if (!strcmp(name, "_text") ||
949 !strcmp(name, "_etext") ||
950 !strcmp(name, "_sinittext") ||
951 !strncmp("init_module", name, 11) ||
952 !strncmp("cleanup_module", name, 14) ||
953 strstr(name, "_text_start") ||
954 strstr(name, "_text_end"))
07800601 955 return 1;
07800601 956
00a192b3 957 syme = symbol__priv(sym);
439d473b 958 syme->map = map;
b269876c 959 syme->src = NULL;
6cff0e8d
KS
960
961 if (!sym_filter_entry && sym_filter && !strcmp(name, sym_filter)) {
962 /* schedule initial sym_filter_entry setup */
963 sym_filter_entry_sched = syme;
964 sym_filter = NULL;
965 }
923c42c1 966
2ab52083
AB
967 for (i = 0; skip_symbols[i]; i++) {
968 if (!strcmp(skip_symbols[i], name)) {
969 syme->skip = 1;
970 break;
971 }
972 }
07800601 973
13cc5079
ACM
974 if (!syme->skip)
975 syme->name_len = strlen(sym->name);
976
07800601
IM
977 return 0;
978}
979
b3165f41
ACM
980static void event__process_sample(const event_t *self,
981 struct perf_session *session, int counter)
07800601 982{
5b2bb75a 983 u64 ip = self->ip.ip;
5b2bb75a 984 struct sym_entry *syme;
1ed091c4 985 struct addr_location al;
41a37e20 986 struct sample_data data;
23346f21 987 struct machine *machine;
8ffcda17 988 u8 origin = self->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
5b2bb75a 989
24bfef0f
ACM
990 ++samples;
991
8ffcda17 992 switch (origin) {
1ed091c4 993 case PERF_RECORD_MISC_USER:
a1645ce1 994 ++us_samples;
8ffcda17
ACM
995 if (hide_user_symbols)
996 return;
23346f21 997 machine = perf_session__find_host_machine(session);
1ed091c4 998 break;
5b2bb75a 999 case PERF_RECORD_MISC_KERNEL:
a1645ce1 1000 ++kernel_samples;
8ffcda17
ACM
1001 if (hide_kernel_symbols)
1002 return;
23346f21 1003 machine = perf_session__find_host_machine(session);
a1645ce1
ZY
1004 break;
1005 case PERF_RECORD_MISC_GUEST_KERNEL:
1006 ++guest_kernel_samples;
23346f21 1007 machine = perf_session__find_machine(session, self->ip.pid);
5b2bb75a 1008 break;
a1645ce1
ZY
1009 case PERF_RECORD_MISC_GUEST_USER:
1010 ++guest_us_samples;
1011 /*
1012 * TODO: we don't process guest user from host side
1013 * except simple counting.
1014 */
1015 return;
5b2bb75a
ACM
1016 default:
1017 return;
1018 }
1019
23346f21 1020 if (!machine && perf_guest) {
a1645ce1
ZY
1021 pr_err("Can't find guest [%d]'s kernel information\n",
1022 self->ip.pid);
1023 return;
1024 }
1025
ab608344 1026 if (self->header.misc & PERF_RECORD_MISC_EXACT_IP)
1676b8a0
PZ
1027 exact_samples++;
1028
41a37e20
ACM
1029 if (event__preprocess_sample(self, session, &al, &data,
1030 symbol_filter) < 0 ||
72b8fa17 1031 al.filtered)
1ed091c4 1032 return;
07800601 1033
72b8fa17
ACM
1034 if (al.sym == NULL) {
1035 /*
1036 * As we do lazy loading of symtabs we only will know if the
1037 * specified vmlinux file is invalid when we actually have a
1038 * hit in kernel space and then try to load it. So if we get
1039 * here and there are _no_ symbols in the DSO backing the
1040 * kernel map, bail out.
1041 *
1042 * We may never get here, for instance, if we use -K/
1043 * --hide-kernel-symbols, even if the user specifies an
1044 * invalid --vmlinux ;-)
1045 */
23346f21 1046 if (al.map == machine->vmlinux_maps[MAP__FUNCTION] &&
72b8fa17
ACM
1047 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) {
1048 pr_err("The %s file can't be used\n",
1049 symbol_conf.vmlinux_name);
1050 exit(1);
1051 }
1052
1053 return;
1054 }
1055
6cff0e8d
KS
1056 /* let's see, whether we need to install initial sym_filter_entry */
1057 if (sym_filter_entry_sched) {
1058 sym_filter_entry = sym_filter_entry_sched;
1059 sym_filter_entry_sched = NULL;
b0a9ab62
ACM
1060 if (parse_source(sym_filter_entry) < 0) {
1061 struct symbol *sym = sym_entry__symbol(sym_filter_entry);
1062
1063 pr_err("Can't annotate %s", sym->name);
1064 if (sym_filter_entry->map->dso->origin == DSO__ORIG_KERNEL) {
1065 pr_err(": No vmlinux file was found in the path:\n");
5ad90e4e 1066 machine__fprintf_vmlinux_path(machine, stderr);
b0a9ab62
ACM
1067 } else
1068 pr_err(".\n");
1069 exit(1);
1070 }
6cff0e8d
KS
1071 }
1072
1ed091c4 1073 syme = symbol__priv(al.sym);
5b2bb75a
ACM
1074 if (!syme->skip) {
1075 syme->count[counter]++;
8ffcda17 1076 syme->origin = origin;
5b2bb75a
ACM
1077 record_precise_ip(syme, counter, ip);
1078 pthread_mutex_lock(&active_symbols_lock);
1079 if (list_empty(&syme->node) || !syme->node.next)
1080 __list_insert_active_sym(syme);
1081 pthread_mutex_unlock(&active_symbols_lock);
5b2bb75a 1082 }
07800601
IM
1083}
1084
07800601 1085struct mmap_data {
a21ca2ca
IM
1086 int counter;
1087 void *base;
f37a291c 1088 int mask;
a21ca2ca 1089 unsigned int prev;
07800601
IM
1090};
1091
1092static unsigned int mmap_read_head(struct mmap_data *md)
1093{
cdd6c482 1094 struct perf_event_mmap_page *pc = md->base;
07800601
IM
1095 int head;
1096
1097 head = pc->data_head;
1098 rmb();
1099
1100 return head;
1101}
1102
d8f66248
ACM
1103static void perf_session__mmap_read_counter(struct perf_session *self,
1104 struct mmap_data *md)
07800601
IM
1105{
1106 unsigned int head = mmap_read_head(md);
1107 unsigned int old = md->prev;
1108 unsigned char *data = md->base + page_size;
1109 int diff;
1110
07800601
IM
1111 /*
1112 * If we're further behind than half the buffer, there's a chance
2debbc83 1113 * the writer will bite our tail and mess up the samples under us.
07800601
IM
1114 *
1115 * If we somehow ended up ahead of the head, we got messed up.
1116 *
1117 * In either case, truncate and restart at head.
1118 */
1119 diff = head - old;
1120 if (diff > md->mask / 2 || diff < 0) {
f4f0b418 1121 fprintf(stderr, "WARNING: failed to keep up with mmap data.\n");
07800601
IM
1122
1123 /*
1124 * head points to a known good entry, start there.
1125 */
1126 old = head;
1127 }
1128
07800601 1129 for (; old != head;) {
07800601
IM
1130 event_t *event = (event_t *)&data[old & md->mask];
1131
1132 event_t event_copy;
1133
6f06ccbc 1134 size_t size = event->header.size;
07800601
IM
1135
1136 /*
1137 * Event straddles the mmap boundary -- header should always
1138 * be inside due to u64 alignment of output.
1139 */
1140 if ((old & md->mask) + size != ((old + size) & md->mask)) {
1141 unsigned int offset = old;
1142 unsigned int len = min(sizeof(*event), size), cpy;
1143 void *dst = &event_copy;
1144
1145 do {
1146 cpy = min(md->mask + 1 - (offset & md->mask), len);
1147 memcpy(dst, &data[offset & md->mask], cpy);
1148 offset += cpy;
1149 dst += cpy;
1150 len -= cpy;
1151 } while (len);
1152
1153 event = &event_copy;
1154 }
1155
5b2bb75a 1156 if (event->header.type == PERF_RECORD_SAMPLE)
b3165f41 1157 event__process_sample(event, self, md->counter);
5b2bb75a 1158 else
d8f66248 1159 event__process(event, self);
07800601 1160 old += size;
07800601
IM
1161 }
1162
1163 md->prev = old;
1164}
1165
d6d901c2
ZY
1166static struct pollfd *event_array;
1167static struct mmap_data *mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
c2990a2a 1168
d8f66248 1169static void perf_session__mmap_read(struct perf_session *self)
2f01190a 1170{
d6d901c2 1171 int i, counter, thread_index;
2f01190a
FW
1172
1173 for (i = 0; i < nr_cpus; i++) {
1174 for (counter = 0; counter < nr_counters; counter++)
d6d901c2
ZY
1175 for (thread_index = 0;
1176 thread_index < thread_num;
1177 thread_index++) {
1178 perf_session__mmap_read_counter(self,
1179 &mmap_array[i][counter][thread_index]);
1180 }
2f01190a
FW
1181 }
1182}
1183
716c69fe
IM
1184int nr_poll;
1185int group_fd;
1186
1187static void start_counter(int i, int counter)
07800601 1188{
cdd6c482 1189 struct perf_event_attr *attr;
0fdc7e67 1190 int cpu;
d6d901c2 1191 int thread_index;
716c69fe
IM
1192
1193 cpu = profile_cpu;
d6d901c2 1194 if (target_tid == -1 && profile_cpu == -1)
a12b51c4 1195 cpu = cpumap[i];
716c69fe
IM
1196
1197 attr = attrs + counter;
1198
1199 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
7e4ff9e3
MG
1200
1201 if (freq) {
1202 attr->sample_type |= PERF_SAMPLE_PERIOD;
1203 attr->freq = 1;
1204 attr->sample_freq = freq;
1205 }
1206
0fdc7e67 1207 attr->inherit = (cpu < 0) && inherit;
5b2bb75a 1208 attr->mmap = 1;
716c69fe 1209
d6d901c2 1210 for (thread_index = 0; thread_index < thread_num; thread_index++) {
716c69fe 1211try_again:
d6d901c2
ZY
1212 fd[i][counter][thread_index] = sys_perf_event_open(attr,
1213 all_tids[thread_index], cpu, group_fd, 0);
1214
1215 if (fd[i][counter][thread_index] < 0) {
1216 int err = errno;
1217
1218 if (err == EPERM || err == EACCES)
1219 die("No permission - are you root?\n");
1220 /*
1221 * If it's cycles then fall back to hrtimer
1222 * based cpu-clock-tick sw counter, which
1223 * is always available even if no PMU support:
1224 */
1225 if (attr->type == PERF_TYPE_HARDWARE
1226 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
1227
1228 if (verbose)
1229 warning(" ... trying to fall back to cpu-clock-ticks\n");
1230
1231 attr->type = PERF_TYPE_SOFTWARE;
1232 attr->config = PERF_COUNT_SW_CPU_CLOCK;
1233 goto try_again;
1234 }
1235 printf("\n");
1236 error("perfcounter syscall returned with %d (%s)\n",
1237 fd[i][counter][thread_index], strerror(err));
1238 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
1239 exit(-1);
1240 }
1241 assert(fd[i][counter][thread_index] >= 0);
1242 fcntl(fd[i][counter][thread_index], F_SETFL, O_NONBLOCK);
716c69fe 1243
716c69fe 1244 /*
d6d901c2 1245 * First counter acts as the group leader:
716c69fe 1246 */
d6d901c2
ZY
1247 if (group && group_fd == -1)
1248 group_fd = fd[i][counter][thread_index];
1249
1250 event_array[nr_poll].fd = fd[i][counter][thread_index];
1251 event_array[nr_poll].events = POLLIN;
1252 nr_poll++;
1253
1254 mmap_array[i][counter][thread_index].counter = counter;
1255 mmap_array[i][counter][thread_index].prev = 0;
1256 mmap_array[i][counter][thread_index].mask = mmap_pages*page_size - 1;
1257 mmap_array[i][counter][thread_index].base = mmap(NULL, (mmap_pages+1)*page_size,
1258 PROT_READ, MAP_SHARED, fd[i][counter][thread_index], 0);
1259 if (mmap_array[i][counter][thread_index].base == MAP_FAILED)
1260 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
716c69fe 1261 }
716c69fe
IM
1262}
1263
1264static int __cmd_top(void)
1265{
1266 pthread_t thread;
1267 int i, counter;
07800601 1268 int ret;
d8f66248 1269 /*
b3165f41
ACM
1270 * FIXME: perf_session__new should allow passing a O_MMAP, so that all this
1271 * mmap reading, etc is encapsulated in it. Use O_WRONLY for now.
d8f66248 1272 */
454c407e 1273 struct perf_session *session = perf_session__new(NULL, O_WRONLY, false, false);
b3165f41
ACM
1274 if (session == NULL)
1275 return -ENOMEM;
07800601 1276
d6d901c2
ZY
1277 if (target_tid != -1)
1278 event__synthesize_thread(target_tid, event__process, session);
5b2bb75a 1279 else
d8f66248 1280 event__synthesize_threads(event__process, session);
5b2bb75a 1281
07800601
IM
1282 for (i = 0; i < nr_cpus; i++) {
1283 group_fd = -1;
716c69fe
IM
1284 for (counter = 0; counter < nr_counters; counter++)
1285 start_counter(i, counter);
07800601
IM
1286 }
1287
2f01190a 1288 /* Wait for a minimal set of events before starting the snapshot */
d6d901c2 1289 poll(&event_array[0], nr_poll, 100);
2f01190a 1290
d8f66248 1291 perf_session__mmap_read(session);
2f01190a 1292
a1645ce1 1293 if (pthread_create(&thread, NULL, display_thread, session)) {
07800601
IM
1294 printf("Could not create display thread.\n");
1295 exit(-1);
1296 }
1297
1298 if (realtime_prio) {
1299 struct sched_param param;
1300
1301 param.sched_priority = realtime_prio;
1302 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
1303 printf("Could not set realtime priority.\n");
1304 exit(-1);
1305 }
1306 }
1307
1308 while (1) {
2debbc83 1309 int hits = samples;
07800601 1310
d8f66248 1311 perf_session__mmap_read(session);
07800601 1312
2debbc83 1313 if (hits == samples)
07800601
IM
1314 ret = poll(event_array, nr_poll, 100);
1315 }
1316
1317 return 0;
1318}
b456bae0
IM
1319
1320static const char * const top_usage[] = {
1321 "perf top [<options>]",
1322 NULL
1323};
1324
b456bae0
IM
1325static const struct option options[] = {
1326 OPT_CALLBACK('e', "event", NULL, "event",
86847b62
TG
1327 "event selector. use 'perf list' to list available events",
1328 parse_events),
b456bae0
IM
1329 OPT_INTEGER('c', "count", &default_interval,
1330 "event period to sample"),
1331 OPT_INTEGER('p', "pid", &target_pid,
d6d901c2
ZY
1332 "profile events on existing process id"),
1333 OPT_INTEGER('t', "tid", &target_tid,
1334 "profile events on existing thread id"),
b456bae0
IM
1335 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1336 "system-wide collection from all CPUs"),
c45c6ea2
SE
1337 OPT_STRING('C', "cpu", &cpu_list, "cpu",
1338 "list of cpus to monitor"),
b32d133a
ACM
1339 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1340 "file", "vmlinux pathname"),
8ffcda17
ACM
1341 OPT_BOOLEAN('K', "hide_kernel_symbols", &hide_kernel_symbols,
1342 "hide kernel symbols"),
1967936d 1343 OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
b456bae0
IM
1344 OPT_INTEGER('r', "realtime", &realtime_prio,
1345 "collect data with this RT SCHED_FIFO priority"),
db20c003 1346 OPT_INTEGER('d', "delay", &delay_secs,
b456bae0
IM
1347 "number of seconds to delay between refreshes"),
1348 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
1349 "dump the symbol table used for profiling"),
6e53cdf1 1350 OPT_INTEGER('f', "count-filter", &count_filter,
b456bae0
IM
1351 "only display functions with more events than this"),
1352 OPT_BOOLEAN('g', "group", &group,
1353 "put the counters into a counter group"),
0fdc7e67
MG
1354 OPT_BOOLEAN('i', "inherit", &inherit,
1355 "child tasks inherit counters"),
923c42c1 1356 OPT_STRING('s', "sym-annotate", &sym_filter, "symbol name",
6cff0e8d 1357 "symbol to annotate"),
1f208ea6 1358 OPT_BOOLEAN('z', "zero", &zero,
b456bae0 1359 "zero history across updates"),
6e53cdf1 1360 OPT_INTEGER('F', "freq", &freq,
b456bae0 1361 "profile at this frequency"),
6e53cdf1
IM
1362 OPT_INTEGER('E', "entries", &print_entries,
1363 "display this many functions"),
8ffcda17
ACM
1364 OPT_BOOLEAN('U', "hide_user_symbols", &hide_user_symbols,
1365 "hide user symbols"),
c0555642 1366 OPT_INCR('v', "verbose", &verbose,
3da297a6 1367 "be more verbose (show counter open errors, etc)"),
b456bae0
IM
1368 OPT_END()
1369};
1370
f37a291c 1371int cmd_top(int argc, const char **argv, const char *prefix __used)
b456bae0 1372{
b32d133a 1373 int counter;
d6d901c2 1374 int i,j;
b456bae0
IM
1375
1376 page_size = sysconf(_SC_PAGE_SIZE);
1377
b456bae0
IM
1378 argc = parse_options(argc, argv, options, top_usage, 0);
1379 if (argc)
1380 usage_with_options(top_usage, options);
1381
d6d901c2
ZY
1382 if (target_pid != -1) {
1383 target_tid = target_pid;
1384 thread_num = find_all_tid(target_pid, &all_tids);
1385 if (thread_num <= 0) {
1386 fprintf(stderr, "Can't find all threads of pid %d\n",
1387 target_pid);
1388 usage_with_options(top_usage, options);
1389 }
1390 } else {
1391 all_tids=malloc(sizeof(pid_t));
1392 if (!all_tids)
1393 return -ENOMEM;
1394
1395 all_tids[0] = target_tid;
1396 thread_num = 1;
1397 }
1398
1399 for (i = 0; i < MAX_NR_CPUS; i++) {
1400 for (j = 0; j < MAX_COUNTERS; j++) {
1401 fd[i][j] = malloc(sizeof(int)*thread_num);
5a103174 1402 mmap_array[i][j] = zalloc(
d6d901c2
ZY
1403 sizeof(struct mmap_data)*thread_num);
1404 if (!fd[i][j] || !mmap_array[i][j])
1405 return -ENOMEM;
1406 }
1407 }
1408 event_array = malloc(
1409 sizeof(struct pollfd)*MAX_NR_CPUS*MAX_COUNTERS*thread_num);
1410 if (!event_array)
1411 return -ENOMEM;
1412
b456bae0 1413 /* CPU and PID are mutually exclusive */
c45c6ea2 1414 if (target_tid > 0 && cpu_list) {
b456bae0
IM
1415 printf("WARNING: PID switch overriding CPU\n");
1416 sleep(1);
c45c6ea2 1417 cpu_list = NULL;
b456bae0
IM
1418 }
1419
a21ca2ca 1420 if (!nr_counters)
b456bae0 1421 nr_counters = 1;
b456bae0 1422
b32d133a
ACM
1423 symbol_conf.priv_size = (sizeof(struct sym_entry) +
1424 (nr_counters + 1) * sizeof(unsigned long));
6cff0e8d
KS
1425
1426 symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
75be6cf4 1427 if (symbol__init() < 0)
b32d133a 1428 return -1;
5a8e5a30 1429
2f335a02
FW
1430 if (delay_secs < 1)
1431 delay_secs = 1;
1432
7e4ff9e3
MG
1433 /*
1434 * User specified count overrides default frequency.
1435 */
1436 if (default_interval)
1437 freq = 0;
1438 else if (freq) {
1439 default_interval = freq;
1440 } else {
1441 fprintf(stderr, "frequency and count are zero, aborting\n");
1442 exit(EXIT_FAILURE);
1443 }
1444
a21ca2ca
IM
1445 /*
1446 * Fill in the ones not specifically initialized via -c:
1447 */
b456bae0 1448 for (counter = 0; counter < nr_counters; counter++) {
a21ca2ca 1449 if (attrs[counter].sample_period)
b456bae0
IM
1450 continue;
1451
a21ca2ca 1452 attrs[counter].sample_period = default_interval;
b456bae0
IM
1453 }
1454
c45c6ea2 1455 if (target_tid != -1)
b456bae0 1456 nr_cpus = 1;
a12b51c4 1457 else
c45c6ea2
SE
1458 nr_cpus = read_cpu_map(cpu_list);
1459
1460 if (nr_cpus < 1)
1461 usage_with_options(top_usage, options);
b456bae0 1462
13cc5079 1463 get_term_dimensions(&winsize);
3b6ed988 1464 if (print_entries == 0) {
13cc5079 1465 update_print_entries(&winsize);
3b6ed988
ACM
1466 signal(SIGWINCH, sig_winch_handler);
1467 }
1468
b456bae0
IM
1469 return __cmd_top();
1470}