blob: e18eb7ed30ae3b00af785c6bef248b4714bf34f4 [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 Weisbecker8f288272009-08-16 22:05:48 +020020#include "util/debug.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020021
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030022#include "util/evlist.h"
23#include "util/evsel.h"
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020024#include "util/annotate.h"
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -020025#include "util/event.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020026#include "util/parse-options.h"
27#include "util/parse-events.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020028#include "util/thread.h"
John Kacurdd68ada2009-09-24 18:02:49 +020029#include "util/sort.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020030#include "util/hist.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020031#include "util/session.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020032
Ingo Molnar8035e422009-06-06 15:19:13 +020033static char const *input_name = "perf.data";
Ingo Molnar8035e422009-06-06 15:19:13 +020034
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -030035static bool force, use_tui, use_stdio;
Ingo Molnar8035e422009-06-06 15:19:13 +020036
Ian Munsiec0555642010-04-13 18:37:33 +100037static bool full_paths;
Mike Galbraith42976482009-07-02 08:09:46 +020038
Ian Munsiec0555642010-04-13 18:37:33 +100039static bool print_line;
Frederic Weisbecker301406b2009-06-13 00:11:21 +020040
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -020041static const char *sym_hist_filter;
42
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030043static int perf_evlist__add_sample(struct perf_evlist *evlist,
44 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030045 struct perf_evsel *evsel,
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030046 struct addr_location *al)
Ingo Molnar8035e422009-06-06 15:19:13 +020047{
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030048 struct hist_entry *he;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030049 int ret;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030050
51 if (sym_hist_filter != NULL &&
52 (al->sym == NULL || strcmp(sym_hist_filter, al->sym->name) != 0)) {
53 /* We're only interested in a symbol named sym_hist_filter */
54 if (al->sym != NULL) {
55 rb_erase(&al->sym->rb_node,
56 &al->map->dso->symbols[al->map->type]);
57 symbol__delete(al->sym);
58 }
59 return 0;
60 }
61
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030062 he = __hists__add_entry(&evsel->hists, al, NULL, 1);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030063 if (he == NULL)
Ingo Molnar8035e422009-06-06 15:19:13 +020064 return -ENOMEM;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030065
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030066 ret = 0;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020067 if (he->ms.sym != NULL) {
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020068 struct annotation *notes = symbol__annotation(he->ms.sym);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020069 if (notes->src == NULL &&
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030070 symbol__alloc_hist(he->ms.sym, evlist->nr_entries) < 0)
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020071 return -ENOMEM;
72
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030073 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020074 }
75
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030076 evsel->hists.stats.total_period += sample->period;
77 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
78 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +020079}
80
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020081static int process_sample_event(union perf_event *event,
82 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030083 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020084 struct perf_session *session)
Ingo Molnar8035e422009-06-06 15:19:13 +020085{
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020086 struct addr_location al;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020087
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020088 if (perf_event__preprocess_sample(event, session, &al, sample,
89 symbol__annotate_init) < 0) {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -020090 pr_warning("problem processing %d event, skipping it.\n",
91 event->header.type);
Ingo Molnar8035e422009-06-06 15:19:13 +020092 return -1;
93 }
94
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030095 if (!al.filtered &&
96 perf_evlist__add_sample(session->evlist, sample, evsel, &al)) {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -020097 pr_warning("problem incrementing symbol count, "
98 "skipping event\n");
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -030099 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200100 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200101
102 return 0;
103}
104
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200105static int hist_entry__tty_annotate(struct hist_entry *he, int evidx)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200106{
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200107 return symbol__tty_annotate(he->ms.sym, he->ms.map, evidx,
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -0200108 print_line, full_paths, 0, 0);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200109}
110
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300111static void hists__find_annotations(struct hists *self, int evidx)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200112{
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300113 struct rb_node *nd = rb_first(&self->entries), *next;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300114 int key = KEY_RIGHT;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200115
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300116 while (nd) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200117 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200118 struct annotation *notes;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200119
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300120 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned)
121 goto find_next;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200122
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200123 notes = symbol__annotation(he->ms.sym);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200124 if (notes->src == NULL) {
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300125find_next:
126 if (key == KEY_LEFT)
127 nd = rb_prev(nd);
128 else
129 nd = rb_next(nd);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200130 continue;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300131 }
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200132
Arnaldo Carvalho de Melo62e34362010-05-26 13:22:26 -0300133 if (use_browser > 0) {
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300134 key = hist_entry__tui_annotate(he, evidx);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300135 switch (key) {
136 case KEY_RIGHT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300137 next = rb_next(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300138 break;
139 case KEY_LEFT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300140 next = rb_prev(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300141 break;
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300142 default:
143 return;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300144 }
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300145
146 if (next != NULL)
147 nd = next;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300148 } else {
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300149 hist_entry__tty_annotate(he, evidx);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300150 nd = rb_next(nd);
151 /*
152 * Since we have a hist_entry per IP for the same
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200153 * symbol, free he->ms.sym->src to signal we already
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300154 * processed this symbol.
155 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200156 free(notes->src);
157 notes->src = NULL;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300158 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200159 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200160}
161
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -0200162static struct perf_event_ops event_ops = {
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200163 .sample = process_sample_event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200164 .mmap = perf_event__process_mmap,
165 .comm = perf_event__process_comm,
166 .fork = perf_event__process_task,
Ian Munsieeac23d12010-12-09 16:33:53 +1100167 .ordered_samples = true,
168 .ordering_requires_timestamps = true,
Li Zefanbab81b62009-12-01 14:04:49 +0800169};
170
Ingo Molnar8035e422009-06-06 15:19:13 +0200171static int __cmd_annotate(void)
172{
Li Zefanbab81b62009-12-01 14:04:49 +0800173 int ret;
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200174 struct perf_session *session;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300175 struct perf_evsel *pos;
176 u64 total_nr_samples;
Ingo Molnar8035e422009-06-06 15:19:13 +0200177
Ian Munsie21ef97f2010-12-10 14:09:16 +1100178 session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200179 if (session == NULL)
180 return -ENOMEM;
181
Arnaldo Carvalho de Meloec913362009-12-13 19:50:27 -0200182 ret = perf_session__process_events(session, &event_ops);
Li Zefanbab81b62009-12-01 14:04:49 +0800183 if (ret)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200184 goto out_delete;
Ingo Molnar8035e422009-06-06 15:19:13 +0200185
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200186 if (dump_trace) {
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300187 perf_session__fprintf_nr_events(session, stdout);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200188 goto out_delete;
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200189 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200190
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300191 if (verbose > 3)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200192 perf_session__fprintf(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200193
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300194 if (verbose > 2)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300195 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200196
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300197 total_nr_samples = 0;
198 list_for_each_entry(pos, &session->evlist->entries, node) {
199 struct hists *hists = &pos->hists;
200 u32 nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
Ingo Molnar8035e422009-06-06 15:19:13 +0200201
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300202 if (nr_samples > 0) {
203 total_nr_samples += nr_samples;
204 hists__collapse_resort(hists);
205 hists__output_resort(hists);
206 hists__find_annotations(hists, pos->idx);
207 }
208 }
209
210 if (total_nr_samples == 0) {
211 ui__warning("The %s file has no samples!\n", input_name);
212 goto out_delete;
213 }
214out_delete:
215 /*
216 * Speed up the exit process, for large files this can
217 * take quite a while.
218 *
219 * XXX Enable this when using valgrind or if we ever
220 * librarize this command.
221 *
222 * Also experiment with obstacks to see how much speed
223 * up we'll get here.
224 *
225 * perf_session__delete(session);
226 */
Li Zefanbab81b62009-12-01 14:04:49 +0800227 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +0200228}
229
230static const char * const annotate_usage[] = {
231 "perf annotate [<options>] <command>",
232 NULL
233};
234
235static const struct option options[] = {
236 OPT_STRING('i', "input", &input_name, "file",
237 "input file name"),
Arnaldo Carvalho de Meloac73c5a2010-03-24 16:40:16 -0300238 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
239 "only consider symbols in these dsos"),
Ingo Molnar23b87112009-06-06 21:25:29 +0200240 OPT_STRING('s', "symbol", &sym_hist_filter, "symbol",
Ingo Molnar0b73da32009-06-06 15:48:52 +0200241 "symbol to annotate"),
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200242 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Ian Munsiec0555642010-04-13 18:37:33 +1000243 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar8035e422009-06-06 15:19:13 +0200244 "be more verbose (show symbol address, etc)"),
245 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
246 "dump raw trace in ASCII"),
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300247 OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"),
248 OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200249 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
250 "file", "vmlinux pathname"),
251 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200252 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200253 OPT_BOOLEAN('l', "print-line", &print_line,
254 "print matching source lines (may be slow)"),
Mike Galbraith42976482009-07-02 08:09:46 +0200255 OPT_BOOLEAN('P', "full-paths", &full_paths,
256 "Don't shorten the displayed pathnames"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200257 OPT_END()
258};
259
Ingo Molnarf37a2912009-07-01 12:37:06 +0200260int cmd_annotate(int argc, const char **argv, const char *prefix __used)
Ingo Molnar8035e422009-06-06 15:19:13 +0200261{
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200262 argc = parse_options(argc, argv, options, annotate_usage, 0);
263
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300264 if (use_stdio)
265 use_browser = 0;
266 else if (use_tui)
267 use_browser = 1;
268
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -0200269 setup_browser(true);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300270
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200271 symbol_conf.priv_size = sizeof(struct annotation);
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200272 symbol_conf.try_vmlinux_path = true;
273
274 if (symbol__init() < 0)
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200275 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200276
Arnaldo Carvalho de Meloc8829c72009-12-14 20:09:29 -0200277 setup_sorting(annotate_usage, options);
Ingo Molnar8035e422009-06-06 15:19:13 +0200278
Ingo Molnar0b73da32009-06-06 15:48:52 +0200279 if (argc) {
280 /*
281 * Special case: if there's an argument left then assume tha
282 * it's a symbol filter:
283 */
284 if (argc > 1)
285 usage_with_options(annotate_usage, options);
286
287 sym_hist_filter = argv[0];
288 }
289
John Kacurdd68ada2009-09-24 18:02:49 +0200290 if (field_sep && *field_sep == '.') {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -0200291 pr_err("'.' is the only non valid --field-separator argument\n");
292 return -1;
John Kacurdd68ada2009-09-24 18:02:49 +0200293 }
294
Ingo Molnar8035e422009-06-06 15:19:13 +0200295 return __cmd_annotate();
296}