blob: 24a887907a7ad33792133859c69176d3d91170bf [file] [log] [blame]
Ingo Molnar07800602009-04-20 15:00:56 +02001/*
2 * kerneltop.c: show top kernel functions - performance counters showcase
3
4 Build with:
5
Robert Richter38105f02009-04-29 12:47:26 +02006 make -C Documentation/perf_counter/
Ingo Molnar07800602009-04-20 15:00:56 +02007
8 Sample output:
9
10------------------------------------------------------------------------------
Mike Galbraithf91183f2009-05-26 15:25:34 +020011 KernelTop: 2669 irqs/sec [cache-misses/cache-refs], (all, cpu: 2)
Ingo Molnar07800602009-04-20 15:00:56 +020012------------------------------------------------------------------------------
13
14 weight RIP kernel function
15 ______ ________________ _______________
16
17 35.20 - ffffffff804ce74b : skb_copy_and_csum_dev
18 33.00 - ffffffff804cb740 : sock_alloc_send_skb
19 31.26 - ffffffff804ce808 : skb_push
20 22.43 - ffffffff80510004 : tcp_established_options
21 19.00 - ffffffff8027d250 : find_get_page
22 15.76 - ffffffff804e4fc9 : eth_type_trans
23 15.20 - ffffffff804d8baa : dst_release
24 14.86 - ffffffff804cf5d8 : skb_release_head_state
25 14.00 - ffffffff802217d5 : read_hpet
26 12.00 - ffffffff804ffb7f : __ip_local_out
27 11.97 - ffffffff804fc0c8 : ip_local_deliver_finish
28 8.54 - ffffffff805001a3 : ip_queue_xmit
29 */
30
Ingo Molnar07800602009-04-20 15:00:56 +020031 /*
32 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
33 *
34 * Improvements and fixes by:
35 *
36 * Arjan van de Ven <arjan@linux.intel.com>
37 * Yanmin Zhang <yanmin.zhang@intel.com>
38 * Wu Fengguang <fengguang.wu@intel.com>
39 * Mike Galbraith <efault@gmx.de>
40 * Paul Mackerras <paulus@samba.org>
41 *
42 * Released under the GPL v2. (and only v2, not any later version)
43 */
44
Peter Zijlstra1a482f32009-05-23 18:28:58 +020045#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020046#include "builtin.h"
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030047#include "util/symbol.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020048#include "util/util.h"
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030049#include "util/rbtree.h"
Ingo Molnarb456bae2009-05-26 09:17:18 +020050#include "util/parse-options.h"
51#include "util/parse-events.h"
Ingo Molnar07800602009-04-20 15:00:56 +020052
Ingo Molnar07800602009-04-20 15:00:56 +020053#include <assert.h>
54#include <fcntl.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020055
Ingo Molnar07800602009-04-20 15:00:56 +020056#include <stdio.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020057
Ingo Molnar07800602009-04-20 15:00:56 +020058#include <errno.h>
Ingo Molnar07800602009-04-20 15:00:56 +020059#include <time.h>
60#include <sched.h>
61#include <pthread.h>
62
63#include <sys/syscall.h>
64#include <sys/ioctl.h>
65#include <sys/poll.h>
66#include <sys/prctl.h>
67#include <sys/wait.h>
68#include <sys/uio.h>
69#include <sys/mman.h>
70
71#include <linux/unistd.h>
72#include <linux/types.h>
73
Ingo Molnar07800602009-04-20 15:00:56 +020074static int system_wide = 0;
75
Ingo Molnarb456bae2009-05-26 09:17:18 +020076static __u64 default_event_id[MAX_COUNTERS] = {
Ingo Molnar07800602009-04-20 15:00:56 +020077 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_TASK_CLOCK),
78 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_CONTEXT_SWITCHES),
79 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_CPU_MIGRATIONS),
80 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_PAGE_FAULTS),
81
82 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CPU_CYCLES),
83 EID(PERF_TYPE_HARDWARE, PERF_COUNT_INSTRUCTIONS),
84 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CACHE_REFERENCES),
85 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CACHE_MISSES),
86};
87static int default_interval = 100000;
88static int event_count[MAX_COUNTERS];
89static int fd[MAX_NR_CPUS][MAX_COUNTERS];
90
91static __u64 count_filter = 100;
92
Ingo Molnarb456bae2009-05-26 09:17:18 +020093static int target_pid = -1;
Ingo Molnar07800602009-04-20 15:00:56 +020094static int profile_cpu = -1;
95static int nr_cpus = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020096static unsigned int realtime_prio = 0;
97static int group = 0;
98static unsigned int page_size;
99static unsigned int mmap_pages = 16;
100static int use_mmap = 0;
101static int use_munmap = 0;
Peter Zijlstraf5456a62009-05-15 15:19:29 +0200102static int freq = 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200103
Ingo Molnar07800602009-04-20 15:00:56 +0200104static char *sym_filter;
105static unsigned long filter_start;
106static unsigned long filter_end;
107
108static int delay_secs = 2;
109static int zero;
110static int dump_symtab;
111
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200112static const unsigned int default_count[] = {
Ingo Molnar07800602009-04-20 15:00:56 +0200113 1000000,
114 1000000,
115 10000,
116 10000,
117 1000000,
118 10000,
119};
120
Ingo Molnar07800602009-04-20 15:00:56 +0200121/*
122 * Symbols
123 */
124
125static uint64_t min_ip;
126static uint64_t max_ip = -1ll;
127
128struct sym_entry {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300129 struct rb_node rb_node;
130 struct list_head node;
Ingo Molnar07800602009-04-20 15:00:56 +0200131 unsigned long count[MAX_COUNTERS];
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300132 unsigned long snap_count;
133 double weight;
Ingo Molnar07800602009-04-20 15:00:56 +0200134 int skip;
Ingo Molnar07800602009-04-20 15:00:56 +0200135};
136
Ingo Molnar07800602009-04-20 15:00:56 +0200137struct sym_entry *sym_filter_entry;
138
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300139struct dso *kernel_dso;
140
141/*
142 * Symbols will be added here in record_ip and will get out
143 * after decayed.
144 */
145static LIST_HEAD(active_symbols);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300146static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnar07800602009-04-20 15:00:56 +0200147
Ingo Molnar07800602009-04-20 15:00:56 +0200148/*
149 * Ordering weight: count-1 * count-2 * ... / count-n
150 */
151static double sym_weight(const struct sym_entry *sym)
152{
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300153 double weight = sym->snap_count;
Ingo Molnar07800602009-04-20 15:00:56 +0200154 int counter;
155
Ingo Molnar07800602009-04-20 15:00:56 +0200156 for (counter = 1; counter < nr_counters-1; counter++)
157 weight *= sym->count[counter];
158
159 weight /= (sym->count[counter] + 1);
160
161 return weight;
162}
163
Ingo Molnar07800602009-04-20 15:00:56 +0200164static long events;
165static long userspace_events;
166static const char CONSOLE_CLEAR[] = "";
167
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300168static void __list_insert_active_sym(struct sym_entry *syme)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300169{
170 list_add(&syme->node, &active_symbols);
171}
172
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300173static void list_remove_active_sym(struct sym_entry *syme)
174{
175 pthread_mutex_lock(&active_symbols_lock);
176 list_del_init(&syme->node);
177 pthread_mutex_unlock(&active_symbols_lock);
178}
179
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300180static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
181{
182 struct rb_node **p = &tree->rb_node;
183 struct rb_node *parent = NULL;
184 struct sym_entry *iter;
185
186 while (*p != NULL) {
187 parent = *p;
188 iter = rb_entry(parent, struct sym_entry, rb_node);
189
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300190 if (se->weight > iter->weight)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300191 p = &(*p)->rb_left;
192 else
193 p = &(*p)->rb_right;
194 }
195
196 rb_link_node(&se->rb_node, parent, p);
197 rb_insert_color(&se->rb_node, tree);
198}
Ingo Molnar07800602009-04-20 15:00:56 +0200199
200static void print_sym_table(void)
201{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300202 int printed, j;
Ingo Molnar07800602009-04-20 15:00:56 +0200203 int counter;
204 float events_per_sec = events/delay_secs;
205 float kevents_per_sec = (events-userspace_events)/delay_secs;
206 float sum_kevents = 0.0;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300207 struct sym_entry *syme, *n;
208 struct rb_root tmp = RB_ROOT;
209 struct rb_node *nd;
Ingo Molnar07800602009-04-20 15:00:56 +0200210
211 events = userspace_events = 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200212
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300213 /* Sort the active symbols */
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300214 pthread_mutex_lock(&active_symbols_lock);
215 syme = list_entry(active_symbols.next, struct sym_entry, node);
216 pthread_mutex_unlock(&active_symbols_lock);
217
218 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
219 syme->snap_count = syme->count[0];
220 if (syme->snap_count != 0) {
221 syme->weight = sym_weight(syme);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300222 rb_insert_active_sym(&tmp, syme);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300223 sum_kevents += syme->snap_count;
Mike Galbraithd94b9432009-05-25 09:57:56 +0200224
225 for (j = 0; j < nr_counters; j++)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300226 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
227 } else
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300228 list_remove_active_sym(syme);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200229 }
230
Ingo Molnar07800602009-04-20 15:00:56 +0200231 write(1, CONSOLE_CLEAR, strlen(CONSOLE_CLEAR));
232
233 printf(
234"------------------------------------------------------------------------------\n");
Mike Galbraithf91183f2009-05-26 15:25:34 +0200235 printf( " KernelTop:%8.0f irqs/sec kernel:%4.1f%% [",
Ingo Molnar07800602009-04-20 15:00:56 +0200236 events_per_sec,
Mike Galbraithf91183f2009-05-26 15:25:34 +0200237 100.0 - (100.0*((events_per_sec-kevents_per_sec)/events_per_sec)));
Ingo Molnar07800602009-04-20 15:00:56 +0200238
239 if (nr_counters == 1)
240 printf("%d ", event_count[0]);
241
242 for (counter = 0; counter < nr_counters; counter++) {
243 if (counter)
244 printf("/");
245
246 printf("%s", event_name(counter));
247 }
248
249 printf( "], ");
250
Ingo Molnarb456bae2009-05-26 09:17:18 +0200251 if (target_pid != -1)
252 printf(" (target_pid: %d", target_pid);
Ingo Molnar07800602009-04-20 15:00:56 +0200253 else
254 printf(" (all");
255
256 if (profile_cpu != -1)
257 printf(", cpu: %d)\n", profile_cpu);
258 else {
Ingo Molnarb456bae2009-05-26 09:17:18 +0200259 if (target_pid != -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200260 printf(")\n");
261 else
262 printf(", %d CPUs)\n", nr_cpus);
263 }
264
265 printf("------------------------------------------------------------------------------\n\n");
266
267 if (nr_counters == 1)
268 printf(" events pcnt");
269 else
270 printf(" weight events pcnt");
271
272 printf(" RIP kernel function\n"
273 " ______ ______ _____ ________________ _______________\n\n"
274 );
275
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300276 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
277 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node);
278 struct symbol *sym = (struct symbol *)(syme + 1);
Ingo Molnar07800602009-04-20 15:00:56 +0200279 float pcnt;
Ingo Molnar07800602009-04-20 15:00:56 +0200280
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300281 if (++printed > 18 || syme->snap_count < count_filter)
282 continue;
Ingo Molnar07800602009-04-20 15:00:56 +0200283
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300284 pcnt = 100.0 - (100.0 * ((sum_kevents - syme->snap_count) /
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300285 sum_kevents));
Mike Galbraithd94b9432009-05-25 09:57:56 +0200286
287 if (nr_counters == 1)
288 printf("%19.2f - %4.1f%% - %016llx : %s\n",
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300289 syme->weight, pcnt, sym->start, sym->name);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200290 else
291 printf("%8.1f %10ld - %4.1f%% - %016llx : %s\n",
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300292 syme->weight, syme->snap_count,
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300293 pcnt, sym->start, sym->name);
Ingo Molnar07800602009-04-20 15:00:56 +0200294 }
295
Ingo Molnar07800602009-04-20 15:00:56 +0200296 {
297 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
298
299 if (poll(&stdin_poll, 1, 0) == 1) {
300 printf("key pressed - exiting.\n");
301 exit(0);
302 }
303 }
304}
305
306static void *display_thread(void *arg)
307{
308 printf("KernelTop refresh period: %d seconds\n", delay_secs);
309
310 while (!sleep(delay_secs))
311 print_sym_table();
312
313 return NULL;
314}
315
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300316static int symbol_filter(struct dso *self, struct symbol *sym)
Ingo Molnar07800602009-04-20 15:00:56 +0200317{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300318 static int filter_match;
319 struct sym_entry *syme;
320 const char *name = sym->name;
Ingo Molnar07800602009-04-20 15:00:56 +0200321
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300322 if (!strcmp(name, "_text") ||
323 !strcmp(name, "_etext") ||
324 !strcmp(name, "_sinittext") ||
325 !strncmp("init_module", name, 11) ||
326 !strncmp("cleanup_module", name, 14) ||
327 strstr(name, "_text_start") ||
328 strstr(name, "_text_end"))
Ingo Molnar07800602009-04-20 15:00:56 +0200329 return 1;
330
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300331 syme = dso__sym_priv(self, sym);
Ingo Molnar07800602009-04-20 15:00:56 +0200332 /* Tag events to be skipped. */
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300333 if (!strcmp("default_idle", name) ||
334 !strcmp("cpu_idle", name) ||
335 !strcmp("enter_idle", name) ||
336 !strcmp("exit_idle", name) ||
337 !strcmp("mwait_idle", name))
338 syme->skip = 1;
Ingo Molnar07800602009-04-20 15:00:56 +0200339
340 if (filter_match == 1) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300341 filter_end = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200342 filter_match = -1;
343 if (filter_end - filter_start > 10000) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300344 fprintf(stderr,
345 "hm, too large filter symbol <%s> - skipping.\n",
Ingo Molnar07800602009-04-20 15:00:56 +0200346 sym_filter);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300347 fprintf(stderr, "symbol filter start: %016lx\n",
348 filter_start);
349 fprintf(stderr, " end: %016lx\n",
350 filter_end);
Ingo Molnar07800602009-04-20 15:00:56 +0200351 filter_end = filter_start = 0;
352 sym_filter = NULL;
353 sleep(1);
354 }
355 }
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300356
357 if (filter_match == 0 && sym_filter && !strcmp(name, sym_filter)) {
Ingo Molnar07800602009-04-20 15:00:56 +0200358 filter_match = 1;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300359 filter_start = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200360 }
361
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300362
Ingo Molnar07800602009-04-20 15:00:56 +0200363 return 0;
364}
365
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300366static int parse_symbols(void)
Ingo Molnar07800602009-04-20 15:00:56 +0200367{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300368 struct rb_node *node;
369 struct symbol *sym;
Ingo Molnar07800602009-04-20 15:00:56 +0200370
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300371 kernel_dso = dso__new("[kernel]", sizeof(struct sym_entry));
372 if (kernel_dso == NULL)
373 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200374
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300375 if (dso__load_kernel(kernel_dso, NULL, symbol_filter) != 0)
376 goto out_delete_dso;
Ingo Molnar07800602009-04-20 15:00:56 +0200377
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300378 node = rb_first(&kernel_dso->syms);
379 sym = rb_entry(node, struct symbol, rb_node);
380 min_ip = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200381
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300382 node = rb_last(&kernel_dso->syms);
383 sym = rb_entry(node, struct symbol, rb_node);
Mike Galbraithda417a72009-05-29 08:23:16 +0200384 max_ip = sym->end;
Ingo Molnar07800602009-04-20 15:00:56 +0200385
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300386 if (dump_symtab)
Mike Galbraitha3ec8d72009-05-29 06:46:46 +0200387 dso__fprintf(kernel_dso, stderr);
Ingo Molnar07800602009-04-20 15:00:56 +0200388
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300389 return 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200390
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300391out_delete_dso:
392 dso__delete(kernel_dso);
393 kernel_dso = NULL;
394 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200395}
396
Ingo Molnar07800602009-04-20 15:00:56 +0200397#define TRACE_COUNT 3
398
Ingo Molnar07800602009-04-20 15:00:56 +0200399/*
400 * Binary search in the histogram table and record the hit:
401 */
402static void record_ip(uint64_t ip, int counter)
403{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300404 struct symbol *sym = dso__find_symbol(kernel_dso, ip);
Ingo Molnar07800602009-04-20 15:00:56 +0200405
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300406 if (sym != NULL) {
407 struct sym_entry *syme = dso__sym_priv(kernel_dso, sym);
Ingo Molnar07800602009-04-20 15:00:56 +0200408
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300409 if (!syme->skip) {
410 syme->count[counter]++;
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300411 pthread_mutex_lock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300412 if (list_empty(&syme->node) || !syme->node.next)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300413 __list_insert_active_sym(syme);
414 pthread_mutex_unlock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300415 return;
Ingo Molnar07800602009-04-20 15:00:56 +0200416 }
Ingo Molnar07800602009-04-20 15:00:56 +0200417 }
418
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300419 events--;
Ingo Molnar07800602009-04-20 15:00:56 +0200420}
421
422static void process_event(uint64_t ip, int counter)
423{
424 events++;
425
426 if (ip < min_ip || ip > max_ip) {
427 userspace_events++;
428 return;
429 }
430
431 record_ip(ip, counter);
432}
433
Ingo Molnar07800602009-04-20 15:00:56 +0200434struct mmap_data {
435 int counter;
436 void *base;
437 unsigned int mask;
438 unsigned int prev;
439};
440
441static unsigned int mmap_read_head(struct mmap_data *md)
442{
443 struct perf_counter_mmap_page *pc = md->base;
444 int head;
445
446 head = pc->data_head;
447 rmb();
448
449 return head;
450}
451
452struct timeval last_read, this_read;
453
454static void mmap_read(struct mmap_data *md)
455{
456 unsigned int head = mmap_read_head(md);
457 unsigned int old = md->prev;
458 unsigned char *data = md->base + page_size;
459 int diff;
460
461 gettimeofday(&this_read, NULL);
462
463 /*
464 * If we're further behind than half the buffer, there's a chance
465 * the writer will bite our tail and screw up the events under us.
466 *
467 * If we somehow ended up ahead of the head, we got messed up.
468 *
469 * In either case, truncate and restart at head.
470 */
471 diff = head - old;
472 if (diff > md->mask / 2 || diff < 0) {
473 struct timeval iv;
474 unsigned long msecs;
475
476 timersub(&this_read, &last_read, &iv);
477 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
478
479 fprintf(stderr, "WARNING: failed to keep up with mmap data."
480 " Last read %lu msecs ago.\n", msecs);
481
482 /*
483 * head points to a known good entry, start there.
484 */
485 old = head;
486 }
487
488 last_read = this_read;
489
490 for (; old != head;) {
491 struct ip_event {
492 struct perf_event_header header;
493 __u64 ip;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200494 __u32 pid, target_pid;
Ingo Molnar07800602009-04-20 15:00:56 +0200495 };
496 struct mmap_event {
497 struct perf_event_header header;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200498 __u32 pid, target_pid;
Ingo Molnar07800602009-04-20 15:00:56 +0200499 __u64 start;
500 __u64 len;
501 __u64 pgoff;
502 char filename[PATH_MAX];
503 };
504
505 typedef union event_union {
506 struct perf_event_header header;
507 struct ip_event ip;
508 struct mmap_event mmap;
509 } event_t;
510
511 event_t *event = (event_t *)&data[old & md->mask];
512
513 event_t event_copy;
514
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200515 size_t size = event->header.size;
Ingo Molnar07800602009-04-20 15:00:56 +0200516
517 /*
518 * Event straddles the mmap boundary -- header should always
519 * be inside due to u64 alignment of output.
520 */
521 if ((old & md->mask) + size != ((old + size) & md->mask)) {
522 unsigned int offset = old;
523 unsigned int len = min(sizeof(*event), size), cpy;
524 void *dst = &event_copy;
525
526 do {
527 cpy = min(md->mask + 1 - (offset & md->mask), len);
528 memcpy(dst, &data[offset & md->mask], cpy);
529 offset += cpy;
530 dst += cpy;
531 len -= cpy;
532 } while (len);
533
534 event = &event_copy;
535 }
536
537 old += size;
538
539 if (event->header.misc & PERF_EVENT_MISC_OVERFLOW) {
540 if (event->header.type & PERF_RECORD_IP)
541 process_event(event->ip.ip, md->counter);
542 } else {
543 switch (event->header.type) {
544 case PERF_EVENT_MMAP:
545 case PERF_EVENT_MUNMAP:
546 printf("%s: %Lu %Lu %Lu %s\n",
547 event->header.type == PERF_EVENT_MMAP
548 ? "mmap" : "munmap",
549 event->mmap.start,
550 event->mmap.len,
551 event->mmap.pgoff,
552 event->mmap.filename);
553 break;
554 }
555 }
556 }
557
558 md->prev = old;
559}
560
Mike Galbraithc2990a22009-05-24 08:35:49 +0200561static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
562static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
563
Ingo Molnarb456bae2009-05-26 09:17:18 +0200564static int __cmd_top(void)
Ingo Molnar07800602009-04-20 15:00:56 +0200565{
Ingo Molnar07800602009-04-20 15:00:56 +0200566 struct perf_counter_hw_event hw_event;
567 pthread_t thread;
568 int i, counter, group_fd, nr_poll = 0;
569 unsigned int cpu;
570 int ret;
571
Ingo Molnar07800602009-04-20 15:00:56 +0200572 for (i = 0; i < nr_cpus; i++) {
573 group_fd = -1;
574 for (counter = 0; counter < nr_counters; counter++) {
575
576 cpu = profile_cpu;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200577 if (target_pid == -1 && profile_cpu == -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200578 cpu = i;
579
580 memset(&hw_event, 0, sizeof(hw_event));
581 hw_event.config = event_id[counter];
582 hw_event.irq_period = event_count[counter];
583 hw_event.record_type = PERF_RECORD_IP | PERF_RECORD_TID;
Mike Galbraithf91183f2009-05-26 15:25:34 +0200584 hw_event.nmi = 1;
Ingo Molnar07800602009-04-20 15:00:56 +0200585 hw_event.mmap = use_mmap;
586 hw_event.munmap = use_munmap;
Peter Zijlstraf5456a62009-05-15 15:19:29 +0200587 hw_event.freq = freq;
Ingo Molnar07800602009-04-20 15:00:56 +0200588
Ingo Molnarb456bae2009-05-26 09:17:18 +0200589 fd[i][counter] = sys_perf_counter_open(&hw_event, target_pid, cpu, group_fd, 0);
Ingo Molnar07800602009-04-20 15:00:56 +0200590 if (fd[i][counter] < 0) {
591 int err = errno;
592 printf("kerneltop error: syscall returned with %d (%s)\n",
593 fd[i][counter], strerror(err));
594 if (err == EPERM)
595 printf("Are you root?\n");
596 exit(-1);
597 }
598 assert(fd[i][counter] >= 0);
599 fcntl(fd[i][counter], F_SETFL, O_NONBLOCK);
600
601 /*
602 * First counter acts as the group leader:
603 */
604 if (group && group_fd == -1)
605 group_fd = fd[i][counter];
606
607 event_array[nr_poll].fd = fd[i][counter];
608 event_array[nr_poll].events = POLLIN;
609 nr_poll++;
610
611 mmap_array[i][counter].counter = counter;
612 mmap_array[i][counter].prev = 0;
613 mmap_array[i][counter].mask = mmap_pages*page_size - 1;
614 mmap_array[i][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
615 PROT_READ, MAP_SHARED, fd[i][counter], 0);
616 if (mmap_array[i][counter].base == MAP_FAILED) {
617 printf("kerneltop error: failed to mmap with %d (%s)\n",
618 errno, strerror(errno));
619 exit(-1);
620 }
621 }
622 }
623
624 if (pthread_create(&thread, NULL, display_thread, NULL)) {
625 printf("Could not create display thread.\n");
626 exit(-1);
627 }
628
629 if (realtime_prio) {
630 struct sched_param param;
631
632 param.sched_priority = realtime_prio;
633 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
634 printf("Could not set realtime priority.\n");
635 exit(-1);
636 }
637 }
638
639 while (1) {
640 int hits = events;
641
642 for (i = 0; i < nr_cpus; i++) {
643 for (counter = 0; counter < nr_counters; counter++)
644 mmap_read(&mmap_array[i][counter]);
645 }
646
647 if (hits == events)
648 ret = poll(event_array, nr_poll, 100);
649 }
650
651 return 0;
652}
Ingo Molnarb456bae2009-05-26 09:17:18 +0200653
654static const char * const top_usage[] = {
655 "perf top [<options>]",
656 NULL
657};
658
659static char events_help_msg[EVENTS_HELP_MAX];
660
661static const struct option options[] = {
662 OPT_CALLBACK('e', "event", NULL, "event",
663 events_help_msg, parse_events),
664 OPT_INTEGER('c', "count", &default_interval,
665 "event period to sample"),
666 OPT_INTEGER('p', "pid", &target_pid,
667 "profile events on existing pid"),
668 OPT_BOOLEAN('a', "all-cpus", &system_wide,
669 "system-wide collection from all CPUs"),
670 OPT_INTEGER('C', "CPU", &profile_cpu,
671 "CPU to profile on"),
672 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
673 "number of mmap data pages"),
674 OPT_INTEGER('r', "realtime", &realtime_prio,
675 "collect data with this RT SCHED_FIFO priority"),
Mike Galbraithdb20c002009-05-26 15:25:34 +0200676 OPT_INTEGER('d', "delay", &delay_secs,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200677 "number of seconds to delay between refreshes"),
678 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
679 "dump the symbol table used for profiling"),
680 OPT_INTEGER('f', "--count-filter", &count_filter,
681 "only display functions with more events than this"),
682 OPT_BOOLEAN('g', "group", &group,
683 "put the counters into a counter group"),
684 OPT_STRING('s', "sym-filter", &sym_filter, "pattern",
685 "only display symbols matchig this pattern"),
686 OPT_BOOLEAN('z', "zero", &group,
687 "zero history across updates"),
688 OPT_BOOLEAN('M', "use-mmap", &use_mmap,
689 "track mmap events"),
690 OPT_BOOLEAN('U', "use-munmap", &use_munmap,
691 "track munmap events"),
692 OPT_INTEGER('F', "--freq", &freq,
693 "profile at this frequency"),
694 OPT_END()
695};
696
697int cmd_top(int argc, const char **argv, const char *prefix)
698{
699 int counter;
700
701 page_size = sysconf(_SC_PAGE_SIZE);
702
703 create_events_help(events_help_msg);
704 memcpy(event_id, default_event_id, sizeof(default_event_id));
705
706 argc = parse_options(argc, argv, options, top_usage, 0);
707 if (argc)
708 usage_with_options(top_usage, options);
709
710 if (freq) {
711 default_interval = freq;
712 freq = 1;
713 }
714
715 /* CPU and PID are mutually exclusive */
716 if (target_pid != -1 && profile_cpu != -1) {
717 printf("WARNING: PID switch overriding CPU\n");
718 sleep(1);
719 profile_cpu = -1;
720 }
721
722 if (!nr_counters) {
723 nr_counters = 1;
724 event_id[0] = 0;
725 }
726
727 for (counter = 0; counter < nr_counters; counter++) {
728 if (event_count[counter])
729 continue;
730
731 event_count[counter] = default_interval;
732 }
733
734 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
735 assert(nr_cpus <= MAX_NR_CPUS);
736 assert(nr_cpus >= 0);
737
738 if (target_pid != -1 || profile_cpu != -1)
739 nr_cpus = 1;
740
741 parse_symbols();
742
743 return __cmd_top();
744}