blob: 56ba71658d70a49425a29bde6d8a9166f16f4b84 [file] [log] [blame]
Ingo Molnar8035e422009-06-06 15:19:13 +02001/*
2 * builtin-annotate.c
3 *
4 * Builtin annotate command: Analyze the perf.data input file,
5 * look up and read DSOs and symbol information and display
6 * a histogram of results, along various sorting keys.
7 */
8#include "builtin.h"
9
10#include "util/util.h"
11
12#include "util/color.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -030013#include <linux/list.h>
Ingo Molnar8035e422009-06-06 15:19:13 +020014#include "util/cache.h"
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030015#include <linux/rbtree.h>
Ingo Molnar8035e422009-06-06 15:19:13 +020016#include "util/symbol.h"
17#include "util/string.h"
18
19#include "perf.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020020#include "util/debug.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020021
22#include "util/parse-options.h"
23#include "util/parse-events.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020024#include "util/thread.h"
John Kacurdd68ada2009-09-24 18:02:49 +020025#include "util/sort.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020026#include "util/hist.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020027
Ingo Molnar8035e422009-06-06 15:19:13 +020028static char const *input_name = "perf.data";
Ingo Molnar8035e422009-06-06 15:19:13 +020029
Peter Zijlstrafa6963b2009-08-19 11:18:26 +020030static int force;
Ingo Molnar8035e422009-06-06 15:19:13 +020031static int input;
Ingo Molnar8035e422009-06-06 15:19:13 +020032
Mike Galbraith42976482009-07-02 08:09:46 +020033static int full_paths;
34
Frederic Weisbecker301406b2009-06-13 00:11:21 +020035static int print_line;
36
Ingo Molnar8035e422009-06-06 15:19:13 +020037static unsigned long page_size;
38static unsigned long mmap_window = 32;
39
Frederic Weisbecker301406b2009-06-13 00:11:21 +020040struct sym_ext {
Frederic Weisbecker971738f2009-06-13 00:11:22 +020041 struct rb_node node;
Frederic Weisbecker301406b2009-06-13 00:11:21 +020042 double percent;
43 char *path;
44};
45
Ingo Molnar8035e422009-06-06 15:19:13 +020046
Ingo Molnar8035e422009-06-06 15:19:13 +020047/*
48 * collect histogram counts
49 */
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100050static void hist_hit(struct hist_entry *he, u64 ip)
Ingo Molnar0b73da32009-06-06 15:48:52 +020051{
52 unsigned int sym_size, offset;
53 struct symbol *sym = he->sym;
54
55 he->count++;
56
57 if (!sym || !sym->hist)
58 return;
59
60 sym_size = sym->end - sym->start;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030061 ip = he->map->map_ip(he->map, ip);
Ingo Molnar0b73da32009-06-06 15:48:52 +020062 offset = ip - sym->start;
63
64 if (offset >= sym_size)
65 return;
66
67 sym->hist_sum++;
68 sym->hist[offset]++;
69
70 if (verbose >= 3)
71 printf("%p %s: count++ [ip: %p, %08Lx] => %Ld\n",
Arjan van de Ven7d37a0c2009-06-06 20:36:38 +020072 (void *)(unsigned long)he->sym->start,
Ingo Molnar0b73da32009-06-06 15:48:52 +020073 he->sym->name,
Arjan van de Ven7d37a0c2009-06-06 20:36:38 +020074 (void *)(unsigned long)ip, ip - he->sym->start,
Ingo Molnar0b73da32009-06-06 15:48:52 +020075 sym->hist[offset]);
76}
Ingo Molnar8035e422009-06-06 15:19:13 +020077
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030078static int hist_entry__add(struct thread *thread, struct map *map,
79 struct symbol *sym, u64 ip, u64 count, char level)
Ingo Molnar8035e422009-06-06 15:19:13 +020080{
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030081 bool hit;
82 struct hist_entry *he = __hist_entry__add(thread, map, sym, NULL, ip,
83 count, level, &hit);
84 if (he == NULL)
Ingo Molnar8035e422009-06-06 15:19:13 +020085 return -ENOMEM;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030086 if (hit)
87 hist_hit(he, ip);
Ingo Molnar8035e422009-06-06 15:19:13 +020088 return 0;
89}
90
Ingo Molnar8035e422009-06-06 15:19:13 +020091static int
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +020092process_sample_event(event_t *event, unsigned long offset, unsigned long head)
Ingo Molnar8035e422009-06-06 15:19:13 +020093{
94 char level;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100095 u64 ip = event->ip.ip;
Ingo Molnar8035e422009-06-06 15:19:13 +020096 struct map *map = NULL;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030097 struct symbol *sym = NULL;
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -030098 struct thread *thread = threads__findnew(event->ip.pid);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020099
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200100 dump_printf("%p [%p]: PERF_EVENT (IP, %d): %d: %p\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200101 (void *)(offset + head),
102 (void *)(long)(event->header.size),
103 event->header.misc,
104 event->ip.pid,
105 (void *)(long)ip);
106
Ingo Molnar8035e422009-06-06 15:19:13 +0200107 if (thread == NULL) {
108 fprintf(stderr, "problem processing %d event, skipping it.\n",
109 event->header.type);
110 return -1;
111 }
112
Julia Lawallf39cdf22009-10-17 08:43:17 +0200113 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
114
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200115 if (event->header.misc & PERF_RECORD_MISC_KERNEL) {
Ingo Molnar8035e422009-06-06 15:19:13 +0200116 level = 'k';
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300117 sym = kernel_maps__find_symbol(ip, &map);
118 dump_printf(" ...... dso: %s\n",
119 map ? map->dso->long_name : "<not found>");
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200120 } else if (event->header.misc & PERF_RECORD_MISC_USER) {
Ingo Molnar8035e422009-06-06 15:19:13 +0200121 level = '.';
Ingo Molnar8035e422009-06-06 15:19:13 +0200122 map = thread__find_map(thread, ip);
123 if (map != NULL) {
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300124got_map:
Ingo Molnar8035e422009-06-06 15:19:13 +0200125 ip = map->map_ip(map, ip);
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300126 sym = map->dso->find_symbol(map->dso, ip);
Ingo Molnar8035e422009-06-06 15:19:13 +0200127 } else {
128 /*
129 * If this is outside of all known maps,
130 * and is a negative address, try to look it
131 * up in the kernel dso, as it might be a
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300132 * vsyscall or vdso (which executes in user-mode).
133 *
134 * XXX This is nasty, we should have a symbol list in
135 * the "[vdso]" dso, but for now lets use the old
136 * trick of looking in the whole kernel symbol list.
Ingo Molnar8035e422009-06-06 15:19:13 +0200137 */
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300138 if ((long long)ip < 0) {
139 map = kernel_map;
140 goto got_map;
141 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200142 }
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300143 dump_printf(" ...... dso: %s\n",
144 map ? map->dso->long_name : "<not found>");
Ingo Molnar8035e422009-06-06 15:19:13 +0200145 } else {
Ingo Molnar8035e422009-06-06 15:19:13 +0200146 level = 'H';
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200147 dump_printf(" ...... dso: [hypervisor]\n");
Ingo Molnar8035e422009-06-06 15:19:13 +0200148 }
149
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300150 if (hist_entry__add(thread, map, sym, ip, 1, level)) {
151 fprintf(stderr, "problem incrementing symbol count, "
152 "skipping event\n");
153 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200154 }
155 total++;
156
157 return 0;
158}
159
160static int
161process_mmap_event(event_t *event, unsigned long offset, unsigned long head)
162{
Frederic Weisbecker66e274f2009-08-12 11:07:25 +0200163 struct map *map = map__new(&event->mmap, NULL, 0);
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300164 struct thread *thread = threads__findnew(event->mmap.pid);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200165
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200166 dump_printf("%p [%p]: PERF_RECORD_MMAP %d: [%p(%p) @ %p]: %s\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200167 (void *)(offset + head),
168 (void *)(long)(event->header.size),
169 event->mmap.pid,
170 (void *)(long)event->mmap.start,
171 (void *)(long)event->mmap.len,
172 (void *)(long)event->mmap.pgoff,
173 event->mmap.filename);
174
175 if (thread == NULL || map == NULL) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200176 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
Ingo Molnar8035e422009-06-06 15:19:13 +0200177 return 0;
178 }
179
180 thread__insert_map(thread, map);
181 total_mmap++;
182
183 return 0;
184}
185
186static int
187process_comm_event(event_t *event, unsigned long offset, unsigned long head)
188{
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300189 struct thread *thread = threads__findnew(event->comm.pid);
Ingo Molnar8035e422009-06-06 15:19:13 +0200190
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200191 dump_printf("%p [%p]: PERF_RECORD_COMM: %s:%d\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200192 (void *)(offset + head),
193 (void *)(long)(event->header.size),
194 event->comm.comm, event->comm.pid);
195
196 if (thread == NULL ||
197 thread__set_comm(thread, event->comm.comm)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200198 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
Ingo Molnar8035e422009-06-06 15:19:13 +0200199 return -1;
200 }
201 total_comm++;
202
203 return 0;
204}
205
206static int
207process_fork_event(event_t *event, unsigned long offset, unsigned long head)
208{
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300209 struct thread *thread = threads__findnew(event->fork.pid);
210 struct thread *parent = threads__findnew(event->fork.ppid);
Ingo Molnar8035e422009-06-06 15:19:13 +0200211
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200212 dump_printf("%p [%p]: PERF_RECORD_FORK: %d:%d\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200213 (void *)(offset + head),
214 (void *)(long)(event->header.size),
215 event->fork.pid, event->fork.ppid);
216
Ingo Molnar15f3fa42009-08-18 13:52:28 +0200217 /*
218 * A thread clone will have the same PID for both
219 * parent and child.
220 */
221 if (thread == parent)
222 return 0;
223
Ingo Molnar8035e422009-06-06 15:19:13 +0200224 if (!thread || !parent || thread__fork(thread, parent)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200225 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
Ingo Molnar8035e422009-06-06 15:19:13 +0200226 return -1;
227 }
228 total_fork++;
229
230 return 0;
231}
232
233static int
Ingo Molnar8035e422009-06-06 15:19:13 +0200234process_event(event_t *event, unsigned long offset, unsigned long head)
235{
Ingo Molnar8035e422009-06-06 15:19:13 +0200236 switch (event->header.type) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200237 case PERF_RECORD_SAMPLE:
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200238 return process_sample_event(event, offset, head);
239
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200240 case PERF_RECORD_MMAP:
Ingo Molnar8035e422009-06-06 15:19:13 +0200241 return process_mmap_event(event, offset, head);
242
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200243 case PERF_RECORD_COMM:
Ingo Molnar8035e422009-06-06 15:19:13 +0200244 return process_comm_event(event, offset, head);
245
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200246 case PERF_RECORD_FORK:
Ingo Molnar8035e422009-06-06 15:19:13 +0200247 return process_fork_event(event, offset, head);
Ingo Molnar8035e422009-06-06 15:19:13 +0200248 /*
249 * We dont process them right now but they are fine:
250 */
251
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200252 case PERF_RECORD_THROTTLE:
253 case PERF_RECORD_UNTHROTTLE:
Ingo Molnar8035e422009-06-06 15:19:13 +0200254 return 0;
255
256 default:
257 return -1;
258 }
259
260 return 0;
261}
262
Ingo Molnar0b73da32009-06-06 15:48:52 +0200263static int
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300264parse_line(FILE *file, struct symbol *sym, u64 len)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200265{
266 char *line = NULL, *tmp, *tmp2;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200267 static const char *prev_line;
268 static const char *prev_color;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200269 unsigned int offset;
270 size_t line_len;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200271 s64 line_ip;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200272 int ret;
273 char *c;
274
275 if (getline(&line, &line_len, file) < 0)
276 return -1;
277 if (!line)
278 return -1;
279
280 c = strchr(line, '\n');
281 if (c)
282 *c = 0;
283
284 line_ip = -1;
285 offset = 0;
286 ret = -2;
287
288 /*
289 * Strip leading spaces:
290 */
291 tmp = line;
292 while (*tmp) {
293 if (*tmp != ' ')
294 break;
295 tmp++;
296 }
297
298 if (*tmp) {
299 /*
300 * Parse hexa addresses followed by ':'
301 */
302 line_ip = strtoull(tmp, &tmp2, 16);
303 if (*tmp2 != ':')
304 line_ip = -1;
305 }
306
307 if (line_ip != -1) {
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200308 const char *path = NULL;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200309 unsigned int hits = 0;
310 double percent = 0.0;
Ingo Molnar83a09442009-08-15 12:26:57 +0200311 const char *color;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200312 struct sym_ext *sym_ext = sym->priv;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200313
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300314 offset = line_ip - sym->start;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200315 if (offset < len)
316 hits = sym->hist[offset];
317
Frederic Weisbeckerc17c2db2009-06-13 17:39:23 +0200318 if (offset < len && sym_ext) {
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200319 path = sym_ext[offset].path;
320 percent = sym_ext[offset].percent;
321 } else if (sym->hist_sum)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200322 percent = 100.0 * hits / sym->hist_sum;
323
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200324 color = get_percent_color(percent);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200325
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200326 /*
327 * Also color the filename and line if needed, with
328 * the same color than the percentage. Don't print it
329 * twice for close colored ip with the same filename:line
330 */
331 if (path) {
332 if (!prev_line || strcmp(prev_line, path)
333 || color != prev_color) {
334 color_fprintf(stdout, color, " %s", path);
335 prev_line = path;
336 prev_color = color;
337 }
338 }
339
Ingo Molnar0b73da32009-06-06 15:48:52 +0200340 color_fprintf(stdout, color, " %7.2f", percent);
341 printf(" : ");
342 color_fprintf(stdout, PERF_COLOR_BLUE, "%s\n", line);
343 } else {
344 if (!*line)
345 printf(" :\n");
346 else
347 printf(" : %s\n", line);
348 }
349
350 return 0;
351}
352
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200353static struct rb_root root_sym_ext;
354
355static void insert_source_line(struct sym_ext *sym_ext)
356{
357 struct sym_ext *iter;
358 struct rb_node **p = &root_sym_ext.rb_node;
359 struct rb_node *parent = NULL;
360
361 while (*p != NULL) {
362 parent = *p;
363 iter = rb_entry(parent, struct sym_ext, node);
364
365 if (sym_ext->percent > iter->percent)
366 p = &(*p)->rb_left;
367 else
368 p = &(*p)->rb_right;
369 }
370
371 rb_link_node(&sym_ext->node, parent, p);
372 rb_insert_color(&sym_ext->node, &root_sym_ext);
373}
374
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200375static void free_source_line(struct symbol *sym, int len)
376{
377 struct sym_ext *sym_ext = sym->priv;
378 int i;
379
380 if (!sym_ext)
381 return;
382
383 for (i = 0; i < len; i++)
384 free(sym_ext[i].path);
385 free(sym_ext);
386
387 sym->priv = NULL;
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200388 root_sym_ext = RB_ROOT;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200389}
390
391/* Get the filename:line for the colored entries */
Frederic Weisbeckerc17c2db2009-06-13 17:39:23 +0200392static void
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300393get_source_line(struct symbol *sym, int len, const char *filename)
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200394{
395 int i;
396 char cmd[PATH_MAX * 2];
397 struct sym_ext *sym_ext;
398
399 if (!sym->hist_sum)
400 return;
401
402 sym->priv = calloc(len, sizeof(struct sym_ext));
403 if (!sym->priv)
404 return;
405
406 sym_ext = sym->priv;
407
408 for (i = 0; i < len; i++) {
409 char *path = NULL;
410 size_t line_len;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000411 u64 offset;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200412 FILE *fp;
413
414 sym_ext[i].percent = 100.0 * sym->hist[i] / sym->hist_sum;
415 if (sym_ext[i].percent <= 0.5)
416 continue;
417
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300418 offset = sym->start + i;
Frederic Weisbeckerc17c2db2009-06-13 17:39:23 +0200419 sprintf(cmd, "addr2line -e %s %016llx", filename, offset);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200420 fp = popen(cmd, "r");
421 if (!fp)
422 continue;
423
424 if (getline(&path, &line_len, fp) < 0 || !line_len)
425 goto next;
426
Frederic Weisbeckerc17c2db2009-06-13 17:39:23 +0200427 sym_ext[i].path = malloc(sizeof(char) * line_len + 1);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200428 if (!sym_ext[i].path)
429 goto next;
430
431 strcpy(sym_ext[i].path, path);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200432 insert_source_line(&sym_ext[i]);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200433
434 next:
435 pclose(fp);
436 }
437}
438
Ingo Molnar83a09442009-08-15 12:26:57 +0200439static void print_summary(const char *filename)
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200440{
441 struct sym_ext *sym_ext;
442 struct rb_node *node;
443
444 printf("\nSorted summary for file %s\n", filename);
445 printf("----------------------------------------------\n\n");
446
447 if (RB_EMPTY_ROOT(&root_sym_ext)) {
448 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN);
449 return;
450 }
451
452 node = rb_first(&root_sym_ext);
453 while (node) {
454 double percent;
Ingo Molnar83a09442009-08-15 12:26:57 +0200455 const char *color;
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200456 char *path;
457
458 sym_ext = rb_entry(node, struct sym_ext, node);
459 percent = sym_ext->percent;
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200460 color = get_percent_color(percent);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200461 path = sym_ext->path;
462
463 color_fprintf(stdout, color, " %7.2f %s", percent, path);
464 node = rb_next(node);
465 }
466}
467
Ingo Molnar0b73da32009-06-06 15:48:52 +0200468static void annotate_sym(struct dso *dso, struct symbol *sym)
469{
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300470 const char *filename = dso->long_name, *d_filename;
471 u64 len;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200472 char command[PATH_MAX*2];
473 FILE *file;
474
475 if (!filename)
476 return;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200477
Mike Galbraith42976482009-07-02 08:09:46 +0200478 if (full_paths)
479 d_filename = filename;
480 else
481 d_filename = basename(filename);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200482
Ingo Molnar0b73da32009-06-06 15:48:52 +0200483 len = sym->end - sym->start;
484
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200485 if (print_line) {
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300486 get_source_line(sym, len, filename);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200487 print_summary(filename);
488 }
489
490 printf("\n\n------------------------------------------------\n");
Mike Galbraith42976482009-07-02 08:09:46 +0200491 printf(" Percent | Source code & Disassembly of %s\n", d_filename);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200492 printf("------------------------------------------------\n");
493
494 if (verbose >= 2)
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300495 printf("annotating [%p] %30s : [%p] %30s\n",
496 dso, dso->long_name, sym, sym->name);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200497
Mike Galbraith42976482009-07-02 08:09:46 +0200498 sprintf(command, "objdump --start-address=0x%016Lx --stop-address=0x%016Lx -dS %s|grep -v %s",
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300499 sym->start, sym->end, filename, filename);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200500
501 if (verbose >= 3)
502 printf("doing: %s\n", command);
503
504 file = popen(command, "r");
505 if (!file)
506 return;
507
508 while (!feof(file)) {
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300509 if (parse_line(file, sym, len) < 0)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200510 break;
511 }
512
513 pclose(file);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200514 if (print_line)
515 free_source_line(sym, len);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200516}
517
518static void find_annotations(void)
519{
520 struct rb_node *nd;
521 struct dso *dso;
522 int count = 0;
523
524 list_for_each_entry(dso, &dsos, node) {
525
526 for (nd = rb_first(&dso->syms); nd; nd = rb_next(nd)) {
527 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
528
529 if (sym->hist) {
530 annotate_sym(dso, sym);
531 count++;
532 }
533 }
534 }
535
536 if (!count)
537 printf(" Error: symbol '%s' not present amongst the samples.\n", sym_hist_filter);
538}
539
Ingo Molnar8035e422009-06-06 15:19:13 +0200540static int __cmd_annotate(void)
541{
542 int ret, rc = EXIT_FAILURE;
543 unsigned long offset = 0;
544 unsigned long head = 0;
Ingo Molnar83a09442009-08-15 12:26:57 +0200545 struct stat input_stat;
Ingo Molnar8035e422009-06-06 15:19:13 +0200546 event_t *event;
547 uint32_t size;
548 char *buf;
549
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300550 register_idle_thread();
Ingo Molnar8035e422009-06-06 15:19:13 +0200551
552 input = open(input_name, O_RDONLY);
553 if (input < 0) {
554 perror("failed to open file");
555 exit(-1);
556 }
557
Ingo Molnar83a09442009-08-15 12:26:57 +0200558 ret = fstat(input, &input_stat);
Ingo Molnar8035e422009-06-06 15:19:13 +0200559 if (ret < 0) {
560 perror("failed to stat file");
561 exit(-1);
562 }
563
Pierre Habouzit119e7a22009-08-27 09:59:02 +0200564 if (!force && input_stat.st_uid && (input_stat.st_uid != geteuid())) {
565 fprintf(stderr, "file: %s not owned by current user or root\n", input_name);
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200566 exit(-1);
567 }
568
Ingo Molnar83a09442009-08-15 12:26:57 +0200569 if (!input_stat.st_size) {
Ingo Molnar8035e422009-06-06 15:19:13 +0200570 fprintf(stderr, "zero-sized file, nothing to do!\n");
571 exit(0);
572 }
573
574 if (load_kernel() < 0) {
575 perror("failed to load kernel symbols");
576 return EXIT_FAILURE;
577 }
578
Ingo Molnar8035e422009-06-06 15:19:13 +0200579remap:
580 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
581 MAP_SHARED, input, offset);
582 if (buf == MAP_FAILED) {
583 perror("failed to mmap file");
584 exit(-1);
585 }
586
587more:
588 event = (event_t *)(buf + head);
589
590 size = event->header.size;
591 if (!size)
592 size = 8;
593
594 if (head + event->header.size >= page_size * mmap_window) {
595 unsigned long shift = page_size * (head / page_size);
Ingo Molnar83a09442009-08-15 12:26:57 +0200596 int munmap_ret;
Ingo Molnar8035e422009-06-06 15:19:13 +0200597
Ingo Molnar83a09442009-08-15 12:26:57 +0200598 munmap_ret = munmap(buf, page_size * mmap_window);
599 assert(munmap_ret == 0);
Ingo Molnar8035e422009-06-06 15:19:13 +0200600
601 offset += shift;
602 head -= shift;
603 goto remap;
604 }
605
606 size = event->header.size;
607
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200608 dump_printf("%p [%p]: event: %d\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200609 (void *)(offset + head),
610 (void *)(long)event->header.size,
611 event->header.type);
612
613 if (!size || process_event(event, offset, head) < 0) {
614
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200615 dump_printf("%p [%p]: skipping unknown header type: %d\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200616 (void *)(offset + head),
617 (void *)(long)(event->header.size),
618 event->header.type);
619
620 total_unknown++;
621
622 /*
623 * assume we lost track of the stream, check alignment, and
624 * increment a single u64 in the hope to catch on again 'soon'.
625 */
626
627 if (unlikely(head & 7))
628 head &= ~7ULL;
629
630 size = 8;
631 }
632
633 head += size;
634
Ingo Molnar83a09442009-08-15 12:26:57 +0200635 if (offset + head < (unsigned long)input_stat.st_size)
Ingo Molnar8035e422009-06-06 15:19:13 +0200636 goto more;
637
638 rc = EXIT_SUCCESS;
639 close(input);
640
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200641 dump_printf(" IP events: %10ld\n", total);
642 dump_printf(" mmap events: %10ld\n", total_mmap);
643 dump_printf(" comm events: %10ld\n", total_comm);
644 dump_printf(" fork events: %10ld\n", total_fork);
645 dump_printf(" unknown events: %10ld\n", total_unknown);
Ingo Molnar8035e422009-06-06 15:19:13 +0200646
647 if (dump_trace)
648 return 0;
649
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300650 if (verbose > 3)
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300651 threads__fprintf(stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200652
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300653 if (verbose > 2)
Ingo Molnar8035e422009-06-06 15:19:13 +0200654 dsos__fprintf(stdout);
655
656 collapse__resort();
John Kacur3d1d07e2009-09-28 15:32:55 +0200657 output__resort(total);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200658
659 find_annotations();
Ingo Molnar8035e422009-06-06 15:19:13 +0200660
661 return rc;
662}
663
664static const char * const annotate_usage[] = {
665 "perf annotate [<options>] <command>",
666 NULL
667};
668
669static const struct option options[] = {
670 OPT_STRING('i', "input", &input_name, "file",
671 "input file name"),
Ingo Molnar23b87112009-06-06 21:25:29 +0200672 OPT_STRING('s', "symbol", &sym_hist_filter, "symbol",
Ingo Molnar0b73da32009-06-06 15:48:52 +0200673 "symbol to annotate"),
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200674 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200675 OPT_BOOLEAN('v', "verbose", &verbose,
676 "be more verbose (show symbol address, etc)"),
677 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
678 "dump raw trace in ASCII"),
Ingo Molnar83a09442009-08-15 12:26:57 +0200679 OPT_STRING('k', "vmlinux", &vmlinux_name, "file", "vmlinux pathname"),
Mike Galbraith42976482009-07-02 08:09:46 +0200680 OPT_BOOLEAN('m', "modules", &modules,
681 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200682 OPT_BOOLEAN('l', "print-line", &print_line,
683 "print matching source lines (may be slow)"),
Mike Galbraith42976482009-07-02 08:09:46 +0200684 OPT_BOOLEAN('P', "full-paths", &full_paths,
685 "Don't shorten the displayed pathnames"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200686 OPT_END()
687};
688
689static void setup_sorting(void)
690{
691 char *tmp, *tok, *str = strdup(sort_order);
692
693 for (tok = strtok_r(str, ", ", &tmp);
694 tok; tok = strtok_r(NULL, ", ", &tmp)) {
695 if (sort_dimension__add(tok) < 0) {
696 error("Unknown --sort key: `%s'", tok);
697 usage_with_options(annotate_usage, options);
698 }
699 }
700
701 free(str);
702}
703
Ingo Molnarf37a2912009-07-01 12:37:06 +0200704int cmd_annotate(int argc, const char **argv, const char *prefix __used)
Ingo Molnar8035e422009-06-06 15:19:13 +0200705{
706 symbol__init();
707
708 page_size = getpagesize();
709
710 argc = parse_options(argc, argv, options, annotate_usage, 0);
711
712 setup_sorting();
713
Ingo Molnar0b73da32009-06-06 15:48:52 +0200714 if (argc) {
715 /*
716 * Special case: if there's an argument left then assume tha
717 * it's a symbol filter:
718 */
719 if (argc > 1)
720 usage_with_options(annotate_usage, options);
721
722 sym_hist_filter = argv[0];
723 }
724
725 if (!sym_hist_filter)
Ingo Molnar8035e422009-06-06 15:19:13 +0200726 usage_with_options(annotate_usage, options);
727
728 setup_pager();
729
John Kacurdd68ada2009-09-24 18:02:49 +0200730 if (field_sep && *field_sep == '.') {
731 fputs("'.' is the only non valid --field-separator argument\n",
732 stderr);
733 exit(129);
734 }
735
Ingo Molnar8035e422009-06-06 15:19:13 +0200736 return __cmd_annotate();
737}