blob: 3f7778ba00bc84d72e2b13438928b16d5d952868 [file] [log] [blame]
Ingo Molnar07800602009-04-20 15:00:56 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * 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)
Ingo Molnar07800602009-04-20 15:00:56 +020018 */
Ingo Molnarbf9e1872009-06-02 23:37:05 +020019#include "builtin.h"
Ingo Molnar07800602009-04-20 15:00:56 +020020
Peter Zijlstra1a482f32009-05-23 18:28:58 +020021#include "perf.h"
Ingo Molnarbf9e1872009-06-02 23:37:05 +020022
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030023#include "util/symbol.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020024#include "util/util.h"
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030025#include "util/rbtree.h"
Ingo Molnarb456bae2009-05-26 09:17:18 +020026#include "util/parse-options.h"
27#include "util/parse-events.h"
Ingo Molnar07800602009-04-20 15:00:56 +020028
Ingo Molnar07800602009-04-20 15:00:56 +020029#include <assert.h>
30#include <fcntl.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020031
Ingo Molnar07800602009-04-20 15:00:56 +020032#include <stdio.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020033
Ingo Molnar07800602009-04-20 15:00:56 +020034#include <errno.h>
Ingo Molnar07800602009-04-20 15:00:56 +020035#include <time.h>
36#include <sched.h>
37#include <pthread.h>
38
39#include <sys/syscall.h>
40#include <sys/ioctl.h>
41#include <sys/poll.h>
42#include <sys/prctl.h>
43#include <sys/wait.h>
44#include <sys/uio.h>
45#include <sys/mman.h>
46
47#include <linux/unistd.h>
48#include <linux/types.h>
49
Ingo Molnar07800602009-04-20 15:00:56 +020050static int system_wide = 0;
51
Ingo Molnarb456bae2009-05-26 09:17:18 +020052static __u64 default_event_id[MAX_COUNTERS] = {
Ingo Molnar07800602009-04-20 15:00:56 +020053 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_TASK_CLOCK),
54 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_CONTEXT_SWITCHES),
55 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_CPU_MIGRATIONS),
56 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_PAGE_FAULTS),
57
58 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CPU_CYCLES),
59 EID(PERF_TYPE_HARDWARE, PERF_COUNT_INSTRUCTIONS),
60 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CACHE_REFERENCES),
61 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CACHE_MISSES),
62};
63static int default_interval = 100000;
64static int event_count[MAX_COUNTERS];
65static int fd[MAX_NR_CPUS][MAX_COUNTERS];
66
Ingo Molnar6e53cdf2009-06-04 08:53:05 +020067static __u64 count_filter = 5;
68static int print_entries = 15;
Ingo Molnar07800602009-04-20 15:00:56 +020069
Ingo Molnar6e53cdf2009-06-04 08:53:05 +020070static int target_pid = -1;
Ingo Molnar07800602009-04-20 15:00:56 +020071static int profile_cpu = -1;
72static int nr_cpus = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020073static unsigned int realtime_prio = 0;
74static int group = 0;
75static unsigned int page_size;
76static unsigned int mmap_pages = 16;
77static int use_mmap = 0;
78static int use_munmap = 0;
Peter Zijlstraf5456a62009-05-15 15:19:29 +020079static int freq = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020080
Ingo Molnar07800602009-04-20 15:00:56 +020081static char *sym_filter;
82static unsigned long filter_start;
83static unsigned long filter_end;
84
85static int delay_secs = 2;
86static int zero;
87static int dump_symtab;
88
Ingo Molnarddcacfa2009-04-20 15:37:32 +020089static const unsigned int default_count[] = {
Ingo Molnar07800602009-04-20 15:00:56 +020090 1000000,
91 1000000,
92 10000,
93 10000,
94 1000000,
95 10000,
96};
97
Ingo Molnar07800602009-04-20 15:00:56 +020098/*
99 * Symbols
100 */
101
102static uint64_t min_ip;
103static uint64_t max_ip = -1ll;
104
105struct sym_entry {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300106 struct rb_node rb_node;
107 struct list_head node;
Ingo Molnar07800602009-04-20 15:00:56 +0200108 unsigned long count[MAX_COUNTERS];
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300109 unsigned long snap_count;
110 double weight;
Ingo Molnar07800602009-04-20 15:00:56 +0200111 int skip;
Ingo Molnar07800602009-04-20 15:00:56 +0200112};
113
Ingo Molnar07800602009-04-20 15:00:56 +0200114struct sym_entry *sym_filter_entry;
115
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300116struct dso *kernel_dso;
117
118/*
119 * Symbols will be added here in record_ip and will get out
120 * after decayed.
121 */
122static LIST_HEAD(active_symbols);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300123static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnar07800602009-04-20 15:00:56 +0200124
Ingo Molnar07800602009-04-20 15:00:56 +0200125/*
126 * Ordering weight: count-1 * count-2 * ... / count-n
127 */
128static double sym_weight(const struct sym_entry *sym)
129{
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300130 double weight = sym->snap_count;
Ingo Molnar07800602009-04-20 15:00:56 +0200131 int counter;
132
Ingo Molnar07800602009-04-20 15:00:56 +0200133 for (counter = 1; counter < nr_counters-1; counter++)
134 weight *= sym->count[counter];
135
136 weight /= (sym->count[counter] + 1);
137
138 return weight;
139}
140
Ingo Molnar07800602009-04-20 15:00:56 +0200141static long events;
142static long userspace_events;
143static const char CONSOLE_CLEAR[] = "";
144
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300145static void __list_insert_active_sym(struct sym_entry *syme)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300146{
147 list_add(&syme->node, &active_symbols);
148}
149
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300150static void list_remove_active_sym(struct sym_entry *syme)
151{
152 pthread_mutex_lock(&active_symbols_lock);
153 list_del_init(&syme->node);
154 pthread_mutex_unlock(&active_symbols_lock);
155}
156
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300157static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
158{
159 struct rb_node **p = &tree->rb_node;
160 struct rb_node *parent = NULL;
161 struct sym_entry *iter;
162
163 while (*p != NULL) {
164 parent = *p;
165 iter = rb_entry(parent, struct sym_entry, rb_node);
166
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300167 if (se->weight > iter->weight)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300168 p = &(*p)->rb_left;
169 else
170 p = &(*p)->rb_right;
171 }
172
173 rb_link_node(&se->rb_node, parent, p);
174 rb_insert_color(&se->rb_node, tree);
175}
Ingo Molnar07800602009-04-20 15:00:56 +0200176
177static void print_sym_table(void)
178{
Ingo Molnar233f0b92009-06-03 21:48:40 +0200179 int printed = 0, j;
Ingo Molnar07800602009-04-20 15:00:56 +0200180 int counter;
181 float events_per_sec = events/delay_secs;
182 float kevents_per_sec = (events-userspace_events)/delay_secs;
183 float sum_kevents = 0.0;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300184 struct sym_entry *syme, *n;
185 struct rb_root tmp = RB_ROOT;
186 struct rb_node *nd;
Ingo Molnar07800602009-04-20 15:00:56 +0200187
188 events = userspace_events = 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200189
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300190 /* Sort the active symbols */
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300191 pthread_mutex_lock(&active_symbols_lock);
192 syme = list_entry(active_symbols.next, struct sym_entry, node);
193 pthread_mutex_unlock(&active_symbols_lock);
194
195 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
196 syme->snap_count = syme->count[0];
197 if (syme->snap_count != 0) {
198 syme->weight = sym_weight(syme);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300199 rb_insert_active_sym(&tmp, syme);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300200 sum_kevents += syme->snap_count;
Mike Galbraithd94b9432009-05-25 09:57:56 +0200201
202 for (j = 0; j < nr_counters; j++)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300203 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
204 } else
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300205 list_remove_active_sym(syme);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200206 }
207
Ingo Molnar07800602009-04-20 15:00:56 +0200208 write(1, CONSOLE_CLEAR, strlen(CONSOLE_CLEAR));
209
210 printf(
211"------------------------------------------------------------------------------\n");
Ingo Molnarf2521b62009-06-03 19:17:25 +0200212 printf( " PerfTop:%8.0f irqs/sec kernel:%4.1f%% [",
Ingo Molnar07800602009-04-20 15:00:56 +0200213 events_per_sec,
Mike Galbraithf91183f2009-05-26 15:25:34 +0200214 100.0 - (100.0*((events_per_sec-kevents_per_sec)/events_per_sec)));
Ingo Molnar07800602009-04-20 15:00:56 +0200215
216 if (nr_counters == 1)
217 printf("%d ", event_count[0]);
218
219 for (counter = 0; counter < nr_counters; counter++) {
220 if (counter)
221 printf("/");
222
223 printf("%s", event_name(counter));
224 }
225
226 printf( "], ");
227
Ingo Molnarb456bae2009-05-26 09:17:18 +0200228 if (target_pid != -1)
229 printf(" (target_pid: %d", target_pid);
Ingo Molnar07800602009-04-20 15:00:56 +0200230 else
231 printf(" (all");
232
233 if (profile_cpu != -1)
234 printf(", cpu: %d)\n", profile_cpu);
235 else {
Ingo Molnarb456bae2009-05-26 09:17:18 +0200236 if (target_pid != -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200237 printf(")\n");
238 else
239 printf(", %d CPUs)\n", nr_cpus);
240 }
241
242 printf("------------------------------------------------------------------------------\n\n");
243
244 if (nr_counters == 1)
245 printf(" events pcnt");
246 else
247 printf(" weight events pcnt");
248
249 printf(" RIP kernel function\n"
250 " ______ ______ _____ ________________ _______________\n\n"
251 );
252
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300253 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
254 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node);
255 struct symbol *sym = (struct symbol *)(syme + 1);
Ingo Molnar07800602009-04-20 15:00:56 +0200256 float pcnt;
Ingo Molnar07800602009-04-20 15:00:56 +0200257
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200258 if (++printed > print_entries || syme->snap_count < count_filter)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300259 continue;
Ingo Molnar07800602009-04-20 15:00:56 +0200260
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300261 pcnt = 100.0 - (100.0 * ((sum_kevents - syme->snap_count) /
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300262 sum_kevents));
Mike Galbraithd94b9432009-05-25 09:57:56 +0200263
264 if (nr_counters == 1)
265 printf("%19.2f - %4.1f%% - %016llx : %s\n",
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300266 syme->weight, pcnt, sym->start, sym->name);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200267 else
268 printf("%8.1f %10ld - %4.1f%% - %016llx : %s\n",
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300269 syme->weight, syme->snap_count,
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300270 pcnt, sym->start, sym->name);
Ingo Molnar07800602009-04-20 15:00:56 +0200271 }
272
Ingo Molnar07800602009-04-20 15:00:56 +0200273 {
274 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
275
276 if (poll(&stdin_poll, 1, 0) == 1) {
277 printf("key pressed - exiting.\n");
278 exit(0);
279 }
280 }
281}
282
283static void *display_thread(void *arg)
284{
Ingo Molnarf2521b62009-06-03 19:17:25 +0200285 printf("PerfTop refresh period: %d seconds\n", delay_secs);
Ingo Molnar07800602009-04-20 15:00:56 +0200286
287 while (!sleep(delay_secs))
288 print_sym_table();
289
290 return NULL;
291}
292
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300293static int symbol_filter(struct dso *self, struct symbol *sym)
Ingo Molnar07800602009-04-20 15:00:56 +0200294{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300295 static int filter_match;
296 struct sym_entry *syme;
297 const char *name = sym->name;
Ingo Molnar07800602009-04-20 15:00:56 +0200298
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300299 if (!strcmp(name, "_text") ||
300 !strcmp(name, "_etext") ||
301 !strcmp(name, "_sinittext") ||
302 !strncmp("init_module", name, 11) ||
303 !strncmp("cleanup_module", name, 14) ||
304 strstr(name, "_text_start") ||
305 strstr(name, "_text_end"))
Ingo Molnar07800602009-04-20 15:00:56 +0200306 return 1;
307
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300308 syme = dso__sym_priv(self, sym);
Ingo Molnar07800602009-04-20 15:00:56 +0200309 /* Tag events to be skipped. */
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300310 if (!strcmp("default_idle", name) ||
311 !strcmp("cpu_idle", name) ||
312 !strcmp("enter_idle", name) ||
313 !strcmp("exit_idle", name) ||
314 !strcmp("mwait_idle", name))
315 syme->skip = 1;
Ingo Molnar07800602009-04-20 15:00:56 +0200316
317 if (filter_match == 1) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300318 filter_end = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200319 filter_match = -1;
320 if (filter_end - filter_start > 10000) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300321 fprintf(stderr,
322 "hm, too large filter symbol <%s> - skipping.\n",
Ingo Molnar07800602009-04-20 15:00:56 +0200323 sym_filter);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300324 fprintf(stderr, "symbol filter start: %016lx\n",
325 filter_start);
326 fprintf(stderr, " end: %016lx\n",
327 filter_end);
Ingo Molnar07800602009-04-20 15:00:56 +0200328 filter_end = filter_start = 0;
329 sym_filter = NULL;
330 sleep(1);
331 }
332 }
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300333
334 if (filter_match == 0 && sym_filter && !strcmp(name, sym_filter)) {
Ingo Molnar07800602009-04-20 15:00:56 +0200335 filter_match = 1;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300336 filter_start = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200337 }
338
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300339
Ingo Molnar07800602009-04-20 15:00:56 +0200340 return 0;
341}
342
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300343static int parse_symbols(void)
Ingo Molnar07800602009-04-20 15:00:56 +0200344{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300345 struct rb_node *node;
346 struct symbol *sym;
Ingo Molnar07800602009-04-20 15:00:56 +0200347
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300348 kernel_dso = dso__new("[kernel]", sizeof(struct sym_entry));
349 if (kernel_dso == NULL)
350 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200351
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300352 if (dso__load_kernel(kernel_dso, NULL, symbol_filter) != 0)
353 goto out_delete_dso;
Ingo Molnar07800602009-04-20 15:00:56 +0200354
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300355 node = rb_first(&kernel_dso->syms);
356 sym = rb_entry(node, struct symbol, rb_node);
357 min_ip = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200358
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300359 node = rb_last(&kernel_dso->syms);
360 sym = rb_entry(node, struct symbol, rb_node);
Mike Galbraithda417a72009-05-29 08:23:16 +0200361 max_ip = sym->end;
Ingo Molnar07800602009-04-20 15:00:56 +0200362
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300363 if (dump_symtab)
Mike Galbraitha3ec8d72009-05-29 06:46:46 +0200364 dso__fprintf(kernel_dso, stderr);
Ingo Molnar07800602009-04-20 15:00:56 +0200365
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300366 return 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200367
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300368out_delete_dso:
369 dso__delete(kernel_dso);
370 kernel_dso = NULL;
371 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200372}
373
Ingo Molnar07800602009-04-20 15:00:56 +0200374#define TRACE_COUNT 3
375
Ingo Molnar07800602009-04-20 15:00:56 +0200376/*
377 * Binary search in the histogram table and record the hit:
378 */
379static void record_ip(uint64_t ip, int counter)
380{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300381 struct symbol *sym = dso__find_symbol(kernel_dso, ip);
Ingo Molnar07800602009-04-20 15:00:56 +0200382
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300383 if (sym != NULL) {
384 struct sym_entry *syme = dso__sym_priv(kernel_dso, sym);
Ingo Molnar07800602009-04-20 15:00:56 +0200385
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300386 if (!syme->skip) {
387 syme->count[counter]++;
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300388 pthread_mutex_lock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300389 if (list_empty(&syme->node) || !syme->node.next)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300390 __list_insert_active_sym(syme);
391 pthread_mutex_unlock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300392 return;
Ingo Molnar07800602009-04-20 15:00:56 +0200393 }
Ingo Molnar07800602009-04-20 15:00:56 +0200394 }
395
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300396 events--;
Ingo Molnar07800602009-04-20 15:00:56 +0200397}
398
399static void process_event(uint64_t ip, int counter)
400{
401 events++;
402
403 if (ip < min_ip || ip > max_ip) {
404 userspace_events++;
405 return;
406 }
407
408 record_ip(ip, counter);
409}
410
Ingo Molnar07800602009-04-20 15:00:56 +0200411struct mmap_data {
412 int counter;
413 void *base;
414 unsigned int mask;
415 unsigned int prev;
416};
417
418static unsigned int mmap_read_head(struct mmap_data *md)
419{
420 struct perf_counter_mmap_page *pc = md->base;
421 int head;
422
423 head = pc->data_head;
424 rmb();
425
426 return head;
427}
428
429struct timeval last_read, this_read;
430
431static void mmap_read(struct mmap_data *md)
432{
433 unsigned int head = mmap_read_head(md);
434 unsigned int old = md->prev;
435 unsigned char *data = md->base + page_size;
436 int diff;
437
438 gettimeofday(&this_read, NULL);
439
440 /*
441 * If we're further behind than half the buffer, there's a chance
442 * the writer will bite our tail and screw up the events under us.
443 *
444 * If we somehow ended up ahead of the head, we got messed up.
445 *
446 * In either case, truncate and restart at head.
447 */
448 diff = head - old;
449 if (diff > md->mask / 2 || diff < 0) {
450 struct timeval iv;
451 unsigned long msecs;
452
453 timersub(&this_read, &last_read, &iv);
454 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
455
456 fprintf(stderr, "WARNING: failed to keep up with mmap data."
457 " Last read %lu msecs ago.\n", msecs);
458
459 /*
460 * head points to a known good entry, start there.
461 */
462 old = head;
463 }
464
465 last_read = this_read;
466
467 for (; old != head;) {
468 struct ip_event {
469 struct perf_event_header header;
470 __u64 ip;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200471 __u32 pid, target_pid;
Ingo Molnar07800602009-04-20 15:00:56 +0200472 };
473 struct mmap_event {
474 struct perf_event_header header;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200475 __u32 pid, target_pid;
Ingo Molnar07800602009-04-20 15:00:56 +0200476 __u64 start;
477 __u64 len;
478 __u64 pgoff;
479 char filename[PATH_MAX];
480 };
481
482 typedef union event_union {
483 struct perf_event_header header;
484 struct ip_event ip;
485 struct mmap_event mmap;
486 } event_t;
487
488 event_t *event = (event_t *)&data[old & md->mask];
489
490 event_t event_copy;
491
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200492 size_t size = event->header.size;
Ingo Molnar07800602009-04-20 15:00:56 +0200493
494 /*
495 * Event straddles the mmap boundary -- header should always
496 * be inside due to u64 alignment of output.
497 */
498 if ((old & md->mask) + size != ((old + size) & md->mask)) {
499 unsigned int offset = old;
500 unsigned int len = min(sizeof(*event), size), cpy;
501 void *dst = &event_copy;
502
503 do {
504 cpy = min(md->mask + 1 - (offset & md->mask), len);
505 memcpy(dst, &data[offset & md->mask], cpy);
506 offset += cpy;
507 dst += cpy;
508 len -= cpy;
509 } while (len);
510
511 event = &event_copy;
512 }
513
514 old += size;
515
516 if (event->header.misc & PERF_EVENT_MISC_OVERFLOW) {
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200517 if (event->header.type & PERF_SAMPLE_IP)
Ingo Molnar07800602009-04-20 15:00:56 +0200518 process_event(event->ip.ip, md->counter);
519 } else {
520 switch (event->header.type) {
521 case PERF_EVENT_MMAP:
522 case PERF_EVENT_MUNMAP:
523 printf("%s: %Lu %Lu %Lu %s\n",
524 event->header.type == PERF_EVENT_MMAP
525 ? "mmap" : "munmap",
526 event->mmap.start,
527 event->mmap.len,
528 event->mmap.pgoff,
529 event->mmap.filename);
530 break;
531 }
532 }
533 }
534
535 md->prev = old;
536}
537
Mike Galbraithc2990a22009-05-24 08:35:49 +0200538static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
539static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
540
Ingo Molnarb456bae2009-05-26 09:17:18 +0200541static int __cmd_top(void)
Ingo Molnar07800602009-04-20 15:00:56 +0200542{
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200543 struct perf_counter_attr attr;
Ingo Molnar07800602009-04-20 15:00:56 +0200544 pthread_t thread;
545 int i, counter, group_fd, nr_poll = 0;
546 unsigned int cpu;
547 int ret;
548
Ingo Molnar07800602009-04-20 15:00:56 +0200549 for (i = 0; i < nr_cpus; i++) {
550 group_fd = -1;
551 for (counter = 0; counter < nr_counters; counter++) {
552
553 cpu = profile_cpu;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200554 if (target_pid == -1 && profile_cpu == -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200555 cpu = i;
556
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200557 memset(&attr, 0, sizeof(attr));
558 attr.config = event_id[counter];
559 attr.sample_period = event_count[counter];
560 attr.sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
561 attr.mmap = use_mmap;
562 attr.munmap = use_munmap;
563 attr.freq = freq;
Ingo Molnar07800602009-04-20 15:00:56 +0200564
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200565 fd[i][counter] = sys_perf_counter_open(&attr, target_pid, cpu, group_fd, 0);
Ingo Molnar07800602009-04-20 15:00:56 +0200566 if (fd[i][counter] < 0) {
567 int err = errno;
Ingo Molnarf2521b62009-06-03 19:17:25 +0200568
569 error("syscall returned with %d (%s)\n",
Ingo Molnar07800602009-04-20 15:00:56 +0200570 fd[i][counter], strerror(err));
571 if (err == EPERM)
572 printf("Are you root?\n");
573 exit(-1);
574 }
575 assert(fd[i][counter] >= 0);
576 fcntl(fd[i][counter], F_SETFL, O_NONBLOCK);
577
578 /*
579 * First counter acts as the group leader:
580 */
581 if (group && group_fd == -1)
582 group_fd = fd[i][counter];
583
584 event_array[nr_poll].fd = fd[i][counter];
585 event_array[nr_poll].events = POLLIN;
586 nr_poll++;
587
588 mmap_array[i][counter].counter = counter;
589 mmap_array[i][counter].prev = 0;
590 mmap_array[i][counter].mask = mmap_pages*page_size - 1;
591 mmap_array[i][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
592 PROT_READ, MAP_SHARED, fd[i][counter], 0);
Ingo Molnarf2521b62009-06-03 19:17:25 +0200593 if (mmap_array[i][counter].base == MAP_FAILED)
594 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
Ingo Molnar07800602009-04-20 15:00:56 +0200595 }
596 }
597
598 if (pthread_create(&thread, NULL, display_thread, NULL)) {
599 printf("Could not create display thread.\n");
600 exit(-1);
601 }
602
603 if (realtime_prio) {
604 struct sched_param param;
605
606 param.sched_priority = realtime_prio;
607 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
608 printf("Could not set realtime priority.\n");
609 exit(-1);
610 }
611 }
612
613 while (1) {
614 int hits = events;
615
616 for (i = 0; i < nr_cpus; i++) {
617 for (counter = 0; counter < nr_counters; counter++)
618 mmap_read(&mmap_array[i][counter]);
619 }
620
621 if (hits == events)
622 ret = poll(event_array, nr_poll, 100);
623 }
624
625 return 0;
626}
Ingo Molnarb456bae2009-05-26 09:17:18 +0200627
628static const char * const top_usage[] = {
629 "perf top [<options>]",
630 NULL
631};
632
633static char events_help_msg[EVENTS_HELP_MAX];
634
635static const struct option options[] = {
636 OPT_CALLBACK('e', "event", NULL, "event",
637 events_help_msg, parse_events),
638 OPT_INTEGER('c', "count", &default_interval,
639 "event period to sample"),
640 OPT_INTEGER('p', "pid", &target_pid,
641 "profile events on existing pid"),
642 OPT_BOOLEAN('a', "all-cpus", &system_wide,
643 "system-wide collection from all CPUs"),
644 OPT_INTEGER('C', "CPU", &profile_cpu,
645 "CPU to profile on"),
646 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
647 "number of mmap data pages"),
648 OPT_INTEGER('r', "realtime", &realtime_prio,
649 "collect data with this RT SCHED_FIFO priority"),
Mike Galbraithdb20c002009-05-26 15:25:34 +0200650 OPT_INTEGER('d', "delay", &delay_secs,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200651 "number of seconds to delay between refreshes"),
652 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
653 "dump the symbol table used for profiling"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200654 OPT_INTEGER('f', "count-filter", &count_filter,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200655 "only display functions with more events than this"),
656 OPT_BOOLEAN('g', "group", &group,
657 "put the counters into a counter group"),
658 OPT_STRING('s', "sym-filter", &sym_filter, "pattern",
659 "only display symbols matchig this pattern"),
660 OPT_BOOLEAN('z', "zero", &group,
661 "zero history across updates"),
662 OPT_BOOLEAN('M', "use-mmap", &use_mmap,
663 "track mmap events"),
664 OPT_BOOLEAN('U', "use-munmap", &use_munmap,
665 "track munmap events"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200666 OPT_INTEGER('F', "freq", &freq,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200667 "profile at this frequency"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200668 OPT_INTEGER('E', "entries", &print_entries,
669 "display this many functions"),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200670 OPT_END()
671};
672
673int cmd_top(int argc, const char **argv, const char *prefix)
674{
675 int counter;
676
677 page_size = sysconf(_SC_PAGE_SIZE);
678
679 create_events_help(events_help_msg);
680 memcpy(event_id, default_event_id, sizeof(default_event_id));
681
682 argc = parse_options(argc, argv, options, top_usage, 0);
683 if (argc)
684 usage_with_options(top_usage, options);
685
686 if (freq) {
687 default_interval = freq;
688 freq = 1;
689 }
690
691 /* CPU and PID are mutually exclusive */
692 if (target_pid != -1 && profile_cpu != -1) {
693 printf("WARNING: PID switch overriding CPU\n");
694 sleep(1);
695 profile_cpu = -1;
696 }
697
698 if (!nr_counters) {
699 nr_counters = 1;
700 event_id[0] = 0;
701 }
702
703 for (counter = 0; counter < nr_counters; counter++) {
704 if (event_count[counter])
705 continue;
706
707 event_count[counter] = default_interval;
708 }
709
710 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
711 assert(nr_cpus <= MAX_NR_CPUS);
712 assert(nr_cpus >= 0);
713
714 if (target_pid != -1 || profile_cpu != -1)
715 nr_cpus = 1;
716
717 parse_symbols();
718
719 return __cmd_top();
720}