blob: 05344c6210ac7a8a3a1ebd00c4448a0807fbf807 [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
Ingo Molnar8fc03212009-06-04 15:19:47 +020023#include "util/color.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020024#include "util/evsel.h"
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -020025#include "util/session.h"
26#include "util/symbol.h"
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030027#include "util/thread.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020028#include "util/util.h"
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030029#include <linux/rbtree.h>
Ingo Molnarb456bae2009-05-26 09:17:18 +020030#include "util/parse-options.h"
31#include "util/parse-events.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110032#include "util/cpumap.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020033#include "util/xyarray.h"
Ingo Molnar07800602009-04-20 15:00:56 +020034
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020035#include "util/debug.h"
36
Ingo Molnar07800602009-04-20 15:00:56 +020037#include <assert.h>
38#include <fcntl.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020039
Ingo Molnar07800602009-04-20 15:00:56 +020040#include <stdio.h>
Mike Galbraith923c42c2009-07-22 20:36:03 +020041#include <termios.h>
42#include <unistd.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020043
Ingo Molnar07800602009-04-20 15:00:56 +020044#include <errno.h>
Ingo Molnar07800602009-04-20 15:00:56 +020045#include <time.h>
46#include <sched.h>
47#include <pthread.h>
48
49#include <sys/syscall.h>
50#include <sys/ioctl.h>
51#include <sys/poll.h>
52#include <sys/prctl.h>
53#include <sys/wait.h>
54#include <sys/uio.h>
55#include <sys/mman.h>
56
57#include <linux/unistd.h>
58#include <linux/types.h>
59
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020060#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
Ingo Molnara21ca2c2009-06-06 09:58:57 +020061
Ian Munsiec0555642010-04-13 18:37:33 +100062static bool system_wide = false;
Ingo Molnar07800602009-04-20 15:00:56 +020063
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +020064static int default_interval = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020065
Ingo Molnar42e59d72009-10-06 15:14:21 +020066static int count_filter = 5;
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -020067static int print_entries;
Ingo Molnar07800602009-04-20 15:00:56 +020068
Ingo Molnar42e59d72009-10-06 15:14:21 +020069static int target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030070static int target_tid = -1;
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -020071static struct thread_map *threads;
Ian Munsiec0555642010-04-13 18:37:33 +100072static bool inherit = false;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020073static struct cpu_map *cpus;
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -030074static int realtime_prio = 0;
Ian Munsiec0555642010-04-13 18:37:33 +100075static bool group = false;
Ingo Molnar07800602009-04-20 15:00:56 +020076static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020077static unsigned int mmap_pages = 16;
78static int freq = 1000; /* 1 KHz */
Ingo Molnar07800602009-04-20 15:00:56 +020079
Ingo Molnar42e59d72009-10-06 15:14:21 +020080static int delay_secs = 2;
Ian Munsiec0555642010-04-13 18:37:33 +100081static bool zero = false;
82static bool dump_symtab = false;
Ingo Molnar07800602009-04-20 15:00:56 +020083
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -020084static bool hide_kernel_symbols = false;
85static bool hide_user_symbols = false;
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -020086static struct winsize winsize;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -020087
Ingo Molnar07800602009-04-20 15:00:56 +020088/*
Mike Galbraith923c42c2009-07-22 20:36:03 +020089 * Source
90 */
91
92struct source_line {
93 u64 eip;
94 unsigned long count[MAX_COUNTERS];
95 char *line;
96 struct source_line *next;
97};
98
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -030099static const char *sym_filter = NULL;
Ingo Molnar42e59d72009-10-06 15:14:21 +0200100struct sym_entry *sym_filter_entry = NULL;
Kirill Smelkov6cff0e82010-02-03 16:52:08 -0200101struct sym_entry *sym_filter_entry_sched = NULL;
Ingo Molnar42e59d72009-10-06 15:14:21 +0200102static int sym_pcnt_filter = 5;
103static int sym_counter = 0;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200104static struct perf_evsel *sym_evsel = NULL;
Ingo Molnar42e59d72009-10-06 15:14:21 +0200105static int display_weighted = -1;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200106static const char *cpu_list;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200107
108/*
Ingo Molnar07800602009-04-20 15:00:56 +0200109 * Symbols
110 */
111
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200112struct sym_entry_source {
113 struct source_line *source;
114 struct source_line *lines;
115 struct source_line **lines_tail;
116 pthread_mutex_t lock;
117};
118
Ingo Molnar07800602009-04-20 15:00:56 +0200119struct sym_entry {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300120 struct rb_node rb_node;
121 struct list_head node;
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300122 unsigned long snap_count;
123 double weight;
Ingo Molnar07800602009-04-20 15:00:56 +0200124 int skip;
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200125 u16 name_len;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200126 u8 origin;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300127 struct map *map;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200128 struct sym_entry_source *src;
Arnaldo Carvalho de Melo5a8e5a32009-11-17 18:38:01 -0200129 unsigned long count[0];
Ingo Molnar07800602009-04-20 15:00:56 +0200130};
131
Mike Galbraith923c42c2009-07-22 20:36:03 +0200132/*
133 * Source functions
134 */
135
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200136static inline struct symbol *sym_entry__symbol(struct sym_entry *self)
137{
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200138 return ((void *)self) + symbol_conf.priv_size;
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200139}
140
Arnaldo Carvalho de Melo895f0ed2010-03-11 20:12:41 -0300141void get_term_dimensions(struct winsize *ws)
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200142{
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200143 char *s = getenv("LINES");
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200144
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200145 if (s != NULL) {
146 ws->ws_row = atoi(s);
147 s = getenv("COLUMNS");
148 if (s != NULL) {
149 ws->ws_col = atoi(s);
150 if (ws->ws_row && ws->ws_col)
151 return;
152 }
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200153 }
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200154#ifdef TIOCGWINSZ
155 if (ioctl(1, TIOCGWINSZ, ws) == 0 &&
156 ws->ws_row && ws->ws_col)
157 return;
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200158#endif
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200159 ws->ws_row = 25;
160 ws->ws_col = 80;
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200161}
162
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200163static void update_print_entries(struct winsize *ws)
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200164{
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200165 print_entries = ws->ws_row;
166
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200167 if (print_entries > 9)
168 print_entries -= 9;
169}
170
171static void sig_winch_handler(int sig __used)
172{
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200173 get_term_dimensions(&winsize);
174 update_print_entries(&winsize);
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200175}
176
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300177static int parse_source(struct sym_entry *syme)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200178{
179 struct symbol *sym;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200180 struct sym_entry_source *source;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300181 struct map *map;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200182 FILE *file;
Ingo Molnar83a09442009-08-15 12:26:57 +0200183 char command[PATH_MAX*2];
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300184 const char *path;
185 u64 len;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200186
187 if (!syme)
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300188 return -1;
189
190 sym = sym_entry__symbol(syme);
191 map = syme->map;
192
193 /*
194 * We can't annotate with just /proc/kallsyms
195 */
196 if (map->dso->origin == DSO__ORIG_KERNEL)
197 return -1;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200198
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200199 if (syme->src == NULL) {
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200200 syme->src = zalloc(sizeof(*source));
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200201 if (syme->src == NULL)
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300202 return -1;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200203 pthread_mutex_init(&syme->src->lock, NULL);
204 }
205
206 source = syme->src;
207
208 if (source->lines) {
209 pthread_mutex_lock(&source->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200210 goto out_assign;
211 }
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300212 path = map->dso->long_name;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200213
Mike Galbraith923c42c2009-07-22 20:36:03 +0200214 len = sym->end - sym->start;
215
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300216 sprintf(command,
Arnaldo Carvalho de Melo5f485362010-02-07 11:46:16 -0200217 "objdump --start-address=%#0*Lx --stop-address=%#0*Lx -dS %s",
218 BITS_PER_LONG / 4, map__rip_2objdump(map, sym->start),
219 BITS_PER_LONG / 4, map__rip_2objdump(map, sym->end), path);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200220
221 file = popen(command, "r");
222 if (!file)
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300223 return -1;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200224
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200225 pthread_mutex_lock(&source->lock);
226 source->lines_tail = &source->lines;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200227 while (!feof(file)) {
228 struct source_line *src;
229 size_t dummy = 0;
Kirill Smelkovee11b902010-02-07 11:46:15 -0200230 char *c, *sep;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200231
232 src = malloc(sizeof(struct source_line));
233 assert(src != NULL);
234 memset(src, 0, sizeof(struct source_line));
235
236 if (getline(&src->line, &dummy, file) < 0)
237 break;
238 if (!src->line)
239 break;
240
241 c = strchr(src->line, '\n');
242 if (c)
243 *c = 0;
244
245 src->next = NULL;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200246 *source->lines_tail = src;
247 source->lines_tail = &src->next;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200248
Kirill Smelkovee11b902010-02-07 11:46:15 -0200249 src->eip = strtoull(src->line, &sep, 16);
250 if (*sep == ':')
251 src->eip = map__objdump_2ip(map, src->eip);
252 else /* this line has no ip info (e.g. source line) */
253 src->eip = 0;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200254 }
255 pclose(file);
256out_assign:
257 sym_filter_entry = syme;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200258 pthread_mutex_unlock(&source->lock);
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300259 return 0;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200260}
261
262static void __zero_source_counters(struct sym_entry *syme)
263{
264 int i;
265 struct source_line *line;
266
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200267 line = syme->src->lines;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200268 while (line) {
269 for (i = 0; i < nr_counters; i++)
270 line->count[i] = 0;
271 line = line->next;
272 }
273}
274
275static void record_precise_ip(struct sym_entry *syme, int counter, u64 ip)
276{
277 struct source_line *line;
278
279 if (syme != sym_filter_entry)
280 return;
281
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200282 if (pthread_mutex_trylock(&syme->src->lock))
Mike Galbraith923c42c2009-07-22 20:36:03 +0200283 return;
284
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200285 if (syme->src == NULL || syme->src->source == NULL)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200286 goto out_unlock;
287
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200288 for (line = syme->src->lines; line; line = line->next) {
Kirill Smelkovee11b902010-02-07 11:46:15 -0200289 /* skip lines without IP info */
290 if (line->eip == 0)
291 continue;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200292 if (line->eip == ip) {
293 line->count[counter]++;
294 break;
295 }
296 if (line->eip > ip)
297 break;
298 }
299out_unlock:
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200300 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200301}
302
Arnaldo Carvalho de Meloc7ad21a2010-02-22 16:14:22 -0300303#define PATTERN_LEN (BITS_PER_LONG / 4 + 2)
304
Mike Galbraith923c42c2009-07-22 20:36:03 +0200305static void lookup_sym_source(struct sym_entry *syme)
306{
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200307 struct symbol *symbol = sym_entry__symbol(syme);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200308 struct source_line *line;
Arnaldo Carvalho de Meloc7ad21a2010-02-22 16:14:22 -0300309 char pattern[PATTERN_LEN + 1];
Mike Galbraith923c42c2009-07-22 20:36:03 +0200310
Arnaldo Carvalho de Melo5f485362010-02-07 11:46:16 -0200311 sprintf(pattern, "%0*Lx <", BITS_PER_LONG / 4,
312 map__rip_2objdump(syme->map, symbol->start));
Mike Galbraith923c42c2009-07-22 20:36:03 +0200313
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200314 pthread_mutex_lock(&syme->src->lock);
315 for (line = syme->src->lines; line; line = line->next) {
Arnaldo Carvalho de Meloc7ad21a2010-02-22 16:14:22 -0300316 if (memcmp(line->line, pattern, PATTERN_LEN) == 0) {
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200317 syme->src->source = line;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200318 break;
319 }
320 }
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200321 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200322}
323
324static void show_lines(struct source_line *queue, int count, int total)
325{
326 int i;
327 struct source_line *line;
328
329 line = queue;
330 for (i = 0; i < count; i++) {
331 float pcnt = 100.0*(float)line->count[sym_counter]/(float)total;
332
333 printf("%8li %4.1f%%\t%s\n", line->count[sym_counter], pcnt, line->line);
334 line = line->next;
335 }
336}
337
338#define TRACE_COUNT 3
339
340static void show_details(struct sym_entry *syme)
341{
342 struct symbol *symbol;
343 struct source_line *line;
344 struct source_line *line_queue = NULL;
345 int displayed = 0;
346 int line_queue_count = 0, total = 0, more = 0;
347
348 if (!syme)
349 return;
350
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200351 if (!syme->src->source)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200352 lookup_sym_source(syme);
353
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200354 if (!syme->src->source)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200355 return;
356
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200357 symbol = sym_entry__symbol(syme);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200358 printf("Showing %s for %s\n", event_name(sym_evsel), symbol->name);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200359 printf(" Events Pcnt (>=%d%%)\n", sym_pcnt_filter);
360
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200361 pthread_mutex_lock(&syme->src->lock);
362 line = syme->src->source;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200363 while (line) {
364 total += line->count[sym_counter];
365 line = line->next;
366 }
367
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200368 line = syme->src->source;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200369 while (line) {
370 float pcnt = 0.0;
371
372 if (!line_queue_count)
373 line_queue = line;
374 line_queue_count++;
375
376 if (line->count[sym_counter])
377 pcnt = 100.0 * line->count[sym_counter] / (float)total;
378 if (pcnt >= (float)sym_pcnt_filter) {
379 if (displayed <= print_entries)
380 show_lines(line_queue, line_queue_count, total);
381 else more++;
382 displayed += line_queue_count;
383 line_queue_count = 0;
384 line_queue = NULL;
385 } else if (line_queue_count > TRACE_COUNT) {
386 line_queue = line_queue->next;
387 line_queue_count--;
388 }
389
390 line->count[sym_counter] = zero ? 0 : line->count[sym_counter] * 7 / 8;
391 line = line->next;
392 }
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200393 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200394 if (more)
395 printf("%d lines not displayed, maybe increase display entries [e]\n", more);
396}
Ingo Molnar07800602009-04-20 15:00:56 +0200397
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300398/*
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200399 * Symbols will be added here in event__process_sample and will get out
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300400 * after decayed.
401 */
402static LIST_HEAD(active_symbols);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300403static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnar07800602009-04-20 15:00:56 +0200404
Ingo Molnar07800602009-04-20 15:00:56 +0200405/*
406 * Ordering weight: count-1 * count-2 * ... / count-n
407 */
408static double sym_weight(const struct sym_entry *sym)
409{
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300410 double weight = sym->snap_count;
Ingo Molnar07800602009-04-20 15:00:56 +0200411 int counter;
412
Mike Galbraith46ab9762009-07-24 10:09:50 +0200413 if (!display_weighted)
414 return weight;
415
Ingo Molnar07800602009-04-20 15:00:56 +0200416 for (counter = 1; counter < nr_counters-1; counter++)
417 weight *= sym->count[counter];
418
419 weight /= (sym->count[counter] + 1);
420
421 return weight;
422}
423
Ingo Molnar2debbc82009-06-05 14:29:10 +0200424static long samples;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800425static long kernel_samples, us_samples;
Peter Zijlstra1676b8a2010-03-04 14:19:36 +0100426static long exact_samples;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800427static long guest_us_samples, guest_kernel_samples;
Ingo Molnar07800602009-04-20 15:00:56 +0200428static const char CONSOLE_CLEAR[] = "";
429
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300430static void __list_insert_active_sym(struct sym_entry *syme)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300431{
432 list_add(&syme->node, &active_symbols);
433}
434
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300435static void list_remove_active_sym(struct sym_entry *syme)
436{
437 pthread_mutex_lock(&active_symbols_lock);
438 list_del_init(&syme->node);
439 pthread_mutex_unlock(&active_symbols_lock);
440}
441
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300442static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
443{
444 struct rb_node **p = &tree->rb_node;
445 struct rb_node *parent = NULL;
446 struct sym_entry *iter;
447
448 while (*p != NULL) {
449 parent = *p;
450 iter = rb_entry(parent, struct sym_entry, rb_node);
451
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300452 if (se->weight > iter->weight)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300453 p = &(*p)->rb_left;
454 else
455 p = &(*p)->rb_right;
456 }
457
458 rb_link_node(&se->rb_node, parent, p);
459 rb_insert_color(&se->rb_node, tree);
460}
Ingo Molnar07800602009-04-20 15:00:56 +0200461
462static void print_sym_table(void)
463{
Ingo Molnar233f0b92009-06-03 21:48:40 +0200464 int printed = 0, j;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200465 struct perf_evsel *counter;
466 int snap = !display_weighted ? sym_counter : 0;
Ingo Molnar2debbc82009-06-05 14:29:10 +0200467 float samples_per_sec = samples/delay_secs;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800468 float ksamples_per_sec = kernel_samples/delay_secs;
469 float us_samples_per_sec = (us_samples)/delay_secs;
470 float guest_kernel_samples_per_sec = (guest_kernel_samples)/delay_secs;
471 float guest_us_samples_per_sec = (guest_us_samples)/delay_secs;
Peter Zijlstra1676b8a2010-03-04 14:19:36 +0100472 float esamples_percent = (100.0*exact_samples)/samples;
Ingo Molnar2debbc82009-06-05 14:29:10 +0200473 float sum_ksamples = 0.0;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300474 struct sym_entry *syme, *n;
475 struct rb_root tmp = RB_ROOT;
476 struct rb_node *nd;
Arnaldo Carvalho de Melo00909e92010-03-16 18:28:46 -0300477 int sym_width = 0, dso_width = 0, dso_short_width = 0;
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200478 const int win_width = winsize.ws_col - 1;
Ingo Molnar07800602009-04-20 15:00:56 +0200479
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800480 samples = us_samples = kernel_samples = exact_samples = 0;
481 guest_kernel_samples = guest_us_samples = 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200482
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300483 /* Sort the active symbols */
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300484 pthread_mutex_lock(&active_symbols_lock);
485 syme = list_entry(active_symbols.next, struct sym_entry, node);
486 pthread_mutex_unlock(&active_symbols_lock);
487
488 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
Mike Galbraith46ab9762009-07-24 10:09:50 +0200489 syme->snap_count = syme->count[snap];
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300490 if (syme->snap_count != 0) {
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200491
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200492 if ((hide_user_symbols &&
493 syme->origin == PERF_RECORD_MISC_USER) ||
494 (hide_kernel_symbols &&
495 syme->origin == PERF_RECORD_MISC_KERNEL)) {
496 list_remove_active_sym(syme);
497 continue;
498 }
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300499 syme->weight = sym_weight(syme);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300500 rb_insert_active_sym(&tmp, syme);
Ingo Molnar2debbc82009-06-05 14:29:10 +0200501 sum_ksamples += syme->snap_count;
Mike Galbraithd94b9432009-05-25 09:57:56 +0200502
503 for (j = 0; j < nr_counters; j++)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300504 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
505 } else
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300506 list_remove_active_sym(syme);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200507 }
508
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200509 puts(CONSOLE_CLEAR);
Ingo Molnar07800602009-04-20 15:00:56 +0200510
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200511 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800512 if (!perf_guest) {
513 printf(" PerfTop:%8.0f irqs/sec kernel:%4.1f%%"
514 " exact: %4.1f%% [",
515 samples_per_sec,
516 100.0 - (100.0 * ((samples_per_sec - ksamples_per_sec) /
517 samples_per_sec)),
518 esamples_percent);
519 } else {
520 printf(" PerfTop:%8.0f irqs/sec kernel:%4.1f%% us:%4.1f%%"
521 " guest kernel:%4.1f%% guest us:%4.1f%%"
522 " exact: %4.1f%% [",
523 samples_per_sec,
524 100.0 - (100.0 * ((samples_per_sec-ksamples_per_sec) /
525 samples_per_sec)),
526 100.0 - (100.0 * ((samples_per_sec-us_samples_per_sec) /
527 samples_per_sec)),
528 100.0 - (100.0 * ((samples_per_sec -
529 guest_kernel_samples_per_sec) /
530 samples_per_sec)),
531 100.0 - (100.0 * ((samples_per_sec -
532 guest_us_samples_per_sec) /
533 samples_per_sec)),
534 esamples_percent);
535 }
Ingo Molnar07800602009-04-20 15:00:56 +0200536
Mike Galbraith46ab9762009-07-24 10:09:50 +0200537 if (nr_counters == 1 || !display_weighted) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200538 struct perf_evsel *first;
539 first = list_entry(evsel_list.next, struct perf_evsel, node);
540 printf("%Ld", first->attr.sample_period);
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200541 if (freq)
542 printf("Hz ");
543 else
544 printf(" ");
545 }
Ingo Molnar07800602009-04-20 15:00:56 +0200546
Mike Galbraith46ab9762009-07-24 10:09:50 +0200547 if (!display_weighted)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200548 printf("%s", event_name(sym_evsel));
549 else list_for_each_entry(counter, &evsel_list, node) {
550 if (counter->idx)
Ingo Molnar07800602009-04-20 15:00:56 +0200551 printf("/");
552
553 printf("%s", event_name(counter));
554 }
555
556 printf( "], ");
557
Ingo Molnarb456bae2009-05-26 09:17:18 +0200558 if (target_pid != -1)
559 printf(" (target_pid: %d", target_pid);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300560 else if (target_tid != -1)
561 printf(" (target_tid: %d", target_tid);
Ingo Molnar07800602009-04-20 15:00:56 +0200562 else
563 printf(" (all");
564
Corey Ashford01797c52010-11-08 18:20:45 -0800565 if (cpu_list)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200566 printf(", CPU%s: %s)\n", cpus->nr > 1 ? "s" : "", cpu_list);
Ingo Molnar07800602009-04-20 15:00:56 +0200567 else {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300568 if (target_tid != -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200569 printf(")\n");
570 else
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200571 printf(", %d CPU%s)\n", cpus->nr, cpus->nr > 1 ? "s" : "");
Ingo Molnar07800602009-04-20 15:00:56 +0200572 }
573
Arnaldo Carvalho de Melo1a105f72009-11-17 15:40:55 -0200574 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
Ingo Molnar07800602009-04-20 15:00:56 +0200575
Mike Galbraith923c42c2009-07-22 20:36:03 +0200576 if (sym_filter_entry) {
577 show_details(sym_filter_entry);
578 return;
579 }
580
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200581 /*
582 * Find the longest symbol name that will be displayed
583 */
584 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
585 syme = rb_entry(nd, struct sym_entry, rb_node);
586 if (++printed > print_entries ||
587 (int)syme->snap_count < count_filter)
588 continue;
589
Arnaldo Carvalho de Melo1a105f72009-11-17 15:40:55 -0200590 if (syme->map->dso->long_name_len > dso_width)
591 dso_width = syme->map->dso->long_name_len;
592
Arnaldo Carvalho de Melob63be8d2010-03-15 15:03:50 -0300593 if (syme->map->dso->short_name_len > dso_short_width)
594 dso_short_width = syme->map->dso->short_name_len;
595
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200596 if (syme->name_len > sym_width)
597 sym_width = syme->name_len;
598 }
599
600 printed = 0;
601
Arnaldo Carvalho de Melob63be8d2010-03-15 15:03:50 -0300602 if (sym_width + dso_width > winsize.ws_col - 29) {
603 dso_width = dso_short_width;
604 if (sym_width + dso_width > winsize.ws_col - 29)
605 sym_width = winsize.ws_col - dso_width - 29;
606 }
Arnaldo Carvalho de Melo7cc017e2009-11-24 12:05:14 -0200607 putchar('\n');
Ingo Molnar07800602009-04-20 15:00:56 +0200608 if (nr_counters == 1)
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200609 printf(" samples pcnt");
Ingo Molnar07800602009-04-20 15:00:56 +0200610 else
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200611 printf(" weight samples pcnt");
Ingo Molnar07800602009-04-20 15:00:56 +0200612
Arnaldo Carvalho de Melo7ced1562009-08-26 11:51:26 -0300613 if (verbose)
614 printf(" RIP ");
Arnaldo Carvalho de Melo7cc017e2009-11-24 12:05:14 -0200615 printf(" %-*.*s DSO\n", sym_width, sym_width, "function");
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200616 printf(" %s _______ _____",
Arnaldo Carvalho de Melo7ced1562009-08-26 11:51:26 -0300617 nr_counters == 1 ? " " : "______");
618 if (verbose)
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200619 printf(" ________________");
Arnaldo Carvalho de Melo1a105f72009-11-17 15:40:55 -0200620 printf(" %-*.*s", sym_width, sym_width, graph_line);
Arnaldo Carvalho de Melo7cc017e2009-11-24 12:05:14 -0200621 printf(" %-*.*s", dso_width, dso_width, graph_line);
Arnaldo Carvalho de Melo1a105f72009-11-17 15:40:55 -0200622 puts("\n");
Ingo Molnar07800602009-04-20 15:00:56 +0200623
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300624 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
Ingo Molnar83a09442009-08-15 12:26:57 +0200625 struct symbol *sym;
Ingo Molnar8fc03212009-06-04 15:19:47 +0200626 double pcnt;
Ingo Molnar07800602009-04-20 15:00:56 +0200627
Ingo Molnar83a09442009-08-15 12:26:57 +0200628 syme = rb_entry(nd, struct sym_entry, rb_node);
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200629 sym = sym_entry__symbol(syme);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200630 if (++printed > print_entries || (int)syme->snap_count < count_filter)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300631 continue;
Ingo Molnar07800602009-04-20 15:00:56 +0200632
Ingo Molnar2debbc82009-06-05 14:29:10 +0200633 pcnt = 100.0 - (100.0 * ((sum_ksamples - syme->snap_count) /
634 sum_ksamples));
Mike Galbraithd94b9432009-05-25 09:57:56 +0200635
Mike Galbraith46ab9762009-07-24 10:09:50 +0200636 if (nr_counters == 1 || !display_weighted)
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200637 printf("%20.2f ", syme->weight);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200638 else
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200639 printf("%9.1f %10ld ", syme->weight, syme->snap_count);
Ingo Molnar8fc03212009-06-04 15:19:47 +0200640
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200641 percent_color_fprintf(stdout, "%4.1f%%", pcnt);
Arnaldo Carvalho de Melo7ced1562009-08-26 11:51:26 -0300642 if (verbose)
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200643 printf(" %016llx", sym->start);
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200644 printf(" %-*.*s", sym_width, sym_width, sym->name);
Arnaldo Carvalho de Melo7cc017e2009-11-24 12:05:14 -0200645 printf(" %-*.*s\n", dso_width, dso_width,
646 dso_width >= syme->map->dso->long_name_len ?
647 syme->map->dso->long_name :
648 syme->map->dso->short_name);
Ingo Molnar07800602009-04-20 15:00:56 +0200649 }
Ingo Molnar07800602009-04-20 15:00:56 +0200650}
651
Mike Galbraith923c42c2009-07-22 20:36:03 +0200652static void prompt_integer(int *target, const char *msg)
653{
654 char *buf = malloc(0), *p;
655 size_t dummy = 0;
656 int tmp;
657
658 fprintf(stdout, "\n%s: ", msg);
659 if (getline(&buf, &dummy, stdin) < 0)
660 return;
661
662 p = strchr(buf, '\n');
663 if (p)
664 *p = 0;
665
666 p = buf;
667 while(*p) {
668 if (!isdigit(*p))
669 goto out_free;
670 p++;
671 }
672 tmp = strtoul(buf, NULL, 10);
673 *target = tmp;
674out_free:
675 free(buf);
676}
677
678static void prompt_percent(int *target, const char *msg)
679{
680 int tmp = 0;
681
682 prompt_integer(&tmp, msg);
683 if (tmp >= 0 && tmp <= 100)
684 *target = tmp;
685}
686
687static void prompt_symbol(struct sym_entry **target, const char *msg)
688{
689 char *buf = malloc(0), *p;
690 struct sym_entry *syme = *target, *n, *found = NULL;
691 size_t dummy = 0;
692
693 /* zero counters of active symbol */
694 if (syme) {
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200695 pthread_mutex_lock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200696 __zero_source_counters(syme);
697 *target = NULL;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200698 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200699 }
700
701 fprintf(stdout, "\n%s: ", msg);
702 if (getline(&buf, &dummy, stdin) < 0)
703 goto out_free;
704
705 p = strchr(buf, '\n');
706 if (p)
707 *p = 0;
708
709 pthread_mutex_lock(&active_symbols_lock);
710 syme = list_entry(active_symbols.next, struct sym_entry, node);
711 pthread_mutex_unlock(&active_symbols_lock);
712
713 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200714 struct symbol *sym = sym_entry__symbol(syme);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200715
716 if (!strcmp(buf, sym->name)) {
717 found = syme;
718 break;
719 }
720 }
721
722 if (!found) {
Kirill Smelkov66aeb6d2010-01-13 13:22:19 -0200723 fprintf(stderr, "Sorry, %s is not active.\n", buf);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200724 sleep(1);
725 return;
726 } else
727 parse_source(found);
728
729out_free:
730 free(buf);
731}
732
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200733static void print_mapped_keys(void)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200734{
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200735 char *name = NULL;
736
737 if (sym_filter_entry) {
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200738 struct symbol *sym = sym_entry__symbol(sym_filter_entry);
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200739 name = sym->name;
740 }
741
742 fprintf(stdout, "\nMapped keys:\n");
743 fprintf(stdout, "\t[d] display refresh delay. \t(%d)\n", delay_secs);
744 fprintf(stdout, "\t[e] display entries (lines). \t(%d)\n", print_entries);
745
746 if (nr_counters > 1)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200747 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", event_name(sym_evsel));
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200748
749 fprintf(stdout, "\t[f] profile display filter (count). \t(%d)\n", count_filter);
750
Kirill Smelkov6cff0e82010-02-03 16:52:08 -0200751 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", sym_pcnt_filter);
752 fprintf(stdout, "\t[s] annotate symbol. \t(%s)\n", name?: "NULL");
753 fprintf(stdout, "\t[S] stop annotation.\n");
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200754
755 if (nr_counters > 1)
756 fprintf(stdout, "\t[w] toggle display weighted/count[E]r. \t(%d)\n", display_weighted ? 1 : 0);
757
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200758 fprintf(stdout,
Kirill Smelkov1a72cfa2010-02-12 19:20:59 +0300759 "\t[K] hide kernel_symbols symbols. \t(%s)\n",
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200760 hide_kernel_symbols ? "yes" : "no");
761 fprintf(stdout,
762 "\t[U] hide user symbols. \t(%s)\n",
763 hide_user_symbols ? "yes" : "no");
Mike Galbraith46ab9762009-07-24 10:09:50 +0200764 fprintf(stdout, "\t[z] toggle sample zeroing. \t(%d)\n", zero ? 1 : 0);
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200765 fprintf(stdout, "\t[qQ] quit.\n");
766}
767
768static int key_mapped(int c)
769{
770 switch (c) {
771 case 'd':
772 case 'e':
773 case 'f':
774 case 'z':
775 case 'q':
776 case 'Q':
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200777 case 'K':
778 case 'U':
Kirill Smelkov6cff0e82010-02-03 16:52:08 -0200779 case 'F':
780 case 's':
781 case 'S':
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200782 return 1;
783 case 'E':
784 case 'w':
785 return nr_counters > 1 ? 1 : 0;
Ingo Molnar83a09442009-08-15 12:26:57 +0200786 default:
787 break;
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200788 }
789
790 return 0;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200791}
792
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800793static void handle_keypress(struct perf_session *session, int c)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200794{
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200795 if (!key_mapped(c)) {
796 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
797 struct termios tc, save;
798
799 print_mapped_keys();
800 fprintf(stdout, "\nEnter selection, or unmapped key to continue: ");
801 fflush(stdout);
802
803 tcgetattr(0, &save);
804 tc = save;
805 tc.c_lflag &= ~(ICANON | ECHO);
806 tc.c_cc[VMIN] = 0;
807 tc.c_cc[VTIME] = 0;
808 tcsetattr(0, TCSANOW, &tc);
809
810 poll(&stdin_poll, 1, -1);
811 c = getc(stdin);
812
813 tcsetattr(0, TCSAFLUSH, &save);
814 if (!key_mapped(c))
815 return;
816 }
817
Mike Galbraith923c42c2009-07-22 20:36:03 +0200818 switch (c) {
819 case 'd':
820 prompt_integer(&delay_secs, "Enter display delay");
Tim Blechmanndc799592009-10-17 18:08:29 +0200821 if (delay_secs < 1)
822 delay_secs = 1;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200823 break;
824 case 'e':
825 prompt_integer(&print_entries, "Enter display entries (lines)");
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200826 if (print_entries == 0) {
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200827 sig_winch_handler(SIGWINCH);
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200828 signal(SIGWINCH, sig_winch_handler);
829 } else
830 signal(SIGWINCH, SIG_DFL);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200831 break;
832 case 'E':
833 if (nr_counters > 1) {
Mike Galbraith923c42c2009-07-22 20:36:03 +0200834 fprintf(stderr, "\nAvailable events:");
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200835
836 list_for_each_entry(sym_evsel, &evsel_list, node)
837 fprintf(stderr, "\n\t%d %s", sym_evsel->idx, event_name(sym_evsel));
Mike Galbraith923c42c2009-07-22 20:36:03 +0200838
839 prompt_integer(&sym_counter, "Enter details event counter");
840
841 if (sym_counter >= nr_counters) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200842 sym_evsel = list_entry(evsel_list.next, struct perf_evsel, node);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200843 sym_counter = 0;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200844 fprintf(stderr, "Sorry, no such event, using %s.\n", event_name(sym_evsel));
Mike Galbraith923c42c2009-07-22 20:36:03 +0200845 sleep(1);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200846 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200847 }
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200848 list_for_each_entry(sym_evsel, &evsel_list, node)
849 if (sym_evsel->idx == sym_counter)
850 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200851 } else sym_counter = 0;
852 break;
853 case 'f':
854 prompt_integer(&count_filter, "Enter display event count filter");
855 break;
856 case 'F':
857 prompt_percent(&sym_pcnt_filter, "Enter details display event filter (percent)");
858 break;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200859 case 'K':
860 hide_kernel_symbols = !hide_kernel_symbols;
861 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200862 case 'q':
863 case 'Q':
864 printf("exiting.\n");
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200865 if (dump_symtab)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300866 perf_session__fprintf_dsos(session, stderr);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200867 exit(0);
868 case 's':
869 prompt_symbol(&sym_filter_entry, "Enter details symbol");
870 break;
871 case 'S':
872 if (!sym_filter_entry)
873 break;
874 else {
875 struct sym_entry *syme = sym_filter_entry;
876
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200877 pthread_mutex_lock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200878 sym_filter_entry = NULL;
879 __zero_source_counters(syme);
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200880 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200881 }
882 break;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200883 case 'U':
884 hide_user_symbols = !hide_user_symbols;
885 break;
Mike Galbraith46ab9762009-07-24 10:09:50 +0200886 case 'w':
887 display_weighted = ~display_weighted;
888 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200889 case 'z':
Ian Munsiec0555642010-04-13 18:37:33 +1000890 zero = !zero;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200891 break;
Ingo Molnar83a09442009-08-15 12:26:57 +0200892 default:
893 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200894 }
895}
896
Ingo Molnarf37a2912009-07-01 12:37:06 +0200897static void *display_thread(void *arg __used)
Ingo Molnar07800602009-04-20 15:00:56 +0200898{
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200899 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
Mike Galbraith923c42c2009-07-22 20:36:03 +0200900 struct termios tc, save;
901 int delay_msecs, c;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800902 struct perf_session *session = (struct perf_session *) arg;
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200903
Mike Galbraith923c42c2009-07-22 20:36:03 +0200904 tcgetattr(0, &save);
905 tc = save;
906 tc.c_lflag &= ~(ICANON | ECHO);
907 tc.c_cc[VMIN] = 0;
908 tc.c_cc[VTIME] = 0;
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200909
Mike Galbraith923c42c2009-07-22 20:36:03 +0200910repeat:
911 delay_msecs = delay_secs * 1000;
912 tcsetattr(0, TCSANOW, &tc);
913 /* trash return*/
914 getc(stdin);
Ingo Molnar07800602009-04-20 15:00:56 +0200915
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200916 do {
Ingo Molnar07800602009-04-20 15:00:56 +0200917 print_sym_table();
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200918 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
919
Mike Galbraith923c42c2009-07-22 20:36:03 +0200920 c = getc(stdin);
921 tcsetattr(0, TCSAFLUSH, &save);
922
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800923 handle_keypress(session, c);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200924 goto repeat;
Ingo Molnar07800602009-04-20 15:00:56 +0200925
926 return NULL;
927}
928
Anton Blanchard2ab52082009-07-01 09:00:46 +1000929/* Tag samples to be skipped. */
Ingo Molnarf37a2912009-07-01 12:37:06 +0200930static const char *skip_symbols[] = {
Anton Blanchard2ab52082009-07-01 09:00:46 +1000931 "default_idle",
932 "cpu_idle",
933 "enter_idle",
934 "exit_idle",
935 "mwait_idle",
Arnaldo Carvalho de Melo59b90052009-07-26 19:06:19 -0300936 "mwait_idle_with_hints",
Arnaldo Carvalho de Melo83572752009-09-25 15:02:39 -0700937 "poll_idle",
Anton Blanchard3a3393e2009-07-01 09:00:47 +1000938 "ppc64_runlatch_off",
939 "pseries_dedicated_idle_sleep",
Anton Blanchard2ab52082009-07-01 09:00:46 +1000940 NULL
941};
942
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300943static int symbol_filter(struct map *map, struct symbol *sym)
Ingo Molnar07800602009-04-20 15:00:56 +0200944{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300945 struct sym_entry *syme;
946 const char *name = sym->name;
Anton Blanchard2ab52082009-07-01 09:00:46 +1000947 int i;
Ingo Molnar07800602009-04-20 15:00:56 +0200948
Anton Blanchard3a3393e2009-07-01 09:00:47 +1000949 /*
950 * ppc64 uses function descriptors and appends a '.' to the
951 * start of every instruction address. Remove it.
952 */
953 if (name[0] == '.')
954 name++;
955
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300956 if (!strcmp(name, "_text") ||
957 !strcmp(name, "_etext") ||
958 !strcmp(name, "_sinittext") ||
959 !strncmp("init_module", name, 11) ||
960 !strncmp("cleanup_module", name, 14) ||
961 strstr(name, "_text_start") ||
962 strstr(name, "_text_end"))
Ingo Molnar07800602009-04-20 15:00:56 +0200963 return 1;
964
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -0200965 syme = symbol__priv(sym);
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300966 syme->map = map;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200967 syme->src = NULL;
Kirill Smelkov6cff0e82010-02-03 16:52:08 -0200968
969 if (!sym_filter_entry && sym_filter && !strcmp(name, sym_filter)) {
970 /* schedule initial sym_filter_entry setup */
971 sym_filter_entry_sched = syme;
972 sym_filter = NULL;
973 }
Mike Galbraith923c42c2009-07-22 20:36:03 +0200974
Anton Blanchard2ab52082009-07-01 09:00:46 +1000975 for (i = 0; skip_symbols[i]; i++) {
976 if (!strcmp(skip_symbols[i], name)) {
977 syme->skip = 1;
978 break;
979 }
980 }
Ingo Molnar07800602009-04-20 15:00:56 +0200981
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200982 if (!syme->skip)
983 syme->name_len = strlen(sym->name);
984
Ingo Molnar07800602009-04-20 15:00:56 +0200985 return 0;
986}
987
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200988static void event__process_sample(const event_t *self,
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200989 struct sample_data *sample,
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200990 struct perf_session *session,
991 struct perf_evsel *evsel)
Ingo Molnar07800602009-04-20 15:00:56 +0200992{
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200993 u64 ip = self->ip.ip;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200994 struct sym_entry *syme;
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200995 struct addr_location al;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300996 struct machine *machine;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200997 u8 origin = self->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Ingo Molnar07800602009-04-20 15:00:56 +0200998
Arnaldo Carvalho de Melo24bfef02010-01-21 13:04:43 -0200999 ++samples;
1000
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001001 switch (origin) {
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -02001002 case PERF_RECORD_MISC_USER:
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001003 ++us_samples;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001004 if (hide_user_symbols)
1005 return;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001006 machine = perf_session__find_host_machine(session);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -02001007 break;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001008 case PERF_RECORD_MISC_KERNEL:
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001009 ++kernel_samples;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001010 if (hide_kernel_symbols)
1011 return;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001012 machine = perf_session__find_host_machine(session);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001013 break;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001014 case PERF_RECORD_MISC_GUEST_KERNEL:
1015 ++guest_kernel_samples;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001016 machine = perf_session__find_machine(session, self->ip.pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001017 break;
1018 case PERF_RECORD_MISC_GUEST_USER:
1019 ++guest_us_samples;
1020 /*
1021 * TODO: we don't process guest user from host side
1022 * except simple counting.
1023 */
1024 return;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001025 default:
Ingo Molnar07800602009-04-20 15:00:56 +02001026 return;
1027 }
1028
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001029 if (!machine && perf_guest) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001030 pr_err("Can't find guest [%d]'s kernel information\n",
1031 self->ip.pid);
1032 return;
1033 }
1034
Peter Zijlstraab608342010-04-08 23:03:20 +02001035 if (self->header.misc & PERF_RECORD_MISC_EXACT_IP)
Peter Zijlstra1676b8a2010-03-04 14:19:36 +01001036 exact_samples++;
1037
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001038 if (event__preprocess_sample(self, session, &al, sample,
Arnaldo Carvalho de Melo41a37e22010-06-04 08:02:07 -03001039 symbol_filter) < 0 ||
Arnaldo Carvalho de Melo72b8fa12010-01-27 21:05:49 -02001040 al.filtered)
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -02001041 return;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001042
Arnaldo Carvalho de Melo72b8fa12010-01-27 21:05:49 -02001043 if (al.sym == NULL) {
1044 /*
1045 * As we do lazy loading of symtabs we only will know if the
1046 * specified vmlinux file is invalid when we actually have a
1047 * hit in kernel space and then try to load it. So if we get
1048 * here and there are _no_ symbols in the DSO backing the
1049 * kernel map, bail out.
1050 *
1051 * We may never get here, for instance, if we use -K/
1052 * --hide-kernel-symbols, even if the user specifies an
1053 * invalid --vmlinux ;-)
1054 */
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001055 if (al.map == machine->vmlinux_maps[MAP__FUNCTION] &&
Arnaldo Carvalho de Melo72b8fa12010-01-27 21:05:49 -02001056 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) {
1057 pr_err("The %s file can't be used\n",
1058 symbol_conf.vmlinux_name);
1059 exit(1);
1060 }
1061
1062 return;
1063 }
1064
Kirill Smelkov6cff0e82010-02-03 16:52:08 -02001065 /* let's see, whether we need to install initial sym_filter_entry */
1066 if (sym_filter_entry_sched) {
1067 sym_filter_entry = sym_filter_entry_sched;
1068 sym_filter_entry_sched = NULL;
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -03001069 if (parse_source(sym_filter_entry) < 0) {
1070 struct symbol *sym = sym_entry__symbol(sym_filter_entry);
1071
1072 pr_err("Can't annotate %s", sym->name);
1073 if (sym_filter_entry->map->dso->origin == DSO__ORIG_KERNEL) {
1074 pr_err(": No vmlinux file was found in the path:\n");
Arnaldo Carvalho de Melo5ad90e42010-05-26 13:26:02 -03001075 machine__fprintf_vmlinux_path(machine, stderr);
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -03001076 } else
1077 pr_err(".\n");
1078 exit(1);
1079 }
Kirill Smelkov6cff0e82010-02-03 16:52:08 -02001080 }
1081
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -02001082 syme = symbol__priv(al.sym);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001083 if (!syme->skip) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001084 syme->count[evsel->idx]++;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001085 syme->origin = origin;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001086 record_precise_ip(syme, evsel->idx, ip);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001087 pthread_mutex_lock(&active_symbols_lock);
1088 if (list_empty(&syme->node) || !syme->node.next)
1089 __list_insert_active_sym(syme);
1090 pthread_mutex_unlock(&active_symbols_lock);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001091 }
1092}
1093
Ingo Molnar07800602009-04-20 15:00:56 +02001094struct mmap_data {
Ingo Molnara21ca2c2009-06-06 09:58:57 +02001095 void *base;
Ingo Molnarf37a2912009-07-01 12:37:06 +02001096 int mask;
Ingo Molnara21ca2c2009-06-06 09:58:57 +02001097 unsigned int prev;
Ingo Molnar07800602009-04-20 15:00:56 +02001098};
1099
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001100static int perf_evsel__alloc_mmap_per_thread(struct perf_evsel *evsel,
1101 int ncpus, int nthreads)
1102{
1103 evsel->priv = xyarray__new(ncpus, nthreads, sizeof(struct mmap_data));
1104 return evsel->priv != NULL ? 0 : -ENOMEM;
1105}
1106
1107static void perf_evsel__free_mmap(struct perf_evsel *evsel)
1108{
1109 xyarray__delete(evsel->priv);
1110 evsel->priv = NULL;
1111}
1112
Ingo Molnar07800602009-04-20 15:00:56 +02001113static unsigned int mmap_read_head(struct mmap_data *md)
1114{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001115 struct perf_event_mmap_page *pc = md->base;
Ingo Molnar07800602009-04-20 15:00:56 +02001116 int head;
1117
1118 head = pc->data_head;
1119 rmb();
1120
1121 return head;
1122}
1123
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001124static void perf_session__mmap_read_counter(struct perf_session *self,
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001125 struct perf_evsel *evsel,
1126 int cpu, int thread_idx)
Ingo Molnar07800602009-04-20 15:00:56 +02001127{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001128 struct xyarray *mmap_array = evsel->priv;
1129 struct mmap_data *md = xyarray__entry(mmap_array, cpu, thread_idx);
Ingo Molnar07800602009-04-20 15:00:56 +02001130 unsigned int head = mmap_read_head(md);
1131 unsigned int old = md->prev;
1132 unsigned char *data = md->base + page_size;
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001133 struct sample_data sample;
Ingo Molnar07800602009-04-20 15:00:56 +02001134 int diff;
1135
Ingo Molnar07800602009-04-20 15:00:56 +02001136 /*
1137 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +02001138 * the writer will bite our tail and mess up the samples under us.
Ingo Molnar07800602009-04-20 15:00:56 +02001139 *
1140 * If we somehow ended up ahead of the head, we got messed up.
1141 *
1142 * In either case, truncate and restart at head.
1143 */
1144 diff = head - old;
1145 if (diff > md->mask / 2 || diff < 0) {
Mike Galbraithf4f0b412009-10-13 14:57:20 +02001146 fprintf(stderr, "WARNING: failed to keep up with mmap data.\n");
Ingo Molnar07800602009-04-20 15:00:56 +02001147
1148 /*
1149 * head points to a known good entry, start there.
1150 */
1151 old = head;
1152 }
1153
Ingo Molnar07800602009-04-20 15:00:56 +02001154 for (; old != head;) {
Ingo Molnar07800602009-04-20 15:00:56 +02001155 event_t *event = (event_t *)&data[old & md->mask];
1156
1157 event_t event_copy;
1158
Ingo Molnar6f06ccb2009-04-20 15:22:22 +02001159 size_t size = event->header.size;
Ingo Molnar07800602009-04-20 15:00:56 +02001160
1161 /*
1162 * Event straddles the mmap boundary -- header should always
1163 * be inside due to u64 alignment of output.
1164 */
1165 if ((old & md->mask) + size != ((old + size) & md->mask)) {
1166 unsigned int offset = old;
1167 unsigned int len = min(sizeof(*event), size), cpy;
1168 void *dst = &event_copy;
1169
1170 do {
1171 cpy = min(md->mask + 1 - (offset & md->mask), len);
1172 memcpy(dst, &data[offset & md->mask], cpy);
1173 offset += cpy;
1174 dst += cpy;
1175 len -= cpy;
1176 } while (len);
1177
1178 event = &event_copy;
1179 }
1180
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001181 event__parse_sample(event, self, &sample);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001182 if (event->header.type == PERF_RECORD_SAMPLE)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001183 event__process_sample(event, &sample, self, evsel);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001184 else
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001185 event__process(event, &sample, self);
Ingo Molnar07800602009-04-20 15:00:56 +02001186 old += size;
Ingo Molnar07800602009-04-20 15:00:56 +02001187 }
1188
1189 md->prev = old;
1190}
1191
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001192static struct pollfd *event_array;
Mike Galbraithc2990a22009-05-24 08:35:49 +02001193
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001194static void perf_session__mmap_read(struct perf_session *self)
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001195{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001196 struct perf_evsel *counter;
1197 int i, thread_index;
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001198
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001199 for (i = 0; i < cpus->nr; i++) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001200 list_for_each_entry(counter, &evsel_list, node) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001201 for (thread_index = 0;
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001202 thread_index < threads->nr;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001203 thread_index++) {
1204 perf_session__mmap_read_counter(self,
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001205 counter, i, thread_index);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001206 }
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001207 }
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001208 }
1209}
1210
Ingo Molnar716c69f2009-06-07 17:31:52 +02001211int nr_poll;
1212int group_fd;
1213
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001214static void start_counter(int i, struct perf_evsel *evsel)
Ingo Molnar07800602009-04-20 15:00:56 +02001215{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001216 struct xyarray *mmap_array = evsel->priv;
1217 struct mmap_data *mm;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001218 struct perf_event_attr *attr;
Corey Ashford01797c52010-11-08 18:20:45 -08001219 int cpu = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001220 int thread_index;
Ingo Molnar716c69f2009-06-07 17:31:52 +02001221
Corey Ashford01797c52010-11-08 18:20:45 -08001222 if (target_tid == -1)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001223 cpu = cpus->map[i];
Ingo Molnar716c69f2009-06-07 17:31:52 +02001224
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001225 attr = &evsel->attr;
Ingo Molnar716c69f2009-06-07 17:31:52 +02001226
1227 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +02001228
1229 if (freq) {
1230 attr->sample_type |= PERF_SAMPLE_PERIOD;
1231 attr->freq = 1;
1232 attr->sample_freq = freq;
1233 }
1234
Mike Galbraith0fdc7e62009-07-21 10:30:36 +02001235 attr->inherit = (cpu < 0) && inherit;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001236 attr->mmap = 1;
Ingo Molnar716c69f2009-06-07 17:31:52 +02001237
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001238 for (thread_index = 0; thread_index < threads->nr; thread_index++) {
Ingo Molnar716c69f2009-06-07 17:31:52 +02001239try_again:
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001240 FD(evsel, i, thread_index) = sys_perf_event_open(attr,
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001241 threads->map[thread_index], cpu, group_fd, 0);
Ingo Molnar716c69f2009-06-07 17:31:52 +02001242
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001243 if (FD(evsel, i, thread_index) < 0) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001244 int err = errno;
Ingo Molnar716c69f2009-06-07 17:31:52 +02001245
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001246 if (err == EPERM || err == EACCES)
Corey Ashfordd9cf8372010-11-19 17:37:24 -08001247 die("Permission error - are you root?\n"
1248 "\t Consider tweaking"
1249 " /proc/sys/kernel/perf_event_paranoid.\n");
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001250 /*
1251 * If it's cycles then fall back to hrtimer
1252 * based cpu-clock-tick sw counter, which
1253 * is always available even if no PMU support:
1254 */
1255 if (attr->type == PERF_TYPE_HARDWARE
1256 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar716c69f2009-06-07 17:31:52 +02001257
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001258 if (verbose)
1259 warning(" ... trying to fall back to cpu-clock-ticks\n");
Ingo Molnar3da297a2009-06-07 17:39:02 +02001260
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001261 attr->type = PERF_TYPE_SOFTWARE;
1262 attr->config = PERF_COUNT_SW_CPU_CLOCK;
1263 goto try_again;
1264 }
1265 printf("\n");
Corey Ashfordd9cf8372010-11-19 17:37:24 -08001266 error("sys_perf_event_open() syscall returned with %d (%s). /bin/dmesg may provide additional information.\n",
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001267 FD(evsel, i, thread_index), strerror(err));
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001268 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
1269 exit(-1);
Ingo Molnar716c69f2009-06-07 17:31:52 +02001270 }
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001271 assert(FD(evsel, i, thread_index) >= 0);
1272 fcntl(FD(evsel, i, thread_index), F_SETFL, O_NONBLOCK);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001273
1274 /*
1275 * First counter acts as the group leader:
1276 */
1277 if (group && group_fd == -1)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001278 group_fd = FD(evsel, i, thread_index);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001279
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001280 event_array[nr_poll].fd = FD(evsel, i, thread_index);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001281 event_array[nr_poll].events = POLLIN;
1282 nr_poll++;
1283
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001284 mm = xyarray__entry(mmap_array, i, thread_index);
1285 mm->prev = 0;
1286 mm->mask = mmap_pages*page_size - 1;
1287 mm->base = mmap(NULL, (mmap_pages+1)*page_size,
1288 PROT_READ, MAP_SHARED, FD(evsel, i, thread_index), 0);
1289 if (mm->base == MAP_FAILED)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001290 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
Ingo Molnar716c69f2009-06-07 17:31:52 +02001291 }
Ingo Molnar716c69f2009-06-07 17:31:52 +02001292}
1293
1294static int __cmd_top(void)
1295{
1296 pthread_t thread;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001297 struct perf_evsel *counter;
1298 int i, ret;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001299 /*
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -02001300 * FIXME: perf_session__new should allow passing a O_MMAP, so that all this
1301 * mmap reading, etc is encapsulated in it. Use O_WRONLY for now.
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001302 */
Ian Munsie21ef97f2010-12-10 14:09:16 +11001303 struct perf_session *session = perf_session__new(NULL, O_WRONLY, false, false, NULL);
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -02001304 if (session == NULL)
1305 return -ENOMEM;
Ingo Molnar07800602009-04-20 15:00:56 +02001306
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001307 if (target_tid != -1)
1308 event__synthesize_thread(target_tid, event__process, session);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001309 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001310 event__synthesize_threads(event__process, session);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001311
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001312 for (i = 0; i < cpus->nr; i++) {
Ingo Molnar07800602009-04-20 15:00:56 +02001313 group_fd = -1;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001314 list_for_each_entry(counter, &evsel_list, node)
Ingo Molnar716c69f2009-06-07 17:31:52 +02001315 start_counter(i, counter);
Ingo Molnar07800602009-04-20 15:00:56 +02001316 }
1317
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001318 /* Wait for a minimal set of events before starting the snapshot */
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001319 poll(&event_array[0], nr_poll, 100);
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001320
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001321 perf_session__mmap_read(session);
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001322
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001323 if (pthread_create(&thread, NULL, display_thread, session)) {
Ingo Molnar07800602009-04-20 15:00:56 +02001324 printf("Could not create display thread.\n");
1325 exit(-1);
1326 }
1327
1328 if (realtime_prio) {
1329 struct sched_param param;
1330
1331 param.sched_priority = realtime_prio;
1332 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
1333 printf("Could not set realtime priority.\n");
1334 exit(-1);
1335 }
1336 }
1337
1338 while (1) {
Ingo Molnar2debbc82009-06-05 14:29:10 +02001339 int hits = samples;
Ingo Molnar07800602009-04-20 15:00:56 +02001340
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001341 perf_session__mmap_read(session);
Ingo Molnar07800602009-04-20 15:00:56 +02001342
Ingo Molnar2debbc82009-06-05 14:29:10 +02001343 if (hits == samples)
Ingo Molnar07800602009-04-20 15:00:56 +02001344 ret = poll(event_array, nr_poll, 100);
1345 }
1346
1347 return 0;
1348}
Ingo Molnarb456bae2009-05-26 09:17:18 +02001349
1350static const char * const top_usage[] = {
1351 "perf top [<options>]",
1352 NULL
1353};
1354
Ingo Molnarb456bae2009-05-26 09:17:18 +02001355static const struct option options[] = {
1356 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +02001357 "event selector. use 'perf list' to list available events",
1358 parse_events),
Ingo Molnarb456bae2009-05-26 09:17:18 +02001359 OPT_INTEGER('c', "count", &default_interval,
1360 "event period to sample"),
1361 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001362 "profile events on existing process id"),
1363 OPT_INTEGER('t', "tid", &target_tid,
1364 "profile events on existing thread id"),
Ingo Molnarb456bae2009-05-26 09:17:18 +02001365 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1366 "system-wide collection from all CPUs"),
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001367 OPT_STRING('C', "cpu", &cpu_list, "cpu",
1368 "list of cpus to monitor"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -02001369 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1370 "file", "vmlinux pathname"),
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001371 OPT_BOOLEAN('K', "hide_kernel_symbols", &hide_kernel_symbols,
1372 "hide kernel symbols"),
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -03001373 OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
Ingo Molnarb456bae2009-05-26 09:17:18 +02001374 OPT_INTEGER('r', "realtime", &realtime_prio,
1375 "collect data with this RT SCHED_FIFO priority"),
Mike Galbraithdb20c002009-05-26 15:25:34 +02001376 OPT_INTEGER('d', "delay", &delay_secs,
Ingo Molnarb456bae2009-05-26 09:17:18 +02001377 "number of seconds to delay between refreshes"),
1378 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
1379 "dump the symbol table used for profiling"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +02001380 OPT_INTEGER('f', "count-filter", &count_filter,
Ingo Molnarb456bae2009-05-26 09:17:18 +02001381 "only display functions with more events than this"),
1382 OPT_BOOLEAN('g', "group", &group,
1383 "put the counters into a counter group"),
Mike Galbraith0fdc7e62009-07-21 10:30:36 +02001384 OPT_BOOLEAN('i', "inherit", &inherit,
1385 "child tasks inherit counters"),
Mike Galbraith923c42c2009-07-22 20:36:03 +02001386 OPT_STRING('s', "sym-annotate", &sym_filter, "symbol name",
Kirill Smelkov6cff0e82010-02-03 16:52:08 -02001387 "symbol to annotate"),
Anton Blanchard1f208ea2009-07-01 09:00:44 +10001388 OPT_BOOLEAN('z', "zero", &zero,
Ingo Molnarb456bae2009-05-26 09:17:18 +02001389 "zero history across updates"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +02001390 OPT_INTEGER('F', "freq", &freq,
Ingo Molnarb456bae2009-05-26 09:17:18 +02001391 "profile at this frequency"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +02001392 OPT_INTEGER('E', "entries", &print_entries,
1393 "display this many functions"),
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001394 OPT_BOOLEAN('U', "hide_user_symbols", &hide_user_symbols,
1395 "hide user symbols"),
Ian Munsiec0555642010-04-13 18:37:33 +10001396 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar3da297a2009-06-07 17:39:02 +02001397 "be more verbose (show counter open errors, etc)"),
Ingo Molnarb456bae2009-05-26 09:17:18 +02001398 OPT_END()
1399};
1400
Ingo Molnarf37a2912009-07-01 12:37:06 +02001401int cmd_top(int argc, const char **argv, const char *prefix __used)
Ingo Molnarb456bae2009-05-26 09:17:18 +02001402{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001403 struct perf_evsel *pos;
1404 int status = -ENOMEM;
Ingo Molnarb456bae2009-05-26 09:17:18 +02001405
1406 page_size = sysconf(_SC_PAGE_SIZE);
1407
Ingo Molnarb456bae2009-05-26 09:17:18 +02001408 argc = parse_options(argc, argv, options, top_usage, 0);
1409 if (argc)
1410 usage_with_options(top_usage, options);
1411
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001412 if (target_pid != -1)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001413 target_tid = target_pid;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001414
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001415 threads = thread_map__new(target_pid, target_tid);
1416 if (threads == NULL) {
1417 pr_err("Problems finding threads of monitor\n");
1418 usage_with_options(top_usage, options);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001419 }
1420
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001421 event_array = malloc((sizeof(struct pollfd) *
1422 MAX_NR_CPUS * MAX_COUNTERS * threads->nr));
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001423 if (!event_array)
1424 return -ENOMEM;
1425
Ingo Molnarb456bae2009-05-26 09:17:18 +02001426 /* CPU and PID are mutually exclusive */
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001427 if (target_tid > 0 && cpu_list) {
Ingo Molnarb456bae2009-05-26 09:17:18 +02001428 printf("WARNING: PID switch overriding CPU\n");
1429 sleep(1);
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001430 cpu_list = NULL;
Ingo Molnarb456bae2009-05-26 09:17:18 +02001431 }
1432
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001433 if (!nr_counters && perf_evsel_list__create_default() < 0) {
1434 pr_err("Not enough memory for event selector list\n");
1435 return -ENOMEM;
1436 }
Arnaldo Carvalho de Melo5a8e5a32009-11-17 18:38:01 -02001437
Frederic Weisbecker2f335a02009-06-05 19:31:01 +02001438 if (delay_secs < 1)
1439 delay_secs = 1;
1440
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +02001441 /*
1442 * User specified count overrides default frequency.
1443 */
1444 if (default_interval)
1445 freq = 0;
1446 else if (freq) {
1447 default_interval = freq;
1448 } else {
1449 fprintf(stderr, "frequency and count are zero, aborting\n");
1450 exit(EXIT_FAILURE);
1451 }
1452
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001453 if (target_tid != -1)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001454 cpus = cpu_map__dummy_new();
Paul Mackerrasa12b51c2010-03-10 20:36:09 +11001455 else
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001456 cpus = cpu_map__new(cpu_list);
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001457
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001458 if (cpus == NULL)
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001459 usage_with_options(top_usage, options);
Ingo Molnarb456bae2009-05-26 09:17:18 +02001460
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001461 list_for_each_entry(pos, &evsel_list, node) {
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001462 if (perf_evsel__alloc_mmap_per_thread(pos, cpus->nr, threads->nr) < 0 ||
1463 perf_evsel__alloc_fd(pos, cpus->nr, threads->nr) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001464 goto out_free_fd;
1465 /*
1466 * Fill in the ones not specifically initialized via -c:
1467 */
1468 if (pos->attr.sample_period)
1469 continue;
1470
1471 pos->attr.sample_period = default_interval;
1472 }
1473
Arnaldo Carvalho de Melocc841582011-01-11 15:16:52 -02001474 sym_evsel = list_entry(evsel_list.next, struct perf_evsel, node);
1475
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001476 symbol_conf.priv_size = (sizeof(struct sym_entry) +
1477 (nr_counters + 1) * sizeof(unsigned long));
1478
1479 symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
1480 if (symbol__init() < 0)
1481 return -1;
1482
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -02001483 get_term_dimensions(&winsize);
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -02001484 if (print_entries == 0) {
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -02001485 update_print_entries(&winsize);
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -02001486 signal(SIGWINCH, sig_winch_handler);
1487 }
1488
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001489 status = __cmd_top();
1490out_free_fd:
Arnaldo Carvalho de Melo70d544d2011-01-03 16:51:39 -02001491 list_for_each_entry(pos, &evsel_list, node)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001492 perf_evsel__free_mmap(pos);
Arnaldo Carvalho de Melobd3bfe92011-01-11 12:42:00 -02001493 perf_evsel_list__delete();
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001494
1495 return status;
Ingo Molnarb456bae2009-05-26 09:17:18 +02001496}