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