blob: 31c00ba99b1418426b8ee73c689723546db4eb89 [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 Molnar8fc03212009-06-04 15:19:47 +020024#include "util/color.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020025#include "util/util.h"
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030026#include "util/rbtree.h"
Ingo Molnarb456bae2009-05-26 09:17:18 +020027#include "util/parse-options.h"
28#include "util/parse-events.h"
Ingo Molnar07800602009-04-20 15:00:56 +020029
Ingo Molnar07800602009-04-20 15:00:56 +020030#include <assert.h>
31#include <fcntl.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020032
Ingo Molnar07800602009-04-20 15:00:56 +020033#include <stdio.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020034
Ingo Molnar07800602009-04-20 15:00:56 +020035#include <errno.h>
Ingo Molnar07800602009-04-20 15:00:56 +020036#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
Ingo Molnar07800602009-04-20 15:00:56 +020051static int system_wide = 0;
52
Ingo Molnarb456bae2009-05-26 09:17:18 +020053static __u64 default_event_id[MAX_COUNTERS] = {
Ingo Molnar07800602009-04-20 15:00:56 +020054 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_TASK_CLOCK),
55 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_CONTEXT_SWITCHES),
56 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_CPU_MIGRATIONS),
57 EID(PERF_TYPE_SOFTWARE, PERF_COUNT_PAGE_FAULTS),
58
59 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CPU_CYCLES),
60 EID(PERF_TYPE_HARDWARE, PERF_COUNT_INSTRUCTIONS),
61 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CACHE_REFERENCES),
62 EID(PERF_TYPE_HARDWARE, PERF_COUNT_CACHE_MISSES),
63};
64static int default_interval = 100000;
65static int event_count[MAX_COUNTERS];
66static int fd[MAX_NR_CPUS][MAX_COUNTERS];
67
Ingo Molnar6e53cdf2009-06-04 08:53:05 +020068static __u64 count_filter = 5;
69static int print_entries = 15;
Ingo Molnar07800602009-04-20 15:00:56 +020070
Ingo Molnar6e53cdf2009-06-04 08:53:05 +020071static int target_pid = -1;
Ingo Molnar07800602009-04-20 15:00:56 +020072static int profile_cpu = -1;
73static int nr_cpus = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020074static unsigned int realtime_prio = 0;
75static int group = 0;
76static unsigned int page_size;
77static unsigned int mmap_pages = 16;
Peter Zijlstraf5456a62009-05-15 15:19:29 +020078static int freq = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020079
Ingo Molnar07800602009-04-20 15:00:56 +020080static char *sym_filter;
81static unsigned long filter_start;
82static unsigned long filter_end;
83
84static int delay_secs = 2;
85static int zero;
86static int dump_symtab;
87
Ingo Molnarddcacfa2009-04-20 15:37:32 +020088static const unsigned int default_count[] = {
Ingo Molnar07800602009-04-20 15:00:56 +020089 1000000,
90 1000000,
91 10000,
92 10000,
93 1000000,
94 10000,
95};
96
Ingo Molnar07800602009-04-20 15:00:56 +020097/*
98 * Symbols
99 */
100
101static uint64_t min_ip;
102static uint64_t max_ip = -1ll;
103
104struct sym_entry {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300105 struct rb_node rb_node;
106 struct list_head node;
Ingo Molnar07800602009-04-20 15:00:56 +0200107 unsigned long count[MAX_COUNTERS];
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300108 unsigned long snap_count;
109 double weight;
Ingo Molnar07800602009-04-20 15:00:56 +0200110 int skip;
Ingo Molnar07800602009-04-20 15:00:56 +0200111};
112
Ingo Molnar07800602009-04-20 15:00:56 +0200113struct sym_entry *sym_filter_entry;
114
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300115struct dso *kernel_dso;
116
117/*
118 * Symbols will be added here in record_ip and will get out
119 * after decayed.
120 */
121static LIST_HEAD(active_symbols);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300122static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnar07800602009-04-20 15:00:56 +0200123
Ingo Molnar07800602009-04-20 15:00:56 +0200124/*
125 * Ordering weight: count-1 * count-2 * ... / count-n
126 */
127static double sym_weight(const struct sym_entry *sym)
128{
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300129 double weight = sym->snap_count;
Ingo Molnar07800602009-04-20 15:00:56 +0200130 int counter;
131
Ingo Molnar07800602009-04-20 15:00:56 +0200132 for (counter = 1; counter < nr_counters-1; counter++)
133 weight *= sym->count[counter];
134
135 weight /= (sym->count[counter] + 1);
136
137 return weight;
138}
139
Ingo Molnar07800602009-04-20 15:00:56 +0200140static long events;
141static long userspace_events;
142static const char CONSOLE_CLEAR[] = "";
143
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300144static void __list_insert_active_sym(struct sym_entry *syme)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300145{
146 list_add(&syme->node, &active_symbols);
147}
148
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300149static void list_remove_active_sym(struct sym_entry *syme)
150{
151 pthread_mutex_lock(&active_symbols_lock);
152 list_del_init(&syme->node);
153 pthread_mutex_unlock(&active_symbols_lock);
154}
155
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300156static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
157{
158 struct rb_node **p = &tree->rb_node;
159 struct rb_node *parent = NULL;
160 struct sym_entry *iter;
161
162 while (*p != NULL) {
163 parent = *p;
164 iter = rb_entry(parent, struct sym_entry, rb_node);
165
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300166 if (se->weight > iter->weight)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300167 p = &(*p)->rb_left;
168 else
169 p = &(*p)->rb_right;
170 }
171
172 rb_link_node(&se->rb_node, parent, p);
173 rb_insert_color(&se->rb_node, tree);
174}
Ingo Molnar07800602009-04-20 15:00:56 +0200175
176static void print_sym_table(void)
177{
Ingo Molnar233f0b92009-06-03 21:48:40 +0200178 int printed = 0, j;
Ingo Molnar07800602009-04-20 15:00:56 +0200179 int counter;
180 float events_per_sec = events/delay_secs;
181 float kevents_per_sec = (events-userspace_events)/delay_secs;
182 float sum_kevents = 0.0;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300183 struct sym_entry *syme, *n;
184 struct rb_root tmp = RB_ROOT;
185 struct rb_node *nd;
Ingo Molnar07800602009-04-20 15:00:56 +0200186
187 events = userspace_events = 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200188
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300189 /* Sort the active symbols */
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300190 pthread_mutex_lock(&active_symbols_lock);
191 syme = list_entry(active_symbols.next, struct sym_entry, node);
192 pthread_mutex_unlock(&active_symbols_lock);
193
194 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
195 syme->snap_count = syme->count[0];
196 if (syme->snap_count != 0) {
197 syme->weight = sym_weight(syme);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300198 rb_insert_active_sym(&tmp, syme);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300199 sum_kevents += syme->snap_count;
Mike Galbraithd94b9432009-05-25 09:57:56 +0200200
201 for (j = 0; j < nr_counters; j++)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300202 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
203 } else
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300204 list_remove_active_sym(syme);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200205 }
206
Ingo Molnar07800602009-04-20 15:00:56 +0200207 write(1, CONSOLE_CLEAR, strlen(CONSOLE_CLEAR));
208
209 printf(
210"------------------------------------------------------------------------------\n");
Ingo Molnarf2521b62009-06-03 19:17:25 +0200211 printf( " PerfTop:%8.0f irqs/sec kernel:%4.1f%% [",
Ingo Molnar07800602009-04-20 15:00:56 +0200212 events_per_sec,
Mike Galbraithf91183f2009-05-26 15:25:34 +0200213 100.0 - (100.0*((events_per_sec-kevents_per_sec)/events_per_sec)));
Ingo Molnar07800602009-04-20 15:00:56 +0200214
215 if (nr_counters == 1)
216 printf("%d ", event_count[0]);
217
218 for (counter = 0; counter < nr_counters; counter++) {
219 if (counter)
220 printf("/");
221
222 printf("%s", event_name(counter));
223 }
224
225 printf( "], ");
226
Ingo Molnarb456bae2009-05-26 09:17:18 +0200227 if (target_pid != -1)
228 printf(" (target_pid: %d", target_pid);
Ingo Molnar07800602009-04-20 15:00:56 +0200229 else
230 printf(" (all");
231
232 if (profile_cpu != -1)
233 printf(", cpu: %d)\n", profile_cpu);
234 else {
Ingo Molnarb456bae2009-05-26 09:17:18 +0200235 if (target_pid != -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200236 printf(")\n");
237 else
238 printf(", %d CPUs)\n", nr_cpus);
239 }
240
241 printf("------------------------------------------------------------------------------\n\n");
242
243 if (nr_counters == 1)
244 printf(" events pcnt");
245 else
246 printf(" weight events pcnt");
247
248 printf(" RIP kernel function\n"
249 " ______ ______ _____ ________________ _______________\n\n"
250 );
251
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300252 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
253 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node);
254 struct symbol *sym = (struct symbol *)(syme + 1);
Ingo Molnar8fc03212009-06-04 15:19:47 +0200255 char *color = PERF_COLOR_NORMAL;
256 double 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
Ingo Molnar8fc03212009-06-04 15:19:47 +0200264 /*
265 * We color high-overhead entries in red, low-overhead
266 * entries in green - and keep the middle ground normal:
267 */
268 if (pcnt >= 5.0)
269 color = PERF_COLOR_RED;
270 if (pcnt < 0.5)
271 color = PERF_COLOR_GREEN;
272
Mike Galbraithd94b9432009-05-25 09:57:56 +0200273 if (nr_counters == 1)
Ingo Molnar8fc03212009-06-04 15:19:47 +0200274 printf("%19.2f - ", syme->weight);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200275 else
Ingo Molnar8fc03212009-06-04 15:19:47 +0200276 printf("%8.1f %10ld - ", syme->weight, syme->snap_count);
277
278 color_fprintf(stdout, color, "%4.1f%%", pcnt);
279 printf(" - %016llx : %s\n", sym->start, sym->name);
Ingo Molnar07800602009-04-20 15:00:56 +0200280 }
281
Ingo Molnar07800602009-04-20 15:00:56 +0200282 {
283 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
284
285 if (poll(&stdin_poll, 1, 0) == 1) {
286 printf("key pressed - exiting.\n");
287 exit(0);
288 }
289 }
290}
291
292static void *display_thread(void *arg)
293{
Ingo Molnarf2521b62009-06-03 19:17:25 +0200294 printf("PerfTop refresh period: %d seconds\n", delay_secs);
Ingo Molnar07800602009-04-20 15:00:56 +0200295
296 while (!sleep(delay_secs))
297 print_sym_table();
298
299 return NULL;
300}
301
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300302static int symbol_filter(struct dso *self, struct symbol *sym)
Ingo Molnar07800602009-04-20 15:00:56 +0200303{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300304 static int filter_match;
305 struct sym_entry *syme;
306 const char *name = sym->name;
Ingo Molnar07800602009-04-20 15:00:56 +0200307
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300308 if (!strcmp(name, "_text") ||
309 !strcmp(name, "_etext") ||
310 !strcmp(name, "_sinittext") ||
311 !strncmp("init_module", name, 11) ||
312 !strncmp("cleanup_module", name, 14) ||
313 strstr(name, "_text_start") ||
314 strstr(name, "_text_end"))
Ingo Molnar07800602009-04-20 15:00:56 +0200315 return 1;
316
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300317 syme = dso__sym_priv(self, sym);
Ingo Molnar07800602009-04-20 15:00:56 +0200318 /* Tag events to be skipped. */
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300319 if (!strcmp("default_idle", name) ||
320 !strcmp("cpu_idle", name) ||
321 !strcmp("enter_idle", name) ||
322 !strcmp("exit_idle", name) ||
323 !strcmp("mwait_idle", name))
324 syme->skip = 1;
Ingo Molnar07800602009-04-20 15:00:56 +0200325
326 if (filter_match == 1) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300327 filter_end = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200328 filter_match = -1;
329 if (filter_end - filter_start > 10000) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300330 fprintf(stderr,
331 "hm, too large filter symbol <%s> - skipping.\n",
Ingo Molnar07800602009-04-20 15:00:56 +0200332 sym_filter);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300333 fprintf(stderr, "symbol filter start: %016lx\n",
334 filter_start);
335 fprintf(stderr, " end: %016lx\n",
336 filter_end);
Ingo Molnar07800602009-04-20 15:00:56 +0200337 filter_end = filter_start = 0;
338 sym_filter = NULL;
339 sleep(1);
340 }
341 }
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300342
343 if (filter_match == 0 && sym_filter && !strcmp(name, sym_filter)) {
Ingo Molnar07800602009-04-20 15:00:56 +0200344 filter_match = 1;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300345 filter_start = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200346 }
347
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300348
Ingo Molnar07800602009-04-20 15:00:56 +0200349 return 0;
350}
351
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300352static int parse_symbols(void)
Ingo Molnar07800602009-04-20 15:00:56 +0200353{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300354 struct rb_node *node;
355 struct symbol *sym;
Ingo Molnar07800602009-04-20 15:00:56 +0200356
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300357 kernel_dso = dso__new("[kernel]", sizeof(struct sym_entry));
358 if (kernel_dso == NULL)
359 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200360
Ingo Molnarbd741372009-06-04 14:13:04 +0200361 if (dso__load_kernel(kernel_dso, NULL, symbol_filter, 1) != 0)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300362 goto out_delete_dso;
Ingo Molnar07800602009-04-20 15:00:56 +0200363
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300364 node = rb_first(&kernel_dso->syms);
365 sym = rb_entry(node, struct symbol, rb_node);
366 min_ip = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200367
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300368 node = rb_last(&kernel_dso->syms);
369 sym = rb_entry(node, struct symbol, rb_node);
Mike Galbraithda417a72009-05-29 08:23:16 +0200370 max_ip = sym->end;
Ingo Molnar07800602009-04-20 15:00:56 +0200371
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300372 if (dump_symtab)
Mike Galbraitha3ec8d72009-05-29 06:46:46 +0200373 dso__fprintf(kernel_dso, stderr);
Ingo Molnar07800602009-04-20 15:00:56 +0200374
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300375 return 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200376
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300377out_delete_dso:
378 dso__delete(kernel_dso);
379 kernel_dso = NULL;
380 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200381}
382
Ingo Molnar07800602009-04-20 15:00:56 +0200383#define TRACE_COUNT 3
384
Ingo Molnar07800602009-04-20 15:00:56 +0200385/*
386 * Binary search in the histogram table and record the hit:
387 */
388static void record_ip(uint64_t ip, int counter)
389{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300390 struct symbol *sym = dso__find_symbol(kernel_dso, ip);
Ingo Molnar07800602009-04-20 15:00:56 +0200391
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300392 if (sym != NULL) {
393 struct sym_entry *syme = dso__sym_priv(kernel_dso, sym);
Ingo Molnar07800602009-04-20 15:00:56 +0200394
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300395 if (!syme->skip) {
396 syme->count[counter]++;
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300397 pthread_mutex_lock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300398 if (list_empty(&syme->node) || !syme->node.next)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300399 __list_insert_active_sym(syme);
400 pthread_mutex_unlock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300401 return;
Ingo Molnar07800602009-04-20 15:00:56 +0200402 }
Ingo Molnar07800602009-04-20 15:00:56 +0200403 }
404
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300405 events--;
Ingo Molnar07800602009-04-20 15:00:56 +0200406}
407
408static void process_event(uint64_t ip, int counter)
409{
410 events++;
411
412 if (ip < min_ip || ip > max_ip) {
413 userspace_events++;
414 return;
415 }
416
417 record_ip(ip, counter);
418}
419
Ingo Molnar07800602009-04-20 15:00:56 +0200420struct mmap_data {
421 int counter;
422 void *base;
423 unsigned int mask;
424 unsigned int prev;
425};
426
427static unsigned int mmap_read_head(struct mmap_data *md)
428{
429 struct perf_counter_mmap_page *pc = md->base;
430 int head;
431
432 head = pc->data_head;
433 rmb();
434
435 return head;
436}
437
438struct timeval last_read, this_read;
439
440static void mmap_read(struct mmap_data *md)
441{
442 unsigned int head = mmap_read_head(md);
443 unsigned int old = md->prev;
444 unsigned char *data = md->base + page_size;
445 int diff;
446
447 gettimeofday(&this_read, NULL);
448
449 /*
450 * If we're further behind than half the buffer, there's a chance
451 * the writer will bite our tail and screw up the events under us.
452 *
453 * If we somehow ended up ahead of the head, we got messed up.
454 *
455 * In either case, truncate and restart at head.
456 */
457 diff = head - old;
458 if (diff > md->mask / 2 || diff < 0) {
459 struct timeval iv;
460 unsigned long msecs;
461
462 timersub(&this_read, &last_read, &iv);
463 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
464
465 fprintf(stderr, "WARNING: failed to keep up with mmap data."
466 " Last read %lu msecs ago.\n", msecs);
467
468 /*
469 * head points to a known good entry, start there.
470 */
471 old = head;
472 }
473
474 last_read = this_read;
475
476 for (; old != head;) {
477 struct ip_event {
478 struct perf_event_header header;
479 __u64 ip;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200480 __u32 pid, target_pid;
Ingo Molnar07800602009-04-20 15:00:56 +0200481 };
482 struct mmap_event {
483 struct perf_event_header header;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200484 __u32 pid, target_pid;
Ingo Molnar07800602009-04-20 15:00:56 +0200485 __u64 start;
486 __u64 len;
487 __u64 pgoff;
488 char filename[PATH_MAX];
489 };
490
491 typedef union event_union {
492 struct perf_event_header header;
493 struct ip_event ip;
494 struct mmap_event mmap;
495 } event_t;
496
497 event_t *event = (event_t *)&data[old & md->mask];
498
499 event_t event_copy;
500
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200501 size_t size = event->header.size;
Ingo Molnar07800602009-04-20 15:00:56 +0200502
503 /*
504 * Event straddles the mmap boundary -- header should always
505 * be inside due to u64 alignment of output.
506 */
507 if ((old & md->mask) + size != ((old + size) & md->mask)) {
508 unsigned int offset = old;
509 unsigned int len = min(sizeof(*event), size), cpy;
510 void *dst = &event_copy;
511
512 do {
513 cpy = min(md->mask + 1 - (offset & md->mask), len);
514 memcpy(dst, &data[offset & md->mask], cpy);
515 offset += cpy;
516 dst += cpy;
517 len -= cpy;
518 } while (len);
519
520 event = &event_copy;
521 }
522
523 old += size;
524
525 if (event->header.misc & PERF_EVENT_MISC_OVERFLOW) {
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200526 if (event->header.type & PERF_SAMPLE_IP)
Ingo Molnar07800602009-04-20 15:00:56 +0200527 process_event(event->ip.ip, md->counter);
Ingo Molnar07800602009-04-20 15:00:56 +0200528 }
529 }
530
531 md->prev = old;
532}
533
Mike Galbraithc2990a22009-05-24 08:35:49 +0200534static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
535static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
536
Ingo Molnarb456bae2009-05-26 09:17:18 +0200537static int __cmd_top(void)
Ingo Molnar07800602009-04-20 15:00:56 +0200538{
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200539 struct perf_counter_attr attr;
Ingo Molnar07800602009-04-20 15:00:56 +0200540 pthread_t thread;
541 int i, counter, group_fd, nr_poll = 0;
542 unsigned int cpu;
543 int ret;
544
Ingo Molnar07800602009-04-20 15:00:56 +0200545 for (i = 0; i < nr_cpus; i++) {
546 group_fd = -1;
547 for (counter = 0; counter < nr_counters; counter++) {
548
549 cpu = profile_cpu;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200550 if (target_pid == -1 && profile_cpu == -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200551 cpu = i;
552
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200553 memset(&attr, 0, sizeof(attr));
554 attr.config = event_id[counter];
555 attr.sample_period = event_count[counter];
556 attr.sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200557 attr.freq = freq;
Ingo Molnar07800602009-04-20 15:00:56 +0200558
Peter Zijlstrac70975b2009-06-02 17:38:21 +0200559 fd[i][counter] = sys_perf_counter_open(&attr, target_pid, cpu, group_fd, 0);
Ingo Molnar07800602009-04-20 15:00:56 +0200560 if (fd[i][counter] < 0) {
561 int err = errno;
Ingo Molnarf2521b62009-06-03 19:17:25 +0200562
563 error("syscall returned with %d (%s)\n",
Ingo Molnar07800602009-04-20 15:00:56 +0200564 fd[i][counter], strerror(err));
565 if (err == EPERM)
566 printf("Are you root?\n");
567 exit(-1);
568 }
569 assert(fd[i][counter] >= 0);
570 fcntl(fd[i][counter], F_SETFL, O_NONBLOCK);
571
572 /*
573 * First counter acts as the group leader:
574 */
575 if (group && group_fd == -1)
576 group_fd = fd[i][counter];
577
578 event_array[nr_poll].fd = fd[i][counter];
579 event_array[nr_poll].events = POLLIN;
580 nr_poll++;
581
582 mmap_array[i][counter].counter = counter;
583 mmap_array[i][counter].prev = 0;
584 mmap_array[i][counter].mask = mmap_pages*page_size - 1;
585 mmap_array[i][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
586 PROT_READ, MAP_SHARED, fd[i][counter], 0);
Ingo Molnarf2521b62009-06-03 19:17:25 +0200587 if (mmap_array[i][counter].base == MAP_FAILED)
588 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
Ingo Molnar07800602009-04-20 15:00:56 +0200589 }
590 }
591
592 if (pthread_create(&thread, NULL, display_thread, NULL)) {
593 printf("Could not create display thread.\n");
594 exit(-1);
595 }
596
597 if (realtime_prio) {
598 struct sched_param param;
599
600 param.sched_priority = realtime_prio;
601 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
602 printf("Could not set realtime priority.\n");
603 exit(-1);
604 }
605 }
606
607 while (1) {
608 int hits = events;
609
610 for (i = 0; i < nr_cpus; i++) {
611 for (counter = 0; counter < nr_counters; counter++)
612 mmap_read(&mmap_array[i][counter]);
613 }
614
615 if (hits == events)
616 ret = poll(event_array, nr_poll, 100);
617 }
618
619 return 0;
620}
Ingo Molnarb456bae2009-05-26 09:17:18 +0200621
622static const char * const top_usage[] = {
623 "perf top [<options>]",
624 NULL
625};
626
627static char events_help_msg[EVENTS_HELP_MAX];
628
629static const struct option options[] = {
630 OPT_CALLBACK('e', "event", NULL, "event",
631 events_help_msg, parse_events),
632 OPT_INTEGER('c', "count", &default_interval,
633 "event period to sample"),
634 OPT_INTEGER('p', "pid", &target_pid,
635 "profile events on existing pid"),
636 OPT_BOOLEAN('a', "all-cpus", &system_wide,
637 "system-wide collection from all CPUs"),
638 OPT_INTEGER('C', "CPU", &profile_cpu,
639 "CPU to profile on"),
640 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
641 "number of mmap data pages"),
642 OPT_INTEGER('r', "realtime", &realtime_prio,
643 "collect data with this RT SCHED_FIFO priority"),
Mike Galbraithdb20c002009-05-26 15:25:34 +0200644 OPT_INTEGER('d', "delay", &delay_secs,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200645 "number of seconds to delay between refreshes"),
646 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
647 "dump the symbol table used for profiling"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200648 OPT_INTEGER('f', "count-filter", &count_filter,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200649 "only display functions with more events than this"),
650 OPT_BOOLEAN('g', "group", &group,
651 "put the counters into a counter group"),
652 OPT_STRING('s', "sym-filter", &sym_filter, "pattern",
653 "only display symbols matchig this pattern"),
654 OPT_BOOLEAN('z', "zero", &group,
655 "zero history across updates"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200656 OPT_INTEGER('F', "freq", &freq,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200657 "profile at this frequency"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200658 OPT_INTEGER('E', "entries", &print_entries,
659 "display this many functions"),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200660 OPT_END()
661};
662
663int cmd_top(int argc, const char **argv, const char *prefix)
664{
665 int counter;
666
667 page_size = sysconf(_SC_PAGE_SIZE);
668
669 create_events_help(events_help_msg);
670 memcpy(event_id, default_event_id, sizeof(default_event_id));
671
672 argc = parse_options(argc, argv, options, top_usage, 0);
673 if (argc)
674 usage_with_options(top_usage, options);
675
676 if (freq) {
677 default_interval = freq;
678 freq = 1;
679 }
680
681 /* CPU and PID are mutually exclusive */
682 if (target_pid != -1 && profile_cpu != -1) {
683 printf("WARNING: PID switch overriding CPU\n");
684 sleep(1);
685 profile_cpu = -1;
686 }
687
688 if (!nr_counters) {
689 nr_counters = 1;
690 event_id[0] = 0;
691 }
692
693 for (counter = 0; counter < nr_counters; counter++) {
694 if (event_count[counter])
695 continue;
696
697 event_count[counter] = default_interval;
698 }
699
700 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
701 assert(nr_cpus <= MAX_NR_CPUS);
702 assert(nr_cpus >= 0);
703
704 if (target_pid != -1 || profile_cpu != -1)
705 nr_cpus = 1;
706
707 parse_symbols();
708
709 return __cmd_top();
710}