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