perf threads: Move thread_map to separate file
[deliverable/linux.git] / tools / perf / builtin-top.c
CommitLineData
07800601 1/*
bf9e1876
IM
2 * 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)
07800601 18 */
bf9e1876 19#include "builtin.h"
07800601 20
1a482f38 21#include "perf.h"
bf9e1876 22
8fc0321f 23#include "util/color.h"
361c99a6 24#include "util/evlist.h"
69aad6f1 25#include "util/evsel.h"
b3165f41
ACM
26#include "util/session.h"
27#include "util/symbol.h"
439d473b 28#include "util/thread.h"
fd78260b 29#include "util/thread_map.h"
148be2c1 30#include "util/util.h"
43cbcd8a 31#include <linux/rbtree.h>
b456bae0
IM
32#include "util/parse-options.h"
33#include "util/parse-events.h"
a12b51c4 34#include "util/cpumap.h"
69aad6f1 35#include "util/xyarray.h"
07800601 36
8f28827a
FW
37#include "util/debug.h"
38
07800601
IM
39#include <assert.h>
40#include <fcntl.h>
0e9b20b8 41
07800601 42#include <stdio.h>
923c42c1
MG
43#include <termios.h>
44#include <unistd.h>
9486aa38 45#include <inttypes.h>
0e9b20b8 46
07800601 47#include <errno.h>
07800601
IM
48#include <time.h>
49#include <sched.h>
50#include <pthread.h>
51
52#include <sys/syscall.h>
53#include <sys/ioctl.h>
54#include <sys/poll.h>
55#include <sys/prctl.h>
56#include <sys/wait.h>
57#include <sys/uio.h>
58#include <sys/mman.h>
59
60#include <linux/unistd.h>
61#include <linux/types.h>
62
69aad6f1 63#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
07800601 64
361c99a6
ACM
65struct perf_evlist *evsel_list;
66
c0555642 67static bool system_wide = false;
07800601 68
7e4ff9e3 69static int default_interval = 0;
07800601 70
42e59d7d 71static int count_filter = 5;
3b6ed988 72static int print_entries;
07800601 73
42e59d7d 74static int target_pid = -1;
d6d901c2 75static int target_tid = -1;
5c98d466 76static struct thread_map *threads;
c0555642 77static bool inherit = false;
60d567e2 78static struct cpu_map *cpus;
1967936d 79static int realtime_prio = 0;
c0555642 80static bool group = false;
07800601 81static unsigned int page_size;
70db7533 82static unsigned int mmap_pages = 128;
42e59d7d 83static int freq = 1000; /* 1 KHz */
07800601 84
42e59d7d 85static int delay_secs = 2;
c0555642
IM
86static bool zero = false;
87static bool dump_symtab = false;
07800601 88
8ffcda17
ACM
89static bool hide_kernel_symbols = false;
90static bool hide_user_symbols = false;
13cc5079 91static struct winsize winsize;
8ffcda17 92
923c42c1
MG
93/*
94 * Source
95 */
96
97struct source_line {
98 u64 eip;
99 unsigned long count[MAX_COUNTERS];
100 char *line;
101 struct source_line *next;
102};
103
edb7c60e 104static const char *sym_filter = NULL;
42e59d7d 105struct sym_entry *sym_filter_entry = NULL;
6cff0e8d 106struct sym_entry *sym_filter_entry_sched = NULL;
42e59d7d
IM
107static int sym_pcnt_filter = 5;
108static int sym_counter = 0;
69aad6f1 109static struct perf_evsel *sym_evsel = NULL;
42e59d7d 110static int display_weighted = -1;
c45c6ea2 111static const char *cpu_list;
923c42c1 112
07800601
IM
113/*
114 * Symbols
115 */
116
b269876c
ACM
117struct sym_entry_source {
118 struct source_line *source;
119 struct source_line *lines;
120 struct source_line **lines_tail;
121 pthread_mutex_t lock;
122};
123
07800601 124struct sym_entry {
de04687f
ACM
125 struct rb_node rb_node;
126 struct list_head node;
c44613a4
ACM
127 unsigned long snap_count;
128 double weight;
07800601 129 int skip;
13cc5079 130 u16 name_len;
8ffcda17 131 u8 origin;
439d473b 132 struct map *map;
b269876c 133 struct sym_entry_source *src;
5a8e5a30 134 unsigned long count[0];
07800601
IM
135};
136
923c42c1
MG
137/*
138 * Source functions
139 */
140
51a472de
ACM
141static inline struct symbol *sym_entry__symbol(struct sym_entry *self)
142{
b32d133a 143 return ((void *)self) + symbol_conf.priv_size;
51a472de
ACM
144}
145
895f0edc 146void get_term_dimensions(struct winsize *ws)
3b6ed988 147{
13cc5079
ACM
148 char *s = getenv("LINES");
149
150 if (s != NULL) {
151 ws->ws_row = atoi(s);
152 s = getenv("COLUMNS");
153 if (s != NULL) {
154 ws->ws_col = atoi(s);
155 if (ws->ws_row && ws->ws_col)
156 return;
157 }
3b6ed988 158 }
13cc5079
ACM
159#ifdef TIOCGWINSZ
160 if (ioctl(1, TIOCGWINSZ, ws) == 0 &&
161 ws->ws_row && ws->ws_col)
162 return;
3b6ed988 163#endif
13cc5079
ACM
164 ws->ws_row = 25;
165 ws->ws_col = 80;
3b6ed988
ACM
166}
167
13cc5079 168static void update_print_entries(struct winsize *ws)
3b6ed988 169{
13cc5079
ACM
170 print_entries = ws->ws_row;
171
3b6ed988
ACM
172 if (print_entries > 9)
173 print_entries -= 9;
174}
175
176static void sig_winch_handler(int sig __used)
177{
13cc5079
ACM
178 get_term_dimensions(&winsize);
179 update_print_entries(&winsize);
3b6ed988
ACM
180}
181
b0a9ab62 182static int parse_source(struct sym_entry *syme)
923c42c1
MG
183{
184 struct symbol *sym;
b269876c 185 struct sym_entry_source *source;
439d473b 186 struct map *map;
923c42c1 187 FILE *file;
83a0944f 188 char command[PATH_MAX*2];
439d473b
ACM
189 const char *path;
190 u64 len;
923c42c1
MG
191
192 if (!syme)
b0a9ab62
ACM
193 return -1;
194
195 sym = sym_entry__symbol(syme);
196 map = syme->map;
197
198 /*
199 * We can't annotate with just /proc/kallsyms
200 */
201 if (map->dso->origin == DSO__ORIG_KERNEL)
202 return -1;
923c42c1 203
b269876c 204 if (syme->src == NULL) {
36479484 205 syme->src = zalloc(sizeof(*source));
b269876c 206 if (syme->src == NULL)
b0a9ab62 207 return -1;
b269876c
ACM
208 pthread_mutex_init(&syme->src->lock, NULL);
209 }
210
211 source = syme->src;
212
213 if (source->lines) {
214 pthread_mutex_lock(&source->lock);
923c42c1
MG
215 goto out_assign;
216 }
439d473b 217 path = map->dso->long_name;
923c42c1 218
923c42c1
MG
219 len = sym->end - sym->start;
220
439d473b 221 sprintf(command,
9486aa38 222 "objdump --start-address=%#0*" PRIx64 " --stop-address=%#0*" PRIx64 " -dS %s",
5f485364
ACM
223 BITS_PER_LONG / 4, map__rip_2objdump(map, sym->start),
224 BITS_PER_LONG / 4, map__rip_2objdump(map, sym->end), path);
923c42c1
MG
225
226 file = popen(command, "r");
227 if (!file)
b0a9ab62 228 return -1;
923c42c1 229
b269876c
ACM
230 pthread_mutex_lock(&source->lock);
231 source->lines_tail = &source->lines;
923c42c1
MG
232 while (!feof(file)) {
233 struct source_line *src;
234 size_t dummy = 0;
ee11b90b 235 char *c, *sep;
923c42c1
MG
236
237 src = malloc(sizeof(struct source_line));
238 assert(src != NULL);
239 memset(src, 0, sizeof(struct source_line));
240
241 if (getline(&src->line, &dummy, file) < 0)
242 break;
243 if (!src->line)
244 break;
245
246 c = strchr(src->line, '\n');
247 if (c)
248 *c = 0;
249
250 src->next = NULL;
b269876c
ACM
251 *source->lines_tail = src;
252 source->lines_tail = &src->next;
923c42c1 253
ee11b90b
KS
254 src->eip = strtoull(src->line, &sep, 16);
255 if (*sep == ':')
256 src->eip = map__objdump_2ip(map, src->eip);
257 else /* this line has no ip info (e.g. source line) */
258 src->eip = 0;
923c42c1
MG
259 }
260 pclose(file);
261out_assign:
262 sym_filter_entry = syme;
b269876c 263 pthread_mutex_unlock(&source->lock);
b0a9ab62 264 return 0;
923c42c1
MG
265}
266
267static void __zero_source_counters(struct sym_entry *syme)
268{
269 int i;
270 struct source_line *line;
271
b269876c 272 line = syme->src->lines;
923c42c1 273 while (line) {
361c99a6 274 for (i = 0; i < evsel_list->nr_entries; i++)
923c42c1
MG
275 line->count[i] = 0;
276 line = line->next;
277 }
278}
279
280static void record_precise_ip(struct sym_entry *syme, int counter, u64 ip)
281{
282 struct source_line *line;
283
284 if (syme != sym_filter_entry)
285 return;
286
b269876c 287 if (pthread_mutex_trylock(&syme->src->lock))
923c42c1
MG
288 return;
289
b269876c 290 if (syme->src == NULL || syme->src->source == NULL)
923c42c1
MG
291 goto out_unlock;
292
b269876c 293 for (line = syme->src->lines; line; line = line->next) {
ee11b90b
KS
294 /* skip lines without IP info */
295 if (line->eip == 0)
296 continue;
923c42c1
MG
297 if (line->eip == ip) {
298 line->count[counter]++;
299 break;
300 }
301 if (line->eip > ip)
302 break;
303 }
304out_unlock:
b269876c 305 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
306}
307
c7ad21af
ACM
308#define PATTERN_LEN (BITS_PER_LONG / 4 + 2)
309
923c42c1
MG
310static void lookup_sym_source(struct sym_entry *syme)
311{
51a472de 312 struct symbol *symbol = sym_entry__symbol(syme);
923c42c1 313 struct source_line *line;
c7ad21af 314 char pattern[PATTERN_LEN + 1];
923c42c1 315
9486aa38 316 sprintf(pattern, "%0*" PRIx64 " <", BITS_PER_LONG / 4,
5f485364 317 map__rip_2objdump(syme->map, symbol->start));
923c42c1 318
b269876c
ACM
319 pthread_mutex_lock(&syme->src->lock);
320 for (line = syme->src->lines; line; line = line->next) {
c7ad21af 321 if (memcmp(line->line, pattern, PATTERN_LEN) == 0) {
b269876c 322 syme->src->source = line;
923c42c1
MG
323 break;
324 }
325 }
b269876c 326 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
327}
328
329static void show_lines(struct source_line *queue, int count, int total)
330{
331 int i;
332 struct source_line *line;
333
334 line = queue;
335 for (i = 0; i < count; i++) {
336 float pcnt = 100.0*(float)line->count[sym_counter]/(float)total;
337
338 printf("%8li %4.1f%%\t%s\n", line->count[sym_counter], pcnt, line->line);
339 line = line->next;
340 }
341}
342
343#define TRACE_COUNT 3
344
345static void show_details(struct sym_entry *syme)
346{
347 struct symbol *symbol;
348 struct source_line *line;
349 struct source_line *line_queue = NULL;
350 int displayed = 0;
351 int line_queue_count = 0, total = 0, more = 0;
352
353 if (!syme)
354 return;
355
b269876c 356 if (!syme->src->source)
923c42c1
MG
357 lookup_sym_source(syme);
358
b269876c 359 if (!syme->src->source)
923c42c1
MG
360 return;
361
51a472de 362 symbol = sym_entry__symbol(syme);
69aad6f1 363 printf("Showing %s for %s\n", event_name(sym_evsel), symbol->name);
923c42c1
MG
364 printf(" Events Pcnt (>=%d%%)\n", sym_pcnt_filter);
365
b269876c
ACM
366 pthread_mutex_lock(&syme->src->lock);
367 line = syme->src->source;
923c42c1
MG
368 while (line) {
369 total += line->count[sym_counter];
370 line = line->next;
371 }
372
b269876c 373 line = syme->src->source;
923c42c1
MG
374 while (line) {
375 float pcnt = 0.0;
376
377 if (!line_queue_count)
378 line_queue = line;
379 line_queue_count++;
380
381 if (line->count[sym_counter])
382 pcnt = 100.0 * line->count[sym_counter] / (float)total;
383 if (pcnt >= (float)sym_pcnt_filter) {
384 if (displayed <= print_entries)
385 show_lines(line_queue, line_queue_count, total);
386 else more++;
387 displayed += line_queue_count;
388 line_queue_count = 0;
389 line_queue = NULL;
390 } else if (line_queue_count > TRACE_COUNT) {
391 line_queue = line_queue->next;
392 line_queue_count--;
393 }
394
395 line->count[sym_counter] = zero ? 0 : line->count[sym_counter] * 7 / 8;
396 line = line->next;
397 }
b269876c 398 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
399 if (more)
400 printf("%d lines not displayed, maybe increase display entries [e]\n", more);
401}
07800601 402
de04687f 403/*
5b2bb75a 404 * Symbols will be added here in event__process_sample and will get out
de04687f
ACM
405 * after decayed.
406 */
407static LIST_HEAD(active_symbols);
c44613a4 408static pthread_mutex_t active_symbols_lock = PTHREAD_MUTEX_INITIALIZER;
07800601 409
07800601
IM
410/*
411 * Ordering weight: count-1 * count-2 * ... / count-n
412 */
413static double sym_weight(const struct sym_entry *sym)
414{
c44613a4 415 double weight = sym->snap_count;
07800601
IM
416 int counter;
417
46ab9764
MG
418 if (!display_weighted)
419 return weight;
420
361c99a6 421 for (counter = 1; counter < evsel_list->nr_entries - 1; counter++)
07800601
IM
422 weight *= sym->count[counter];
423
424 weight /= (sym->count[counter] + 1);
425
426 return weight;
427}
428
2debbc83 429static long samples;
a1645ce1 430static long kernel_samples, us_samples;
1676b8a0 431static long exact_samples;
a1645ce1 432static long guest_us_samples, guest_kernel_samples;
07800601
IM
433static const char CONSOLE_CLEAR[] = "\e[H\e[2J";
434
c44613a4 435static void __list_insert_active_sym(struct sym_entry *syme)
de04687f
ACM
436{
437 list_add(&syme->node, &active_symbols);
438}
439
c44613a4
ACM
440static void list_remove_active_sym(struct sym_entry *syme)
441{
442 pthread_mutex_lock(&active_symbols_lock);
443 list_del_init(&syme->node);
444 pthread_mutex_unlock(&active_symbols_lock);
445}
446
de04687f
ACM
447static void rb_insert_active_sym(struct rb_root *tree, struct sym_entry *se)
448{
449 struct rb_node **p = &tree->rb_node;
450 struct rb_node *parent = NULL;
451 struct sym_entry *iter;
452
453 while (*p != NULL) {
454 parent = *p;
455 iter = rb_entry(parent, struct sym_entry, rb_node);
456
c44613a4 457 if (se->weight > iter->weight)
de04687f
ACM
458 p = &(*p)->rb_left;
459 else
460 p = &(*p)->rb_right;
461 }
462
463 rb_link_node(&se->rb_node, parent, p);
464 rb_insert_color(&se->rb_node, tree);
465}
07800601
IM
466
467static void print_sym_table(void)
468{
233f0b95 469 int printed = 0, j;
69aad6f1
ACM
470 struct perf_evsel *counter;
471 int snap = !display_weighted ? sym_counter : 0;
2debbc83 472 float samples_per_sec = samples/delay_secs;
a1645ce1
ZY
473 float ksamples_per_sec = kernel_samples/delay_secs;
474 float us_samples_per_sec = (us_samples)/delay_secs;
475 float guest_kernel_samples_per_sec = (guest_kernel_samples)/delay_secs;
476 float guest_us_samples_per_sec = (guest_us_samples)/delay_secs;
1676b8a0 477 float esamples_percent = (100.0*exact_samples)/samples;
2debbc83 478 float sum_ksamples = 0.0;
de04687f
ACM
479 struct sym_entry *syme, *n;
480 struct rb_root tmp = RB_ROOT;
481 struct rb_node *nd;
00909e95 482 int sym_width = 0, dso_width = 0, dso_short_width = 0;
13cc5079 483 const int win_width = winsize.ws_col - 1;
07800601 484
a1645ce1
ZY
485 samples = us_samples = kernel_samples = exact_samples = 0;
486 guest_kernel_samples = guest_us_samples = 0;
07800601 487
de04687f 488 /* Sort the active symbols */
c44613a4
ACM
489 pthread_mutex_lock(&active_symbols_lock);
490 syme = list_entry(active_symbols.next, struct sym_entry, node);
491 pthread_mutex_unlock(&active_symbols_lock);
492
493 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
46ab9764 494 syme->snap_count = syme->count[snap];
c44613a4 495 if (syme->snap_count != 0) {
13cc5079 496
8ffcda17
ACM
497 if ((hide_user_symbols &&
498 syme->origin == PERF_RECORD_MISC_USER) ||
499 (hide_kernel_symbols &&
500 syme->origin == PERF_RECORD_MISC_KERNEL)) {
501 list_remove_active_sym(syme);
502 continue;
503 }
c44613a4 504 syme->weight = sym_weight(syme);
de04687f 505 rb_insert_active_sym(&tmp, syme);
2debbc83 506 sum_ksamples += syme->snap_count;
d94b9430 507
361c99a6 508 for (j = 0; j < evsel_list->nr_entries; j++)
de04687f
ACM
509 syme->count[j] = zero ? 0 : syme->count[j] * 7 / 8;
510 } else
c44613a4 511 list_remove_active_sym(syme);
d94b9430
MG
512 }
513
0f5486b5 514 puts(CONSOLE_CLEAR);
07800601 515
13cc5079 516 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
a1645ce1
ZY
517 if (!perf_guest) {
518 printf(" PerfTop:%8.0f irqs/sec kernel:%4.1f%%"
519 " exact: %4.1f%% [",
520 samples_per_sec,
521 100.0 - (100.0 * ((samples_per_sec - ksamples_per_sec) /
522 samples_per_sec)),
523 esamples_percent);
524 } else {
525 printf(" PerfTop:%8.0f irqs/sec kernel:%4.1f%% us:%4.1f%%"
526 " guest kernel:%4.1f%% guest us:%4.1f%%"
527 " exact: %4.1f%% [",
528 samples_per_sec,
529 100.0 - (100.0 * ((samples_per_sec-ksamples_per_sec) /
530 samples_per_sec)),
531 100.0 - (100.0 * ((samples_per_sec-us_samples_per_sec) /
532 samples_per_sec)),
533 100.0 - (100.0 * ((samples_per_sec -
534 guest_kernel_samples_per_sec) /
535 samples_per_sec)),
536 100.0 - (100.0 * ((samples_per_sec -
537 guest_us_samples_per_sec) /
538 samples_per_sec)),
539 esamples_percent);
540 }
07800601 541
361c99a6 542 if (evsel_list->nr_entries == 1 || !display_weighted) {
69aad6f1 543 struct perf_evsel *first;
361c99a6 544 first = list_entry(evsel_list->entries.next, struct perf_evsel, node);
9486aa38 545 printf("%" PRIu64, (uint64_t)first->attr.sample_period);
cf1f4574
IM
546 if (freq)
547 printf("Hz ");
548 else
549 printf(" ");
550 }
07800601 551
46ab9764 552 if (!display_weighted)
69aad6f1 553 printf("%s", event_name(sym_evsel));
361c99a6 554 else list_for_each_entry(counter, &evsel_list->entries, node) {
69aad6f1 555 if (counter->idx)
07800601
IM
556 printf("/");
557
558 printf("%s", event_name(counter));
559 }
560
561 printf( "], ");
562
b456bae0
IM
563 if (target_pid != -1)
564 printf(" (target_pid: %d", target_pid);
d6d901c2
ZY
565 else if (target_tid != -1)
566 printf(" (target_tid: %d", target_tid);
07800601
IM
567 else
568 printf(" (all");
569
01797c59 570 if (cpu_list)
60d567e2 571 printf(", CPU%s: %s)\n", cpus->nr > 1 ? "s" : "", cpu_list);
07800601 572 else {
d6d901c2 573 if (target_tid != -1)
07800601
IM
574 printf(")\n");
575 else
60d567e2 576 printf(", %d CPU%s)\n", cpus->nr, cpus->nr > 1 ? "s" : "");
07800601
IM
577 }
578
1a105f74 579 printf("%-*.*s\n", win_width, win_width, graph_dotted_line);
07800601 580
923c42c1
MG
581 if (sym_filter_entry) {
582 show_details(sym_filter_entry);
583 return;
584 }
585
13cc5079
ACM
586 /*
587 * Find the longest symbol name that will be displayed
588 */
589 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
590 syme = rb_entry(nd, struct sym_entry, rb_node);
591 if (++printed > print_entries ||
592 (int)syme->snap_count < count_filter)
593 continue;
594
1a105f74
ACM
595 if (syme->map->dso->long_name_len > dso_width)
596 dso_width = syme->map->dso->long_name_len;
597
b63be8d7
ACM
598 if (syme->map->dso->short_name_len > dso_short_width)
599 dso_short_width = syme->map->dso->short_name_len;
600
13cc5079
ACM
601 if (syme->name_len > sym_width)
602 sym_width = syme->name_len;
603 }
604
605 printed = 0;
606
b63be8d7
ACM
607 if (sym_width + dso_width > winsize.ws_col - 29) {
608 dso_width = dso_short_width;
609 if (sym_width + dso_width > winsize.ws_col - 29)
610 sym_width = winsize.ws_col - dso_width - 29;
611 }
7cc017ed 612 putchar('\n');
361c99a6 613 if (evsel_list->nr_entries == 1)
5b2bb75a 614 printf(" samples pcnt");
07800601 615 else
5b2bb75a 616 printf(" weight samples pcnt");
07800601 617
7ced156b
ACM
618 if (verbose)
619 printf(" RIP ");
7cc017ed 620 printf(" %-*.*s DSO\n", sym_width, sym_width, "function");
5b2bb75a 621 printf(" %s _______ _____",
361c99a6 622 evsel_list->nr_entries == 1 ? " " : "______");
7ced156b 623 if (verbose)
5b2bb75a 624 printf(" ________________");
1a105f74 625 printf(" %-*.*s", sym_width, sym_width, graph_line);
7cc017ed 626 printf(" %-*.*s", dso_width, dso_width, graph_line);
1a105f74 627 puts("\n");
07800601 628
de04687f 629 for (nd = rb_first(&tmp); nd; nd = rb_next(nd)) {
83a0944f 630 struct symbol *sym;
8fc0321f 631 double pcnt;
d94b9430 632
83a0944f 633 syme = rb_entry(nd, struct sym_entry, rb_node);
51a472de 634 sym = sym_entry__symbol(syme);
923c42c1 635 if (++printed > print_entries || (int)syme->snap_count < count_filter)
c44613a4 636 continue;
d94b9430 637
2debbc83
IM
638 pcnt = 100.0 - (100.0 * ((sum_ksamples - syme->snap_count) /
639 sum_ksamples));
d94b9430 640
361c99a6 641 if (evsel_list->nr_entries == 1 || !display_weighted)
5b2bb75a 642 printf("%20.2f ", syme->weight);
d94b9430 643 else
5b2bb75a 644 printf("%9.1f %10ld ", syme->weight, syme->snap_count);
8fc0321f 645
1e11fd82 646 percent_color_fprintf(stdout, "%4.1f%%", pcnt);
7ced156b 647 if (verbose)
9486aa38 648 printf(" %016" PRIx64, sym->start);
13cc5079 649 printf(" %-*.*s", sym_width, sym_width, sym->name);
7cc017ed
ACM
650 printf(" %-*.*s\n", dso_width, dso_width,
651 dso_width >= syme->map->dso->long_name_len ?
652 syme->map->dso->long_name :
653 syme->map->dso->short_name);
07800601 654 }
07800601
IM
655}
656
923c42c1
MG
657static void prompt_integer(int *target, const char *msg)
658{
659 char *buf = malloc(0), *p;
660 size_t dummy = 0;
661 int tmp;
662
663 fprintf(stdout, "\n%s: ", msg);
664 if (getline(&buf, &dummy, stdin) < 0)
665 return;
666
667 p = strchr(buf, '\n');
668 if (p)
669 *p = 0;
670
671 p = buf;
672 while(*p) {
673 if (!isdigit(*p))
674 goto out_free;
675 p++;
676 }
677 tmp = strtoul(buf, NULL, 10);
678 *target = tmp;
679out_free:
680 free(buf);
681}
682
683static void prompt_percent(int *target, const char *msg)
684{
685 int tmp = 0;
686
687 prompt_integer(&tmp, msg);
688 if (tmp >= 0 && tmp <= 100)
689 *target = tmp;
690}
691
692static void prompt_symbol(struct sym_entry **target, const char *msg)
693{
694 char *buf = malloc(0), *p;
695 struct sym_entry *syme = *target, *n, *found = NULL;
696 size_t dummy = 0;
697
698 /* zero counters of active symbol */
699 if (syme) {
b269876c 700 pthread_mutex_lock(&syme->src->lock);
923c42c1
MG
701 __zero_source_counters(syme);
702 *target = NULL;
b269876c 703 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
704 }
705
706 fprintf(stdout, "\n%s: ", msg);
707 if (getline(&buf, &dummy, stdin) < 0)
708 goto out_free;
709
710 p = strchr(buf, '\n');
711 if (p)
712 *p = 0;
713
714 pthread_mutex_lock(&active_symbols_lock);
715 syme = list_entry(active_symbols.next, struct sym_entry, node);
716 pthread_mutex_unlock(&active_symbols_lock);
717
718 list_for_each_entry_safe_from(syme, n, &active_symbols, node) {
51a472de 719 struct symbol *sym = sym_entry__symbol(syme);
923c42c1
MG
720
721 if (!strcmp(buf, sym->name)) {
722 found = syme;
723 break;
724 }
725 }
726
727 if (!found) {
66aeb6d5 728 fprintf(stderr, "Sorry, %s is not active.\n", buf);
923c42c1
MG
729 sleep(1);
730 return;
731 } else
732 parse_source(found);
733
734out_free:
735 free(buf);
736}
737
091bd2e9 738static void print_mapped_keys(void)
923c42c1 739{
091bd2e9
MG
740 char *name = NULL;
741
742 if (sym_filter_entry) {
51a472de 743 struct symbol *sym = sym_entry__symbol(sym_filter_entry);
091bd2e9
MG
744 name = sym->name;
745 }
746
747 fprintf(stdout, "\nMapped keys:\n");
748 fprintf(stdout, "\t[d] display refresh delay. \t(%d)\n", delay_secs);
749 fprintf(stdout, "\t[e] display entries (lines). \t(%d)\n", print_entries);
750
361c99a6 751 if (evsel_list->nr_entries > 1)
69aad6f1 752 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", event_name(sym_evsel));
091bd2e9
MG
753
754 fprintf(stdout, "\t[f] profile display filter (count). \t(%d)\n", count_filter);
755
6cff0e8d
KS
756 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", sym_pcnt_filter);
757 fprintf(stdout, "\t[s] annotate symbol. \t(%s)\n", name?: "NULL");
758 fprintf(stdout, "\t[S] stop annotation.\n");
091bd2e9 759
361c99a6 760 if (evsel_list->nr_entries > 1)
091bd2e9
MG
761 fprintf(stdout, "\t[w] toggle display weighted/count[E]r. \t(%d)\n", display_weighted ? 1 : 0);
762
8ffcda17 763 fprintf(stdout,
1a72cfa6 764 "\t[K] hide kernel_symbols symbols. \t(%s)\n",
8ffcda17
ACM
765 hide_kernel_symbols ? "yes" : "no");
766 fprintf(stdout,
767 "\t[U] hide user symbols. \t(%s)\n",
768 hide_user_symbols ? "yes" : "no");
46ab9764 769 fprintf(stdout, "\t[z] toggle sample zeroing. \t(%d)\n", zero ? 1 : 0);
091bd2e9
MG
770 fprintf(stdout, "\t[qQ] quit.\n");
771}
772
773static int key_mapped(int c)
774{
775 switch (c) {
776 case 'd':
777 case 'e':
778 case 'f':
779 case 'z':
780 case 'q':
781 case 'Q':
8ffcda17
ACM
782 case 'K':
783 case 'U':
6cff0e8d
KS
784 case 'F':
785 case 's':
786 case 'S':
091bd2e9
MG
787 return 1;
788 case 'E':
789 case 'w':
361c99a6 790 return evsel_list->nr_entries > 1 ? 1 : 0;
83a0944f
IM
791 default:
792 break;
091bd2e9
MG
793 }
794
795 return 0;
923c42c1
MG
796}
797
a1645ce1 798static void handle_keypress(struct perf_session *session, int c)
923c42c1 799{
091bd2e9
MG
800 if (!key_mapped(c)) {
801 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
802 struct termios tc, save;
803
804 print_mapped_keys();
805 fprintf(stdout, "\nEnter selection, or unmapped key to continue: ");
806 fflush(stdout);
807
808 tcgetattr(0, &save);
809 tc = save;
810 tc.c_lflag &= ~(ICANON | ECHO);
811 tc.c_cc[VMIN] = 0;
812 tc.c_cc[VTIME] = 0;
813 tcsetattr(0, TCSANOW, &tc);
814
815 poll(&stdin_poll, 1, -1);
816 c = getc(stdin);
817
818 tcsetattr(0, TCSAFLUSH, &save);
819 if (!key_mapped(c))
820 return;
821 }
822
923c42c1
MG
823 switch (c) {
824 case 'd':
825 prompt_integer(&delay_secs, "Enter display delay");
dc79959a
TB
826 if (delay_secs < 1)
827 delay_secs = 1;
923c42c1
MG
828 break;
829 case 'e':
830 prompt_integer(&print_entries, "Enter display entries (lines)");
3b6ed988 831 if (print_entries == 0) {
13cc5079 832 sig_winch_handler(SIGWINCH);
3b6ed988
ACM
833 signal(SIGWINCH, sig_winch_handler);
834 } else
835 signal(SIGWINCH, SIG_DFL);
923c42c1
MG
836 break;
837 case 'E':
361c99a6 838 if (evsel_list->nr_entries > 1) {
923c42c1 839 fprintf(stderr, "\nAvailable events:");
69aad6f1 840
361c99a6 841 list_for_each_entry(sym_evsel, &evsel_list->entries, node)
69aad6f1 842 fprintf(stderr, "\n\t%d %s", sym_evsel->idx, event_name(sym_evsel));
923c42c1
MG
843
844 prompt_integer(&sym_counter, "Enter details event counter");
845
361c99a6
ACM
846 if (sym_counter >= evsel_list->nr_entries) {
847 sym_evsel = list_entry(evsel_list->entries.next, struct perf_evsel, node);
923c42c1 848 sym_counter = 0;
69aad6f1 849 fprintf(stderr, "Sorry, no such event, using %s.\n", event_name(sym_evsel));
923c42c1 850 sleep(1);
69aad6f1 851 break;
923c42c1 852 }
361c99a6 853 list_for_each_entry(sym_evsel, &evsel_list->entries, node)
69aad6f1
ACM
854 if (sym_evsel->idx == sym_counter)
855 break;
923c42c1
MG
856 } else sym_counter = 0;
857 break;
858 case 'f':
859 prompt_integer(&count_filter, "Enter display event count filter");
860 break;
861 case 'F':
862 prompt_percent(&sym_pcnt_filter, "Enter details display event filter (percent)");
863 break;
8ffcda17
ACM
864 case 'K':
865 hide_kernel_symbols = !hide_kernel_symbols;
866 break;
923c42c1
MG
867 case 'q':
868 case 'Q':
869 printf("exiting.\n");
c338aee8 870 if (dump_symtab)
cbf69680 871 perf_session__fprintf_dsos(session, stderr);
923c42c1
MG
872 exit(0);
873 case 's':
874 prompt_symbol(&sym_filter_entry, "Enter details symbol");
875 break;
876 case 'S':
877 if (!sym_filter_entry)
878 break;
879 else {
880 struct sym_entry *syme = sym_filter_entry;
881
b269876c 882 pthread_mutex_lock(&syme->src->lock);
923c42c1
MG
883 sym_filter_entry = NULL;
884 __zero_source_counters(syme);
b269876c 885 pthread_mutex_unlock(&syme->src->lock);
923c42c1
MG
886 }
887 break;
8ffcda17
ACM
888 case 'U':
889 hide_user_symbols = !hide_user_symbols;
890 break;
46ab9764
MG
891 case 'w':
892 display_weighted = ~display_weighted;
893 break;
923c42c1 894 case 'z':
c0555642 895 zero = !zero;
923c42c1 896 break;
83a0944f
IM
897 default:
898 break;
923c42c1
MG
899 }
900}
901
f37a291c 902static void *display_thread(void *arg __used)
07800601 903{
0f5486b5 904 struct pollfd stdin_poll = { .fd = 0, .events = POLLIN };
923c42c1
MG
905 struct termios tc, save;
906 int delay_msecs, c;
a1645ce1 907 struct perf_session *session = (struct perf_session *) arg;
923c42c1
MG
908
909 tcgetattr(0, &save);
910 tc = save;
911 tc.c_lflag &= ~(ICANON | ECHO);
912 tc.c_cc[VMIN] = 0;
913 tc.c_cc[VTIME] = 0;
091bd2e9 914
923c42c1
MG
915repeat:
916 delay_msecs = delay_secs * 1000;
917 tcsetattr(0, TCSANOW, &tc);
918 /* trash return*/
919 getc(stdin);
07800601 920
0f5486b5 921 do {
07800601 922 print_sym_table();
0f5486b5
FW
923 } while (!poll(&stdin_poll, 1, delay_msecs) == 1);
924
923c42c1
MG
925 c = getc(stdin);
926 tcsetattr(0, TCSAFLUSH, &save);
927
a1645ce1 928 handle_keypress(session, c);
923c42c1 929 goto repeat;
07800601
IM
930
931 return NULL;
932}
933
2ab52083 934/* Tag samples to be skipped. */
f37a291c 935static const char *skip_symbols[] = {
2ab52083 936 "default_idle",
b0e8572f 937 "native_safe_halt",
2ab52083
AB
938 "cpu_idle",
939 "enter_idle",
940 "exit_idle",
941 "mwait_idle",
59b90056 942 "mwait_idle_with_hints",
8357275b 943 "poll_idle",
3a3393ef
AB
944 "ppc64_runlatch_off",
945 "pseries_dedicated_idle_sleep",
2ab52083
AB
946 NULL
947};
948
439d473b 949static int symbol_filter(struct map *map, struct symbol *sym)
07800601 950{
de04687f
ACM
951 struct sym_entry *syme;
952 const char *name = sym->name;
2ab52083 953 int i;
de04687f 954
3a3393ef
AB
955 /*
956 * ppc64 uses function descriptors and appends a '.' to the
957 * start of every instruction address. Remove it.
958 */
959 if (name[0] == '.')
960 name++;
961
de04687f
ACM
962 if (!strcmp(name, "_text") ||
963 !strcmp(name, "_etext") ||
964 !strcmp(name, "_sinittext") ||
965 !strncmp("init_module", name, 11) ||
966 !strncmp("cleanup_module", name, 14) ||
967 strstr(name, "_text_start") ||
968 strstr(name, "_text_end"))
07800601 969 return 1;
07800601 970
00a192b3 971 syme = symbol__priv(sym);
439d473b 972 syme->map = map;
b269876c 973 syme->src = NULL;
6cff0e8d
KS
974
975 if (!sym_filter_entry && sym_filter && !strcmp(name, sym_filter)) {
976 /* schedule initial sym_filter_entry setup */
977 sym_filter_entry_sched = syme;
978 sym_filter = NULL;
979 }
923c42c1 980
2ab52083
AB
981 for (i = 0; skip_symbols[i]; i++) {
982 if (!strcmp(skip_symbols[i], name)) {
983 syme->skip = 1;
984 break;
985 }
986 }
07800601 987
13cc5079
ACM
988 if (!syme->skip)
989 syme->name_len = strlen(sym->name);
990
07800601
IM
991 return 0;
992}
993
b3165f41 994static void event__process_sample(const event_t *self,
9c90a61c 995 struct sample_data *sample,
70db7533 996 struct perf_session *session)
07800601 997{
5b2bb75a 998 u64 ip = self->ip.ip;
5b2bb75a 999 struct sym_entry *syme;
1ed091c4 1000 struct addr_location al;
23346f21 1001 struct machine *machine;
8ffcda17 1002 u8 origin = self->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
5b2bb75a 1003
24bfef0f
ACM
1004 ++samples;
1005
8ffcda17 1006 switch (origin) {
1ed091c4 1007 case PERF_RECORD_MISC_USER:
a1645ce1 1008 ++us_samples;
8ffcda17
ACM
1009 if (hide_user_symbols)
1010 return;
23346f21 1011 machine = perf_session__find_host_machine(session);
1ed091c4 1012 break;
5b2bb75a 1013 case PERF_RECORD_MISC_KERNEL:
a1645ce1 1014 ++kernel_samples;
8ffcda17
ACM
1015 if (hide_kernel_symbols)
1016 return;
23346f21 1017 machine = perf_session__find_host_machine(session);
a1645ce1
ZY
1018 break;
1019 case PERF_RECORD_MISC_GUEST_KERNEL:
1020 ++guest_kernel_samples;
23346f21 1021 machine = perf_session__find_machine(session, self->ip.pid);
5b2bb75a 1022 break;
a1645ce1
ZY
1023 case PERF_RECORD_MISC_GUEST_USER:
1024 ++guest_us_samples;
1025 /*
1026 * TODO: we don't process guest user from host side
1027 * except simple counting.
1028 */
1029 return;
5b2bb75a
ACM
1030 default:
1031 return;
1032 }
1033
23346f21 1034 if (!machine && perf_guest) {
a1645ce1
ZY
1035 pr_err("Can't find guest [%d]'s kernel information\n",
1036 self->ip.pid);
1037 return;
1038 }
1039
ab608344 1040 if (self->header.misc & PERF_RECORD_MISC_EXACT_IP)
1676b8a0
PZ
1041 exact_samples++;
1042
9c90a61c 1043 if (event__preprocess_sample(self, session, &al, sample,
41a37e20 1044 symbol_filter) < 0 ||
72b8fa17 1045 al.filtered)
1ed091c4 1046 return;
07800601 1047
72b8fa17
ACM
1048 if (al.sym == NULL) {
1049 /*
1050 * As we do lazy loading of symtabs we only will know if the
1051 * specified vmlinux file is invalid when we actually have a
1052 * hit in kernel space and then try to load it. So if we get
1053 * here and there are _no_ symbols in the DSO backing the
1054 * kernel map, bail out.
1055 *
1056 * We may never get here, for instance, if we use -K/
1057 * --hide-kernel-symbols, even if the user specifies an
1058 * invalid --vmlinux ;-)
1059 */
23346f21 1060 if (al.map == machine->vmlinux_maps[MAP__FUNCTION] &&
72b8fa17
ACM
1061 RB_EMPTY_ROOT(&al.map->dso->symbols[MAP__FUNCTION])) {
1062 pr_err("The %s file can't be used\n",
1063 symbol_conf.vmlinux_name);
1064 exit(1);
1065 }
1066
1067 return;
1068 }
1069
6cff0e8d
KS
1070 /* let's see, whether we need to install initial sym_filter_entry */
1071 if (sym_filter_entry_sched) {
1072 sym_filter_entry = sym_filter_entry_sched;
1073 sym_filter_entry_sched = NULL;
b0a9ab62
ACM
1074 if (parse_source(sym_filter_entry) < 0) {
1075 struct symbol *sym = sym_entry__symbol(sym_filter_entry);
1076
1077 pr_err("Can't annotate %s", sym->name);
1078 if (sym_filter_entry->map->dso->origin == DSO__ORIG_KERNEL) {
1079 pr_err(": No vmlinux file was found in the path:\n");
5ad90e4e 1080 machine__fprintf_vmlinux_path(machine, stderr);
b0a9ab62
ACM
1081 } else
1082 pr_err(".\n");
1083 exit(1);
1084 }
6cff0e8d
KS
1085 }
1086
1ed091c4 1087 syme = symbol__priv(al.sym);
5b2bb75a 1088 if (!syme->skip) {
70db7533
ACM
1089 struct perf_evsel *evsel;
1090
8ffcda17 1091 syme->origin = origin;
70db7533
ACM
1092 evsel = perf_evlist__id2evsel(evsel_list, sample->id);
1093 assert(evsel != NULL);
1094 syme->count[evsel->idx]++;
69aad6f1 1095 record_precise_ip(syme, evsel->idx, ip);
5b2bb75a
ACM
1096 pthread_mutex_lock(&active_symbols_lock);
1097 if (list_empty(&syme->node) || !syme->node.next)
1098 __list_insert_active_sym(syme);
1099 pthread_mutex_unlock(&active_symbols_lock);
5b2bb75a 1100 }
07800601
IM
1101}
1102
70db7533 1103static void perf_session__mmap_read_cpu(struct perf_session *self, int cpu)
07800601 1104{
9c90a61c 1105 struct sample_data sample;
04391deb 1106 event_t *event;
07800601 1107
04391deb 1108 while ((event = perf_evlist__read_on_cpu(evsel_list, cpu)) != NULL) {
9c90a61c 1109 event__parse_sample(event, self, &sample);
04391deb 1110
5b2bb75a 1111 if (event->header.type == PERF_RECORD_SAMPLE)
70db7533 1112 event__process_sample(event, &sample, self);
5b2bb75a 1113 else
9c90a61c 1114 event__process(event, &sample, self);
07800601 1115 }
07800601
IM
1116}
1117
d8f66248 1118static void perf_session__mmap_read(struct perf_session *self)
2f01190a 1119{
70db7533
ACM
1120 int i;
1121
1122 for (i = 0; i < cpus->nr; i++)
1123 perf_session__mmap_read_cpu(self, i);
2f01190a
FW
1124}
1125
72cb7013
ACM
1126static void start_counters(struct perf_evlist *evlist)
1127{
1128 struct perf_evsel *counter;
7e4ff9e3 1129
72cb7013
ACM
1130 list_for_each_entry(counter, &evlist->entries, node) {
1131 struct perf_event_attr *attr = &counter->attr;
716c69fe 1132
72cb7013
ACM
1133 attr->sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_TID;
1134
1135 if (freq) {
1136 attr->sample_type |= PERF_SAMPLE_PERIOD;
1137 attr->freq = 1;
1138 attr->sample_freq = freq;
1139 }
d6d901c2 1140
70db7533
ACM
1141 if (evlist->nr_entries > 1) {
1142 attr->sample_type |= PERF_SAMPLE_ID;
1143 attr->read_format |= PERF_FORMAT_ID;
1144 }
1145
72cb7013
ACM
1146 attr->mmap = 1;
1147try_again:
1148 if (perf_evsel__open(counter, cpus, threads, group, inherit) < 0) {
d6d901c2
ZY
1149 int err = errno;
1150
1151 if (err == EPERM || err == EACCES)
d9cf837e
CA
1152 die("Permission error - are you root?\n"
1153 "\t Consider tweaking"
1154 " /proc/sys/kernel/perf_event_paranoid.\n");
d6d901c2
ZY
1155 /*
1156 * If it's cycles then fall back to hrtimer
1157 * based cpu-clock-tick sw counter, which
1158 * is always available even if no PMU support:
1159 */
72cb7013
ACM
1160 if (attr->type == PERF_TYPE_HARDWARE &&
1161 attr->config == PERF_COUNT_HW_CPU_CYCLES) {
d6d901c2
ZY
1162
1163 if (verbose)
1164 warning(" ... trying to fall back to cpu-clock-ticks\n");
1165
1166 attr->type = PERF_TYPE_SOFTWARE;
1167 attr->config = PERF_COUNT_SW_CPU_CLOCK;
1168 goto try_again;
1169 }
1170 printf("\n");
72cb7013
ACM
1171 error("sys_perf_event_open() syscall returned with %d "
1172 "(%s). /bin/dmesg may provide additional information.\n",
1173 err, strerror(err));
d6d901c2
ZY
1174 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
1175 exit(-1);
1176 }
716c69fe 1177 }
70db7533
ACM
1178
1179 if (perf_evlist__mmap(evlist, cpus, threads, mmap_pages, true) < 0)
1180 die("failed to mmap with %d (%s)\n", errno, strerror(errno));
716c69fe
IM
1181}
1182
1183static int __cmd_top(void)
1184{
1185 pthread_t thread;
70db7533 1186 struct perf_evsel *first;
72cb7013 1187 int ret;
d8f66248 1188 /*
b3165f41
ACM
1189 * FIXME: perf_session__new should allow passing a O_MMAP, so that all this
1190 * mmap reading, etc is encapsulated in it. Use O_WRONLY for now.
d8f66248 1191 */
21ef97f0 1192 struct perf_session *session = perf_session__new(NULL, O_WRONLY, false, false, NULL);
b3165f41
ACM
1193 if (session == NULL)
1194 return -ENOMEM;
07800601 1195
d6d901c2
ZY
1196 if (target_tid != -1)
1197 event__synthesize_thread(target_tid, event__process, session);
5b2bb75a 1198 else
d8f66248 1199 event__synthesize_threads(event__process, session);
5b2bb75a 1200
72cb7013 1201 start_counters(evsel_list);
70db7533
ACM
1202 first = list_entry(evsel_list->entries.next, struct perf_evsel, node);
1203 perf_session__set_sample_type(session, first->attr.sample_type);
07800601 1204
2f01190a 1205 /* Wait for a minimal set of events before starting the snapshot */
5c581041 1206 poll(evsel_list->pollfd, evsel_list->nr_fds, 100);
2f01190a 1207
d8f66248 1208 perf_session__mmap_read(session);
2f01190a 1209
a1645ce1 1210 if (pthread_create(&thread, NULL, display_thread, session)) {
07800601
IM
1211 printf("Could not create display thread.\n");
1212 exit(-1);
1213 }
1214
1215 if (realtime_prio) {
1216 struct sched_param param;
1217
1218 param.sched_priority = realtime_prio;
1219 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
1220 printf("Could not set realtime priority.\n");
1221 exit(-1);
1222 }
1223 }
1224
1225 while (1) {
2debbc83 1226 int hits = samples;
07800601 1227
d8f66248 1228 perf_session__mmap_read(session);
07800601 1229
2debbc83 1230 if (hits == samples)
5c581041 1231 ret = poll(evsel_list->pollfd, evsel_list->nr_fds, 100);
07800601
IM
1232 }
1233
1234 return 0;
1235}
b456bae0
IM
1236
1237static const char * const top_usage[] = {
1238 "perf top [<options>]",
1239 NULL
1240};
1241
b456bae0 1242static const struct option options[] = {
361c99a6 1243 OPT_CALLBACK('e', "event", &evsel_list, "event",
86847b62
TG
1244 "event selector. use 'perf list' to list available events",
1245 parse_events),
b456bae0
IM
1246 OPT_INTEGER('c', "count", &default_interval,
1247 "event period to sample"),
1248 OPT_INTEGER('p', "pid", &target_pid,
d6d901c2
ZY
1249 "profile events on existing process id"),
1250 OPT_INTEGER('t', "tid", &target_tid,
1251 "profile events on existing thread id"),
b456bae0
IM
1252 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1253 "system-wide collection from all CPUs"),
c45c6ea2
SE
1254 OPT_STRING('C', "cpu", &cpu_list, "cpu",
1255 "list of cpus to monitor"),
b32d133a
ACM
1256 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1257 "file", "vmlinux pathname"),
8ffcda17
ACM
1258 OPT_BOOLEAN('K', "hide_kernel_symbols", &hide_kernel_symbols,
1259 "hide kernel symbols"),
1967936d 1260 OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
b456bae0
IM
1261 OPT_INTEGER('r', "realtime", &realtime_prio,
1262 "collect data with this RT SCHED_FIFO priority"),
db20c003 1263 OPT_INTEGER('d', "delay", &delay_secs,
b456bae0
IM
1264 "number of seconds to delay between refreshes"),
1265 OPT_BOOLEAN('D', "dump-symtab", &dump_symtab,
1266 "dump the symbol table used for profiling"),
6e53cdf1 1267 OPT_INTEGER('f', "count-filter", &count_filter,
b456bae0
IM
1268 "only display functions with more events than this"),
1269 OPT_BOOLEAN('g', "group", &group,
1270 "put the counters into a counter group"),
0fdc7e67
MG
1271 OPT_BOOLEAN('i', "inherit", &inherit,
1272 "child tasks inherit counters"),
923c42c1 1273 OPT_STRING('s', "sym-annotate", &sym_filter, "symbol name",
6cff0e8d 1274 "symbol to annotate"),
1f208ea6 1275 OPT_BOOLEAN('z', "zero", &zero,
b456bae0 1276 "zero history across updates"),
6e53cdf1 1277 OPT_INTEGER('F', "freq", &freq,
b456bae0 1278 "profile at this frequency"),
6e53cdf1
IM
1279 OPT_INTEGER('E', "entries", &print_entries,
1280 "display this many functions"),
8ffcda17
ACM
1281 OPT_BOOLEAN('U', "hide_user_symbols", &hide_user_symbols,
1282 "hide user symbols"),
c0555642 1283 OPT_INCR('v', "verbose", &verbose,
3da297a6 1284 "be more verbose (show counter open errors, etc)"),
b456bae0
IM
1285 OPT_END()
1286};
1287
f37a291c 1288int cmd_top(int argc, const char **argv, const char *prefix __used)
b456bae0 1289{
69aad6f1
ACM
1290 struct perf_evsel *pos;
1291 int status = -ENOMEM;
b456bae0 1292
361c99a6
ACM
1293 evsel_list = perf_evlist__new();
1294 if (evsel_list == NULL)
1295 return -ENOMEM;
1296
b456bae0
IM
1297 page_size = sysconf(_SC_PAGE_SIZE);
1298
b456bae0
IM
1299 argc = parse_options(argc, argv, options, top_usage, 0);
1300 if (argc)
1301 usage_with_options(top_usage, options);
1302
5c98d466 1303 if (target_pid != -1)
d6d901c2 1304 target_tid = target_pid;
d6d901c2 1305
5c98d466
ACM
1306 threads = thread_map__new(target_pid, target_tid);
1307 if (threads == NULL) {
1308 pr_err("Problems finding threads of monitor\n");
1309 usage_with_options(top_usage, options);
d6d901c2
ZY
1310 }
1311
b456bae0 1312 /* CPU and PID are mutually exclusive */
c45c6ea2 1313 if (target_tid > 0 && cpu_list) {
b456bae0
IM
1314 printf("WARNING: PID switch overriding CPU\n");
1315 sleep(1);
c45c6ea2 1316 cpu_list = NULL;
b456bae0
IM
1317 }
1318
361c99a6
ACM
1319 if (!evsel_list->nr_entries &&
1320 perf_evlist__add_default(evsel_list) < 0) {
69aad6f1
ACM
1321 pr_err("Not enough memory for event selector list\n");
1322 return -ENOMEM;
1323 }
5a8e5a30 1324
2f335a02
FW
1325 if (delay_secs < 1)
1326 delay_secs = 1;
1327
7e4ff9e3
MG
1328 /*
1329 * User specified count overrides default frequency.
1330 */
1331 if (default_interval)
1332 freq = 0;
1333 else if (freq) {
1334 default_interval = freq;
1335 } else {
1336 fprintf(stderr, "frequency and count are zero, aborting\n");
1337 exit(EXIT_FAILURE);
1338 }
1339
c45c6ea2 1340 if (target_tid != -1)
60d567e2 1341 cpus = cpu_map__dummy_new();
a12b51c4 1342 else
60d567e2 1343 cpus = cpu_map__new(cpu_list);
c45c6ea2 1344
60d567e2 1345 if (cpus == NULL)
c45c6ea2 1346 usage_with_options(top_usage, options);
b456bae0 1347
361c99a6 1348 list_for_each_entry(pos, &evsel_list->entries, node) {
70db7533 1349 if (perf_evsel__alloc_fd(pos, cpus->nr, threads->nr) < 0)
69aad6f1
ACM
1350 goto out_free_fd;
1351 /*
1352 * Fill in the ones not specifically initialized via -c:
1353 */
1354 if (pos->attr.sample_period)
1355 continue;
1356
1357 pos->attr.sample_period = default_interval;
1358 }
1359
70db7533
ACM
1360 if (perf_evlist__alloc_pollfd(evsel_list, cpus->nr, threads->nr) < 0 ||
1361 perf_evlist__alloc_mmap(evsel_list, cpus->nr) < 0)
5c581041
ACM
1362 goto out_free_fd;
1363
361c99a6 1364 sym_evsel = list_entry(evsel_list->entries.next, struct perf_evsel, node);
cc841580 1365
69aad6f1 1366 symbol_conf.priv_size = (sizeof(struct sym_entry) +
361c99a6 1367 (evsel_list->nr_entries + 1) * sizeof(unsigned long));
69aad6f1
ACM
1368
1369 symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
1370 if (symbol__init() < 0)
1371 return -1;
1372
13cc5079 1373 get_term_dimensions(&winsize);
3b6ed988 1374 if (print_entries == 0) {
13cc5079 1375 update_print_entries(&winsize);
3b6ed988
ACM
1376 signal(SIGWINCH, sig_winch_handler);
1377 }
1378
69aad6f1
ACM
1379 status = __cmd_top();
1380out_free_fd:
361c99a6 1381 perf_evlist__delete(evsel_list);
69aad6f1
ACM
1382
1383 return status;
b456bae0 1384}
This page took 0.196054 seconds and 5 git commands to generate.