blob: 3ebd70b1ef935faaa746c205dd20b94a171c144f [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"
John Kacure74328d2009-11-24 15:35:01 +010027#include "util/process_events.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020028
Ingo Molnar8035e422009-06-06 15:19:13 +020029static char const *input_name = "perf.data";
Ingo Molnar8035e422009-06-06 15:19:13 +020030
Peter Zijlstrafa6963b2009-08-19 11:18:26 +020031static int force;
Ingo Molnar8035e422009-06-06 15:19:13 +020032static int input;
Ingo Molnar8035e422009-06-06 15:19:13 +020033
Mike Galbraith42976482009-07-02 08:09:46 +020034static int full_paths;
35
Frederic Weisbecker301406b2009-06-13 00:11:21 +020036static int print_line;
37
Ingo Molnar8035e422009-06-06 15:19:13 +020038static unsigned long page_size;
39static unsigned long mmap_window = 32;
40
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020041struct sym_hist {
42 u64 sum;
43 u64 ip[0];
44};
45
Frederic Weisbecker301406b2009-06-13 00:11:21 +020046struct sym_ext {
Frederic Weisbecker971738f2009-06-13 00:11:22 +020047 struct rb_node node;
Frederic Weisbecker301406b2009-06-13 00:11:21 +020048 double percent;
49 char *path;
50};
51
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020052struct sym_priv {
53 struct sym_hist *hist;
54 struct sym_ext *ext;
55};
56
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -020057static struct symbol_conf symbol_conf = {
58 .priv_size = sizeof(struct sym_priv),
59 .try_vmlinux_path = true,
60};
61
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020062static const char *sym_hist_filter;
63
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -020064static int symbol_filter(struct map *map __used, struct symbol *sym)
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020065{
Arnaldo Carvalho de Melo8f0b0372009-10-20 15:08:29 -020066 if (sym_hist_filter == NULL ||
67 strcmp(sym->name, sym_hist_filter) == 0) {
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -020068 struct sym_priv *priv = symbol__priv(sym);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020069 const int size = (sizeof(*priv->hist) +
70 (sym->end - sym->start) * sizeof(u64));
71
72 priv->hist = malloc(size);
73 if (priv->hist)
74 memset(priv->hist, 0, size);
75 return 0;
76 }
77 /*
78 * FIXME: We should really filter it out, as we don't want to go thru symbols
79 * we're not interested, and if a DSO ends up with no symbols, delete it too,
80 * but right now the kernel loading routines in symbol.c bail out if no symbols
81 * are found, fix it later.
82 */
83 return 0;
84}
Ingo Molnar8035e422009-06-06 15:19:13 +020085
Ingo Molnar8035e422009-06-06 15:19:13 +020086/*
87 * collect histogram counts
88 */
Paul Mackerras9cffa8d2009-06-19 22:21:42 +100089static void hist_hit(struct hist_entry *he, u64 ip)
Ingo Molnar0b73da32009-06-06 15:48:52 +020090{
91 unsigned int sym_size, offset;
92 struct symbol *sym = he->sym;
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020093 struct sym_priv *priv;
94 struct sym_hist *h;
Ingo Molnar0b73da32009-06-06 15:48:52 +020095
96 he->count++;
97
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020098 if (!sym || !he->map)
99 return;
100
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -0200101 priv = symbol__priv(sym);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200102 if (!priv->hist)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200103 return;
104
105 sym_size = sym->end - sym->start;
106 offset = ip - sym->start;
107
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200108 if (verbose)
109 fprintf(stderr, "%s: ip=%Lx\n", __func__,
110 he->map->unmap_ip(he->map, ip));
111
Ingo Molnar0b73da32009-06-06 15:48:52 +0200112 if (offset >= sym_size)
113 return;
114
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200115 h = priv->hist;
116 h->sum++;
117 h->ip[offset]++;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200118
119 if (verbose >= 3)
120 printf("%p %s: count++ [ip: %p, %08Lx] => %Ld\n",
Arjan van de Ven7d37a0c2009-06-06 20:36:38 +0200121 (void *)(unsigned long)he->sym->start,
Ingo Molnar0b73da32009-06-06 15:48:52 +0200122 he->sym->name,
Arjan van de Ven7d37a0c2009-06-06 20:36:38 +0200123 (void *)(unsigned long)ip, ip - he->sym->start,
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200124 h->ip[offset]);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200125}
Ingo Molnar8035e422009-06-06 15:19:13 +0200126
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300127static int hist_entry__add(struct thread *thread, struct map *map,
128 struct symbol *sym, u64 ip, u64 count, char level)
Ingo Molnar8035e422009-06-06 15:19:13 +0200129{
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300130 bool hit;
131 struct hist_entry *he = __hist_entry__add(thread, map, sym, NULL, ip,
132 count, level, &hit);
133 if (he == NULL)
Ingo Molnar8035e422009-06-06 15:19:13 +0200134 return -ENOMEM;
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200135 hist_hit(he, ip);
Ingo Molnar8035e422009-06-06 15:19:13 +0200136 return 0;
137}
138
Ingo Molnar8035e422009-06-06 15:19:13 +0200139static int
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200140process_sample_event(event_t *event, unsigned long offset, unsigned long head)
Ingo Molnar8035e422009-06-06 15:19:13 +0200141{
142 char level;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000143 u64 ip = event->ip.ip;
Ingo Molnar8035e422009-06-06 15:19:13 +0200144 struct map *map = NULL;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300145 struct symbol *sym = NULL;
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300146 struct thread *thread = threads__findnew(event->ip.pid);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200147
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200148 dump_printf("%p [%p]: PERF_EVENT (IP, %d): %d: %p\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200149 (void *)(offset + head),
150 (void *)(long)(event->header.size),
151 event->header.misc,
152 event->ip.pid,
153 (void *)(long)ip);
154
Ingo Molnar8035e422009-06-06 15:19:13 +0200155 if (thread == NULL) {
156 fprintf(stderr, "problem processing %d event, skipping it.\n",
157 event->header.type);
158 return -1;
159 }
160
Julia Lawallf39cdf22009-10-17 08:43:17 +0200161 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
162
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200163 if (event->header.misc & PERF_RECORD_MISC_KERNEL) {
Ingo Molnar8035e422009-06-06 15:19:13 +0200164 level = 'k';
Arnaldo Carvalho de Melofcf12032009-11-24 13:01:52 -0200165 sym = kernel_maps__find_function(ip, &map, symbol_filter);
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300166 dump_printf(" ...... dso: %s\n",
167 map ? map->dso->long_name : "<not found>");
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200168 } else if (event->header.misc & PERF_RECORD_MISC_USER) {
Ingo Molnar8035e422009-06-06 15:19:13 +0200169 level = '.';
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200170 map = thread__find_map(thread, MAP__FUNCTION, ip);
Ingo Molnar8035e422009-06-06 15:19:13 +0200171 if (map != NULL) {
172 ip = map->map_ip(map, ip);
Arnaldo Carvalho de Melo6a4694a2009-11-27 16:29:17 -0200173 sym = map__find_symbol(map, ip, symbol_filter);
Ingo Molnar8035e422009-06-06 15:19:13 +0200174 } else {
175 /*
176 * If this is outside of all known maps,
177 * and is a negative address, try to look it
178 * up in the kernel dso, as it might be a
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300179 * vsyscall or vdso (which executes in user-mode).
180 *
181 * XXX This is nasty, we should have a symbol list in
182 * the "[vdso]" dso, but for now lets use the old
183 * trick of looking in the whole kernel symbol list.
Ingo Molnar8035e422009-06-06 15:19:13 +0200184 */
Arnaldo Carvalho de Melo605ca4b2009-11-27 16:29:15 -0200185 if ((long long)ip < 0)
186 sym = kernel_maps__find_function(ip, &map,
187 symbol_filter);
Ingo Molnar8035e422009-06-06 15:19:13 +0200188 }
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300189 dump_printf(" ...... dso: %s\n",
190 map ? map->dso->long_name : "<not found>");
Ingo Molnar8035e422009-06-06 15:19:13 +0200191 } else {
Ingo Molnar8035e422009-06-06 15:19:13 +0200192 level = 'H';
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200193 dump_printf(" ...... dso: [hypervisor]\n");
Ingo Molnar8035e422009-06-06 15:19:13 +0200194 }
195
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300196 if (hist_entry__add(thread, map, sym, ip, 1, level)) {
197 fprintf(stderr, "problem incrementing symbol count, "
198 "skipping event\n");
199 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200200 }
201 total++;
202
203 return 0;
204}
205
206static int
Ingo Molnar8035e422009-06-06 15:19:13 +0200207process_comm_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->comm.pid);
Ingo Molnar8035e422009-06-06 15:19:13 +0200210
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200211 dump_printf("%p [%p]: PERF_RECORD_COMM: %s:%d\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200212 (void *)(offset + head),
213 (void *)(long)(event->header.size),
214 event->comm.comm, event->comm.pid);
215
216 if (thread == NULL ||
217 thread__set_comm(thread, event->comm.comm)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200218 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
Ingo Molnar8035e422009-06-06 15:19:13 +0200219 return -1;
220 }
221 total_comm++;
222
223 return 0;
224}
225
226static int
Ingo Molnar8035e422009-06-06 15:19:13 +0200227process_event(event_t *event, unsigned long offset, unsigned long head)
228{
Ingo Molnar8035e422009-06-06 15:19:13 +0200229 switch (event->header.type) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200230 case PERF_RECORD_SAMPLE:
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +0200231 return process_sample_event(event, offset, head);
232
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200233 case PERF_RECORD_MMAP:
Ingo Molnar8035e422009-06-06 15:19:13 +0200234 return process_mmap_event(event, offset, head);
235
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200236 case PERF_RECORD_COMM:
Ingo Molnar8035e422009-06-06 15:19:13 +0200237 return process_comm_event(event, offset, head);
238
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200239 case PERF_RECORD_FORK:
John Kacure74328d2009-11-24 15:35:01 +0100240 return process_task_event(event, offset, head);
Ingo Molnar8035e422009-06-06 15:19:13 +0200241 /*
242 * We dont process them right now but they are fine:
243 */
244
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200245 case PERF_RECORD_THROTTLE:
246 case PERF_RECORD_UNTHROTTLE:
Ingo Molnar8035e422009-06-06 15:19:13 +0200247 return 0;
248
249 default:
250 return -1;
251 }
252
253 return 0;
254}
255
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200256static int parse_line(FILE *file, struct hist_entry *he, u64 len)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200257{
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200258 struct symbol *sym = he->sym;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200259 char *line = NULL, *tmp, *tmp2;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200260 static const char *prev_line;
261 static const char *prev_color;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200262 unsigned int offset;
263 size_t line_len;
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200264 u64 start;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200265 s64 line_ip;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200266 int ret;
267 char *c;
268
269 if (getline(&line, &line_len, file) < 0)
270 return -1;
271 if (!line)
272 return -1;
273
274 c = strchr(line, '\n');
275 if (c)
276 *c = 0;
277
278 line_ip = -1;
279 offset = 0;
280 ret = -2;
281
282 /*
283 * Strip leading spaces:
284 */
285 tmp = line;
286 while (*tmp) {
287 if (*tmp != ' ')
288 break;
289 tmp++;
290 }
291
292 if (*tmp) {
293 /*
294 * Parse hexa addresses followed by ':'
295 */
296 line_ip = strtoull(tmp, &tmp2, 16);
297 if (*tmp2 != ':')
298 line_ip = -1;
299 }
300
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200301 start = he->map->unmap_ip(he->map, sym->start);
302
Ingo Molnar0b73da32009-06-06 15:48:52 +0200303 if (line_ip != -1) {
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200304 const char *path = NULL;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200305 unsigned int hits = 0;
306 double percent = 0.0;
Ingo Molnar83a09442009-08-15 12:26:57 +0200307 const char *color;
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -0200308 struct sym_priv *priv = symbol__priv(sym);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200309 struct sym_ext *sym_ext = priv->ext;
310 struct sym_hist *h = priv->hist;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200311
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200312 offset = line_ip - start;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200313 if (offset < len)
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200314 hits = h->ip[offset];
Ingo Molnar0b73da32009-06-06 15:48:52 +0200315
Frederic Weisbeckerc17c2db2009-06-13 17:39:23 +0200316 if (offset < len && sym_ext) {
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200317 path = sym_ext[offset].path;
318 percent = sym_ext[offset].percent;
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200319 } else if (h->sum)
320 percent = 100.0 * hits / h->sum;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200321
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200322 color = get_percent_color(percent);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200323
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200324 /*
325 * Also color the filename and line if needed, with
326 * the same color than the percentage. Don't print it
327 * twice for close colored ip with the same filename:line
328 */
329 if (path) {
330 if (!prev_line || strcmp(prev_line, path)
331 || color != prev_color) {
332 color_fprintf(stdout, color, " %s", path);
333 prev_line = path;
334 prev_color = color;
335 }
336 }
337
Ingo Molnar0b73da32009-06-06 15:48:52 +0200338 color_fprintf(stdout, color, " %7.2f", percent);
339 printf(" : ");
340 color_fprintf(stdout, PERF_COLOR_BLUE, "%s\n", line);
341 } else {
342 if (!*line)
343 printf(" :\n");
344 else
345 printf(" : %s\n", line);
346 }
347
348 return 0;
349}
350
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200351static struct rb_root root_sym_ext;
352
353static void insert_source_line(struct sym_ext *sym_ext)
354{
355 struct sym_ext *iter;
356 struct rb_node **p = &root_sym_ext.rb_node;
357 struct rb_node *parent = NULL;
358
359 while (*p != NULL) {
360 parent = *p;
361 iter = rb_entry(parent, struct sym_ext, node);
362
363 if (sym_ext->percent > iter->percent)
364 p = &(*p)->rb_left;
365 else
366 p = &(*p)->rb_right;
367 }
368
369 rb_link_node(&sym_ext->node, parent, p);
370 rb_insert_color(&sym_ext->node, &root_sym_ext);
371}
372
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200373static void free_source_line(struct hist_entry *he, int len)
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200374{
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -0200375 struct sym_priv *priv = symbol__priv(he->sym);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200376 struct sym_ext *sym_ext = priv->ext;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200377 int i;
378
379 if (!sym_ext)
380 return;
381
382 for (i = 0; i < len; i++)
383 free(sym_ext[i].path);
384 free(sym_ext);
385
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200386 priv->ext = NULL;
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200387 root_sym_ext = RB_ROOT;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200388}
389
390/* Get the filename:line for the colored entries */
Frederic Weisbeckerc17c2db2009-06-13 17:39:23 +0200391static void
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200392get_source_line(struct hist_entry *he, int len, const char *filename)
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200393{
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200394 struct symbol *sym = he->sym;
395 u64 start;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200396 int i;
397 char cmd[PATH_MAX * 2];
398 struct sym_ext *sym_ext;
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -0200399 struct sym_priv *priv = symbol__priv(sym);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200400 struct sym_hist *h = priv->hist;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200401
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200402 if (!h->sum)
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200403 return;
404
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200405 sym_ext = priv->ext = calloc(len, sizeof(struct sym_ext));
406 if (!priv->ext)
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200407 return;
408
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200409 start = he->map->unmap_ip(he->map, sym->start);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200410
411 for (i = 0; i < len; i++) {
412 char *path = NULL;
413 size_t line_len;
Paul Mackerras9cffa8d2009-06-19 22:21:42 +1000414 u64 offset;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200415 FILE *fp;
416
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200417 sym_ext[i].percent = 100.0 * h->ip[i] / h->sum;
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200418 if (sym_ext[i].percent <= 0.5)
419 continue;
420
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200421 offset = start + i;
Frederic Weisbeckerc17c2db2009-06-13 17:39:23 +0200422 sprintf(cmd, "addr2line -e %s %016llx", filename, offset);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200423 fp = popen(cmd, "r");
424 if (!fp)
425 continue;
426
427 if (getline(&path, &line_len, fp) < 0 || !line_len)
428 goto next;
429
Frederic Weisbeckerc17c2db2009-06-13 17:39:23 +0200430 sym_ext[i].path = malloc(sizeof(char) * line_len + 1);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200431 if (!sym_ext[i].path)
432 goto next;
433
434 strcpy(sym_ext[i].path, path);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200435 insert_source_line(&sym_ext[i]);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200436
437 next:
438 pclose(fp);
439 }
440}
441
Ingo Molnar83a09442009-08-15 12:26:57 +0200442static void print_summary(const char *filename)
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200443{
444 struct sym_ext *sym_ext;
445 struct rb_node *node;
446
447 printf("\nSorted summary for file %s\n", filename);
448 printf("----------------------------------------------\n\n");
449
450 if (RB_EMPTY_ROOT(&root_sym_ext)) {
451 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN);
452 return;
453 }
454
455 node = rb_first(&root_sym_ext);
456 while (node) {
457 double percent;
Ingo Molnar83a09442009-08-15 12:26:57 +0200458 const char *color;
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200459 char *path;
460
461 sym_ext = rb_entry(node, struct sym_ext, node);
462 percent = sym_ext->percent;
Frederic Weisbecker1e11fd82009-07-02 20:14:34 +0200463 color = get_percent_color(percent);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200464 path = sym_ext->path;
465
466 color_fprintf(stdout, color, " %7.2f %s", percent, path);
467 node = rb_next(node);
468 }
469}
470
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200471static void annotate_sym(struct hist_entry *he)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200472{
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200473 struct map *map = he->map;
474 struct dso *dso = map->dso;
475 struct symbol *sym = he->sym;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300476 const char *filename = dso->long_name, *d_filename;
477 u64 len;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200478 char command[PATH_MAX*2];
479 FILE *file;
480
481 if (!filename)
482 return;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200483
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200484 if (verbose)
485 fprintf(stderr, "%s: filename=%s, sym=%s, start=%Lx, end=%Lx\n",
486 __func__, filename, sym->name,
487 map->unmap_ip(map, sym->start),
488 map->unmap_ip(map, sym->end));
489
Mike Galbraith42976482009-07-02 08:09:46 +0200490 if (full_paths)
491 d_filename = filename;
492 else
493 d_filename = basename(filename);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200494
Ingo Molnar0b73da32009-06-06 15:48:52 +0200495 len = sym->end - sym->start;
496
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200497 if (print_line) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200498 get_source_line(he, len, filename);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200499 print_summary(filename);
500 }
501
502 printf("\n\n------------------------------------------------\n");
Mike Galbraith42976482009-07-02 08:09:46 +0200503 printf(" Percent | Source code & Disassembly of %s\n", d_filename);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200504 printf("------------------------------------------------\n");
505
506 if (verbose >= 2)
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300507 printf("annotating [%p] %30s : [%p] %30s\n",
508 dso, dso->long_name, sym, sym->name);
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200509
Mike Galbraith42976482009-07-02 08:09:46 +0200510 sprintf(command, "objdump --start-address=0x%016Lx --stop-address=0x%016Lx -dS %s|grep -v %s",
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200511 map->unmap_ip(map, sym->start), map->unmap_ip(map, sym->end),
512 filename, filename);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200513
514 if (verbose >= 3)
515 printf("doing: %s\n", command);
516
517 file = popen(command, "r");
518 if (!file)
519 return;
520
521 while (!feof(file)) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200522 if (parse_line(file, he, len) < 0)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200523 break;
524 }
525
526 pclose(file);
Frederic Weisbecker971738f2009-06-13 00:11:22 +0200527 if (print_line)
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200528 free_source_line(he, len);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200529}
530
531static void find_annotations(void)
532{
533 struct rb_node *nd;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200534
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200535 for (nd = rb_first(&output_hists); nd; nd = rb_next(nd)) {
536 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200537 struct sym_priv *priv;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200538
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200539 if (he->sym == NULL)
540 continue;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200541
Arnaldo Carvalho de Melo00a192b2009-10-30 16:28:24 -0200542 priv = symbol__priv(he->sym);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200543 if (priv->hist == NULL)
544 continue;
545
546 annotate_sym(he);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200547 /*
548 * Since we have a hist_entry per IP for the same symbol, free
549 * he->sym->hist to signal we already processed this symbol.
550 */
551 free(priv->hist);
552 priv->hist = NULL;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200553 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200554}
555
Ingo Molnar8035e422009-06-06 15:19:13 +0200556static int __cmd_annotate(void)
557{
558 int ret, rc = EXIT_FAILURE;
559 unsigned long offset = 0;
560 unsigned long head = 0;
Ingo Molnar83a09442009-08-15 12:26:57 +0200561 struct stat input_stat;
Ingo Molnar8035e422009-06-06 15:19:13 +0200562 event_t *event;
563 uint32_t size;
564 char *buf;
565
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300566 register_idle_thread();
Ingo Molnar8035e422009-06-06 15:19:13 +0200567
568 input = open(input_name, O_RDONLY);
569 if (input < 0) {
570 perror("failed to open file");
571 exit(-1);
572 }
573
Ingo Molnar83a09442009-08-15 12:26:57 +0200574 ret = fstat(input, &input_stat);
Ingo Molnar8035e422009-06-06 15:19:13 +0200575 if (ret < 0) {
576 perror("failed to stat file");
577 exit(-1);
578 }
579
Pierre Habouzit119e7a22009-08-27 09:59:02 +0200580 if (!force && input_stat.st_uid && (input_stat.st_uid != geteuid())) {
581 fprintf(stderr, "file: %s not owned by current user or root\n", input_name);
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200582 exit(-1);
583 }
584
Ingo Molnar83a09442009-08-15 12:26:57 +0200585 if (!input_stat.st_size) {
Ingo Molnar8035e422009-06-06 15:19:13 +0200586 fprintf(stderr, "zero-sized file, nothing to do!\n");
587 exit(0);
588 }
589
Ingo Molnar8035e422009-06-06 15:19:13 +0200590remap:
591 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
592 MAP_SHARED, input, offset);
593 if (buf == MAP_FAILED) {
594 perror("failed to mmap file");
595 exit(-1);
596 }
597
598more:
599 event = (event_t *)(buf + head);
600
601 size = event->header.size;
602 if (!size)
603 size = 8;
604
605 if (head + event->header.size >= page_size * mmap_window) {
606 unsigned long shift = page_size * (head / page_size);
Ingo Molnar83a09442009-08-15 12:26:57 +0200607 int munmap_ret;
Ingo Molnar8035e422009-06-06 15:19:13 +0200608
Ingo Molnar83a09442009-08-15 12:26:57 +0200609 munmap_ret = munmap(buf, page_size * mmap_window);
610 assert(munmap_ret == 0);
Ingo Molnar8035e422009-06-06 15:19:13 +0200611
612 offset += shift;
613 head -= shift;
614 goto remap;
615 }
616
617 size = event->header.size;
618
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200619 dump_printf("%p [%p]: event: %d\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200620 (void *)(offset + head),
621 (void *)(long)event->header.size,
622 event->header.type);
623
624 if (!size || process_event(event, offset, head) < 0) {
625
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200626 dump_printf("%p [%p]: skipping unknown header type: %d\n",
Ingo Molnar8035e422009-06-06 15:19:13 +0200627 (void *)(offset + head),
628 (void *)(long)(event->header.size),
629 event->header.type);
630
631 total_unknown++;
632
633 /*
634 * assume we lost track of the stream, check alignment, and
635 * increment a single u64 in the hope to catch on again 'soon'.
636 */
637
638 if (unlikely(head & 7))
639 head &= ~7ULL;
640
641 size = 8;
642 }
643
644 head += size;
645
Ingo Molnar83a09442009-08-15 12:26:57 +0200646 if (offset + head < (unsigned long)input_stat.st_size)
Ingo Molnar8035e422009-06-06 15:19:13 +0200647 goto more;
648
649 rc = EXIT_SUCCESS;
650 close(input);
651
Frederic Weisbecker2cec19d2009-08-16 19:24:21 +0200652 dump_printf(" IP events: %10ld\n", total);
653 dump_printf(" mmap events: %10ld\n", total_mmap);
654 dump_printf(" comm events: %10ld\n", total_comm);
655 dump_printf(" fork events: %10ld\n", total_fork);
656 dump_printf(" unknown events: %10ld\n", total_unknown);
Ingo Molnar8035e422009-06-06 15:19:13 +0200657
658 if (dump_trace)
659 return 0;
660
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300661 if (verbose > 3)
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300662 threads__fprintf(stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200663
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300664 if (verbose > 2)
Ingo Molnar8035e422009-06-06 15:19:13 +0200665 dsos__fprintf(stdout);
666
667 collapse__resort();
John Kacur3d1d07e2009-09-28 15:32:55 +0200668 output__resort(total);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200669
670 find_annotations();
Ingo Molnar8035e422009-06-06 15:19:13 +0200671
672 return rc;
673}
674
675static const char * const annotate_usage[] = {
676 "perf annotate [<options>] <command>",
677 NULL
678};
679
680static const struct option options[] = {
681 OPT_STRING('i', "input", &input_name, "file",
682 "input file name"),
Ingo Molnar23b87112009-06-06 21:25:29 +0200683 OPT_STRING('s', "symbol", &sym_hist_filter, "symbol",
Ingo Molnar0b73da32009-06-06 15:48:52 +0200684 "symbol to annotate"),
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200685 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200686 OPT_BOOLEAN('v', "verbose", &verbose,
687 "be more verbose (show symbol address, etc)"),
688 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
689 "dump raw trace in ASCII"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200690 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
691 "file", "vmlinux pathname"),
692 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200693 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200694 OPT_BOOLEAN('l', "print-line", &print_line,
695 "print matching source lines (may be slow)"),
Mike Galbraith42976482009-07-02 08:09:46 +0200696 OPT_BOOLEAN('P', "full-paths", &full_paths,
697 "Don't shorten the displayed pathnames"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200698 OPT_END()
699};
700
701static void setup_sorting(void)
702{
703 char *tmp, *tok, *str = strdup(sort_order);
704
705 for (tok = strtok_r(str, ", ", &tmp);
706 tok; tok = strtok_r(NULL, ", ", &tmp)) {
707 if (sort_dimension__add(tok) < 0) {
708 error("Unknown --sort key: `%s'", tok);
709 usage_with_options(annotate_usage, options);
710 }
711 }
712
713 free(str);
714}
715
Ingo Molnarf37a2912009-07-01 12:37:06 +0200716int cmd_annotate(int argc, const char **argv, const char *prefix __used)
Ingo Molnar8035e422009-06-06 15:19:13 +0200717{
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200718 if (symbol__init(&symbol_conf) < 0)
719 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200720
721 page_size = getpagesize();
722
723 argc = parse_options(argc, argv, options, annotate_usage, 0);
724
725 setup_sorting();
726
Ingo Molnar0b73da32009-06-06 15:48:52 +0200727 if (argc) {
728 /*
729 * Special case: if there's an argument left then assume tha
730 * it's a symbol filter:
731 */
732 if (argc > 1)
733 usage_with_options(annotate_usage, options);
734
735 sym_hist_filter = argv[0];
736 }
737
Ingo Molnar8035e422009-06-06 15:19:13 +0200738 setup_pager();
739
John Kacurdd68ada2009-09-24 18:02:49 +0200740 if (field_sep && *field_sep == '.') {
741 fputs("'.' is the only non valid --field-separator argument\n",
742 stderr);
743 exit(129);
744 }
745
Ingo Molnar8035e422009-06-06 15:19:13 +0200746 return __cmd_annotate();
747}