4 * Builtin top command: Display a continuously updated profile of
5 * any workload, CPU or specific PID.
7 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
9 * Improvements and fixes by:
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>
17 * Released under the GPL v2. (and only v2, not any later version)
23 #include "util/symbol.h"
24 #include "util/color.h"
25 #include "util/util.h"
26 #include "util/rbtree.h"
27 #include "util/parse-options.h"
28 #include "util/parse-events.h"
40 #include <sys/syscall.h>
41 #include <sys/ioctl.h>
43 #include <sys/prctl.h>
48 #include <linux/unistd.h>
49 #include <linux/types.h>
51 static int fd[MAX_NR_CPUS][MAX_COUNTERS];
53 static int system_wide = 0;
55 static int default_interval = 100000;
57 static __u64 count_filter = 5;
58 static int print_entries = 15;
60 static int target_pid = -1;
61 static int profile_cpu = -1;
62 static int nr_cpus = 0;
63 static unsigned int realtime_prio = 0;
65 static unsigned int page_size;
66 static unsigned int mmap_pages = 16;
69 static char *sym_filter;
70 static unsigned long filter_start;
71 static unsigned long filter_end;
73 static int delay_secs = 2;
75 static int dump_symtab;
81 static uint64_t min_ip;
82 static uint64_t max_ip = -1ll;
85 struct rb_node rb_node;
86 struct list_head node;
87 unsigned long count[MAX_COUNTERS];
88 unsigned long snap_count;
93 struct sym_entry *sym_filter_entry;
95 struct dso *kernel_dso;
98 * Symbols will be added here in record_ip and will get out
101 static LIST_HEAD(active_symbols);
102 static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
105 * Ordering weight: count-1 * count-2 * ... / count-n
107 static double sym_weight(const struct sym_entry *sym)
109 double weight = sym->snap_count;
112 for (counter = 1; counter < nr_counters-1; counter++)
113 weight *= sym->count[counter];
115 weight /= (sym->count[counter] + 1);
121 static long userspace_samples;
122 static const char CONSOLE_CLEAR[] = "
\e[H
\e[2J";
124 static void __list_insert_active_sym(struct sym_entry *syme)
126 list_add(&syme->node, &active_symbols);
129 static void list_remove_active_sym(struct sym_entry *syme)
131 pthread_mutex_lock(&active_symbols_lock);
132 list_del_init(&syme->node);
133 pthread_mutex_unlock(&active_symbols_lock);
136 static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
138 struct rb_node **p = &tree->rb_node;
139 struct rb_node *parent = NULL;
140 struct sym_entry *iter;
144 iter = rb_entry(parent, struct sym_entry, rb_node);
146 if (se->weight > iter->weight)
152 rb_link_node(&se->rb_node, parent, p);
153 rb_insert_color(&se->rb_node, tree);
156 static void print_sym_table(void)
160 float samples_per_sec = samples/delay_secs;
161 float ksamples_per_sec = (samples-userspace_samples)/delay_secs;
162 float sum_ksamples = 0.0;
163 struct sym_entry *syme, *n;
164 struct rb_root tmp = RB_ROOT;
167 samples = userspace_samples = 0;
169 /* Sort the active symbols */
170 pthread_mutex_lock(&active_symbols_lock);
171 syme = list_entry(active_symbols.next, struct sym_entry, node);
172 pthread_mutex_unlock(&active_symbols_lock);
174 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
175 syme->snap_count = syme->count[0];
176 if (syme->snap_count != 0) {
177 syme->weight = sym_weight(syme);
178 rb_insert_active_sym(&tmp, syme);
179 sum_ksamples += syme->snap_count;
181 for (j = 0; j < nr_counters; j++)
182 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
184 list_remove_active_sym(syme);
190 "------------------------------------------------------------------------------\n");
191 printf( " PerfTop:%8.0f irqs/sec kernel:%4.1f%% [",
193 100.0 - (100.0*((samples_per_sec-ksamples_per_sec)/samples_per_sec)));
195 if (nr_counters == 1) {
196 printf("%Ld", attrs[0].sample_period);
203 for (counter = 0; counter < nr_counters; counter++) {
207 printf("%s", event_name(counter));
212 if (target_pid != -1)
213 printf(" (target_pid: %d", target_pid);
217 if (profile_cpu != -1)
218 printf(", cpu: %d)\n", profile_cpu);
220 if (target_pid != -1)
223 printf(", %d CPUs)\n", nr_cpus);
226 printf("------------------------------------------------------------------------------\n\n");
228 if (nr_counters == 1)
229 printf(" samples pcnt");
231 printf(" weight samples pcnt");
233 printf(" RIP kernel function\n"
234 " ______ _______ _____ ________________ _______________\n\n"
237 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
238 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node);
239 struct symbol *sym = (struct symbol *)(syme + 1);
240 char *color = PERF_COLOR_NORMAL;
243 if (++printed > print_entries || syme->snap_count < count_filter)
246 pcnt = 100.0 - (100.0 * ((sum_ksamples - syme->snap_count) /
250 * We color high-overhead entries in red, low-overhead
251 * entries in green - and keep the middle ground normal:
254 color = PERF_COLOR_RED;
256 color = PERF_COLOR_GREEN;
258 if (nr_counters == 1)
259 printf("%20.2f - ", syme->weight);
261 printf("%9.1f %10ld - ", syme->weight, syme->snap_count);
263 color_fprintf(stdout, color, "%4.1f%%", pcnt);
264 printf(" - %016llx : %s\n", sym->start, sym->name);
268 static void *display_thread(void *arg)
270 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
271 int delay_msecs = delay_secs * 1000;
273 printf("PerfTop refresh period: %d seconds\n", delay_secs);
277 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
279 printf("key pressed - exiting.\n");
285 static int symbol_filter(struct dso *self, struct symbol *sym)
287 static int filter_match;
288 struct sym_entry *syme;
289 const char *name = sym->name;
291 if (!strcmp(name, "_text") ||
292 !strcmp(name, "_etext") ||
293 !strcmp(name, "_sinittext") ||
294 !strncmp("init_module", name, 11) ||
295 !strncmp("cleanup_module", name, 14) ||
296 strstr(name, "_text_start") ||
297 strstr(name, "_text_end"))
300 syme = dso__sym_priv(self, sym);
301 /* Tag samples to be skipped. */
302 if (!strcmp("default_idle", name) ||
303 !strcmp("cpu_idle", name) ||
304 !strcmp("enter_idle", name) ||
305 !strcmp("exit_idle", name) ||
306 !strcmp("mwait_idle", name))
309 if (filter_match == 1) {
310 filter_end = sym->start;
312 if (filter_end - filter_start > 10000) {
314 "hm, too large filter symbol <%s> - skipping.\n",
316 fprintf(stderr, "symbol filter start: %016lx\n",
318 fprintf(stderr, " end: %016lx\n",
320 filter_end = filter_start = 0;
326 if (filter_match == 0 && sym_filter && !strcmp(name, sym_filter)) {
328 filter_start = sym->start;
335 static int parse_symbols(void)
337 struct rb_node *node;
340 kernel_dso = dso__new("[kernel]", sizeof(struct sym_entry));
341 if (kernel_dso == NULL)
344 if (dso__load_kernel(kernel_dso, NULL, symbol_filter, 1) != 0)
347 node = rb_first(&kernel_dso->syms);
348 sym = rb_entry(node, struct symbol, rb_node);
351 node = rb_last(&kernel_dso->syms);
352 sym = rb_entry(node, struct symbol, rb_node);
356 dso__fprintf(kernel_dso, stderr);
361 dso__delete(kernel_dso);
366 #define TRACE_COUNT 3
369 * Binary search in the histogram table and record the hit:
371 static void record_ip(uint64_t ip, int counter)
373 struct symbol *sym = dso__find_symbol(kernel_dso, ip);
376 struct sym_entry *syme = dso__sym_priv(kernel_dso, sym);
379 syme->count[counter]++;
380 pthread_mutex_lock(&active_symbols_lock);
381 if (list_empty(&syme->node) || !syme->node.next)
382 __list_insert_active_sym(syme);
383 pthread_mutex_unlock(&active_symbols_lock);
391 static void process_event(uint64_t ip, int counter)
395 if (ip < min_ip || ip > max_ip) {
400 record_ip(ip, counter);
410 static unsigned int mmap_read_head(struct mmap_data *md)
412 struct perf_counter_mmap_page *pc = md->base;
415 head = pc->data_head;
421 struct timeval last_read, this_read;
423 static void mmap_read(struct mmap_data *md)
425 unsigned int head = mmap_read_head(md);
426 unsigned int old = md->prev;
427 unsigned char *data = md->base + page_size;
430 gettimeofday(&this_read, NULL);
433 * If we're further behind than half the buffer, there's a chance
434 * the writer will bite our tail and mess up the samples under us.
436 * If we somehow ended up ahead of the head, we got messed up.
438 * In either case, truncate and restart at head.
441 if (diff > md->mask / 2 || diff < 0) {
445 timersub(&this_read, &last_read, &iv);
446 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
448 fprintf(stderr, "WARNING: failed to keep up with mmap data."
449 " Last read %lu msecs ago.\n", msecs);
452 * head points to a known good entry, start there.
457 last_read = this_read;
459 for (; old != head;) {
461 struct perf_event_header header;
463 __u32 pid, target_pid;
466 struct perf_event_header header;
467 __u32 pid, target_pid;
471 char filename[PATH_MAX];
474 typedef union event_union {
475 struct perf_event_header header;
477 struct mmap_event mmap;
480 event_t *event = (event_t *)&data[old & md->mask];
484 size_t size = event->header.size;
487 * Event straddles the mmap boundary -- header should always
488 * be inside due to u64 alignment of output.
490 if ((old & md->mask) + size != ((old + size) & md->mask)) {
491 unsigned int offset = old;
492 unsigned int len = min(sizeof(*event), size), cpy;
493 void *dst = &event_copy;
496 cpy = min(md->mask + 1 - (offset & md->mask), len);
497 memcpy(dst, &data[offset & md->mask], cpy);
508 if (event->header.misc & PERF_EVENT_MISC_OVERFLOW) {
509 if (event->header.type & PERF_SAMPLE_IP)
510 process_event(event->ip.ip, md->counter);
517 static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
518 static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
520 static int __cmd_top(void)
522 struct perf_counter_attr *attr;
524 int i, counter, group_fd, nr_poll = 0;
528 for (i = 0; i < nr_cpus; i++) {
530 for (counter = 0; counter < nr_counters; counter++) {
533 if (target_pid == -1 && profile_cpu == -1)
536 attr = attrs + counter;
538 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
541 fd[i][counter] = sys_perf_counter_open(attr, target_pid, cpu, group_fd, 0);
542 if (fd[i][counter] < 0) {
545 error("syscall returned with %d (%s)\n",
546 fd[i][counter], strerror(err));
548 printf("Are you root?\n");
551 assert(fd[i][counter] >= 0);
552 fcntl(fd[i][counter], F_SETFL, O_NONBLOCK);
555 * First counter acts as the group leader:
557 if (group && group_fd == -1)
558 group_fd = fd[i][counter];
560 event_array[nr_poll].fd = fd[i][counter];
561 event_array[nr_poll].events = POLLIN;
564 mmap_array[i][counter].counter = counter;
565 mmap_array[i][counter].prev = 0;
566 mmap_array[i][counter].mask = mmap_pages*page_size - 1;
567 mmap_array[i][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
568 PROT_READ, MAP_SHARED, fd[i][counter], 0);
569 if (mmap_array[i][counter].base == MAP_FAILED)
570 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
574 if (pthread_create(&thread, NULL, display_thread, NULL)) {
575 printf("Could not create display thread.\n");
580 struct sched_param param;
582 param.sched_priority = realtime_prio;
583 if (sched_setscheduler(0, SCHED_FIFO, ¶m)) {
584 printf("Could not set realtime priority.\n");
592 for (i = 0; i < nr_cpus; i++) {
593 for (counter = 0; counter < nr_counters; counter++)
594 mmap_read(&mmap_array[i][counter]);
598 ret = poll(event_array, nr_poll, 100);
604 static const char * const top_usage[] = {
605 "perf top [<options>]",
609 static const struct option options[] = {
610 OPT_CALLBACK('e', "event", NULL, "event",
611 "event selector. use 'perf list' to list available events",
613 OPT_INTEGER('c', "count", &default_interval,
614 "event period to sample"),
615 OPT_INTEGER('p', "pid", &target_pid,
616 "profile events on existing pid"),
617 OPT_BOOLEAN('a', "all-cpus", &system_wide,
618 "system-wide collection from all CPUs"),
619 OPT_INTEGER('C', "CPU", &profile_cpu,
620 "CPU to profile on"),
621 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
622 "number of mmap data pages"),
623 OPT_INTEGER('r', "realtime", &realtime_prio,
624 "collect data with this RT SCHED_FIFO priority"),
625 OPT_INTEGER('d', "delay", &delay_secs,
626 "number of seconds to delay between refreshes"),
627 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
628 "dump the symbol table used for profiling"),
629 OPT_INTEGER('f', "count-filter", &count_filter,
630 "only display functions with more events than this"),
631 OPT_BOOLEAN('g', "group", &group,
632 "put the counters into a counter group"),
633 OPT_STRING('s', "sym-filter", &sym_filter, "pattern",
634 "only display symbols matchig this pattern"),
635 OPT_BOOLEAN('z', "zero", &group,
636 "zero history across updates"),
637 OPT_INTEGER('F', "freq", &freq,
638 "profile at this frequency"),
639 OPT_INTEGER('E', "entries", &print_entries,
640 "display this many functions"),
644 int cmd_top(int argc, const char **argv, const char *prefix)
648 page_size = sysconf(_SC_PAGE_SIZE);
650 argc = parse_options(argc, argv, options, top_usage, 0);
652 usage_with_options(top_usage, options);
655 default_interval = freq;
659 /* CPU and PID are mutually exclusive */
660 if (target_pid != -1 && profile_cpu != -1) {
661 printf("WARNING: PID switch overriding CPU\n");
675 * Fill in the ones not specifically initialized via -c:
677 for (counter = 0; counter < nr_counters; counter++) {
678 if (attrs[counter].sample_period)
681 attrs[counter].sample_period = default_interval;
684 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
685 assert(nr_cpus <= MAX_NR_CPUS);
686 assert(nr_cpus >= 0);
688 if (target_pid != -1 || profile_cpu != -1)