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