blob: 9072ef44cfcb5f9b87622ce8a2bc70a8d39a73ba [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
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020012#include "util/util.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020013#include "util/color.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -030014#include <linux/list.h>
Ingo Molnar8035e422009-06-06 15:19:13 +020015#include "util/cache.h"
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030016#include <linux/rbtree.h>
Ingo Molnar8035e422009-06-06 15:19:13 +020017#include "util/symbol.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020018
19#include "perf.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020020#include "util/debug.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020021
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020022#include "util/annotate.h"
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -020023#include "util/event.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020024#include "util/parse-options.h"
25#include "util/parse-events.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020026#include "util/thread.h"
John Kacurdd68ada2009-09-24 18:02:49 +020027#include "util/sort.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020028#include "util/hist.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020029#include "util/session.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020030
Ingo Molnar8035e422009-06-06 15:19:13 +020031static char const *input_name = "perf.data";
Ingo Molnar8035e422009-06-06 15:19:13 +020032
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -030033static bool force, use_tui, use_stdio;
Ingo Molnar8035e422009-06-06 15:19:13 +020034
Ian Munsiec0555642010-04-13 18:37:33 +100035static bool full_paths;
Mike Galbraith42976482009-07-02 08:09:46 +020036
Ian Munsiec0555642010-04-13 18:37:33 +100037static bool print_line;
Frederic Weisbecker301406b2009-06-13 00:11:21 +020038
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020039static const char *sym_hist_filter;
40
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030041static int hists__add_entry(struct hists *self, struct addr_location *al)
Ingo Molnar8035e422009-06-06 15:19:13 +020042{
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030043 struct hist_entry *he;
44
45 if (sym_hist_filter != NULL &&
46 (al->sym == NULL || strcmp(sym_hist_filter, al->sym->name) != 0)) {
47 /* We're only interested in a symbol named sym_hist_filter */
48 if (al->sym != NULL) {
49 rb_erase(&al->sym->rb_node,
50 &al->map->dso->symbols[al->map->type]);
51 symbol__delete(al->sym);
52 }
53 return 0;
54 }
55
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030056 he = __hists__add_entry(self, al, NULL, 1);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030057 if (he == NULL)
Ingo Molnar8035e422009-06-06 15:19:13 +020058 return -ENOMEM;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030059
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -030060 return hist_entry__inc_addr_samples(he, al->addr);
Ingo Molnar8035e422009-06-06 15:19:13 +020061}
62
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020063static int process_sample_event(union perf_event *event,
64 struct perf_sample *sample,
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020065 struct perf_session *session)
Ingo Molnar8035e422009-06-06 15:19:13 +020066{
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020067 struct addr_location al;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020068
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020069 if (perf_event__preprocess_sample(event, session, &al, sample, NULL) < 0) {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -020070 pr_warning("problem processing %d event, skipping it.\n",
71 event->header.type);
Ingo Molnar8035e422009-06-06 15:19:13 +020072 return -1;
73 }
74
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030075 if (!al.filtered && hists__add_entry(&session->hists, &al)) {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -020076 pr_warning("problem incrementing symbol count, "
77 "skipping event\n");
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -030078 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +020079 }
Ingo Molnar8035e422009-06-06 15:19:13 +020080
81 return 0;
82}
83
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -030084static int hist_entry__tty_annotate(struct hist_entry *he)
Ingo Molnar0b73da32009-06-06 15:48:52 +020085{
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020086 return symbol__tty_annotate(he->ms.sym, he->ms.map,
87 print_line, full_paths);
Ingo Molnar0b73da32009-06-06 15:48:52 +020088}
89
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030090static void hists__find_annotations(struct hists *self)
Ingo Molnar0b73da32009-06-06 15:48:52 +020091{
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -030092 struct rb_node *nd = rb_first(&self->entries), *next;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -030093 int key = KEY_RIGHT;
Ingo Molnar0b73da32009-06-06 15:48:52 +020094
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -030095 while (nd) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -020096 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020097 struct annotation *notes;
Ingo Molnar0b73da32009-06-06 15:48:52 +020098
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -030099 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned)
100 goto find_next;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200101
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200102 notes = symbol__annotation(he->ms.sym);
103 if (notes->histogram == NULL) {
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300104find_next:
105 if (key == KEY_LEFT)
106 nd = rb_prev(nd);
107 else
108 nd = rb_next(nd);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200109 continue;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300110 }
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200111
Arnaldo Carvalho de Melo62e34362010-05-26 13:22:26 -0300112 if (use_browser > 0) {
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300113 key = hist_entry__tui_annotate(he);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300114 switch (key) {
115 case KEY_RIGHT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300116 next = rb_next(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300117 break;
118 case KEY_LEFT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300119 next = rb_prev(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300120 break;
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300121 default:
122 return;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300123 }
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300124
125 if (next != NULL)
126 nd = next;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300127 } else {
128 hist_entry__tty_annotate(he);
129 nd = rb_next(nd);
130 /*
131 * Since we have a hist_entry per IP for the same
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200132 * symbol, free he->ms.sym->histogram to signal we already
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300133 * processed this symbol.
134 */
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200135 free(notes->histogram);
136 notes->histogram = NULL;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300137 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200138 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200139}
140
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -0200141static struct perf_event_ops event_ops = {
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200142 .sample = process_sample_event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200143 .mmap = perf_event__process_mmap,
144 .comm = perf_event__process_comm,
145 .fork = perf_event__process_task,
Ian Munsieeac23d12010-12-09 16:33:53 +1100146 .ordered_samples = true,
147 .ordering_requires_timestamps = true,
Li Zefanbab81b62009-12-01 14:04:49 +0800148};
149
Ingo Molnar8035e422009-06-06 15:19:13 +0200150static int __cmd_annotate(void)
151{
Li Zefanbab81b62009-12-01 14:04:49 +0800152 int ret;
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200153 struct perf_session *session;
Ingo Molnar8035e422009-06-06 15:19:13 +0200154
Ian Munsie21ef97f2010-12-10 14:09:16 +1100155 session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200156 if (session == NULL)
157 return -ENOMEM;
158
Arnaldo Carvalho de Meloec913362009-12-13 19:50:27 -0200159 ret = perf_session__process_events(session, &event_ops);
Li Zefanbab81b62009-12-01 14:04:49 +0800160 if (ret)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200161 goto out_delete;
Ingo Molnar8035e422009-06-06 15:19:13 +0200162
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200163 if (dump_trace) {
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300164 perf_session__fprintf_nr_events(session, stdout);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200165 goto out_delete;
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200166 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200167
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300168 if (verbose > 3)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200169 perf_session__fprintf(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200170
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300171 if (verbose > 2)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300172 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200173
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300174 hists__collapse_resort(&session->hists);
175 hists__output_resort(&session->hists);
176 hists__find_annotations(&session->hists);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200177out_delete:
178 perf_session__delete(session);
Ingo Molnar8035e422009-06-06 15:19:13 +0200179
Li Zefanbab81b62009-12-01 14:04:49 +0800180 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +0200181}
182
183static const char * const annotate_usage[] = {
184 "perf annotate [<options>] <command>",
185 NULL
186};
187
188static const struct option options[] = {
189 OPT_STRING('i', "input", &input_name, "file",
190 "input file name"),
Arnaldo Carvalho de Meloac73c5a2010-03-24 16:40:16 -0300191 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
192 "only consider symbols in these dsos"),
Ingo Molnar23b87112009-06-06 21:25:29 +0200193 OPT_STRING('s', "symbol", &sym_hist_filter, "symbol",
Ingo Molnar0b73da32009-06-06 15:48:52 +0200194 "symbol to annotate"),
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200195 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Ian Munsiec0555642010-04-13 18:37:33 +1000196 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar8035e422009-06-06 15:19:13 +0200197 "be more verbose (show symbol address, etc)"),
198 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
199 "dump raw trace in ASCII"),
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300200 OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"),
201 OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200202 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
203 "file", "vmlinux pathname"),
204 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200205 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200206 OPT_BOOLEAN('l', "print-line", &print_line,
207 "print matching source lines (may be slow)"),
Mike Galbraith42976482009-07-02 08:09:46 +0200208 OPT_BOOLEAN('P', "full-paths", &full_paths,
209 "Don't shorten the displayed pathnames"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200210 OPT_END()
211};
212
Ingo Molnarf37a2912009-07-01 12:37:06 +0200213int cmd_annotate(int argc, const char **argv, const char *prefix __used)
Ingo Molnar8035e422009-06-06 15:19:13 +0200214{
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200215 argc = parse_options(argc, argv, options, annotate_usage, 0);
216
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300217 if (use_stdio)
218 use_browser = 0;
219 else if (use_tui)
220 use_browser = 1;
221
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -0200222 setup_browser(true);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300223
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200224 symbol_conf.priv_size = sizeof(struct annotation);
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200225 symbol_conf.try_vmlinux_path = true;
226
227 if (symbol__init() < 0)
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200228 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200229
Arnaldo Carvalho de Meloc8829c72009-12-14 20:09:29 -0200230 setup_sorting(annotate_usage, options);
Ingo Molnar8035e422009-06-06 15:19:13 +0200231
Ingo Molnar0b73da32009-06-06 15:48:52 +0200232 if (argc) {
233 /*
234 * Special case: if there's an argument left then assume tha
235 * it's a symbol filter:
236 */
237 if (argc > 1)
238 usage_with_options(annotate_usage, options);
239
240 sym_hist_filter = argv[0];
241 }
242
John Kacurdd68ada2009-09-24 18:02:49 +0200243 if (field_sep && *field_sep == '.') {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -0200244 pr_err("'.' is the only non valid --field-separator argument\n");
245 return -1;
John Kacurdd68ada2009-09-24 18:02:49 +0200246 }
247
Ingo Molnar8035e422009-06-06 15:19:13 +0200248 return __cmd_annotate();
249}