]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/builtin-top.c
perf_counter tools: Remove zlib dependency
[mirror_ubuntu-bionic-kernel.git] / tools / perf / builtin-top.c
CommitLineData
07800601 1/*
bf9e1876
IM
2 * builtin-top.c
3 *
4 * Builtin top command: Display a continuously updated profile of
5 * any workload, CPU or specific PID.
6 *
7 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
8 *
9 * Improvements and fixes by:
10 *
11 * Arjan van de Ven <arjan@linux.intel.com>
12 * Yanmin Zhang <yanmin.zhang@intel.com>
13 * Wu Fengguang <fengguang.wu@intel.com>
14 * Mike Galbraith <efault@gmx.de>
15 * Paul Mackerras <paulus@samba.org>
16 *
17 * Released under the GPL v2. (and only v2, not any later version)
07800601 18 */
bf9e1876 19#include "builtin.h"
07800601 20
1a482f38 21#include "perf.h"
bf9e1876 22
de04687f 23#include "util/symbol.h"
8fc0321f 24#include "util/color.h"
148be2c1 25#include "util/util.h"
de04687f 26#include "util/rbtree.h"
b456bae0
IM
27#include "util/parse-options.h"
28#include "util/parse-events.h"
07800601 29
07800601
IM
30#include <assert.h>
31#include <fcntl.h>
0e9b20b8 32
07800601 33#include <stdio.h>
0e9b20b8 34
07800601 35#include <errno.h>
07800601
IM
36#include <time.h>
37#include <sched.h>
38#include <pthread.h>
39
40#include <sys/syscall.h>
41#include <sys/ioctl.h>
42#include <sys/poll.h>
43#include <sys/prctl.h>
44#include <sys/wait.h>
45#include <sys/uio.h>
46#include <sys/mman.h>
47
48#include <linux/unistd.h>
49#include <linux/types.h>
50
a21ca2ca 51static int fd[MAX_NR_CPUS][MAX_COUNTERS];
07800601 52
a21ca2ca 53static int system_wide = 0;
07800601 54
a21ca2ca 55static int default_interval = 100000;
07800601 56
9cffa8d5 57static u64 count_filter = 5;
6e53cdf1 58static int print_entries = 15;
07800601 59
6e53cdf1 60static int target_pid = -1;
07800601
IM
61static int profile_cpu = -1;
62static int nr_cpus = 0;
07800601
IM
63static unsigned int realtime_prio = 0;
64static int group = 0;
65static unsigned int page_size;
cf1f4574
IM
66static unsigned int mmap_pages = 16;
67static int freq = 0;
3da297a6 68static int verbose = 0;
07800601 69
07800601
IM
70static char *sym_filter;
71static unsigned long filter_start;
72static unsigned long filter_end;
73
74static int delay_secs = 2;
75static int zero;
76static int dump_symtab;
77
07800601
IM
78/*
79 * Symbols
80 */
81
9cffa8d5
PM
82static u64 min_ip;
83static u64 max_ip = -1ll;
07800601
IM
84
85struct sym_entry {
de04687f
ACM
86 struct rb_node rb_node;
87 struct list_head node;
07800601 88 unsigned long count[MAX_COUNTERS];
c44613a4
ACM
89 unsigned long snap_count;
90 double weight;
07800601 91 int skip;
07800601
IM
92};
93
07800601
IM
94struct sym_entry *sym_filter_entry;
95
a21ca2ca 96struct dso *kernel_dso;
de04687f
ACM
97
98/*
99 * Symbols will be added here in record_ip and will get out
100 * after decayed.
101 */
102static LIST_HEAD(active_symbols);
c44613a4 103static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
07800601 104
07800601
IM
105/*
106 * Ordering weight: count-1 * count-2 * ... / count-n
107 */
108static double sym_weight(const struct sym_entry *sym)
109{
c44613a4 110 double weight = sym->snap_count;
07800601
IM
111 int counter;
112
07800601
IM
113 for (counter = 1; counter < nr_counters-1; counter++)
114 weight *= sym->count[counter];
115
116 weight /= (sym->count[counter] + 1);
117
118 return weight;
119}
120
2debbc83
IM
121static long samples;
122static long userspace_samples;
07800601
IM
123static const char CONSOLE_CLEAR[] = "\e[H\e[2J";
124
c44613a4 125static void __list_insert_active_sym(struct sym_entry *syme)
de04687f
ACM
126{
127 list_add(&syme->node, &active_symbols);
128}
129
c44613a4
ACM
130static void list_remove_active_sym(struct sym_entry *syme)
131{
132 pthread_mutex_lock(&active_symbols_lock);
133 list_del_init(&syme->node);
134 pthread_mutex_unlock(&active_symbols_lock);
135}
136
de04687f
ACM
137static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
138{
139 struct rb_node **p = &tree->rb_node;
140 struct rb_node *parent = NULL;
141 struct sym_entry *iter;
142
143 while (*p != NULL) {
144 parent = *p;
145 iter = rb_entry(parent, struct sym_entry, rb_node);
146
c44613a4 147 if (se->weight > iter->weight)
de04687f
ACM
148 p = &(*p)->rb_left;
149 else
150 p = &(*p)->rb_right;
151 }
152
153 rb_link_node(&se->rb_node, parent, p);
154 rb_insert_color(&se->rb_node, tree);
155}
07800601
IM
156
157static void print_sym_table(void)
158{
233f0b95 159 int printed = 0, j;
07800601 160 int counter;
2debbc83
IM
161 float samples_per_sec = samples/delay_secs;
162 float ksamples_per_sec = (samples-userspace_samples)/delay_secs;
163 float sum_ksamples = 0.0;
de04687f
ACM
164 struct sym_entry *syme, *n;
165 struct rb_root tmp = RB_ROOT;
166 struct rb_node *nd;
07800601 167
2debbc83 168 samples = userspace_samples = 0;
07800601 169
de04687f 170 /* Sort the active symbols */
c44613a4
ACM
171 pthread_mutex_lock(&active_symbols_lock);
172 syme = list_entry(active_symbols.next, struct sym_entry, node);
173 pthread_mutex_unlock(&active_symbols_lock);
174
175 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
176 syme->snap_count = syme->count[0];
177 if (syme->snap_count != 0) {
178 syme->weight = sym_weight(syme);
de04687f 179 rb_insert_active_sym(&tmp, syme);
2debbc83 180 sum_ksamples += syme->snap_count;
d94b9430
MG
181
182 for (j = 0; j < nr_counters; j++)
de04687f
ACM
183 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
184 } else
c44613a4 185 list_remove_active_sym(syme);
d94b9430
MG
186 }
187
0f5486b5 188 puts(CONSOLE_CLEAR);
07800601
IM
189
190 printf(
191"------------------------------------------------------------------------------\n");
f2521b6e 192 printf( " PerfTop:%8.0f irqs/sec kernel:%4.1f%% [",
2debbc83
IM
193 samples_per_sec,
194 100.0 - (100.0*((samples_per_sec-ksamples_per_sec)/samples_per_sec)));
07800601 195
cf1f4574 196 if (nr_counters == 1) {
9cffa8d5 197 printf("%Ld", (u64)attrs[0].sample_period);
cf1f4574
IM
198 if (freq)
199 printf("Hz ");
200 else
201 printf(" ");
202 }
07800601
IM
203
204 for (counter = 0; counter < nr_counters; counter++) {
205 if (counter)
206 printf("/");
207
208 printf("%s", event_name(counter));
209 }
210
211 printf( "], ");
212
b456bae0
IM
213 if (target_pid != -1)
214 printf(" (target_pid: %d", target_pid);
07800601
IM
215 else
216 printf(" (all");
217
218 if (profile_cpu != -1)
219 printf(", cpu: %d)\n", profile_cpu);
220 else {
b456bae0 221 if (target_pid != -1)
07800601
IM
222 printf(")\n");
223 else
224 printf(", %d CPUs)\n", nr_cpus);
225 }
226
227 printf("------------------------------------------------------------------------------\n\n");
228
229 if (nr_counters == 1)
2debbc83 230 printf(" samples pcnt");
07800601 231 else
2debbc83 232 printf(" weight samples pcnt");
07800601
IM
233
234 printf(" RIP kernel function\n"
2debbc83 235 " ______ _______ _____ ________________ _______________\n\n"
07800601
IM
236 );
237
de04687f
ACM
238 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
239 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node);
240 struct symbol *sym = (struct symbol *)(syme + 1);
8fc0321f
IM
241 char *color = PERF_COLOR_NORMAL;
242 double pcnt;
d94b9430 243
6e53cdf1 244 if (++printed > print_entries || syme->snap_count < count_filter)
c44613a4 245 continue;
d94b9430 246
2debbc83
IM
247 pcnt = 100.0 - (100.0 * ((sum_ksamples - syme->snap_count) /
248 sum_ksamples));
d94b9430 249
8fc0321f 250 /*
aefcf37b
IM
251 * We color high-overhead entries in red, mid-overhead
252 * entries in green - and keep the low overhead places
253 * normal:
8fc0321f 254 */
aefcf37b 255 if (pcnt >= 5.0) {
8fc0321f 256 color = PERF_COLOR_RED;
aefcf37b
IM
257 } else {
258 if (pcnt >= 0.5)
259 color = PERF_COLOR_GREEN;
260 }
8fc0321f 261
d94b9430 262 if (nr_counters == 1)
2debbc83 263 printf("%20.2f - ", syme->weight);
d94b9430 264 else
2debbc83 265 printf("%9.1f %10ld - ", syme->weight, syme->snap_count);
8fc0321f
IM
266
267 color_fprintf(stdout, color, "%4.1f%%", pcnt);
268 printf(" - %016llx : %s\n", sym->start, sym->name);
07800601 269 }
07800601
IM
270}
271
272static void *display_thread(void *arg)
273{
0f5486b5
FW
274 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
275 int delay_msecs = delay_secs * 1000;
276
f2521b6e 277 printf("PerfTop refresh period: %d seconds\n", delay_secs);
07800601 278
0f5486b5 279 do {
07800601 280 print_sym_table();
0f5486b5
FW
281 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
282
283 printf("key pressed - exiting.\n");
284 exit(0);
07800601
IM
285
286 return NULL;
287}
288
de04687f 289static int symbol_filter(struct dso *self, struct symbol *sym)
07800601 290{
de04687f
ACM
291 static int filter_match;
292 struct sym_entry *syme;
293 const char *name = sym->name;
294
295 if (!strcmp(name, "_text") ||
296 !strcmp(name, "_etext") ||
297 !strcmp(name, "_sinittext") ||
298 !strncmp("init_module", name, 11) ||
299 !strncmp("cleanup_module", name, 14) ||
300 strstr(name, "_text_start") ||
301 strstr(name, "_text_end"))
07800601 302 return 1;
07800601 303
de04687f 304 syme = dso__sym_priv(self, sym);
2debbc83 305 /* Tag samples to be skipped. */
de04687f
ACM
306 if (!strcmp("default_idle", name) ||
307 !strcmp("cpu_idle", name) ||
308 !strcmp("enter_idle", name) ||
309 !strcmp("exit_idle", name) ||
310 !strcmp("mwait_idle", name))
311 syme->skip = 1;
07800601
IM
312
313 if (filter_match == 1) {
de04687f 314 filter_end = sym->start;
07800601
IM
315 filter_match = -1;
316 if (filter_end - filter_start > 10000) {
de04687f
ACM
317 fprintf(stderr,
318 "hm, too large filter symbol <%s> - skipping.\n",
07800601 319 sym_filter);
de04687f
ACM
320 fprintf(stderr, "symbol filter start: %016lx\n",
321 filter_start);
322 fprintf(stderr, " end: %016lx\n",
323 filter_end);
07800601
IM
324 filter_end = filter_start = 0;
325 sym_filter = NULL;
326 sleep(1);
327 }
328 }
de04687f
ACM
329
330 if (filter_match == 0 && sym_filter && !strcmp(name, sym_filter)) {
07800601 331 filter_match = 1;
de04687f 332 filter_start = sym->start;
07800601
IM
333 }
334
de04687f 335
07800601
IM
336 return 0;
337}
338
de04687f 339static int parse_symbols(void)
07800601 340{
de04687f
ACM
341 struct rb_node *node;
342 struct symbol *sym;
07800601 343
de04687f
ACM
344 kernel_dso = dso__new("[kernel]", sizeof(struct sym_entry));
345 if (kernel_dso == NULL)
346 return -1;
07800601 347
bd74137e 348 if (dso__load_kernel(kernel_dso, NULL, symbol_filter, 1) != 0)
de04687f 349 goto out_delete_dso;
07800601 350
de04687f
ACM
351 node = rb_first(&kernel_dso->syms);
352 sym = rb_entry(node, struct symbol, rb_node);
353 min_ip = sym->start;
07800601 354
de04687f
ACM
355 node = rb_last(&kernel_dso->syms);
356 sym = rb_entry(node, struct symbol, rb_node);
da417a75 357 max_ip = sym->end;
07800601 358
de04687f 359 if (dump_symtab)
a3ec8d70 360 dso__fprintf(kernel_dso, stderr);
07800601 361
de04687f 362 return 0;
07800601 363
de04687f
ACM
364out_delete_dso:
365 dso__delete(kernel_dso);
366 kernel_dso = NULL;
367 return -1;
07800601
IM
368}
369
07800601
IM
370#define TRACE_COUNT 3
371
07800601
IM
372/*
373 * Binary search in the histogram table and record the hit:
374 */
9cffa8d5 375static void record_ip(u64 ip, int counter)
07800601 376{
de04687f 377 struct symbol *sym = dso__find_symbol(kernel_dso, ip);
07800601 378
de04687f
ACM
379 if (sym != NULL) {
380 struct sym_entry *syme = dso__sym_priv(kernel_dso, sym);
07800601 381
de04687f
ACM
382 if (!syme->skip) {
383 syme->count[counter]++;
c44613a4 384 pthread_mutex_lock(&active_symbols_lock);
de04687f 385 if (list_empty(&syme->node) || !syme->node.next)
c44613a4
ACM
386 __list_insert_active_sym(syme);
387 pthread_mutex_unlock(&active_symbols_lock);
de04687f 388 return;
07800601 389 }
07800601
IM
390 }
391
2debbc83 392 samples--;
07800601
IM
393}
394
e6e18ec7 395static void process_event(u64 ip, int counter, int user)
07800601 396{
2debbc83 397 samples++;
07800601 398
e6e18ec7 399 if (user) {
2debbc83 400 userspace_samples++;
07800601
IM
401 return;
402 }
403
404 record_ip(ip, counter);
405}
406
07800601 407struct mmap_data {
a21ca2ca
IM
408 int counter;
409 void *base;
410 unsigned int mask;
411 unsigned int prev;
07800601
IM
412};
413
414static unsigned int mmap_read_head(struct mmap_data *md)
415{
416 struct perf_counter_mmap_page *pc = md->base;
417 int head;
418
419 head = pc->data_head;
420 rmb();
421
422 return head;
423}
424
425struct timeval last_read, this_read;
426
2f01190a 427static void mmap_read_counter(struct mmap_data *md)
07800601
IM
428{
429 unsigned int head = mmap_read_head(md);
430 unsigned int old = md->prev;
431 unsigned char *data = md->base + page_size;
432 int diff;
433
434 gettimeofday(&this_read, NULL);
435
436 /*
437 * If we're further behind than half the buffer, there's a chance
2debbc83 438 * the writer will bite our tail and mess up the samples under us.
07800601
IM
439 *
440 * If we somehow ended up ahead of the head, we got messed up.
441 *
442 * In either case, truncate and restart at head.
443 */
444 diff = head - old;
445 if (diff > md->mask / 2 || diff < 0) {
446 struct timeval iv;
447 unsigned long msecs;
448
449 timersub(&this_read, &last_read, &iv);
450 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
451
452 fprintf(stderr, "WARNING: failed to keep up with mmap data."
453 " Last read %lu msecs ago.\n", msecs);
454
455 /*
456 * head points to a known good entry, start there.
457 */
458 old = head;
459 }
460
461 last_read = this_read;
462
463 for (; old != head;) {
464 struct ip_event {
465 struct perf_event_header header;
9cffa8d5
PM
466 u64 ip;
467 u32 pid, target_pid;
07800601
IM
468 };
469 struct mmap_event {
470 struct perf_event_header header;
9cffa8d5
PM
471 u32 pid, target_pid;
472 u64 start;
473 u64 len;
474 u64 pgoff;
07800601
IM
475 char filename[PATH_MAX];
476 };
477
478 typedef union event_union {
479 struct perf_event_header header;
480 struct ip_event ip;
481 struct mmap_event mmap;
482 } event_t;
483
484 event_t *event = (event_t *)&data[old & md->mask];
485
486 event_t event_copy;
487
6f06ccbc 488 size_t size = event->header.size;
07800601
IM
489
490 /*
491 * Event straddles the mmap boundary -- header should always
492 * be inside due to u64 alignment of output.
493 */
494 if ((old & md->mask) + size != ((old + size) & md->mask)) {
495 unsigned int offset = old;
496 unsigned int len = min(sizeof(*event), size), cpy;
497 void *dst = &event_copy;
498
499 do {
500 cpy = min(md->mask + 1 - (offset & md->mask), len);
501 memcpy(dst, &data[offset & md->mask], cpy);
502 offset += cpy;
503 dst += cpy;
504 len -= cpy;
505 } while (len);
506
507 event = &event_copy;
508 }
509
510 old += size;
511
e6e18ec7
PZ
512 if (event->header.type == PERF_EVENT_SAMPLE) {
513 int user =
514 (event->header.misc & PERF_EVENT_MISC_CPUMODE_MASK) == PERF_EVENT_MISC_USER;
515 process_event(event->ip.ip, md->counter, user);
07800601
IM
516 }
517 }
518
519 md->prev = old;
520}
521
c2990a2a
MG
522static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
523static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
524
2f01190a
FW
525static void mmap_read(void)
526{
527 int i, counter;
528
529 for (i = 0; i < nr_cpus; i++) {
530 for (counter = 0; counter < nr_counters; counter++)
531 mmap_read_counter(&mmap_array[i][counter]);
532 }
533}
534
716c69fe
IM
535int nr_poll;
536int group_fd;
537
538static void start_counter(int i, int counter)
07800601 539{
a21ca2ca 540 struct perf_counter_attr *attr;
07800601 541 unsigned int cpu;
716c69fe
IM
542
543 cpu = profile_cpu;
544 if (target_pid == -1 && profile_cpu == -1)
545 cpu = i;
546
547 attr = attrs + counter;
548
549 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
550 attr->freq = freq;
551
552try_again:
553 fd[i][counter] = sys_perf_counter_open(attr, target_pid, cpu, group_fd, 0);
554
555 if (fd[i][counter] < 0) {
556 int err = errno;
557
716c69fe 558 if (err == EPERM)
3da297a6 559 die("No permission - are you root?\n");
716c69fe
IM
560 /*
561 * If it's cycles then fall back to hrtimer
562 * based cpu-clock-tick sw counter, which
563 * is always available even if no PMU support:
564 */
565 if (attr->type == PERF_TYPE_HARDWARE
f4dbfa8f 566 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
716c69fe 567
3da297a6
IM
568 if (verbose)
569 warning(" ... trying to fall back to cpu-clock-ticks\n");
570
716c69fe 571 attr->type = PERF_TYPE_SOFTWARE;
f4dbfa8f 572 attr->config = PERF_COUNT_SW_CPU_CLOCK;
716c69fe
IM
573 goto try_again;
574 }
30c806a0
IM
575 printf("\n");
576 error("perfcounter syscall returned with %d (%s)\n",
577 fd[i][counter], strerror(err));
578 die("No CONFIG_PERF_COUNTERS=y kernel support configured?\n");
716c69fe
IM
579 exit(-1);
580 }
581 assert(fd[i][counter] >= 0);
582 fcntl(fd[i][counter], F_SETFL, O_NONBLOCK);
583
584 /*
585 * First counter acts as the group leader:
586 */
587 if (group && group_fd == -1)
588 group_fd = fd[i][counter];
589
590 event_array[nr_poll].fd = fd[i][counter];
591 event_array[nr_poll].events = POLLIN;
592 nr_poll++;
593
594 mmap_array[i][counter].counter = counter;
595 mmap_array[i][counter].prev = 0;
596 mmap_array[i][counter].mask = mmap_pages*page_size - 1;
597 mmap_array[i][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
598 PROT_READ, MAP_SHARED, fd[i][counter], 0);
599 if (mmap_array[i][counter].base == MAP_FAILED)
600 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
601}
602
603static int __cmd_top(void)
604{
605 pthread_t thread;
606 int i, counter;
07800601
IM
607 int ret;
608
07800601
IM
609 for (i = 0; i < nr_cpus; i++) {
610 group_fd = -1;
716c69fe
IM
611 for (counter = 0; counter < nr_counters; counter++)
612 start_counter(i, counter);
07800601
IM
613 }
614
2f01190a
FW
615 /* Wait for a minimal set of events before starting the snapshot */
616 poll(event_array, nr_poll, 100);
617
618 mmap_read();
619
07800601
IM
620 if (pthread_create(&thread, NULL, display_thread, NULL)) {
621 printf("Could not create display thread.\n");
622 exit(-1);
623 }
624
625 if (realtime_prio) {
626 struct sched_param param;
627
628 param.sched_priority = realtime_prio;
629 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
630 printf("Could not set realtime priority.\n");
631 exit(-1);
632 }
633 }
634
635 while (1) {
2debbc83 636 int hits = samples;
07800601 637
2f01190a 638 mmap_read();
07800601 639
2debbc83 640 if (hits == samples)
07800601
IM
641 ret = poll(event_array, nr_poll, 100);
642 }
643
644 return 0;
645}
b456bae0
IM
646
647static const char * const top_usage[] = {
648 "perf top [<options>]",
649 NULL
650};
651
b456bae0
IM
652static const struct option options[] = {
653 OPT_CALLBACK('e', "event", NULL, "event",
86847b62
TG
654 "event selector. use 'perf list' to list available events",
655 parse_events),
b456bae0
IM
656 OPT_INTEGER('c', "count", &default_interval,
657 "event period to sample"),
658 OPT_INTEGER('p', "pid", &target_pid,
659 "profile events on existing pid"),
660 OPT_BOOLEAN('a', "all-cpus", &system_wide,
661 "system-wide collection from all CPUs"),
662 OPT_INTEGER('C', "CPU", &profile_cpu,
663 "CPU to profile on"),
664 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
665 "number of mmap data pages"),
666 OPT_INTEGER('r', "realtime", &realtime_prio,
667 "collect data with this RT SCHED_FIFO priority"),
db20c003 668 OPT_INTEGER('d', "delay", &delay_secs,
b456bae0
IM
669 "number of seconds to delay between refreshes"),
670 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
671 "dump the symbol table used for profiling"),
6e53cdf1 672 OPT_INTEGER('f', "count-filter", &count_filter,
b456bae0
IM
673 "only display functions with more events than this"),
674 OPT_BOOLEAN('g', "group", &group,
675 "put the counters into a counter group"),
676 OPT_STRING('s', "sym-filter", &sym_filter, "pattern",
677 "only display symbols matchig this pattern"),
1f208ea6 678 OPT_BOOLEAN('z', "zero", &zero,
b456bae0 679 "zero history across updates"),
6e53cdf1 680 OPT_INTEGER('F', "freq", &freq,
b456bae0 681 "profile at this frequency"),
6e53cdf1
IM
682 OPT_INTEGER('E', "entries", &print_entries,
683 "display this many functions"),
3da297a6
IM
684 OPT_BOOLEAN('v', "verbose", &verbose,
685 "be more verbose (show counter open errors, etc)"),
b456bae0
IM
686 OPT_END()
687};
688
689int cmd_top(int argc, const char **argv, const char *prefix)
690{
691 int counter;
692
693 page_size = sysconf(_SC_PAGE_SIZE);
694
b456bae0
IM
695 argc = parse_options(argc, argv, options, top_usage, 0);
696 if (argc)
697 usage_with_options(top_usage, options);
698
699 if (freq) {
700 default_interval = freq;
701 freq = 1;
702 }
703
704 /* CPU and PID are mutually exclusive */
705 if (target_pid != -1 && profile_cpu != -1) {
706 printf("WARNING: PID switch overriding CPU\n");
707 sleep(1);
708 profile_cpu = -1;
709 }
710
a21ca2ca 711 if (!nr_counters)
b456bae0 712 nr_counters = 1;
b456bae0 713
2f335a02
FW
714 if (delay_secs < 1)
715 delay_secs = 1;
716
a21ca2ca
IM
717 parse_symbols();
718
719 /*
720 * Fill in the ones not specifically initialized via -c:
721 */
b456bae0 722 for (counter = 0; counter < nr_counters; counter++) {
a21ca2ca 723 if (attrs[counter].sample_period)
b456bae0
IM
724 continue;
725
a21ca2ca 726 attrs[counter].sample_period = default_interval;
b456bae0
IM
727 }
728
729 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
730 assert(nr_cpus <= MAX_NR_CPUS);
731 assert(nr_cpus >= 0);
732
733 if (target_pid != -1 || profile_cpu != -1)
734 nr_cpus = 1;
735
b456bae0
IM
736 return __cmd_top();
737}