blob: c0a423004e153b83249fb1d6631a5499e4375dc5 [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;
Mike Galbraith0fdc7e62009-07-21 10:30:36 +020061static int inherit = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020062static int profile_cpu = -1;
63static int nr_cpus = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020064static unsigned int realtime_prio = 0;
65static int group = 0;
66static unsigned int page_size;
Ingo Molnarcf1f4572009-06-05 13:27:02 +020067static unsigned int mmap_pages = 16;
68static int freq = 0;
Ingo Molnar3da297a2009-06-07 17:39:02 +020069static int verbose = 0;
Mike Galbraith42976482009-07-02 08:09:46 +020070static char *vmlinux = NULL;
Ingo Molnar07800602009-04-20 15:00:56 +020071
Ingo Molnar07800602009-04-20 15:00:56 +020072static char *sym_filter;
73static unsigned long filter_start;
74static unsigned long filter_end;
75
76static int delay_secs = 2;
77static int zero;
78static int dump_symtab;
79
Ingo Molnar07800602009-04-20 15:00:56 +020080/*
81 * Symbols
82 */
83
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100084static u64 min_ip;
85static u64 max_ip = -1ll;
Ingo Molnar07800602009-04-20 15:00:56 +020086
87struct sym_entry {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030088 struct rb_node rb_node;
89 struct list_head node;
Ingo Molnar07800602009-04-20 15:00:56 +020090 unsigned long count[MAX_COUNTERS];
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -030091 unsigned long snap_count;
92 double weight;
Ingo Molnar07800602009-04-20 15:00:56 +020093 int skip;
Ingo Molnar07800602009-04-20 15:00:56 +020094};
95
Ingo Molnar07800602009-04-20 15:00:56 +020096struct sym_entry *sym_filter_entry;
97
Ingo Molnara21ca2c2009-06-06 09:58:57 +020098struct dso *kernel_dso;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -030099
100/*
101 * Symbols will be added here in record_ip and will get out
102 * after decayed.
103 */
104static LIST_HEAD(active_symbols);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300105static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnar07800602009-04-20 15:00:56 +0200106
Ingo Molnar07800602009-04-20 15:00:56 +0200107/*
108 * Ordering weight: count-1 * count-2 * ... / count-n
109 */
110static double sym_weight(const struct sym_entry *sym)
111{
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300112 double weight = sym->snap_count;
Ingo Molnar07800602009-04-20 15:00:56 +0200113 int counter;
114
Ingo Molnar07800602009-04-20 15:00:56 +0200115 for (counter = 1; counter < nr_counters-1; counter++)
116 weight *= sym->count[counter];
117
118 weight /= (sym->count[counter] + 1);
119
120 return weight;
121}
122
Ingo Molnar2debbc82009-06-05 14:29:10 +0200123static long samples;
124static long userspace_samples;
Ingo Molnar07800602009-04-20 15:00:56 +0200125static const char CONSOLE_CLEAR[] = "";
126
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300127static void __list_insert_active_sym(struct sym_entry *syme)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300128{
129 list_add(&syme->node, &active_symbols);
130}
131
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300132static void list_remove_active_sym(struct sym_entry *syme)
133{
134 pthread_mutex_lock(&active_symbols_lock);
135 list_del_init(&syme->node);
136 pthread_mutex_unlock(&active_symbols_lock);
137}
138
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300139static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
140{
141 struct rb_node **p = &tree->rb_node;
142 struct rb_node *parent = NULL;
143 struct sym_entry *iter;
144
145 while (*p != NULL) {
146 parent = *p;
147 iter = rb_entry(parent, struct sym_entry, rb_node);
148
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300149 if (se->weight > iter->weight)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300150 p = &(*p)->rb_left;
151 else
152 p = &(*p)->rb_right;
153 }
154
155 rb_link_node(&se->rb_node, parent, p);
156 rb_insert_color(&se->rb_node, tree);
157}
Ingo Molnar07800602009-04-20 15:00:56 +0200158
159static void print_sym_table(void)
160{
Ingo Molnar233f0b92009-06-03 21:48:40 +0200161 int printed = 0, j;
Ingo Molnar07800602009-04-20 15:00:56 +0200162 int counter;
Ingo Molnar2debbc82009-06-05 14:29:10 +0200163 float samples_per_sec = samples/delay_secs;
164 float ksamples_per_sec = (samples-userspace_samples)/delay_secs;
165 float sum_ksamples = 0.0;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300166 struct sym_entry *syme, *n;
167 struct rb_root tmp = RB_ROOT;
168 struct rb_node *nd;
Ingo Molnar07800602009-04-20 15:00:56 +0200169
Ingo Molnar2debbc82009-06-05 14:29:10 +0200170 samples = userspace_samples = 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200171
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300172 /* Sort the active symbols */
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300173 pthread_mutex_lock(&active_symbols_lock);
174 syme = list_entry(active_symbols.next, struct sym_entry, node);
175 pthread_mutex_unlock(&active_symbols_lock);
176
177 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
178 syme->snap_count = syme->count[0];
179 if (syme->snap_count != 0) {
180 syme->weight = sym_weight(syme);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300181 rb_insert_active_sym(&tmp, syme);
Ingo Molnar2debbc82009-06-05 14:29:10 +0200182 sum_ksamples += syme->snap_count;
Mike Galbraithd94b9432009-05-25 09:57:56 +0200183
184 for (j = 0; j < nr_counters; j++)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300185 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
186 } else
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300187 list_remove_active_sym(syme);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200188 }
189
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200190 puts(CONSOLE_CLEAR);
Ingo Molnar07800602009-04-20 15:00:56 +0200191
192 printf(
193"------------------------------------------------------------------------------\n");
Ingo Molnarf2521b62009-06-03 19:17:25 +0200194 printf( " PerfTop:%8.0f irqs/sec kernel:%4.1f%% [",
Ingo Molnar2debbc82009-06-05 14:29:10 +0200195 samples_per_sec,
196 100.0 - (100.0*((samples_per_sec-ksamples_per_sec)/samples_per_sec)));
Ingo Molnar07800602009-04-20 15:00:56 +0200197
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200198 if (nr_counters == 1) {
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000199 printf("%Ld", (u64)attrs[0].sample_period);
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200200 if (freq)
201 printf("Hz ");
202 else
203 printf(" ");
204 }
Ingo Molnar07800602009-04-20 15:00:56 +0200205
206 for (counter = 0; counter < nr_counters; counter++) {
207 if (counter)
208 printf("/");
209
210 printf("%s", event_name(counter));
211 }
212
213 printf( "], ");
214
Ingo Molnarb456bae2009-05-26 09:17:18 +0200215 if (target_pid != -1)
216 printf(" (target_pid: %d", target_pid);
Ingo Molnar07800602009-04-20 15:00:56 +0200217 else
218 printf(" (all");
219
220 if (profile_cpu != -1)
221 printf(", cpu: %d)\n", profile_cpu);
222 else {
Ingo Molnarb456bae2009-05-26 09:17:18 +0200223 if (target_pid != -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200224 printf(")\n");
225 else
226 printf(", %d CPUs)\n", nr_cpus);
227 }
228
229 printf("------------------------------------------------------------------------------\n\n");
230
231 if (nr_counters == 1)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200232 printf(" samples pcnt");
Ingo Molnar07800602009-04-20 15:00:56 +0200233 else
Ingo Molnar2debbc82009-06-05 14:29:10 +0200234 printf(" weight samples pcnt");
Ingo Molnar07800602009-04-20 15:00:56 +0200235
236 printf(" RIP kernel function\n"
Ingo Molnar2debbc82009-06-05 14:29:10 +0200237 " ______ _______ _____ ________________ _______________\n\n"
Ingo Molnar07800602009-04-20 15:00:56 +0200238 );
239
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300240 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
241 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node);
242 struct symbol *sym = (struct symbol *)(syme + 1);
Ingo Molnar8fc03212009-06-04 15:19:47 +0200243 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
251 if (nr_counters == 1)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200252 printf("%20.2f - ", syme->weight);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200253 else
Ingo Molnar2debbc82009-06-05 14:29:10 +0200254 printf("%9.1f %10ld - ", syme->weight, syme->snap_count);
Ingo Molnar8fc03212009-06-04 15:19:47 +0200255
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200256 percent_color_fprintf(stdout, "%4.1f%%", pcnt);
Mike Galbraith42976482009-07-02 08:09:46 +0200257 printf(" - %016llx : %s", sym->start, sym->name);
258 if (sym->module)
259 printf("\t[%s]", sym->module->name);
260 printf("\n");
Ingo Molnar07800602009-04-20 15:00:56 +0200261 }
Ingo Molnar07800602009-04-20 15:00:56 +0200262}
263
Ingo Molnarf37a2912009-07-01 12:37:06 +0200264static void *display_thread(void *arg __used)
Ingo Molnar07800602009-04-20 15:00:56 +0200265{
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200266 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
267 int delay_msecs = delay_secs * 1000;
268
Ingo Molnarf2521b62009-06-03 19:17:25 +0200269 printf("PerfTop refresh period: %d seconds\n", delay_secs);
Ingo Molnar07800602009-04-20 15:00:56 +0200270
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200271 do {
Ingo Molnar07800602009-04-20 15:00:56 +0200272 print_sym_table();
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200273 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
274
275 printf("key pressed - exiting.\n");
276 exit(0);
Ingo Molnar07800602009-04-20 15:00:56 +0200277
278 return NULL;
279}
280
Anton Blanchard2ab52082009-07-01 09:00:46 +1000281/* Tag samples to be skipped. */
Ingo Molnarf37a2912009-07-01 12:37:06 +0200282static const char *skip_symbols[] = {
Anton Blanchard2ab52082009-07-01 09:00:46 +1000283 "default_idle",
284 "cpu_idle",
285 "enter_idle",
286 "exit_idle",
287 "mwait_idle",
Anton Blanchard3a3393e2009-07-01 09:00:47 +1000288 "ppc64_runlatch_off",
289 "pseries_dedicated_idle_sleep",
Anton Blanchard2ab52082009-07-01 09:00:46 +1000290 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;
Anton Blanchard2ab52082009-07-01 09:00:46 +1000298 int i;
Ingo Molnar07800602009-04-20 15:00:56 +0200299
Anton Blanchard3a3393e2009-07-01 09:00:47 +1000300 /*
301 * ppc64 uses function descriptors and appends a '.' to the
302 * start of every instruction address. Remove it.
303 */
304 if (name[0] == '.')
305 name++;
306
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300307 if (!strcmp(name, "_text") ||
308 !strcmp(name, "_etext") ||
309 !strcmp(name, "_sinittext") ||
310 !strncmp("init_module", name, 11) ||
311 !strncmp("cleanup_module", name, 14) ||
312 strstr(name, "_text_start") ||
313 strstr(name, "_text_end"))
Ingo Molnar07800602009-04-20 15:00:56 +0200314 return 1;
315
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300316 syme = dso__sym_priv(self, sym);
Anton Blanchard2ab52082009-07-01 09:00:46 +1000317 for (i = 0; skip_symbols[i]; i++) {
318 if (!strcmp(skip_symbols[i], name)) {
319 syme->skip = 1;
320 break;
321 }
322 }
Ingo Molnar07800602009-04-20 15:00:56 +0200323
324 if (filter_match == 1) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300325 filter_end = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200326 filter_match = -1;
327 if (filter_end - filter_start > 10000) {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300328 fprintf(stderr,
329 "hm, too large filter symbol <%s> - skipping.\n",
Ingo Molnar07800602009-04-20 15:00:56 +0200330 sym_filter);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300331 fprintf(stderr, "symbol filter start: %016lx\n",
332 filter_start);
333 fprintf(stderr, " end: %016lx\n",
334 filter_end);
Ingo Molnar07800602009-04-20 15:00:56 +0200335 filter_end = filter_start = 0;
336 sym_filter = NULL;
337 sleep(1);
338 }
339 }
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300340
341 if (filter_match == 0 && sym_filter && !strcmp(name, sym_filter)) {
Ingo Molnar07800602009-04-20 15:00:56 +0200342 filter_match = 1;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300343 filter_start = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200344 }
345
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300346
Ingo Molnar07800602009-04-20 15:00:56 +0200347 return 0;
348}
349
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300350static int parse_symbols(void)
Ingo Molnar07800602009-04-20 15:00:56 +0200351{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300352 struct rb_node *node;
353 struct symbol *sym;
Mike Galbraith42976482009-07-02 08:09:46 +0200354 int modules = vmlinux ? 1 : 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200355
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300356 kernel_dso = dso__new("[kernel]", sizeof(struct sym_entry));
357 if (kernel_dso == NULL)
358 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200359
Mike Galbraith42976482009-07-02 08:09:46 +0200360 if (dso__load_kernel(kernel_dso, vmlinux, symbol_filter, verbose, modules) <= 0)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300361 goto out_delete_dso;
Ingo Molnar07800602009-04-20 15:00:56 +0200362
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300363 node = rb_first(&kernel_dso->syms);
364 sym = rb_entry(node, struct symbol, rb_node);
365 min_ip = sym->start;
Ingo Molnar07800602009-04-20 15:00:56 +0200366
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300367 node = rb_last(&kernel_dso->syms);
368 sym = rb_entry(node, struct symbol, rb_node);
Mike Galbraithda417a72009-05-29 08:23:16 +0200369 max_ip = sym->end;
Ingo Molnar07800602009-04-20 15:00:56 +0200370
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300371 if (dump_symtab)
Mike Galbraitha3ec8d72009-05-29 06:46:46 +0200372 dso__fprintf(kernel_dso, stderr);
Ingo Molnar07800602009-04-20 15:00:56 +0200373
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300374 return 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200375
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300376out_delete_dso:
377 dso__delete(kernel_dso);
378 kernel_dso = NULL;
379 return -1;
Ingo Molnar07800602009-04-20 15:00:56 +0200380}
381
Ingo Molnar07800602009-04-20 15:00:56 +0200382#define TRACE_COUNT 3
383
Ingo Molnar07800602009-04-20 15:00:56 +0200384/*
385 * Binary search in the histogram table and record the hit:
386 */
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000387static void record_ip(u64 ip, int counter)
Ingo Molnar07800602009-04-20 15:00:56 +0200388{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300389 struct symbol *sym = dso__find_symbol(kernel_dso, ip);
Ingo Molnar07800602009-04-20 15:00:56 +0200390
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300391 if (sym != NULL) {
392 struct sym_entry *syme = dso__sym_priv(kernel_dso, sym);
Ingo Molnar07800602009-04-20 15:00:56 +0200393
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300394 if (!syme->skip) {
395 syme->count[counter]++;
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300396 pthread_mutex_lock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300397 if (list_empty(&syme->node) || !syme->node.next)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300398 __list_insert_active_sym(syme);
399 pthread_mutex_unlock(&active_symbols_lock);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300400 return;
Ingo Molnar07800602009-04-20 15:00:56 +0200401 }
Ingo Molnar07800602009-04-20 15:00:56 +0200402 }
403
Ingo Molnar2debbc82009-06-05 14:29:10 +0200404 samples--;
Ingo Molnar07800602009-04-20 15:00:56 +0200405}
406
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200407static void process_event(u64 ip, int counter, int user)
Ingo Molnar07800602009-04-20 15:00:56 +0200408{
Ingo Molnar2debbc82009-06-05 14:29:10 +0200409 samples++;
Ingo Molnar07800602009-04-20 15:00:56 +0200410
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200411 if (user) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200412 userspace_samples++;
Ingo Molnar07800602009-04-20 15:00:56 +0200413 return;
414 }
415
416 record_ip(ip, counter);
417}
418
Ingo Molnar07800602009-04-20 15:00:56 +0200419struct mmap_data {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200420 int counter;
421 void *base;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200422 int mask;
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200423 unsigned int prev;
Ingo Molnar07800602009-04-20 15:00:56 +0200424};
425
426static unsigned int mmap_read_head(struct mmap_data *md)
427{
428 struct perf_counter_mmap_page *pc = md->base;
429 int head;
430
431 head = pc->data_head;
432 rmb();
433
434 return head;
435}
436
437struct timeval last_read, this_read;
438
Frederic Weisbecker2f011902009-06-06 23:10:43 +0200439static void mmap_read_counter(struct mmap_data *md)
Ingo Molnar07800602009-04-20 15:00:56 +0200440{
441 unsigned int head = mmap_read_head(md);
442 unsigned int old = md->prev;
443 unsigned char *data = md->base + page_size;
444 int diff;
445
446 gettimeofday(&this_read, NULL);
447
448 /*
449 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200450 * the writer will bite our tail and mess up the samples under us.
Ingo Molnar07800602009-04-20 15:00:56 +0200451 *
452 * If we somehow ended up ahead of the head, we got messed up.
453 *
454 * In either case, truncate and restart at head.
455 */
456 diff = head - old;
457 if (diff > md->mask / 2 || diff < 0) {
458 struct timeval iv;
459 unsigned long msecs;
460
461 timersub(&this_read, &last_read, &iv);
462 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
463
464 fprintf(stderr, "WARNING: failed to keep up with mmap data."
465 " Last read %lu msecs ago.\n", msecs);
466
467 /*
468 * head points to a known good entry, start there.
469 */
470 old = head;
471 }
472
473 last_read = this_read;
474
475 for (; old != head;) {
476 struct ip_event {
477 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000478 u64 ip;
479 u32 pid, target_pid;
Ingo Molnar07800602009-04-20 15:00:56 +0200480 };
481 struct mmap_event {
482 struct perf_event_header header;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000483 u32 pid, target_pid;
484 u64 start;
485 u64 len;
486 u64 pgoff;
Ingo Molnar07800602009-04-20 15:00:56 +0200487 char filename[PATH_MAX];
488 };
489
490 typedef union event_union {
491 struct perf_event_header header;
492 struct ip_event ip;
493 struct mmap_event mmap;
494 } event_t;
495
496 event_t *event = (event_t *)&data[old & md->mask];
497
498 event_t event_copy;
499
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200500 size_t size = event->header.size;
Ingo Molnar07800602009-04-20 15:00:56 +0200501
502 /*
503 * Event straddles the mmap boundary -- header should always
504 * be inside due to u64 alignment of output.
505 */
506 if ((old & md->mask) + size != ((old + size) & md->mask)) {
507 unsigned int offset = old;
508 unsigned int len = min(sizeof(*event), size), cpy;
509 void *dst = &event_copy;
510
511 do {
512 cpy = min(md->mask + 1 - (offset & md->mask), len);
513 memcpy(dst, &data[offset & md->mask], cpy);
514 offset += cpy;
515 dst += cpy;
516 len -= cpy;
517 } while (len);
518
519 event = &event_copy;
520 }
521
522 old += size;
523
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200524 if (event->header.type == PERF_EVENT_SAMPLE) {
525 int user =
526 (event->header.misc & PERF_EVENT_MISC_CPUMODE_MASK) == PERF_EVENT_MISC_USER;
527 process_event(event->ip.ip, md->counter, user);
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
Frederic Weisbecker2f011902009-06-06 23:10:43 +0200537static void mmap_read(void)
538{
539 int i, counter;
540
541 for (i = 0; i < nr_cpus; i++) {
542 for (counter = 0; counter < nr_counters; counter++)
543 mmap_read_counter(&mmap_array[i][counter]);
544 }
545}
546
Ingo Molnar716c69f2009-06-07 17:31:52 +0200547int nr_poll;
548int group_fd;
549
550static void start_counter(int i, int counter)
Ingo Molnar07800602009-04-20 15:00:56 +0200551{
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200552 struct perf_counter_attr *attr;
Mike Galbraith0fdc7e62009-07-21 10:30:36 +0200553 int cpu;
Ingo Molnar716c69f2009-06-07 17:31:52 +0200554
555 cpu = profile_cpu;
556 if (target_pid == -1 && profile_cpu == -1)
557 cpu = i;
558
559 attr = attrs + counter;
560
561 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
562 attr->freq = freq;
Mike Galbraith0fdc7e62009-07-21 10:30:36 +0200563 attr->inherit = (cpu < 0) && inherit;
Ingo Molnar716c69f2009-06-07 17:31:52 +0200564
565try_again:
566 fd[i][counter] = sys_perf_counter_open(attr, target_pid, cpu, group_fd, 0);
567
568 if (fd[i][counter] < 0) {
569 int err = errno;
570
Ingo Molnar716c69f2009-06-07 17:31:52 +0200571 if (err == EPERM)
Ingo Molnar3da297a2009-06-07 17:39:02 +0200572 die("No permission - are you root?\n");
Ingo Molnar716c69f2009-06-07 17:31:52 +0200573 /*
574 * If it's cycles then fall back to hrtimer
575 * based cpu-clock-tick sw counter, which
576 * is always available even if no PMU support:
577 */
578 if (attr->type == PERF_TYPE_HARDWARE
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200579 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar716c69f2009-06-07 17:31:52 +0200580
Ingo Molnar3da297a2009-06-07 17:39:02 +0200581 if (verbose)
582 warning(" ... trying to fall back to cpu-clock-ticks\n");
583
Ingo Molnar716c69f2009-06-07 17:31:52 +0200584 attr->type = PERF_TYPE_SOFTWARE;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200585 attr->config = PERF_COUNT_SW_CPU_CLOCK;
Ingo Molnar716c69f2009-06-07 17:31:52 +0200586 goto try_again;
587 }
Ingo Molnar30c806a2009-06-07 17:46:24 +0200588 printf("\n");
589 error("perfcounter syscall returned with %d (%s)\n",
590 fd[i][counter], strerror(err));
591 die("No CONFIG_PERF_COUNTERS=y kernel support configured?\n");
Ingo Molnar716c69f2009-06-07 17:31:52 +0200592 exit(-1);
593 }
594 assert(fd[i][counter] >= 0);
595 fcntl(fd[i][counter], F_SETFL, O_NONBLOCK);
596
597 /*
598 * First counter acts as the group leader:
599 */
600 if (group && group_fd == -1)
601 group_fd = fd[i][counter];
602
603 event_array[nr_poll].fd = fd[i][counter];
604 event_array[nr_poll].events = POLLIN;
605 nr_poll++;
606
607 mmap_array[i][counter].counter = counter;
608 mmap_array[i][counter].prev = 0;
609 mmap_array[i][counter].mask = mmap_pages*page_size - 1;
610 mmap_array[i][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
611 PROT_READ, MAP_SHARED, fd[i][counter], 0);
612 if (mmap_array[i][counter].base == MAP_FAILED)
613 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
614}
615
616static int __cmd_top(void)
617{
618 pthread_t thread;
619 int i, counter;
Ingo Molnar07800602009-04-20 15:00:56 +0200620 int ret;
621
Ingo Molnar07800602009-04-20 15:00:56 +0200622 for (i = 0; i < nr_cpus; i++) {
623 group_fd = -1;
Ingo Molnar716c69f2009-06-07 17:31:52 +0200624 for (counter = 0; counter < nr_counters; counter++)
625 start_counter(i, counter);
Ingo Molnar07800602009-04-20 15:00:56 +0200626 }
627
Frederic Weisbecker2f011902009-06-06 23:10:43 +0200628 /* Wait for a minimal set of events before starting the snapshot */
629 poll(event_array, nr_poll, 100);
630
631 mmap_read();
632
Ingo Molnar07800602009-04-20 15:00:56 +0200633 if (pthread_create(&thread, NULL, display_thread, NULL)) {
634 printf("Could not create display thread.\n");
635 exit(-1);
636 }
637
638 if (realtime_prio) {
639 struct sched_param param;
640
641 param.sched_priority = realtime_prio;
642 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
643 printf("Could not set realtime priority.\n");
644 exit(-1);
645 }
646 }
647
648 while (1) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200649 int hits = samples;
Ingo Molnar07800602009-04-20 15:00:56 +0200650
Frederic Weisbecker2f011902009-06-06 23:10:43 +0200651 mmap_read();
Ingo Molnar07800602009-04-20 15:00:56 +0200652
Ingo Molnar2debbc82009-06-05 14:29:10 +0200653 if (hits == samples)
Ingo Molnar07800602009-04-20 15:00:56 +0200654 ret = poll(event_array, nr_poll, 100);
655 }
656
657 return 0;
658}
Ingo Molnarb456bae2009-05-26 09:17:18 +0200659
660static const char * const top_usage[] = {
661 "perf top [<options>]",
662 NULL
663};
664
Ingo Molnarb456bae2009-05-26 09:17:18 +0200665static const struct option options[] = {
666 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200667 "event selector. use 'perf list' to list available events",
668 parse_events),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200669 OPT_INTEGER('c', "count", &default_interval,
670 "event period to sample"),
671 OPT_INTEGER('p', "pid", &target_pid,
672 "profile events on existing pid"),
673 OPT_BOOLEAN('a', "all-cpus", &system_wide,
674 "system-wide collection from all CPUs"),
675 OPT_INTEGER('C', "CPU", &profile_cpu,
676 "CPU to profile on"),
Mike Galbraith42976482009-07-02 08:09:46 +0200677 OPT_STRING('k', "vmlinux", &vmlinux, "file", "vmlinux pathname"),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200678 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
679 "number of mmap data pages"),
680 OPT_INTEGER('r', "realtime", &realtime_prio,
681 "collect data with this RT SCHED_FIFO priority"),
Mike Galbraithdb20c002009-05-26 15:25:34 +0200682 OPT_INTEGER('d', "delay", &delay_secs,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200683 "number of seconds to delay between refreshes"),
684 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
685 "dump the symbol table used for profiling"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200686 OPT_INTEGER('f', "count-filter", &count_filter,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200687 "only display functions with more events than this"),
688 OPT_BOOLEAN('g', "group", &group,
689 "put the counters into a counter group"),
Mike Galbraith0fdc7e62009-07-21 10:30:36 +0200690 OPT_BOOLEAN('i', "inherit", &inherit,
691 "child tasks inherit counters"),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200692 OPT_STRING('s', "sym-filter", &sym_filter, "pattern",
693 "only display symbols matchig this pattern"),
Anton Blanchard1f208ea2009-07-01 09:00:44 +1000694 OPT_BOOLEAN('z', "zero", &zero,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200695 "zero history across updates"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200696 OPT_INTEGER('F', "freq", &freq,
Ingo Molnarb456bae2009-05-26 09:17:18 +0200697 "profile at this frequency"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +0200698 OPT_INTEGER('E', "entries", &print_entries,
699 "display this many functions"),
Ingo Molnar3da297a2009-06-07 17:39:02 +0200700 OPT_BOOLEAN('v', "verbose", &verbose,
701 "be more verbose (show counter open errors, etc)"),
Ingo Molnarb456bae2009-05-26 09:17:18 +0200702 OPT_END()
703};
704
Ingo Molnarf37a2912009-07-01 12:37:06 +0200705int cmd_top(int argc, const char **argv, const char *prefix __used)
Ingo Molnarb456bae2009-05-26 09:17:18 +0200706{
707 int counter;
708
Mike Galbraith42976482009-07-02 08:09:46 +0200709 symbol__init();
710
Ingo Molnarb456bae2009-05-26 09:17:18 +0200711 page_size = sysconf(_SC_PAGE_SIZE);
712
Ingo Molnarb456bae2009-05-26 09:17:18 +0200713 argc = parse_options(argc, argv, options, top_usage, 0);
714 if (argc)
715 usage_with_options(top_usage, options);
716
717 if (freq) {
718 default_interval = freq;
719 freq = 1;
720 }
721
722 /* CPU and PID are mutually exclusive */
723 if (target_pid != -1 && profile_cpu != -1) {
724 printf("WARNING: PID switch overriding CPU\n");
725 sleep(1);
726 profile_cpu = -1;
727 }
728
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200729 if (!nr_counters)
Ingo Molnarb456bae2009-05-26 09:17:18 +0200730 nr_counters = 1;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200731
Frederic Weisbecker2f335a02009-06-05 19:31:01 +0200732 if (delay_secs < 1)
733 delay_secs = 1;
734
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200735 parse_symbols();
736
737 /*
738 * Fill in the ones not specifically initialized via -c:
739 */
Ingo Molnarb456bae2009-05-26 09:17:18 +0200740 for (counter = 0; counter < nr_counters; counter++) {
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200741 if (attrs[counter].sample_period)
Ingo Molnarb456bae2009-05-26 09:17:18 +0200742 continue;
743
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200744 attrs[counter].sample_period = default_interval;
Ingo Molnarb456bae2009-05-26 09:17:18 +0200745 }
746
747 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
748 assert(nr_cpus <= MAX_NR_CPUS);
749 assert(nr_cpus >= 0);
750
751 if (target_pid != -1 || profile_cpu != -1)
752 nr_cpus = 1;
753
Ingo Molnarb456bae2009-05-26 09:17:18 +0200754 return __cmd_top();
755}