blob: b6998e055767fd68b9d70d2462d6776238fe4e85 [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>
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -020043#include <inttypes.h>
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020044
Ingo Molnar07800602009-04-20 15:00:56 +020045#include <errno.h>
Ingo Molnar07800602009-04-20 15:00:56 +020046#include <time.h>
47#include <sched.h>
48#include <pthread.h>
49
50#include <sys/syscall.h>
51#include <sys/ioctl.h>
52#include <sys/poll.h>
53#include <sys/prctl.h>
54#include <sys/wait.h>
55#include <sys/uio.h>
56#include <sys/mman.h>
57
58#include <linux/unistd.h>
59#include <linux/types.h>
60
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020061#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
Ingo Molnara21ca2c2009-06-06 09:58:57 +020062
Ian Munsiec0555642010-04-13 18:37:33 +100063static bool system_wide = false;
Ingo Molnar07800602009-04-20 15:00:56 +020064
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +020065static int default_interval = 0;
Ingo Molnar07800602009-04-20 15:00:56 +020066
Ingo Molnar42e59d72009-10-06 15:14:21 +020067static int count_filter = 5;
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -020068static int print_entries;
Ingo Molnar07800602009-04-20 15:00:56 +020069
Ingo Molnar42e59d72009-10-06 15:14:21 +020070static int target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030071static int target_tid = -1;
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -020072static struct thread_map *threads;
Ian Munsiec0555642010-04-13 18:37:33 +100073static bool inherit = false;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -020074static struct cpu_map *cpus;
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -030075static int realtime_prio = 0;
Ian Munsiec0555642010-04-13 18:37:33 +100076static bool group = false;
Ingo Molnar07800602009-04-20 15:00:56 +020077static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020078static unsigned int mmap_pages = 16;
79static int freq = 1000; /* 1 KHz */
Ingo Molnar07800602009-04-20 15:00:56 +020080
Ingo Molnar42e59d72009-10-06 15:14:21 +020081static int delay_secs = 2;
Ian Munsiec0555642010-04-13 18:37:33 +100082static bool zero = false;
83static bool dump_symtab = false;
Ingo Molnar07800602009-04-20 15:00:56 +020084
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -020085static bool hide_kernel_symbols = false;
86static bool hide_user_symbols = false;
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -020087static struct winsize winsize;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -020088
Ingo Molnar07800602009-04-20 15:00:56 +020089/*
Mike Galbraith923c42c2009-07-22 20:36:03 +020090 * Source
91 */
92
93struct source_line {
94 u64 eip;
95 unsigned long count[MAX_COUNTERS];
96 char *line;
97 struct source_line *next;
98};
99
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -0300100static const char *sym_filter = NULL;
Ingo Molnar42e59d72009-10-06 15:14:21 +0200101struct sym_entry *sym_filter_entry = NULL;
Kirill Smelkov6cff0e82010-02-03 16:52:08 -0200102struct sym_entry *sym_filter_entry_sched = NULL;
Ingo Molnar42e59d72009-10-06 15:14:21 +0200103static int sym_pcnt_filter = 5;
104static int sym_counter = 0;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200105static struct perf_evsel *sym_evsel = NULL;
Ingo Molnar42e59d72009-10-06 15:14:21 +0200106static int display_weighted = -1;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200107static const char *cpu_list;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200108
109/*
Ingo Molnar07800602009-04-20 15:00:56 +0200110 * Symbols
111 */
112
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200113struct sym_entry_source {
114 struct source_line *source;
115 struct source_line *lines;
116 struct source_line **lines_tail;
117 pthread_mutex_t lock;
118};
119
Ingo Molnar07800602009-04-20 15:00:56 +0200120struct sym_entry {
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300121 struct rb_node rb_node;
122 struct list_head node;
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300123 unsigned long snap_count;
124 double weight;
Ingo Molnar07800602009-04-20 15:00:56 +0200125 int skip;
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200126 u16 name_len;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200127 u8 origin;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300128 struct map *map;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200129 struct sym_entry_source *src;
Arnaldo Carvalho de Melo5a8e5a32009-11-17 18:38:01 -0200130 unsigned long count[0];
Ingo Molnar07800602009-04-20 15:00:56 +0200131};
132
Mike Galbraith923c42c2009-07-22 20:36:03 +0200133/*
134 * Source functions
135 */
136
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200137static inline struct symbol *sym_entry__symbol(struct sym_entry *self)
138{
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200139 return ((void *)self) + symbol_conf.priv_size;
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200140}
141
Arnaldo Carvalho de Melo895f0ed2010-03-11 20:12:41 -0300142void get_term_dimensions(struct winsize *ws)
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200143{
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200144 char *s = getenv("LINES");
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200145
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200146 if (s != NULL) {
147 ws->ws_row = atoi(s);
148 s = getenv("COLUMNS");
149 if (s != NULL) {
150 ws->ws_col = atoi(s);
151 if (ws->ws_row && ws->ws_col)
152 return;
153 }
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200154 }
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200155#ifdef TIOCGWINSZ
156 if (ioctl(1, TIOCGWINSZ, ws) == 0 &&
157 ws->ws_row && ws->ws_col)
158 return;
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200159#endif
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200160 ws->ws_row = 25;
161 ws->ws_col = 80;
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200162}
163
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200164static void update_print_entries(struct winsize *ws)
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200165{
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200166 print_entries = ws->ws_row;
167
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200168 if (print_entries > 9)
169 print_entries -= 9;
170}
171
172static void sig_winch_handler(int sig __used)
173{
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200174 get_term_dimensions(&winsize);
175 update_print_entries(&winsize);
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200176}
177
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300178static int parse_source(struct sym_entry *syme)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200179{
180 struct symbol *sym;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200181 struct sym_entry_source *source;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300182 struct map *map;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200183 FILE *file;
Ingo Molnar83a09442009-08-15 12:26:57 +0200184 char command[PATH_MAX*2];
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300185 const char *path;
186 u64 len;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200187
188 if (!syme)
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300189 return -1;
190
191 sym = sym_entry__symbol(syme);
192 map = syme->map;
193
194 /*
195 * We can't annotate with just /proc/kallsyms
196 */
197 if (map->dso->origin == DSO__ORIG_KERNEL)
198 return -1;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200199
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200200 if (syme->src == NULL) {
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200201 syme->src = zalloc(sizeof(*source));
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200202 if (syme->src == NULL)
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300203 return -1;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200204 pthread_mutex_init(&syme->src->lock, NULL);
205 }
206
207 source = syme->src;
208
209 if (source->lines) {
210 pthread_mutex_lock(&source->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200211 goto out_assign;
212 }
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300213 path = map->dso->long_name;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200214
Mike Galbraith923c42c2009-07-22 20:36:03 +0200215 len = sym->end - sym->start;
216
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300217 sprintf(command,
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200218 "objdump --start-address=%#0*" PRIx64 " --stop-address=%#0*" PRIx64 " -dS %s",
Arnaldo Carvalho de Melo5f485362010-02-07 11:46:16 -0200219 BITS_PER_LONG / 4, map__rip_2objdump(map, sym->start),
220 BITS_PER_LONG / 4, map__rip_2objdump(map, sym->end), path);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200221
222 file = popen(command, "r");
223 if (!file)
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300224 return -1;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200225
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200226 pthread_mutex_lock(&source->lock);
227 source->lines_tail = &source->lines;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200228 while (!feof(file)) {
229 struct source_line *src;
230 size_t dummy = 0;
Kirill Smelkovee11b902010-02-07 11:46:15 -0200231 char *c, *sep;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200232
233 src = malloc(sizeof(struct source_line));
234 assert(src != NULL);
235 memset(src, 0, sizeof(struct source_line));
236
237 if (getline(&src->line, &dummy, file) < 0)
238 break;
239 if (!src->line)
240 break;
241
242 c = strchr(src->line, '\n');
243 if (c)
244 *c = 0;
245
246 src->next = NULL;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200247 *source->lines_tail = src;
248 source->lines_tail = &src->next;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200249
Kirill Smelkovee11b902010-02-07 11:46:15 -0200250 src->eip = strtoull(src->line, &sep, 16);
251 if (*sep == ':')
252 src->eip = map__objdump_2ip(map, src->eip);
253 else /* this line has no ip info (e.g. source line) */
254 src->eip = 0;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200255 }
256 pclose(file);
257out_assign:
258 sym_filter_entry = syme;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200259 pthread_mutex_unlock(&source->lock);
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -0300260 return 0;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200261}
262
263static void __zero_source_counters(struct sym_entry *syme)
264{
265 int i;
266 struct source_line *line;
267
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200268 line = syme->src->lines;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200269 while (line) {
270 for (i = 0; i < nr_counters; i++)
271 line->count[i] = 0;
272 line = line->next;
273 }
274}
275
276static void record_precise_ip(struct sym_entry *syme, int counter, u64 ip)
277{
278 struct source_line *line;
279
280 if (syme != sym_filter_entry)
281 return;
282
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200283 if (pthread_mutex_trylock(&syme->src->lock))
Mike Galbraith923c42c2009-07-22 20:36:03 +0200284 return;
285
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200286 if (syme->src == NULL || syme->src->source == NULL)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200287 goto out_unlock;
288
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200289 for (line = syme->src->lines; line; line = line->next) {
Kirill Smelkovee11b902010-02-07 11:46:15 -0200290 /* skip lines without IP info */
291 if (line->eip == 0)
292 continue;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200293 if (line->eip == ip) {
294 line->count[counter]++;
295 break;
296 }
297 if (line->eip > ip)
298 break;
299 }
300out_unlock:
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200301 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200302}
303
Arnaldo Carvalho de Meloc7ad21a2010-02-22 16:14:22 -0300304#define PATTERN_LEN (BITS_PER_LONG / 4 + 2)
305
Mike Galbraith923c42c2009-07-22 20:36:03 +0200306static void lookup_sym_source(struct sym_entry *syme)
307{
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200308 struct symbol *symbol = sym_entry__symbol(syme);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200309 struct source_line *line;
Arnaldo Carvalho de Meloc7ad21a2010-02-22 16:14:22 -0300310 char pattern[PATTERN_LEN + 1];
Mike Galbraith923c42c2009-07-22 20:36:03 +0200311
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200312 sprintf(pattern, "%0*" PRIx64 " <", BITS_PER_LONG / 4,
Arnaldo Carvalho de Melo5f485362010-02-07 11:46:16 -0200313 map__rip_2objdump(syme->map, symbol->start));
Mike Galbraith923c42c2009-07-22 20:36:03 +0200314
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200315 pthread_mutex_lock(&syme->src->lock);
316 for (line = syme->src->lines; line; line = line->next) {
Arnaldo Carvalho de Meloc7ad21a2010-02-22 16:14:22 -0300317 if (memcmp(line->line, pattern, PATTERN_LEN) == 0) {
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200318 syme->src->source = line;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200319 break;
320 }
321 }
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200322 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200323}
324
325static void show_lines(struct source_line *queue, int count, int total)
326{
327 int i;
328 struct source_line *line;
329
330 line = queue;
331 for (i = 0; i < count; i++) {
332 float pcnt = 100.0*(float)line->count[sym_counter]/(float)total;
333
334 printf("%8li %4.1f%%\t%s\n", line->count[sym_counter], pcnt, line->line);
335 line = line->next;
336 }
337}
338
339#define TRACE_COUNT 3
340
341static void show_details(struct sym_entry *syme)
342{
343 struct symbol *symbol;
344 struct source_line *line;
345 struct source_line *line_queue = NULL;
346 int displayed = 0;
347 int line_queue_count = 0, total = 0, more = 0;
348
349 if (!syme)
350 return;
351
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200352 if (!syme->src->source)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200353 lookup_sym_source(syme);
354
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200355 if (!syme->src->source)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200356 return;
357
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200358 symbol = sym_entry__symbol(syme);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200359 printf("Showing %s for %s\n", event_name(sym_evsel), symbol->name);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200360 printf(" Events Pcnt (>=%d%%)\n", sym_pcnt_filter);
361
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200362 pthread_mutex_lock(&syme->src->lock);
363 line = syme->src->source;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200364 while (line) {
365 total += line->count[sym_counter];
366 line = line->next;
367 }
368
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200369 line = syme->src->source;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200370 while (line) {
371 float pcnt = 0.0;
372
373 if (!line_queue_count)
374 line_queue = line;
375 line_queue_count++;
376
377 if (line->count[sym_counter])
378 pcnt = 100.0 * line->count[sym_counter] / (float)total;
379 if (pcnt >= (float)sym_pcnt_filter) {
380 if (displayed <= print_entries)
381 show_lines(line_queue, line_queue_count, total);
382 else more++;
383 displayed += line_queue_count;
384 line_queue_count = 0;
385 line_queue = NULL;
386 } else if (line_queue_count > TRACE_COUNT) {
387 line_queue = line_queue->next;
388 line_queue_count--;
389 }
390
391 line->count[sym_counter] = zero ? 0 : line->count[sym_counter] * 7 / 8;
392 line = line->next;
393 }
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200394 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200395 if (more)
396 printf("%d lines not displayed, maybe increase display entries [e]\n", more);
397}
Ingo Molnar07800602009-04-20 15:00:56 +0200398
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300399/*
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200400 * Symbols will be added here in event__process_sample and will get out
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300401 * after decayed.
402 */
403static LIST_HEAD(active_symbols);
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300404static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnar07800602009-04-20 15:00:56 +0200405
Ingo Molnar07800602009-04-20 15:00:56 +0200406/*
407 * Ordering weight: count-1 * count-2 * ... / count-n
408 */
409static double sym_weight(const struct sym_entry *sym)
410{
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300411 double weight = sym->snap_count;
Ingo Molnar07800602009-04-20 15:00:56 +0200412 int counter;
413
Mike Galbraith46ab9762009-07-24 10:09:50 +0200414 if (!display_weighted)
415 return weight;
416
Ingo Molnar07800602009-04-20 15:00:56 +0200417 for (counter = 1; counter < nr_counters-1; counter++)
418 weight *= sym->count[counter];
419
420 weight /= (sym->count[counter] + 1);
421
422 return weight;
423}
424
Ingo Molnar2debbc82009-06-05 14:29:10 +0200425static long samples;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800426static long kernel_samples, us_samples;
Peter Zijlstra1676b8a2010-03-04 14:19:36 +0100427static long exact_samples;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800428static long guest_us_samples, guest_kernel_samples;
Ingo Molnar07800602009-04-20 15:00:56 +0200429static const char CONSOLE_CLEAR[] = "";
430
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300431static void __list_insert_active_sym(struct sym_entry *syme)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300432{
433 list_add(&syme->node, &active_symbols);
434}
435
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300436static void list_remove_active_sym(struct sym_entry *syme)
437{
438 pthread_mutex_lock(&active_symbols_lock);
439 list_del_init(&syme->node);
440 pthread_mutex_unlock(&active_symbols_lock);
441}
442
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300443static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
444{
445 struct rb_node **p = &tree->rb_node;
446 struct rb_node *parent = NULL;
447 struct sym_entry *iter;
448
449 while (*p != NULL) {
450 parent = *p;
451 iter = rb_entry(parent, struct sym_entry, rb_node);
452
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300453 if (se->weight > iter->weight)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300454 p = &(*p)->rb_left;
455 else
456 p = &(*p)->rb_right;
457 }
458
459 rb_link_node(&se->rb_node, parent, p);
460 rb_insert_color(&se->rb_node, tree);
461}
Ingo Molnar07800602009-04-20 15:00:56 +0200462
463static void print_sym_table(void)
464{
Ingo Molnar233f0b92009-06-03 21:48:40 +0200465 int printed = 0, j;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200466 struct perf_evsel *counter;
467 int snap = !display_weighted ? sym_counter : 0;
Ingo Molnar2debbc82009-06-05 14:29:10 +0200468 float samples_per_sec = samples/delay_secs;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800469 float ksamples_per_sec = kernel_samples/delay_secs;
470 float us_samples_per_sec = (us_samples)/delay_secs;
471 float guest_kernel_samples_per_sec = (guest_kernel_samples)/delay_secs;
472 float guest_us_samples_per_sec = (guest_us_samples)/delay_secs;
Peter Zijlstra1676b8a2010-03-04 14:19:36 +0100473 float esamples_percent = (100.0*exact_samples)/samples;
Ingo Molnar2debbc82009-06-05 14:29:10 +0200474 float sum_ksamples = 0.0;
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300475 struct sym_entry *syme, *n;
476 struct rb_root tmp = RB_ROOT;
477 struct rb_node *nd;
Arnaldo Carvalho de Melo00909e92010-03-16 18:28:46 -0300478 int sym_width = 0, dso_width = 0, dso_short_width = 0;
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200479 const int win_width = winsize.ws_col - 1;
Ingo Molnar07800602009-04-20 15:00:56 +0200480
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800481 samples = us_samples = kernel_samples = exact_samples = 0;
482 guest_kernel_samples = guest_us_samples = 0;
Ingo Molnar07800602009-04-20 15:00:56 +0200483
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300484 /* Sort the active symbols */
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300485 pthread_mutex_lock(&active_symbols_lock);
486 syme = list_entry(active_symbols.next, struct sym_entry, node);
487 pthread_mutex_unlock(&active_symbols_lock);
488
489 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
Mike Galbraith46ab9762009-07-24 10:09:50 +0200490 syme->snap_count = syme->count[snap];
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300491 if (syme->snap_count != 0) {
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200492
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200493 if ((hide_user_symbols &&
494 syme->origin == PERF_RECORD_MISC_USER) ||
495 (hide_kernel_symbols &&
496 syme->origin == PERF_RECORD_MISC_KERNEL)) {
497 list_remove_active_sym(syme);
498 continue;
499 }
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300500 syme->weight = sym_weight(syme);
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300501 rb_insert_active_sym(&tmp, syme);
Ingo Molnar2debbc82009-06-05 14:29:10 +0200502 sum_ksamples += syme->snap_count;
Mike Galbraithd94b9432009-05-25 09:57:56 +0200503
504 for (j = 0; j < nr_counters; j++)
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300505 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
506 } else
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300507 list_remove_active_sym(syme);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200508 }
509
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200510 puts(CONSOLE_CLEAR);
Ingo Molnar07800602009-04-20 15:00:56 +0200511
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200512 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800513 if (!perf_guest) {
514 printf(" PerfTop:%8.0f irqs/sec kernel:%4.1f%%"
515 " exact: %4.1f%% [",
516 samples_per_sec,
517 100.0 - (100.0 * ((samples_per_sec - ksamples_per_sec) /
518 samples_per_sec)),
519 esamples_percent);
520 } else {
521 printf(" PerfTop:%8.0f irqs/sec kernel:%4.1f%% us:%4.1f%%"
522 " guest kernel:%4.1f%% guest us:%4.1f%%"
523 " exact: %4.1f%% [",
524 samples_per_sec,
525 100.0 - (100.0 * ((samples_per_sec-ksamples_per_sec) /
526 samples_per_sec)),
527 100.0 - (100.0 * ((samples_per_sec-us_samples_per_sec) /
528 samples_per_sec)),
529 100.0 - (100.0 * ((samples_per_sec -
530 guest_kernel_samples_per_sec) /
531 samples_per_sec)),
532 100.0 - (100.0 * ((samples_per_sec -
533 guest_us_samples_per_sec) /
534 samples_per_sec)),
535 esamples_percent);
536 }
Ingo Molnar07800602009-04-20 15:00:56 +0200537
Mike Galbraith46ab9762009-07-24 10:09:50 +0200538 if (nr_counters == 1 || !display_weighted) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200539 struct perf_evsel *first;
540 first = list_entry(evsel_list.next, struct perf_evsel, node);
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200541 printf("%" PRIu64, (uint64_t)first->attr.sample_period);
Ingo Molnarcf1f4572009-06-05 13:27:02 +0200542 if (freq)
543 printf("Hz ");
544 else
545 printf(" ");
546 }
Ingo Molnar07800602009-04-20 15:00:56 +0200547
Mike Galbraith46ab9762009-07-24 10:09:50 +0200548 if (!display_weighted)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200549 printf("%s", event_name(sym_evsel));
550 else list_for_each_entry(counter, &evsel_list, node) {
551 if (counter->idx)
Ingo Molnar07800602009-04-20 15:00:56 +0200552 printf("/");
553
554 printf("%s", event_name(counter));
555 }
556
557 printf( "], ");
558
Ingo Molnarb456bae2009-05-26 09:17:18 +0200559 if (target_pid != -1)
560 printf(" (target_pid: %d", target_pid);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300561 else if (target_tid != -1)
562 printf(" (target_tid: %d", target_tid);
Ingo Molnar07800602009-04-20 15:00:56 +0200563 else
564 printf(" (all");
565
Corey Ashford01797c52010-11-08 18:20:45 -0800566 if (cpu_list)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200567 printf(", CPU%s: %s)\n", cpus->nr > 1 ? "s" : "", cpu_list);
Ingo Molnar07800602009-04-20 15:00:56 +0200568 else {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300569 if (target_tid != -1)
Ingo Molnar07800602009-04-20 15:00:56 +0200570 printf(")\n");
571 else
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200572 printf(", %d CPU%s)\n", cpus->nr, cpus->nr > 1 ? "s" : "");
Ingo Molnar07800602009-04-20 15:00:56 +0200573 }
574
Arnaldo Carvalho de Melo1a105f72009-11-17 15:40:55 -0200575 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
Ingo Molnar07800602009-04-20 15:00:56 +0200576
Mike Galbraith923c42c2009-07-22 20:36:03 +0200577 if (sym_filter_entry) {
578 show_details(sym_filter_entry);
579 return;
580 }
581
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200582 /*
583 * Find the longest symbol name that will be displayed
584 */
585 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
586 syme = rb_entry(nd, struct sym_entry, rb_node);
587 if (++printed > print_entries ||
588 (int)syme->snap_count < count_filter)
589 continue;
590
Arnaldo Carvalho de Melo1a105f72009-11-17 15:40:55 -0200591 if (syme->map->dso->long_name_len > dso_width)
592 dso_width = syme->map->dso->long_name_len;
593
Arnaldo Carvalho de Melob63be8d2010-03-15 15:03:50 -0300594 if (syme->map->dso->short_name_len > dso_short_width)
595 dso_short_width = syme->map->dso->short_name_len;
596
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200597 if (syme->name_len > sym_width)
598 sym_width = syme->name_len;
599 }
600
601 printed = 0;
602
Arnaldo Carvalho de Melob63be8d2010-03-15 15:03:50 -0300603 if (sym_width + dso_width > winsize.ws_col - 29) {
604 dso_width = dso_short_width;
605 if (sym_width + dso_width > winsize.ws_col - 29)
606 sym_width = winsize.ws_col - dso_width - 29;
607 }
Arnaldo Carvalho de Melo7cc017e2009-11-24 12:05:14 -0200608 putchar('\n');
Ingo Molnar07800602009-04-20 15:00:56 +0200609 if (nr_counters == 1)
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200610 printf(" samples pcnt");
Ingo Molnar07800602009-04-20 15:00:56 +0200611 else
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200612 printf(" weight samples pcnt");
Ingo Molnar07800602009-04-20 15:00:56 +0200613
Arnaldo Carvalho de Melo7ced1562009-08-26 11:51:26 -0300614 if (verbose)
615 printf(" RIP ");
Arnaldo Carvalho de Melo7cc017e2009-11-24 12:05:14 -0200616 printf(" %-*.*s DSO\n", sym_width, sym_width, "function");
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200617 printf(" %s _______ _____",
Arnaldo Carvalho de Melo7ced1562009-08-26 11:51:26 -0300618 nr_counters == 1 ? " " : "______");
619 if (verbose)
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200620 printf(" ________________");
Arnaldo Carvalho de Melo1a105f72009-11-17 15:40:55 -0200621 printf(" %-*.*s", sym_width, sym_width, graph_line);
Arnaldo Carvalho de Melo7cc017e2009-11-24 12:05:14 -0200622 printf(" %-*.*s", dso_width, dso_width, graph_line);
Arnaldo Carvalho de Melo1a105f72009-11-17 15:40:55 -0200623 puts("\n");
Ingo Molnar07800602009-04-20 15:00:56 +0200624
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300625 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
Ingo Molnar83a09442009-08-15 12:26:57 +0200626 struct symbol *sym;
Ingo Molnar8fc03212009-06-04 15:19:47 +0200627 double pcnt;
Ingo Molnar07800602009-04-20 15:00:56 +0200628
Ingo Molnar83a09442009-08-15 12:26:57 +0200629 syme = rb_entry(nd, struct sym_entry, rb_node);
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200630 sym = sym_entry__symbol(syme);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200631 if (++printed > print_entries || (int)syme->snap_count < count_filter)
Arnaldo Carvalho de Meloc44613a2009-05-29 17:03:07 -0300632 continue;
Ingo Molnar07800602009-04-20 15:00:56 +0200633
Ingo Molnar2debbc82009-06-05 14:29:10 +0200634 pcnt = 100.0 - (100.0 * ((sum_ksamples - syme->snap_count) /
635 sum_ksamples));
Mike Galbraithd94b9432009-05-25 09:57:56 +0200636
Mike Galbraith46ab9762009-07-24 10:09:50 +0200637 if (nr_counters == 1 || !display_weighted)
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200638 printf("%20.2f ", syme->weight);
Mike Galbraithd94b9432009-05-25 09:57:56 +0200639 else
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200640 printf("%9.1f %10ld ", syme->weight, syme->snap_count);
Ingo Molnar8fc03212009-06-04 15:19:47 +0200641
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200642 percent_color_fprintf(stdout, "%4.1f%%", pcnt);
Arnaldo Carvalho de Melo7ced1562009-08-26 11:51:26 -0300643 if (verbose)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200644 printf(" %016" PRIx64, sym->start);
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200645 printf(" %-*.*s", sym_width, sym_width, sym->name);
Arnaldo Carvalho de Melo7cc017e2009-11-24 12:05:14 -0200646 printf(" %-*.*s\n", dso_width, dso_width,
647 dso_width >= syme->map->dso->long_name_len ?
648 syme->map->dso->long_name :
649 syme->map->dso->short_name);
Ingo Molnar07800602009-04-20 15:00:56 +0200650 }
Ingo Molnar07800602009-04-20 15:00:56 +0200651}
652
Mike Galbraith923c42c2009-07-22 20:36:03 +0200653static void prompt_integer(int *target, const char *msg)
654{
655 char *buf = malloc(0), *p;
656 size_t dummy = 0;
657 int tmp;
658
659 fprintf(stdout, "\n%s: ", msg);
660 if (getline(&buf, &dummy, stdin) < 0)
661 return;
662
663 p = strchr(buf, '\n');
664 if (p)
665 *p = 0;
666
667 p = buf;
668 while(*p) {
669 if (!isdigit(*p))
670 goto out_free;
671 p++;
672 }
673 tmp = strtoul(buf, NULL, 10);
674 *target = tmp;
675out_free:
676 free(buf);
677}
678
679static void prompt_percent(int *target, const char *msg)
680{
681 int tmp = 0;
682
683 prompt_integer(&tmp, msg);
684 if (tmp >= 0 && tmp <= 100)
685 *target = tmp;
686}
687
688static void prompt_symbol(struct sym_entry **target, const char *msg)
689{
690 char *buf = malloc(0), *p;
691 struct sym_entry *syme = *target, *n, *found = NULL;
692 size_t dummy = 0;
693
694 /* zero counters of active symbol */
695 if (syme) {
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200696 pthread_mutex_lock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200697 __zero_source_counters(syme);
698 *target = NULL;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200699 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200700 }
701
702 fprintf(stdout, "\n%s: ", msg);
703 if (getline(&buf, &dummy, stdin) < 0)
704 goto out_free;
705
706 p = strchr(buf, '\n');
707 if (p)
708 *p = 0;
709
710 pthread_mutex_lock(&active_symbols_lock);
711 syme = list_entry(active_symbols.next, struct sym_entry, node);
712 pthread_mutex_unlock(&active_symbols_lock);
713
714 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200715 struct symbol *sym = sym_entry__symbol(syme);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200716
717 if (!strcmp(buf, sym->name)) {
718 found = syme;
719 break;
720 }
721 }
722
723 if (!found) {
Kirill Smelkov66aeb6d2010-01-13 13:22:19 -0200724 fprintf(stderr, "Sorry, %s is not active.\n", buf);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200725 sleep(1);
726 return;
727 } else
728 parse_source(found);
729
730out_free:
731 free(buf);
732}
733
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200734static void print_mapped_keys(void)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200735{
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200736 char *name = NULL;
737
738 if (sym_filter_entry) {
Arnaldo Carvalho de Melo51a472d2009-11-17 18:38:00 -0200739 struct symbol *sym = sym_entry__symbol(sym_filter_entry);
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200740 name = sym->name;
741 }
742
743 fprintf(stdout, "\nMapped keys:\n");
744 fprintf(stdout, "\t[d] display refresh delay. \t(%d)\n", delay_secs);
745 fprintf(stdout, "\t[e] display entries (lines). \t(%d)\n", print_entries);
746
747 if (nr_counters > 1)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200748 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", event_name(sym_evsel));
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200749
750 fprintf(stdout, "\t[f] profile display filter (count). \t(%d)\n", count_filter);
751
Kirill Smelkov6cff0e82010-02-03 16:52:08 -0200752 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", sym_pcnt_filter);
753 fprintf(stdout, "\t[s] annotate symbol. \t(%s)\n", name?: "NULL");
754 fprintf(stdout, "\t[S] stop annotation.\n");
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200755
756 if (nr_counters > 1)
757 fprintf(stdout, "\t[w] toggle display weighted/count[E]r. \t(%d)\n", display_weighted ? 1 : 0);
758
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200759 fprintf(stdout,
Kirill Smelkov1a72cfa2010-02-12 19:20:59 +0300760 "\t[K] hide kernel_symbols symbols. \t(%s)\n",
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200761 hide_kernel_symbols ? "yes" : "no");
762 fprintf(stdout,
763 "\t[U] hide user symbols. \t(%s)\n",
764 hide_user_symbols ? "yes" : "no");
Mike Galbraith46ab9762009-07-24 10:09:50 +0200765 fprintf(stdout, "\t[z] toggle sample zeroing. \t(%d)\n", zero ? 1 : 0);
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200766 fprintf(stdout, "\t[qQ] quit.\n");
767}
768
769static int key_mapped(int c)
770{
771 switch (c) {
772 case 'd':
773 case 'e':
774 case 'f':
775 case 'z':
776 case 'q':
777 case 'Q':
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200778 case 'K':
779 case 'U':
Kirill Smelkov6cff0e82010-02-03 16:52:08 -0200780 case 'F':
781 case 's':
782 case 'S':
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200783 return 1;
784 case 'E':
785 case 'w':
786 return nr_counters > 1 ? 1 : 0;
Ingo Molnar83a09442009-08-15 12:26:57 +0200787 default:
788 break;
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200789 }
790
791 return 0;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200792}
793
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800794static void handle_keypress(struct perf_session *session, int c)
Mike Galbraith923c42c2009-07-22 20:36:03 +0200795{
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200796 if (!key_mapped(c)) {
797 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
798 struct termios tc, save;
799
800 print_mapped_keys();
801 fprintf(stdout, "\nEnter selection, or unmapped key to continue: ");
802 fflush(stdout);
803
804 tcgetattr(0, &save);
805 tc = save;
806 tc.c_lflag &= ~(ICANON | ECHO);
807 tc.c_cc[VMIN] = 0;
808 tc.c_cc[VTIME] = 0;
809 tcsetattr(0, TCSANOW, &tc);
810
811 poll(&stdin_poll, 1, -1);
812 c = getc(stdin);
813
814 tcsetattr(0, TCSAFLUSH, &save);
815 if (!key_mapped(c))
816 return;
817 }
818
Mike Galbraith923c42c2009-07-22 20:36:03 +0200819 switch (c) {
820 case 'd':
821 prompt_integer(&delay_secs, "Enter display delay");
Tim Blechmanndc799592009-10-17 18:08:29 +0200822 if (delay_secs < 1)
823 delay_secs = 1;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200824 break;
825 case 'e':
826 prompt_integer(&print_entries, "Enter display entries (lines)");
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200827 if (print_entries == 0) {
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200828 sig_winch_handler(SIGWINCH);
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -0200829 signal(SIGWINCH, sig_winch_handler);
830 } else
831 signal(SIGWINCH, SIG_DFL);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200832 break;
833 case 'E':
834 if (nr_counters > 1) {
Mike Galbraith923c42c2009-07-22 20:36:03 +0200835 fprintf(stderr, "\nAvailable events:");
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200836
837 list_for_each_entry(sym_evsel, &evsel_list, node)
838 fprintf(stderr, "\n\t%d %s", sym_evsel->idx, event_name(sym_evsel));
Mike Galbraith923c42c2009-07-22 20:36:03 +0200839
840 prompt_integer(&sym_counter, "Enter details event counter");
841
842 if (sym_counter >= nr_counters) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200843 sym_evsel = list_entry(evsel_list.next, struct perf_evsel, node);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200844 sym_counter = 0;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200845 fprintf(stderr, "Sorry, no such event, using %s.\n", event_name(sym_evsel));
Mike Galbraith923c42c2009-07-22 20:36:03 +0200846 sleep(1);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200847 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200848 }
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200849 list_for_each_entry(sym_evsel, &evsel_list, node)
850 if (sym_evsel->idx == sym_counter)
851 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200852 } else sym_counter = 0;
853 break;
854 case 'f':
855 prompt_integer(&count_filter, "Enter display event count filter");
856 break;
857 case 'F':
858 prompt_percent(&sym_pcnt_filter, "Enter details display event filter (percent)");
859 break;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200860 case 'K':
861 hide_kernel_symbols = !hide_kernel_symbols;
862 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200863 case 'q':
864 case 'Q':
865 printf("exiting.\n");
Arnaldo Carvalho de Meloc338aee2009-11-20 20:51:27 -0200866 if (dump_symtab)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300867 perf_session__fprintf_dsos(session, stderr);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200868 exit(0);
869 case 's':
870 prompt_symbol(&sym_filter_entry, "Enter details symbol");
871 break;
872 case 'S':
873 if (!sym_filter_entry)
874 break;
875 else {
876 struct sym_entry *syme = sym_filter_entry;
877
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200878 pthread_mutex_lock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200879 sym_filter_entry = NULL;
880 __zero_source_counters(syme);
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200881 pthread_mutex_unlock(&syme->src->lock);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200882 }
883 break;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200884 case 'U':
885 hide_user_symbols = !hide_user_symbols;
886 break;
Mike Galbraith46ab9762009-07-24 10:09:50 +0200887 case 'w':
888 display_weighted = ~display_weighted;
889 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200890 case 'z':
Ian Munsiec0555642010-04-13 18:37:33 +1000891 zero = !zero;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200892 break;
Ingo Molnar83a09442009-08-15 12:26:57 +0200893 default:
894 break;
Mike Galbraith923c42c2009-07-22 20:36:03 +0200895 }
896}
897
Ingo Molnarf37a2912009-07-01 12:37:06 +0200898static void *display_thread(void *arg __used)
Ingo Molnar07800602009-04-20 15:00:56 +0200899{
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200900 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
Mike Galbraith923c42c2009-07-22 20:36:03 +0200901 struct termios tc, save;
902 int delay_msecs, c;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800903 struct perf_session *session = (struct perf_session *) arg;
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200904
Mike Galbraith923c42c2009-07-22 20:36:03 +0200905 tcgetattr(0, &save);
906 tc = save;
907 tc.c_lflag &= ~(ICANON | ECHO);
908 tc.c_cc[VMIN] = 0;
909 tc.c_cc[VTIME] = 0;
Mike Galbraith091bd2e2009-08-04 10:21:23 +0200910
Mike Galbraith923c42c2009-07-22 20:36:03 +0200911repeat:
912 delay_msecs = delay_secs * 1000;
913 tcsetattr(0, TCSANOW, &tc);
914 /* trash return*/
915 getc(stdin);
Ingo Molnar07800602009-04-20 15:00:56 +0200916
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200917 do {
Ingo Molnar07800602009-04-20 15:00:56 +0200918 print_sym_table();
Frederic Weisbecker0f5486b2009-06-04 20:48:04 +0200919 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
920
Mike Galbraith923c42c2009-07-22 20:36:03 +0200921 c = getc(stdin);
922 tcsetattr(0, TCSAFLUSH, &save);
923
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800924 handle_keypress(session, c);
Mike Galbraith923c42c2009-07-22 20:36:03 +0200925 goto repeat;
Ingo Molnar07800602009-04-20 15:00:56 +0200926
927 return NULL;
928}
929
Anton Blanchard2ab52082009-07-01 09:00:46 +1000930/* Tag samples to be skipped. */
Ingo Molnarf37a2912009-07-01 12:37:06 +0200931static const char *skip_symbols[] = {
Anton Blanchard2ab52082009-07-01 09:00:46 +1000932 "default_idle",
933 "cpu_idle",
934 "enter_idle",
935 "exit_idle",
936 "mwait_idle",
Arnaldo Carvalho de Melo59b90052009-07-26 19:06:19 -0300937 "mwait_idle_with_hints",
Arnaldo Carvalho de Melo83572752009-09-25 15:02:39 -0700938 "poll_idle",
Anton Blanchard3a3393e2009-07-01 09:00:47 +1000939 "ppc64_runlatch_off",
940 "pseries_dedicated_idle_sleep",
Anton Blanchard2ab52082009-07-01 09:00:46 +1000941 NULL
942};
943
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300944static int symbol_filter(struct map *map, struct symbol *sym)
Ingo Molnar07800602009-04-20 15:00:56 +0200945{
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300946 struct sym_entry *syme;
947 const char *name = sym->name;
Anton Blanchard2ab52082009-07-01 09:00:46 +1000948 int i;
Ingo Molnar07800602009-04-20 15:00:56 +0200949
Anton Blanchard3a3393e2009-07-01 09:00:47 +1000950 /*
951 * ppc64 uses function descriptors and appends a '.' to the
952 * start of every instruction address. Remove it.
953 */
954 if (name[0] == '.')
955 name++;
956
Arnaldo Carvalho de Melode046872009-05-28 14:55:41 -0300957 if (!strcmp(name, "_text") ||
958 !strcmp(name, "_etext") ||
959 !strcmp(name, "_sinittext") ||
960 !strncmp("init_module", name, 11) ||
961 !strncmp("cleanup_module", name, 14) ||
962 strstr(name, "_text_start") ||
963 strstr(name, "_text_end"))
Ingo Molnar07800602009-04-20 15:00:56 +0200964 return 1;
965
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -0200966 syme = symbol__priv(sym);
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300967 syme->map = map;
Arnaldo Carvalho de Melob2698762009-11-17 18:38:02 -0200968 syme->src = NULL;
Kirill Smelkov6cff0e82010-02-03 16:52:08 -0200969
970 if (!sym_filter_entry && sym_filter && !strcmp(name, sym_filter)) {
971 /* schedule initial sym_filter_entry setup */
972 sym_filter_entry_sched = syme;
973 sym_filter = NULL;
974 }
Mike Galbraith923c42c2009-07-22 20:36:03 +0200975
Anton Blanchard2ab52082009-07-01 09:00:46 +1000976 for (i = 0; skip_symbols[i]; i++) {
977 if (!strcmp(skip_symbols[i], name)) {
978 syme->skip = 1;
979 break;
980 }
981 }
Ingo Molnar07800602009-04-20 15:00:56 +0200982
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -0200983 if (!syme->skip)
984 syme->name_len = strlen(sym->name);
985
Ingo Molnar07800602009-04-20 15:00:56 +0200986 return 0;
987}
988
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200989static void event__process_sample(const event_t *self,
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -0200990 struct sample_data *sample,
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200991 struct perf_session *session,
992 struct perf_evsel *evsel)
Ingo Molnar07800602009-04-20 15:00:56 +0200993{
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200994 u64 ip = self->ip.ip;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -0200995 struct sym_entry *syme;
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200996 struct addr_location al;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300997 struct machine *machine;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -0200998 u8 origin = self->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Ingo Molnar07800602009-04-20 15:00:56 +0200999
Arnaldo Carvalho de Melo24bfef02010-01-21 13:04:43 -02001000 ++samples;
1001
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001002 switch (origin) {
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -02001003 case PERF_RECORD_MISC_USER:
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001004 ++us_samples;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001005 if (hide_user_symbols)
1006 return;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001007 machine = perf_session__find_host_machine(session);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -02001008 break;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001009 case PERF_RECORD_MISC_KERNEL:
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001010 ++kernel_samples;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001011 if (hide_kernel_symbols)
1012 return;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001013 machine = perf_session__find_host_machine(session);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001014 break;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001015 case PERF_RECORD_MISC_GUEST_KERNEL:
1016 ++guest_kernel_samples;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001017 machine = perf_session__find_machine(session, self->ip.pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001018 break;
1019 case PERF_RECORD_MISC_GUEST_USER:
1020 ++guest_us_samples;
1021 /*
1022 * TODO: we don't process guest user from host side
1023 * except simple counting.
1024 */
1025 return;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001026 default:
Ingo Molnar07800602009-04-20 15:00:56 +02001027 return;
1028 }
1029
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001030 if (!machine && perf_guest) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001031 pr_err("Can't find guest [%d]'s kernel information\n",
1032 self->ip.pid);
1033 return;
1034 }
1035
Peter Zijlstraab608342010-04-08 23:03:20 +02001036 if (self->header.misc & PERF_RECORD_MISC_EXACT_IP)
Peter Zijlstra1676b8a2010-03-04 14:19:36 +01001037 exact_samples++;
1038
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001039 if (event__preprocess_sample(self, session, &al, sample,
Arnaldo Carvalho de Melo41a37e22010-06-04 08:02:07 -03001040 symbol_filter) < 0 ||
Arnaldo Carvalho de Melo72b8fa12010-01-27 21:05:49 -02001041 al.filtered)
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -02001042 return;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001043
Arnaldo Carvalho de Melo72b8fa12010-01-27 21:05:49 -02001044 if (al.sym == NULL) {
1045 /*
1046 * As we do lazy loading of symtabs we only will know if the
1047 * specified vmlinux file is invalid when we actually have a
1048 * hit in kernel space and then try to load it. So if we get
1049 * here and there are _no_ symbols in the DSO backing the
1050 * kernel map, bail out.
1051 *
1052 * We may never get here, for instance, if we use -K/
1053 * --hide-kernel-symbols, even if the user specifies an
1054 * invalid --vmlinux ;-)
1055 */
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03001056 if (al.map == machine->vmlinux_maps[MAP__FUNCTION] &&
Arnaldo Carvalho de Melo72b8fa12010-01-27 21:05:49 -02001057 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) {
1058 pr_err("The %s file can't be used\n",
1059 symbol_conf.vmlinux_name);
1060 exit(1);
1061 }
1062
1063 return;
1064 }
1065
Kirill Smelkov6cff0e82010-02-03 16:52:08 -02001066 /* let's see, whether we need to install initial sym_filter_entry */
1067 if (sym_filter_entry_sched) {
1068 sym_filter_entry = sym_filter_entry_sched;
1069 sym_filter_entry_sched = NULL;
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -03001070 if (parse_source(sym_filter_entry) < 0) {
1071 struct symbol *sym = sym_entry__symbol(sym_filter_entry);
1072
1073 pr_err("Can't annotate %s", sym->name);
1074 if (sym_filter_entry->map->dso->origin == DSO__ORIG_KERNEL) {
1075 pr_err(": No vmlinux file was found in the path:\n");
Arnaldo Carvalho de Melo5ad90e42010-05-26 13:26:02 -03001076 machine__fprintf_vmlinux_path(machine, stderr);
Arnaldo Carvalho de Melob0a9ab62010-03-15 11:46:58 -03001077 } else
1078 pr_err(".\n");
1079 exit(1);
1080 }
Kirill Smelkov6cff0e82010-02-03 16:52:08 -02001081 }
1082
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -02001083 syme = symbol__priv(al.sym);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001084 if (!syme->skip) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001085 syme->count[evsel->idx]++;
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001086 syme->origin = origin;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001087 record_precise_ip(syme, evsel->idx, ip);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001088 pthread_mutex_lock(&active_symbols_lock);
1089 if (list_empty(&syme->node) || !syme->node.next)
1090 __list_insert_active_sym(syme);
1091 pthread_mutex_unlock(&active_symbols_lock);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001092 }
1093}
1094
Ingo Molnar07800602009-04-20 15:00:56 +02001095struct mmap_data {
Ingo Molnara21ca2c2009-06-06 09:58:57 +02001096 void *base;
Ingo Molnarf37a2912009-07-01 12:37:06 +02001097 int mask;
Ingo Molnara21ca2c2009-06-06 09:58:57 +02001098 unsigned int prev;
Ingo Molnar07800602009-04-20 15:00:56 +02001099};
1100
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001101static int perf_evsel__alloc_mmap_per_thread(struct perf_evsel *evsel,
1102 int ncpus, int nthreads)
1103{
1104 evsel->priv = xyarray__new(ncpus, nthreads, sizeof(struct mmap_data));
1105 return evsel->priv != NULL ? 0 : -ENOMEM;
1106}
1107
1108static void perf_evsel__free_mmap(struct perf_evsel *evsel)
1109{
1110 xyarray__delete(evsel->priv);
1111 evsel->priv = NULL;
1112}
1113
Ingo Molnar07800602009-04-20 15:00:56 +02001114static unsigned int mmap_read_head(struct mmap_data *md)
1115{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001116 struct perf_event_mmap_page *pc = md->base;
Ingo Molnar07800602009-04-20 15:00:56 +02001117 int head;
1118
1119 head = pc->data_head;
1120 rmb();
1121
1122 return head;
1123}
1124
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001125static void perf_session__mmap_read_counter(struct perf_session *self,
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001126 struct perf_evsel *evsel,
1127 int cpu, int thread_idx)
Ingo Molnar07800602009-04-20 15:00:56 +02001128{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001129 struct xyarray *mmap_array = evsel->priv;
1130 struct mmap_data *md = xyarray__entry(mmap_array, cpu, thread_idx);
Ingo Molnar07800602009-04-20 15:00:56 +02001131 unsigned int head = mmap_read_head(md);
1132 unsigned int old = md->prev;
1133 unsigned char *data = md->base + page_size;
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001134 struct sample_data sample;
Ingo Molnar07800602009-04-20 15:00:56 +02001135 int diff;
1136
Ingo Molnar07800602009-04-20 15:00:56 +02001137 /*
1138 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +02001139 * the writer will bite our tail and mess up the samples under us.
Ingo Molnar07800602009-04-20 15:00:56 +02001140 *
1141 * If we somehow ended up ahead of the head, we got messed up.
1142 *
1143 * In either case, truncate and restart at head.
1144 */
1145 diff = head - old;
1146 if (diff > md->mask / 2 || diff < 0) {
Mike Galbraithf4f0b412009-10-13 14:57:20 +02001147 fprintf(stderr, "WARNING: failed to keep up with mmap data.\n");
Ingo Molnar07800602009-04-20 15:00:56 +02001148
1149 /*
1150 * head points to a known good entry, start there.
1151 */
1152 old = head;
1153 }
1154
Ingo Molnar07800602009-04-20 15:00:56 +02001155 for (; old != head;) {
Ingo Molnar07800602009-04-20 15:00:56 +02001156 event_t *event = (event_t *)&data[old & md->mask];
1157
1158 event_t event_copy;
1159
Ingo Molnar6f06ccb2009-04-20 15:22:22 +02001160 size_t size = event->header.size;
Ingo Molnar07800602009-04-20 15:00:56 +02001161
1162 /*
1163 * Event straddles the mmap boundary -- header should always
1164 * be inside due to u64 alignment of output.
1165 */
1166 if ((old & md->mask) + size != ((old + size) & md->mask)) {
1167 unsigned int offset = old;
1168 unsigned int len = min(sizeof(*event), size), cpy;
1169 void *dst = &event_copy;
1170
1171 do {
1172 cpy = min(md->mask + 1 - (offset & md->mask), len);
1173 memcpy(dst, &data[offset & md->mask], cpy);
1174 offset += cpy;
1175 dst += cpy;
1176 len -= cpy;
1177 } while (len);
1178
1179 event = &event_copy;
1180 }
1181
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001182 event__parse_sample(event, self, &sample);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001183 if (event->header.type == PERF_RECORD_SAMPLE)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001184 event__process_sample(event, &sample, self, evsel);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001185 else
Arnaldo Carvalho de Melo9c90a612010-12-02 10:25:28 -02001186 event__process(event, &sample, self);
Ingo Molnar07800602009-04-20 15:00:56 +02001187 old += size;
Ingo Molnar07800602009-04-20 15:00:56 +02001188 }
1189
1190 md->prev = old;
1191}
1192
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001193static struct pollfd *event_array;
Mike Galbraithc2990a22009-05-24 08:35:49 +02001194
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001195static void perf_session__mmap_read(struct perf_session *self)
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001196{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001197 struct perf_evsel *counter;
1198 int i, thread_index;
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001199
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001200 for (i = 0; i < cpus->nr; i++) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001201 list_for_each_entry(counter, &evsel_list, node) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001202 for (thread_index = 0;
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001203 thread_index < threads->nr;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001204 thread_index++) {
1205 perf_session__mmap_read_counter(self,
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001206 counter, i, thread_index);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001207 }
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001208 }
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001209 }
1210}
1211
Ingo Molnar716c69f2009-06-07 17:31:52 +02001212int nr_poll;
1213int group_fd;
1214
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001215static void start_counter(int i, struct perf_evsel *evsel)
Ingo Molnar07800602009-04-20 15:00:56 +02001216{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001217 struct xyarray *mmap_array = evsel->priv;
1218 struct mmap_data *mm;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001219 struct perf_event_attr *attr;
Corey Ashford01797c52010-11-08 18:20:45 -08001220 int cpu = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001221 int thread_index;
Ingo Molnar716c69f2009-06-07 17:31:52 +02001222
Corey Ashford01797c52010-11-08 18:20:45 -08001223 if (target_tid == -1)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001224 cpu = cpus->map[i];
Ingo Molnar716c69f2009-06-07 17:31:52 +02001225
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001226 attr = &evsel->attr;
Ingo Molnar716c69f2009-06-07 17:31:52 +02001227
1228 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +02001229
1230 if (freq) {
1231 attr->sample_type |= PERF_SAMPLE_PERIOD;
1232 attr->freq = 1;
1233 attr->sample_freq = freq;
1234 }
1235
Mike Galbraith0fdc7e62009-07-21 10:30:36 +02001236 attr->inherit = (cpu < 0) && inherit;
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001237 attr->mmap = 1;
Ingo Molnar716c69f2009-06-07 17:31:52 +02001238
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001239 for (thread_index = 0; thread_index < threads->nr; thread_index++) {
Ingo Molnar716c69f2009-06-07 17:31:52 +02001240try_again:
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001241 FD(evsel, i, thread_index) = sys_perf_event_open(attr,
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001242 threads->map[thread_index], cpu, group_fd, 0);
Ingo Molnar716c69f2009-06-07 17:31:52 +02001243
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001244 if (FD(evsel, i, thread_index) < 0) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001245 int err = errno;
Ingo Molnar716c69f2009-06-07 17:31:52 +02001246
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001247 if (err == EPERM || err == EACCES)
Corey Ashfordd9cf8372010-11-19 17:37:24 -08001248 die("Permission error - are you root?\n"
1249 "\t Consider tweaking"
1250 " /proc/sys/kernel/perf_event_paranoid.\n");
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001251 /*
1252 * If it's cycles then fall back to hrtimer
1253 * based cpu-clock-tick sw counter, which
1254 * is always available even if no PMU support:
1255 */
1256 if (attr->type == PERF_TYPE_HARDWARE
1257 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar716c69f2009-06-07 17:31:52 +02001258
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001259 if (verbose)
1260 warning(" ... trying to fall back to cpu-clock-ticks\n");
Ingo Molnar3da297a2009-06-07 17:39:02 +02001261
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001262 attr->type = PERF_TYPE_SOFTWARE;
1263 attr->config = PERF_COUNT_SW_CPU_CLOCK;
1264 goto try_again;
1265 }
1266 printf("\n");
Corey Ashfordd9cf8372010-11-19 17:37:24 -08001267 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 -02001268 FD(evsel, i, thread_index), strerror(err));
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001269 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
1270 exit(-1);
Ingo Molnar716c69f2009-06-07 17:31:52 +02001271 }
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001272 assert(FD(evsel, i, thread_index) >= 0);
1273 fcntl(FD(evsel, i, thread_index), F_SETFL, O_NONBLOCK);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001274
1275 /*
1276 * First counter acts as the group leader:
1277 */
1278 if (group && group_fd == -1)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001279 group_fd = FD(evsel, i, thread_index);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001280
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001281 event_array[nr_poll].fd = FD(evsel, i, thread_index);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001282 event_array[nr_poll].events = POLLIN;
1283 nr_poll++;
1284
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001285 mm = xyarray__entry(mmap_array, i, thread_index);
1286 mm->prev = 0;
1287 mm->mask = mmap_pages*page_size - 1;
1288 mm->base = mmap(NULL, (mmap_pages+1)*page_size,
1289 PROT_READ, MAP_SHARED, FD(evsel, i, thread_index), 0);
1290 if (mm->base == MAP_FAILED)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001291 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
Ingo Molnar716c69f2009-06-07 17:31:52 +02001292 }
Ingo Molnar716c69f2009-06-07 17:31:52 +02001293}
1294
1295static int __cmd_top(void)
1296{
1297 pthread_t thread;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001298 struct perf_evsel *counter;
1299 int i, ret;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001300 /*
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -02001301 * FIXME: perf_session__new should allow passing a O_MMAP, so that all this
1302 * mmap reading, etc is encapsulated in it. Use O_WRONLY for now.
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001303 */
Ian Munsie21ef97f2010-12-10 14:09:16 +11001304 struct perf_session *session = perf_session__new(NULL, O_WRONLY, false, false, NULL);
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -02001305 if (session == NULL)
1306 return -ENOMEM;
Ingo Molnar07800602009-04-20 15:00:56 +02001307
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001308 if (target_tid != -1)
1309 event__synthesize_thread(target_tid, event__process, session);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001310 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001311 event__synthesize_threads(event__process, session);
Arnaldo Carvalho de Melo5b2bb752009-10-26 19:23:19 -02001312
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001313 for (i = 0; i < cpus->nr; i++) {
Ingo Molnar07800602009-04-20 15:00:56 +02001314 group_fd = -1;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001315 list_for_each_entry(counter, &evsel_list, node)
Ingo Molnar716c69f2009-06-07 17:31:52 +02001316 start_counter(i, counter);
Ingo Molnar07800602009-04-20 15:00:56 +02001317 }
1318
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001319 /* Wait for a minimal set of events before starting the snapshot */
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001320 poll(&event_array[0], nr_poll, 100);
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001321
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001322 perf_session__mmap_read(session);
Frederic Weisbecker2f011902009-06-06 23:10:43 +02001323
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001324 if (pthread_create(&thread, NULL, display_thread, session)) {
Ingo Molnar07800602009-04-20 15:00:56 +02001325 printf("Could not create display thread.\n");
1326 exit(-1);
1327 }
1328
1329 if (realtime_prio) {
1330 struct sched_param param;
1331
1332 param.sched_priority = realtime_prio;
1333 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
1334 printf("Could not set realtime priority.\n");
1335 exit(-1);
1336 }
1337 }
1338
1339 while (1) {
Ingo Molnar2debbc82009-06-05 14:29:10 +02001340 int hits = samples;
Ingo Molnar07800602009-04-20 15:00:56 +02001341
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001342 perf_session__mmap_read(session);
Ingo Molnar07800602009-04-20 15:00:56 +02001343
Ingo Molnar2debbc82009-06-05 14:29:10 +02001344 if (hits == samples)
Ingo Molnar07800602009-04-20 15:00:56 +02001345 ret = poll(event_array, nr_poll, 100);
1346 }
1347
1348 return 0;
1349}
Ingo Molnarb456bae2009-05-26 09:17:18 +02001350
1351static const char * const top_usage[] = {
1352 "perf top [<options>]",
1353 NULL
1354};
1355
Ingo Molnarb456bae2009-05-26 09:17:18 +02001356static const struct option options[] = {
1357 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +02001358 "event selector. use 'perf list' to list available events",
1359 parse_events),
Ingo Molnarb456bae2009-05-26 09:17:18 +02001360 OPT_INTEGER('c', "count", &default_interval,
1361 "event period to sample"),
1362 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001363 "profile events on existing process id"),
1364 OPT_INTEGER('t', "tid", &target_tid,
1365 "profile events on existing thread id"),
Ingo Molnarb456bae2009-05-26 09:17:18 +02001366 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1367 "system-wide collection from all CPUs"),
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001368 OPT_STRING('C', "cpu", &cpu_list, "cpu",
1369 "list of cpus to monitor"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -02001370 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1371 "file", "vmlinux pathname"),
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001372 OPT_BOOLEAN('K', "hide_kernel_symbols", &hide_kernel_symbols,
1373 "hide kernel symbols"),
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -03001374 OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
Ingo Molnarb456bae2009-05-26 09:17:18 +02001375 OPT_INTEGER('r', "realtime", &realtime_prio,
1376 "collect data with this RT SCHED_FIFO priority"),
Mike Galbraithdb20c002009-05-26 15:25:34 +02001377 OPT_INTEGER('d', "delay", &delay_secs,
Ingo Molnarb456bae2009-05-26 09:17:18 +02001378 "number of seconds to delay between refreshes"),
1379 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
1380 "dump the symbol table used for profiling"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +02001381 OPT_INTEGER('f', "count-filter", &count_filter,
Ingo Molnarb456bae2009-05-26 09:17:18 +02001382 "only display functions with more events than this"),
1383 OPT_BOOLEAN('g', "group", &group,
1384 "put the counters into a counter group"),
Mike Galbraith0fdc7e62009-07-21 10:30:36 +02001385 OPT_BOOLEAN('i', "inherit", &inherit,
1386 "child tasks inherit counters"),
Mike Galbraith923c42c2009-07-22 20:36:03 +02001387 OPT_STRING('s', "sym-annotate", &sym_filter, "symbol name",
Kirill Smelkov6cff0e82010-02-03 16:52:08 -02001388 "symbol to annotate"),
Anton Blanchard1f208ea2009-07-01 09:00:44 +10001389 OPT_BOOLEAN('z', "zero", &zero,
Ingo Molnarb456bae2009-05-26 09:17:18 +02001390 "zero history across updates"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +02001391 OPT_INTEGER('F', "freq", &freq,
Ingo Molnarb456bae2009-05-26 09:17:18 +02001392 "profile at this frequency"),
Ingo Molnar6e53cdf2009-06-04 08:53:05 +02001393 OPT_INTEGER('E', "entries", &print_entries,
1394 "display this many functions"),
Arnaldo Carvalho de Melo8ffcda12009-11-16 21:45:24 -02001395 OPT_BOOLEAN('U', "hide_user_symbols", &hide_user_symbols,
1396 "hide user symbols"),
Ian Munsiec0555642010-04-13 18:37:33 +10001397 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar3da297a2009-06-07 17:39:02 +02001398 "be more verbose (show counter open errors, etc)"),
Ingo Molnarb456bae2009-05-26 09:17:18 +02001399 OPT_END()
1400};
1401
Ingo Molnarf37a2912009-07-01 12:37:06 +02001402int cmd_top(int argc, const char **argv, const char *prefix __used)
Ingo Molnarb456bae2009-05-26 09:17:18 +02001403{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001404 struct perf_evsel *pos;
1405 int status = -ENOMEM;
Ingo Molnarb456bae2009-05-26 09:17:18 +02001406
1407 page_size = sysconf(_SC_PAGE_SIZE);
1408
Ingo Molnarb456bae2009-05-26 09:17:18 +02001409 argc = parse_options(argc, argv, options, top_usage, 0);
1410 if (argc)
1411 usage_with_options(top_usage, options);
1412
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001413 if (target_pid != -1)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001414 target_tid = target_pid;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001415
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001416 threads = thread_map__new(target_pid, target_tid);
1417 if (threads == NULL) {
1418 pr_err("Problems finding threads of monitor\n");
1419 usage_with_options(top_usage, options);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001420 }
1421
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001422 event_array = malloc((sizeof(struct pollfd) *
1423 MAX_NR_CPUS * MAX_COUNTERS * threads->nr));
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001424 if (!event_array)
1425 return -ENOMEM;
1426
Ingo Molnarb456bae2009-05-26 09:17:18 +02001427 /* CPU and PID are mutually exclusive */
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001428 if (target_tid > 0 && cpu_list) {
Ingo Molnarb456bae2009-05-26 09:17:18 +02001429 printf("WARNING: PID switch overriding CPU\n");
1430 sleep(1);
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001431 cpu_list = NULL;
Ingo Molnarb456bae2009-05-26 09:17:18 +02001432 }
1433
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001434 if (!nr_counters && perf_evsel_list__create_default() < 0) {
1435 pr_err("Not enough memory for event selector list\n");
1436 return -ENOMEM;
1437 }
Arnaldo Carvalho de Melo5a8e5a32009-11-17 18:38:01 -02001438
Frederic Weisbecker2f335a02009-06-05 19:31:01 +02001439 if (delay_secs < 1)
1440 delay_secs = 1;
1441
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +02001442 /*
1443 * User specified count overrides default frequency.
1444 */
1445 if (default_interval)
1446 freq = 0;
1447 else if (freq) {
1448 default_interval = freq;
1449 } else {
1450 fprintf(stderr, "frequency and count are zero, aborting\n");
1451 exit(EXIT_FAILURE);
1452 }
1453
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001454 if (target_tid != -1)
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001455 cpus = cpu_map__dummy_new();
Paul Mackerrasa12b51c2010-03-10 20:36:09 +11001456 else
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001457 cpus = cpu_map__new(cpu_list);
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001458
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001459 if (cpus == NULL)
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001460 usage_with_options(top_usage, options);
Ingo Molnarb456bae2009-05-26 09:17:18 +02001461
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001462 list_for_each_entry(pos, &evsel_list, node) {
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001463 if (perf_evsel__alloc_mmap_per_thread(pos, cpus->nr, threads->nr) < 0 ||
1464 perf_evsel__alloc_fd(pos, cpus->nr, threads->nr) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001465 goto out_free_fd;
1466 /*
1467 * Fill in the ones not specifically initialized via -c:
1468 */
1469 if (pos->attr.sample_period)
1470 continue;
1471
1472 pos->attr.sample_period = default_interval;
1473 }
1474
Arnaldo Carvalho de Melocc841582011-01-11 15:16:52 -02001475 sym_evsel = list_entry(evsel_list.next, struct perf_evsel, node);
1476
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001477 symbol_conf.priv_size = (sizeof(struct sym_entry) +
1478 (nr_counters + 1) * sizeof(unsigned long));
1479
1480 symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
1481 if (symbol__init() < 0)
1482 return -1;
1483
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -02001484 get_term_dimensions(&winsize);
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -02001485 if (print_entries == 0) {
Arnaldo Carvalho de Melo13cc5072009-11-17 15:40:54 -02001486 update_print_entries(&winsize);
Arnaldo Carvalho de Melo3b6ed982009-11-16 19:30:27 -02001487 signal(SIGWINCH, sig_winch_handler);
1488 }
1489
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001490 status = __cmd_top();
1491out_free_fd:
Arnaldo Carvalho de Melo70d544d2011-01-03 16:51:39 -02001492 list_for_each_entry(pos, &evsel_list, node)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001493 perf_evsel__free_mmap(pos);
Arnaldo Carvalho de Melobd3bfe92011-01-11 12:42:00 -02001494 perf_evsel_list__delete();
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001495
1496 return status;
Ingo Molnarb456bae2009-05-26 09:17:18 +02001497}