blob: aa044ea1482bf47806d220314db2eb957f6b3742 [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 Melo43cbcd82009-07-01 12:28:37 -030026#include <linux/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 Molnara21ca2c2009-06-06 09:58:57 +020051static int fd[MAX_NR_CPUS][MAX_COUNTERS];
52
Ingo Molnar07800602009-04-20 15:00:56 +020053static int system_wide = 0;
54
Ingo Molnara21ca2c2009-06-06 09:58:57 +020055static int default_interval = 100000;
Ingo Molnar07800602009-04-20 15:00:56 +020056
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100057static u64 count_filter = 5;
Ingo Molnar6e53cdf2009-06-04 08:53:05 +020058static int print_entries = 15;
Ingo Molnar07800602009-04-20 15:00:56 +020059
Ingo Molnar6e53cdf2009-06-04 08:53:05 +020060static int target_pid = -1;
Ingo Molnar07800602009-04-20 15:00:56 +020061static int profile_cpu = -1;
62static int nr_cpus = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020063static unsigned int realtime_prio = 0;
64static int group = 0;
65static unsigned int page_size;
Ingo Molnarcf1f4572009-06-05 13:27:02 +020066static unsigned int mmap_pages = 16;
67static int freq = 0;
Ingo Molnar3da297a2009-06-07 17:39:02 +020068static int verbose = 0;
Mike Galbraith42976482009-07-02 08:09:46 +020069static char *vmlinux = NULL;
Ingo Molnar07800602009-04-20 15:00:56 +020070
Ingo Molnar07800602009-04-20 15:00:56 +020071static char *sym_filter;
72static unsigned long filter_start;
73static unsigned long filter_end;
74
75static int delay_secs = 2;
76static int zero;
77static int dump_symtab;
78
Ingo Molnar07800602009-04-20 15:00:56 +020079/*
80 * Symbols
81 */
82
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100083static u64 min_ip;
84static u64 max_ip = -1ll;
Ingo Molnar07800602009-04-20 15:00:56 +020085
86struct sym_entry {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030087 struct rb_node rb_node;
88 struct list_head node;
Ingo Molnar07800602009-04-20 15:00:56 +020089 unsigned long count[MAX_COUNTERS];
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -030090 unsigned long snap_count;
91 double weight;
Ingo Molnar07800602009-04-20 15:00:56 +020092 int skip;
Ingo Molnar07800602009-04-20 15:00:56 +020093};
94
Ingo Molnar07800602009-04-20 15:00:56 +020095struct sym_entry *sym_filter_entry;
96
Ingo Molnara21ca2c2009-06-06 09:58:57 +020097struct dso *kernel_dso;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030098
99/*
100 * Symbols will be added here in record_ip and will get out
101 * after decayed.
102 */
103static LIST_HEAD(active_symbols);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300104static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnar07800602009-04-20 15:00:56 +0200105
Ingo Molnar07800602009-04-20 15:00:56 +0200106/*
107 * Ordering weight: count-1 * count-2 * ... / count-n
108 */
109static double sym_weight(const struct sym_entry *sym)
110{
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300111 double weight = sym->snap_count;
Ingo Molnar07800602009-04-20 15:00:56 +0200112 int counter;
113
Ingo Molnar07800602009-04-20 15:00:56 +0200114 for (counter = 1; counter < nr_counters-1; counter++)
115 weight *= sym->count[counter];
116
117 weight /= (sym->count[counter] + 1);
118
119 return weight;
120}
121
Ingo Molnar2debbc82009-06-05 14:29:10 +0200122static long samples;
123static long userspace_samples;
Ingo Molnar07800602009-04-20 15:00:56 +0200124static const char CONSOLE_CLEAR[] = "";
125
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300126static void __list_insert_active_sym(struct sym_entry *syme)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300127{
128 list_add(&syme->node, &active_symbols);
129}
130
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300131static void list_remove_active_sym(struct sym_entry *syme)
132{
133 pthread_mutex_lock(&active_symbols_lock);
134 list_del_init(&syme->node);
135 pthread_mutex_unlock(&active_symbols_lock);
136}
137
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300138static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
139{
140 struct rb_node **p = &tree->rb_node;
141 struct rb_node *parent = NULL;
142 struct sym_entry *iter;
143
144 while (*p != NULL) {
145 parent = *p;
146 iter = rb_entry(parent, struct sym_entry, rb_node);
147
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300148 if (se->weight > iter->weight)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300149 p = &(*p)->rb_left;
150 else
151 p = &(*p)->rb_right;
152 }
153
154 rb_link_node(&se->rb_node, parent, p);
155 rb_insert_color(&se->rb_node, tree);
156}
Ingo Molnar07800602009-04-20 15:00:56 +0200157
158static void print_sym_table(void)
159{
Ingo Molnar233f0b92009-06-03 21:48:40 +0200160 int printed = 0, j;
Ingo Molnar07800602009-04-20 15:00:56 +0200161 int counter;
Ingo Molnar2debbc82009-06-05 14:29:10 +0200162 float samples_per_sec = samples/delay_secs;
163 float ksamples_per_sec = (samples-userspace_samples)/delay_secs;
164 float sum_ksamples = 0.0;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300165 struct sym_entry *syme, *n;
166 struct rb_root tmp = RB_ROOT;
167 struct rb_node *nd;
Ingo Molnar07800602009-04-20 15:00:56 +0200168
Ingo Molnar2debbc82009-06-05 14:29:10 +0200169 samples = userspace_samples = 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200170
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300171 /* Sort the active symbols */
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300172 pthread_mutex_lock(&active_symbols_lock);
173 syme = list_entry(active_symbols.next, struct sym_entry, node);
174 pthread_mutex_unlock(&active_symbols_lock);
175
176 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
177 syme->snap_count = syme->count[0];
178 if (syme->snap_count != 0) {
179 syme->weight = sym_weight(syme);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300180 rb_insert_active_sym(&tmp, syme);
Ingo Molnar2debbc82009-06-05 14:29:10 +0200181 sum_ksamples += syme->snap_count;
Mike Galbraithd94b9432009-05-25 09:57:56 +0200182
183 for (j = 0; j < nr_counters; j++)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300184 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
185 } else
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300186 list_remove_active_sym(syme);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200187 }
188
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200189 puts(CONSOLE_CLEAR);
Ingo Molnar07800602009-04-20 15:00:56 +0200190
191 printf(
192"------------------------------------------------------------------------------\n");
Ingo Molnarf2521b62009-06-03 19:17:25 +0200193 printf( " PerfTop:%8.0f irqs/sec kernel:%4.1f%% [",
Ingo Molnar2debbc82009-06-05 14:29:10 +0200194 samples_per_sec,
195 100.0 - (100.0*((samples_per_sec-ksamples_per_sec)/samples_per_sec)));
Ingo Molnar07800602009-04-20 15:00:56 +0200196
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200197 if (nr_counters == 1) {
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000198 printf("%Ld", (u64)attrs[0].sample_period);
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200199 if (freq)
200 printf("Hz ");
201 else
202 printf(" ");
203 }
Ingo Molnar07800602009-04-20 15:00:56 +0200204
205 for (counter = 0; counter < nr_counters; counter++) {
206 if (counter)
207 printf("/");
208
209 printf("%s", event_name(counter));
210 }
211
212 printf( "], ");
213
Ingo Molnarb456bae2009-05-26 09:17:18 +0200214 if (target_pid != -1)
215 printf(" (target_pid: %d", target_pid);
Ingo Molnar07800602009-04-20 15:00:56 +0200216 else
217 printf(" (all");
218
219 if (profile_cpu != -1)
220 printf(", cpu: %d)\n", profile_cpu);
221 else {
Ingo Molnarb456bae2009-05-26 09:17:18 +0200222 if (target_pid != -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200223 printf(")\n");
224 else
225 printf(", %d CPUs)\n", nr_cpus);
226 }
227
228 printf("------------------------------------------------------------------------------\n\n");
229
230 if (nr_counters == 1)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200231 printf(" samples pcnt");
Ingo Molnar07800602009-04-20 15:00:56 +0200232 else
Ingo Molnar2debbc82009-06-05 14:29:10 +0200233 printf(" weight samples pcnt");
Ingo Molnar07800602009-04-20 15:00:56 +0200234
235 printf(" RIP kernel function\n"
Ingo Molnar2debbc82009-06-05 14:29:10 +0200236 " ______ _______ _____ ________________ _______________\n\n"
Ingo Molnar07800602009-04-20 15:00:56 +0200237 );
238
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300239 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
240 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node);
241 struct symbol *sym = (struct symbol *)(syme + 1);
Ingo Molnar8fc03212009-06-04 15:19:47 +0200242 char *color = PERF_COLOR_NORMAL;
243 double pcnt;
Ingo Molnar07800602009-04-20 15:00:56 +0200244
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200245 if (++printed > print_entries || syme->snap_count < count_filter)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300246 continue;
Ingo Molnar07800602009-04-20 15:00:56 +0200247
Ingo Molnar2debbc82009-06-05 14:29:10 +0200248 pcnt = 100.0 - (100.0 * ((sum_ksamples - syme->snap_count) /
249 sum_ksamples));
Mike Galbraithd94b9432009-05-25 09:57:56 +0200250
Ingo Molnar8fc03212009-06-04 15:19:47 +0200251 /*
Ingo Molnaraefcf372009-06-08 23:15:28 +0200252 * We color high-overhead entries in red, mid-overhead
253 * entries in green - and keep the low overhead places
254 * normal:
Ingo Molnar8fc03212009-06-04 15:19:47 +0200255 */
Ingo Molnaraefcf372009-06-08 23:15:28 +0200256 if (pcnt >= 5.0) {
Ingo Molnar8fc03212009-06-04 15:19:47 +0200257 color = PERF_COLOR_RED;
Ingo Molnaraefcf372009-06-08 23:15:28 +0200258 } else {
259 if (pcnt >= 0.5)
260 color = PERF_COLOR_GREEN;
261 }
Ingo Molnar8fc03212009-06-04 15:19:47 +0200262
Mike Galbraithd94b9432009-05-25 09:57:56 +0200263 if (nr_counters == 1)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200264 printf("%20.2f - ", syme->weight);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200265 else
Ingo Molnar2debbc82009-06-05 14:29:10 +0200266 printf("%9.1f %10ld - ", syme->weight, syme->snap_count);
Ingo Molnar8fc03212009-06-04 15:19:47 +0200267
268 color_fprintf(stdout, color, "%4.1f%%", pcnt);
Mike Galbraith42976482009-07-02 08:09:46 +0200269 printf(" - %016llx : %s", sym->start, sym->name);
270 if (sym->module)
271 printf("\t[%s]", sym->module->name);
272 printf("\n");
Ingo Molnar07800602009-04-20 15:00:56 +0200273 }
Ingo Molnar07800602009-04-20 15:00:56 +0200274}
275
Ingo Molnarf37a2912009-07-01 12:37:06 +0200276static void *display_thread(void *arg __used)
Ingo Molnar07800602009-04-20 15:00:56 +0200277{
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200278 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
279 int delay_msecs = delay_secs * 1000;
280
Ingo Molnarf2521b62009-06-03 19:17:25 +0200281 printf("PerfTop refresh period: %d seconds\n", delay_secs);
Ingo Molnar07800602009-04-20 15:00:56 +0200282
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200283 do {
Ingo Molnar07800602009-04-20 15:00:56 +0200284 print_sym_table();
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200285 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
286
287 printf("key pressed - exiting.\n");
288 exit(0);
Ingo Molnar07800602009-04-20 15:00:56 +0200289
290 return NULL;
291}
292
Anton Blanchard2ab52082009-07-01 09:00:46 +1000293/* Tag samples to be skipped. */
Ingo Molnarf37a2912009-07-01 12:37:06 +0200294static const char *skip_symbols[] = {
Anton Blanchard2ab52082009-07-01 09:00:46 +1000295 "default_idle",
296 "cpu_idle",
297 "enter_idle",
298 "exit_idle",
299 "mwait_idle",
Anton Blanchard3a3393e2009-07-01 09:00:47 +1000300 "ppc64_runlatch_off",
301 "pseries_dedicated_idle_sleep",
Anton Blanchard2ab52082009-07-01 09:00:46 +1000302 NULL
303};
304
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300305static int symbol_filter(struct dso *self, struct symbol *sym)
Ingo Molnar07800602009-04-20 15:00:56 +0200306{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300307 static int filter_match;
308 struct sym_entry *syme;
309 const char *name = sym->name;
Anton Blanchard2ab52082009-07-01 09:00:46 +1000310 int i;
Ingo Molnar07800602009-04-20 15:00:56 +0200311
Anton Blanchard3a3393e2009-07-01 09:00:47 +1000312 /*
313 * ppc64 uses function descriptors and appends a '.' to the
314 * start of every instruction address. Remove it.
315 */
316 if (name[0] == '.')
317 name++;
318
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300319 if (!strcmp(name, "_text") ||
320 !strcmp(name, "_etext") ||
321 !strcmp(name, "_sinittext") ||
322 !strncmp("init_module", name, 11) ||
323 !strncmp("cleanup_module", name, 14) ||
324 strstr(name, "_text_start") ||
325 strstr(name, "_text_end"))
Ingo Molnar07800602009-04-20 15:00:56 +0200326 return 1;
327
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300328 syme = dso__sym_priv(self, sym);
Anton Blanchard2ab52082009-07-01 09:00:46 +1000329 for (i = 0; skip_symbols[i]; i++) {
330 if (!strcmp(skip_symbols[i], name)) {
331 syme->skip = 1;
332 break;
333 }
334 }
Ingo Molnar07800602009-04-20 15:00:56 +0200335
336 if (filter_match == 1) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300337 filter_end = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200338 filter_match = -1;
339 if (filter_end - filter_start > 10000) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300340 fprintf(stderr,
341 "hm, too large filter symbol <%s> - skipping.\n",
Ingo Molnar07800602009-04-20 15:00:56 +0200342 sym_filter);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300343 fprintf(stderr, "symbol filter start: %016lx\n",
344 filter_start);
345 fprintf(stderr, " end: %016lx\n",
346 filter_end);
Ingo Molnar07800602009-04-20 15:00:56 +0200347 filter_end = filter_start = 0;
348 sym_filter = NULL;
349 sleep(1);
350 }
351 }
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300352
353 if (filter_match == 0 && sym_filter && !strcmp(name, sym_filter)) {
Ingo Molnar07800602009-04-20 15:00:56 +0200354 filter_match = 1;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300355 filter_start = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200356 }
357
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300358
Ingo Molnar07800602009-04-20 15:00:56 +0200359 return 0;
360}
361
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300362static int parse_symbols(void)
Ingo Molnar07800602009-04-20 15:00:56 +0200363{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300364 struct rb_node *node;
365 struct symbol *sym;
Mike Galbraith42976482009-07-02 08:09:46 +0200366 int modules = vmlinux ? 1 : 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200367
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300368 kernel_dso = dso__new("[kernel]", sizeof(struct sym_entry));
369 if (kernel_dso == NULL)
370 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200371
Mike Galbraith42976482009-07-02 08:09:46 +0200372 if (dso__load_kernel(kernel_dso, vmlinux, symbol_filter, verbose, modules) <= 0)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300373 goto out_delete_dso;
Ingo Molnar07800602009-04-20 15:00:56 +0200374
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300375 node = rb_first(&kernel_dso->syms);
376 sym = rb_entry(node, struct symbol, rb_node);
377 min_ip = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200378
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300379 node = rb_last(&kernel_dso->syms);
380 sym = rb_entry(node, struct symbol, rb_node);
Mike Galbraithda417a72009-05-29 08:23:16 +0200381 max_ip = sym->end;
Ingo Molnar07800602009-04-20 15:00:56 +0200382
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300383 if (dump_symtab)
Mike Galbraitha3ec8d72009-05-29 06:46:46 +0200384 dso__fprintf(kernel_dso, stderr);
Ingo Molnar07800602009-04-20 15:00:56 +0200385
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300386 return 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200387
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300388out_delete_dso:
389 dso__delete(kernel_dso);
390 kernel_dso = NULL;
391 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200392}
393
Ingo Molnar07800602009-04-20 15:00:56 +0200394#define TRACE_COUNT 3
395
Ingo Molnar07800602009-04-20 15:00:56 +0200396/*
397 * Binary search in the histogram table and record the hit:
398 */
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000399static void record_ip(u64 ip, int counter)
Ingo Molnar07800602009-04-20 15:00:56 +0200400{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300401 struct symbol *sym = dso__find_symbol(kernel_dso, ip);
Ingo Molnar07800602009-04-20 15:00:56 +0200402
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300403 if (sym != NULL) {
404 struct sym_entry *syme = dso__sym_priv(kernel_dso, sym);
Ingo Molnar07800602009-04-20 15:00:56 +0200405
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300406 if (!syme->skip) {
407 syme->count[counter]++;
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300408 pthread_mutex_lock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300409 if (list_empty(&syme->node) || !syme->node.next)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300410 __list_insert_active_sym(syme);
411 pthread_mutex_unlock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300412 return;
Ingo Molnar07800602009-04-20 15:00:56 +0200413 }
Ingo Molnar07800602009-04-20 15:00:56 +0200414 }
415
Ingo Molnar2debbc82009-06-05 14:29:10 +0200416 samples--;
Ingo Molnar07800602009-04-20 15:00:56 +0200417}
418
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200419static void process_event(u64 ip, int counter, int user)
Ingo Molnar07800602009-04-20 15:00:56 +0200420{
Ingo Molnar2debbc82009-06-05 14:29:10 +0200421 samples++;
Ingo Molnar07800602009-04-20 15:00:56 +0200422
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200423 if (user) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200424 userspace_samples++;
Ingo Molnar07800602009-04-20 15:00:56 +0200425 return;
426 }
427
428 record_ip(ip, counter);
429}
430
Ingo Molnar07800602009-04-20 15:00:56 +0200431struct mmap_data {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200432 int counter;
433 void *base;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200434 int mask;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200435 unsigned int prev;
Ingo Molnar07800602009-04-20 15:00:56 +0200436};
437
438static unsigned int mmap_read_head(struct mmap_data *md)
439{
440 struct perf_counter_mmap_page *pc = md->base;
441 int head;
442
443 head = pc->data_head;
444 rmb();
445
446 return head;
447}
448
449struct timeval last_read, this_read;
450
Frederic Weisbecker2f011902009-06-06 23:10:43 +0200451static void mmap_read_counter(struct mmap_data *md)
Ingo Molnar07800602009-04-20 15:00:56 +0200452{
453 unsigned int head = mmap_read_head(md);
454 unsigned int old = md->prev;
455 unsigned char *data = md->base + page_size;
456 int diff;
457
458 gettimeofday(&this_read, NULL);
459
460 /*
461 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200462 * the writer will bite our tail and mess up the samples under us.
Ingo Molnar07800602009-04-20 15:00:56 +0200463 *
464 * If we somehow ended up ahead of the head, we got messed up.
465 *
466 * In either case, truncate and restart at head.
467 */
468 diff = head - old;
469 if (diff > md->mask / 2 || diff < 0) {
470 struct timeval iv;
471 unsigned long msecs;
472
473 timersub(&this_read, &last_read, &iv);
474 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
475
476 fprintf(stderr, "WARNING: failed to keep up with mmap data."
477 " Last read %lu msecs ago.\n", msecs);
478
479 /*
480 * head points to a known good entry, start there.
481 */
482 old = head;
483 }
484
485 last_read = this_read;
486
487 for (; old != head;) {
488 struct ip_event {
489 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000490 u64 ip;
491 u32 pid, target_pid;
Ingo Molnar07800602009-04-20 15:00:56 +0200492 };
493 struct mmap_event {
494 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000495 u32 pid, target_pid;
496 u64 start;
497 u64 len;
498 u64 pgoff;
Ingo Molnar07800602009-04-20 15:00:56 +0200499 char filename[PATH_MAX];
500 };
501
502 typedef union event_union {
503 struct perf_event_header header;
504 struct ip_event ip;
505 struct mmap_event mmap;
506 } event_t;
507
508 event_t *event = (event_t *)&data[old & md->mask];
509
510 event_t event_copy;
511
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200512 size_t size = event->header.size;
Ingo Molnar07800602009-04-20 15:00:56 +0200513
514 /*
515 * Event straddles the mmap boundary -- header should always
516 * be inside due to u64 alignment of output.
517 */
518 if ((old & md->mask) + size != ((old + size) & md->mask)) {
519 unsigned int offset = old;
520 unsigned int len = min(sizeof(*event), size), cpy;
521 void *dst = &event_copy;
522
523 do {
524 cpy = min(md->mask + 1 - (offset & md->mask), len);
525 memcpy(dst, &data[offset & md->mask], cpy);
526 offset += cpy;
527 dst += cpy;
528 len -= cpy;
529 } while (len);
530
531 event = &event_copy;
532 }
533
534 old += size;
535
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200536 if (event->header.type == PERF_EVENT_SAMPLE) {
537 int user =
538 (event->header.misc & PERF_EVENT_MISC_CPUMODE_MASK) == PERF_EVENT_MISC_USER;
539 process_event(event->ip.ip, md->counter, user);
Ingo Molnar07800602009-04-20 15:00:56 +0200540 }
541 }
542
543 md->prev = old;
544}
545
Mike Galbraithc2990a22009-05-24 08:35:49 +0200546static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
547static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
548
Frederic Weisbecker2f011902009-06-06 23:10:43 +0200549static void mmap_read(void)
550{
551 int i, counter;
552
553 for (i = 0; i < nr_cpus; i++) {
554 for (counter = 0; counter < nr_counters; counter++)
555 mmap_read_counter(&mmap_array[i][counter]);
556 }
557}
558
Ingo Molnar716c69f2009-06-07 17:31:52 +0200559int nr_poll;
560int group_fd;
561
562static void start_counter(int i, int counter)
Ingo Molnar07800602009-04-20 15:00:56 +0200563{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200564 struct perf_counter_attr *attr;
Ingo Molnar07800602009-04-20 15:00:56 +0200565 unsigned int cpu;
Ingo Molnar716c69f2009-06-07 17:31:52 +0200566
567 cpu = profile_cpu;
568 if (target_pid == -1 && profile_cpu == -1)
569 cpu = i;
570
571 attr = attrs + counter;
572
573 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
574 attr->freq = freq;
575
576try_again:
577 fd[i][counter] = sys_perf_counter_open(attr, target_pid, cpu, group_fd, 0);
578
579 if (fd[i][counter] < 0) {
580 int err = errno;
581
Ingo Molnar716c69f2009-06-07 17:31:52 +0200582 if (err == EPERM)
Ingo Molnar3da297a2009-06-07 17:39:02 +0200583 die("No permission - are you root?\n");
Ingo Molnar716c69f2009-06-07 17:31:52 +0200584 /*
585 * If it's cycles then fall back to hrtimer
586 * based cpu-clock-tick sw counter, which
587 * is always available even if no PMU support:
588 */
589 if (attr->type == PERF_TYPE_HARDWARE
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200590 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar716c69f2009-06-07 17:31:52 +0200591
Ingo Molnar3da297a2009-06-07 17:39:02 +0200592 if (verbose)
593 warning(" ... trying to fall back to cpu-clock-ticks\n");
594
Ingo Molnar716c69f2009-06-07 17:31:52 +0200595 attr->type = PERF_TYPE_SOFTWARE;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200596 attr->config = PERF_COUNT_SW_CPU_CLOCK;
Ingo Molnar716c69f2009-06-07 17:31:52 +0200597 goto try_again;
598 }
Ingo Molnar30c806a2009-06-07 17:46:24 +0200599 printf("\n");
600 error("perfcounter syscall returned with %d (%s)\n",
601 fd[i][counter], strerror(err));
602 die("No CONFIG_PERF_COUNTERS=y kernel support configured?\n");
Ingo Molnar716c69f2009-06-07 17:31:52 +0200603 exit(-1);
604 }
605 assert(fd[i][counter] >= 0);
606 fcntl(fd[i][counter], F_SETFL, O_NONBLOCK);
607
608 /*
609 * First counter acts as the group leader:
610 */
611 if (group && group_fd == -1)
612 group_fd = fd[i][counter];
613
614 event_array[nr_poll].fd = fd[i][counter];
615 event_array[nr_poll].events = POLLIN;
616 nr_poll++;
617
618 mmap_array[i][counter].counter = counter;
619 mmap_array[i][counter].prev = 0;
620 mmap_array[i][counter].mask = mmap_pages*page_size - 1;
621 mmap_array[i][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
622 PROT_READ, MAP_SHARED, fd[i][counter], 0);
623 if (mmap_array[i][counter].base == MAP_FAILED)
624 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
625}
626
627static int __cmd_top(void)
628{
629 pthread_t thread;
630 int i, counter;
Ingo Molnar07800602009-04-20 15:00:56 +0200631 int ret;
632
Ingo Molnar07800602009-04-20 15:00:56 +0200633 for (i = 0; i < nr_cpus; i++) {
634 group_fd = -1;
Ingo Molnar716c69f2009-06-07 17:31:52 +0200635 for (counter = 0; counter < nr_counters; counter++)
636 start_counter(i, counter);
Ingo Molnar07800602009-04-20 15:00:56 +0200637 }
638
Frederic Weisbecker2f011902009-06-06 23:10:43 +0200639 /* Wait for a minimal set of events before starting the snapshot */
640 poll(event_array, nr_poll, 100);
641
642 mmap_read();
643
Ingo Molnar07800602009-04-20 15:00:56 +0200644 if (pthread_create(&thread, NULL, display_thread, NULL)) {
645 printf("Could not create display thread.\n");
646 exit(-1);
647 }
648
649 if (realtime_prio) {
650 struct sched_param param;
651
652 param.sched_priority = realtime_prio;
653 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
654 printf("Could not set realtime priority.\n");
655 exit(-1);
656 }
657 }
658
659 while (1) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200660 int hits = samples;
Ingo Molnar07800602009-04-20 15:00:56 +0200661
Frederic Weisbecker2f011902009-06-06 23:10:43 +0200662 mmap_read();
Ingo Molnar07800602009-04-20 15:00:56 +0200663
Ingo Molnar2debbc82009-06-05 14:29:10 +0200664 if (hits == samples)
Ingo Molnar07800602009-04-20 15:00:56 +0200665 ret = poll(event_array, nr_poll, 100);
666 }
667
668 return 0;
669}
Ingo Molnarb456bae2009-05-26 09:17:18 +0200670
671static const char * const top_usage[] = {
672 "perf top [<options>]",
673 NULL
674};
675
Ingo Molnarb456bae2009-05-26 09:17:18 +0200676static const struct option options[] = {
677 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200678 "event selector. use 'perf list' to list available events",
679 parse_events),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200680 OPT_INTEGER('c', "count", &default_interval,
681 "event period to sample"),
682 OPT_INTEGER('p', "pid", &target_pid,
683 "profile events on existing pid"),
684 OPT_BOOLEAN('a', "all-cpus", &system_wide,
685 "system-wide collection from all CPUs"),
686 OPT_INTEGER('C', "CPU", &profile_cpu,
687 "CPU to profile on"),
Mike Galbraith42976482009-07-02 08:09:46 +0200688 OPT_STRING('k', "vmlinux", &vmlinux, "file", "vmlinux pathname"),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200689 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
690 "number of mmap data pages"),
691 OPT_INTEGER('r', "realtime", &realtime_prio,
692 "collect data with this RT SCHED_FIFO priority"),
Mike Galbraithdb20c002009-05-26 15:25:34 +0200693 OPT_INTEGER('d', "delay", &delay_secs,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200694 "number of seconds to delay between refreshes"),
695 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
696 "dump the symbol table used for profiling"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200697 OPT_INTEGER('f', "count-filter", &count_filter,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200698 "only display functions with more events than this"),
699 OPT_BOOLEAN('g', "group", &group,
700 "put the counters into a counter group"),
701 OPT_STRING('s', "sym-filter", &sym_filter, "pattern",
702 "only display symbols matchig this pattern"),
Anton Blanchard1f208ea2009-07-01 09:00:44 +1000703 OPT_BOOLEAN('z', "zero", &zero,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200704 "zero history across updates"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200705 OPT_INTEGER('F', "freq", &freq,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200706 "profile at this frequency"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200707 OPT_INTEGER('E', "entries", &print_entries,
708 "display this many functions"),
Ingo Molnar3da297a2009-06-07 17:39:02 +0200709 OPT_BOOLEAN('v', "verbose", &verbose,
710 "be more verbose (show counter open errors, etc)"),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200711 OPT_END()
712};
713
Ingo Molnarf37a2912009-07-01 12:37:06 +0200714int cmd_top(int argc, const char **argv, const char *prefix __used)
Ingo Molnarb456bae2009-05-26 09:17:18 +0200715{
716 int counter;
717
Mike Galbraith42976482009-07-02 08:09:46 +0200718 symbol__init();
719
Ingo Molnarb456bae2009-05-26 09:17:18 +0200720 page_size = sysconf(_SC_PAGE_SIZE);
721
Ingo Molnarb456bae2009-05-26 09:17:18 +0200722 argc = parse_options(argc, argv, options, top_usage, 0);
723 if (argc)
724 usage_with_options(top_usage, options);
725
726 if (freq) {
727 default_interval = freq;
728 freq = 1;
729 }
730
731 /* CPU and PID are mutually exclusive */
732 if (target_pid != -1 && profile_cpu != -1) {
733 printf("WARNING: PID switch overriding CPU\n");
734 sleep(1);
735 profile_cpu = -1;
736 }
737
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200738 if (!nr_counters)
Ingo Molnarb456bae2009-05-26 09:17:18 +0200739 nr_counters = 1;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200740
Frederic Weisbecker2f335a02009-06-05 19:31:01 +0200741 if (delay_secs < 1)
742 delay_secs = 1;
743
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200744 parse_symbols();
745
746 /*
747 * Fill in the ones not specifically initialized via -c:
748 */
Ingo Molnarb456bae2009-05-26 09:17:18 +0200749 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200750 if (attrs[counter].sample_period)
Ingo Molnarb456bae2009-05-26 09:17:18 +0200751 continue;
752
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200753 attrs[counter].sample_period = default_interval;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200754 }
755
756 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
757 assert(nr_cpus <= MAX_NR_CPUS);
758 assert(nr_cpus >= 0);
759
760 if (target_pid != -1 || profile_cpu != -1)
761 nr_cpus = 1;
762
Ingo Molnarb456bae2009-05-26 09:17:18 +0200763 return __cmd_top();
764}