blob: 46b4c24f338ef4fe51e98a30d7f60f6b9e1010bb [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"
Ingo Molnar8035e422009-06-06 15:19:13 +020011#include "util/color.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -030012#include <linux/list.h>
Ingo Molnar8035e422009-06-06 15:19:13 +020013#include "util/cache.h"
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030014#include <linux/rbtree.h>
Ingo Molnar8035e422009-06-06 15:19:13 +020015#include "util/symbol.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020016
17#include "perf.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020018#include "util/debug.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020019
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030020#include "util/evlist.h"
21#include "util/evsel.h"
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
Anton Blanchard5d67be92011-07-04 21:57:50 +100031#include <linux/bitmap.h>
32
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
Anton Blanchard5d67be92011-07-04 21:57:50 +100043static const char *cpu_list;
44static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
45
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030046static int perf_evlist__add_sample(struct perf_evlist *evlist,
47 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030048 struct perf_evsel *evsel,
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030049 struct addr_location *al)
Ingo Molnar8035e422009-06-06 15:19:13 +020050{
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030051 struct hist_entry *he;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030052 int ret;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030053
54 if (sym_hist_filter != NULL &&
55 (al->sym == NULL || strcmp(sym_hist_filter, al->sym->name) != 0)) {
56 /* We're only interested in a symbol named sym_hist_filter */
57 if (al->sym != NULL) {
58 rb_erase(&al->sym->rb_node,
59 &al->map->dso->symbols[al->map->type]);
60 symbol__delete(al->sym);
61 }
62 return 0;
63 }
64
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030065 he = __hists__add_entry(&evsel->hists, al, NULL, 1);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030066 if (he == NULL)
Ingo Molnar8035e422009-06-06 15:19:13 +020067 return -ENOMEM;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030068
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030069 ret = 0;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020070 if (he->ms.sym != NULL) {
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020071 struct annotation *notes = symbol__annotation(he->ms.sym);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020072 if (notes->src == NULL &&
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030073 symbol__alloc_hist(he->ms.sym, evlist->nr_entries) < 0)
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020074 return -ENOMEM;
75
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030076 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020077 }
78
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030079 evsel->hists.stats.total_period += sample->period;
80 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
81 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +020082}
83
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020084static int process_sample_event(union perf_event *event,
85 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030086 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020087 struct perf_session *session)
Ingo Molnar8035e422009-06-06 15:19:13 +020088{
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020089 struct addr_location al;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020090
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020091 if (perf_event__preprocess_sample(event, session, &al, sample,
92 symbol__annotate_init) < 0) {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -020093 pr_warning("problem processing %d event, skipping it.\n",
94 event->header.type);
Ingo Molnar8035e422009-06-06 15:19:13 +020095 return -1;
96 }
97
Anton Blanchard5d67be92011-07-04 21:57:50 +100098 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
99 return 0;
100
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300101 if (!al.filtered &&
102 perf_evlist__add_sample(session->evlist, sample, evsel, &al)) {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -0200103 pr_warning("problem incrementing symbol count, "
104 "skipping event\n");
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300105 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200106 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200107
108 return 0;
109}
110
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200111static int hist_entry__tty_annotate(struct hist_entry *he, int evidx)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200112{
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200113 return symbol__tty_annotate(he->ms.sym, he->ms.map, evidx,
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -0200114 print_line, full_paths, 0, 0);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200115}
116
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -0300117static void hists__find_annotations(struct hists *self, int evidx,
118 int nr_events)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200119{
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300120 struct rb_node *nd = rb_first(&self->entries), *next;
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200121 int key = K_RIGHT;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200122
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300123 while (nd) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200124 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200125 struct annotation *notes;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200126
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300127 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned)
128 goto find_next;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200129
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200130 notes = symbol__annotation(he->ms.sym);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200131 if (notes->src == NULL) {
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300132find_next:
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200133 if (key == K_LEFT)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300134 nd = rb_prev(nd);
135 else
136 nd = rb_next(nd);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200137 continue;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300138 }
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200139
Arnaldo Carvalho de Melo62e34362010-05-26 13:22:26 -0300140 if (use_browser > 0) {
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -0300141 key = hist_entry__tui_annotate(he, evidx, nr_events,
142 NULL, NULL, 0);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300143 switch (key) {
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200144 case K_RIGHT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300145 next = rb_next(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300146 break;
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200147 case K_LEFT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300148 next = rb_prev(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300149 break;
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300150 default:
151 return;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300152 }
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300153
154 if (next != NULL)
155 nd = next;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300156 } else {
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300157 hist_entry__tty_annotate(he, evidx);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300158 nd = rb_next(nd);
159 /*
160 * Since we have a hist_entry per IP for the same
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200161 * symbol, free he->ms.sym->src to signal we already
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300162 * processed this symbol.
163 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200164 free(notes->src);
165 notes->src = NULL;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300166 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200167 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200168}
169
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -0200170static struct perf_event_ops event_ops = {
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200171 .sample = process_sample_event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200172 .mmap = perf_event__process_mmap,
173 .comm = perf_event__process_comm,
174 .fork = perf_event__process_task,
Ian Munsieeac23d12010-12-09 16:33:53 +1100175 .ordered_samples = true,
176 .ordering_requires_timestamps = true,
Li Zefanbab81b62009-12-01 14:04:49 +0800177};
178
Ingo Molnar8035e422009-06-06 15:19:13 +0200179static int __cmd_annotate(void)
180{
Li Zefanbab81b62009-12-01 14:04:49 +0800181 int ret;
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200182 struct perf_session *session;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300183 struct perf_evsel *pos;
184 u64 total_nr_samples;
Ingo Molnar8035e422009-06-06 15:19:13 +0200185
Ian Munsie21ef97f2010-12-10 14:09:16 +1100186 session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200187 if (session == NULL)
188 return -ENOMEM;
189
Anton Blanchard5d67be92011-07-04 21:57:50 +1000190 if (cpu_list) {
191 ret = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
192 if (ret)
193 goto out_delete;
194 }
195
Arnaldo Carvalho de Meloec913362009-12-13 19:50:27 -0200196 ret = perf_session__process_events(session, &event_ops);
Li Zefanbab81b62009-12-01 14:04:49 +0800197 if (ret)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200198 goto out_delete;
Ingo Molnar8035e422009-06-06 15:19:13 +0200199
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200200 if (dump_trace) {
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300201 perf_session__fprintf_nr_events(session, stdout);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200202 goto out_delete;
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200203 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200204
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300205 if (verbose > 3)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200206 perf_session__fprintf(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200207
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300208 if (verbose > 2)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300209 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200210
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300211 total_nr_samples = 0;
212 list_for_each_entry(pos, &session->evlist->entries, node) {
213 struct hists *hists = &pos->hists;
214 u32 nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
Ingo Molnar8035e422009-06-06 15:19:13 +0200215
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300216 if (nr_samples > 0) {
217 total_nr_samples += nr_samples;
218 hists__collapse_resort(hists);
219 hists__output_resort(hists);
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -0300220 hists__find_annotations(hists, pos->idx,
221 session->evlist->nr_entries);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300222 }
223 }
224
225 if (total_nr_samples == 0) {
226 ui__warning("The %s file has no samples!\n", input_name);
227 goto out_delete;
228 }
229out_delete:
230 /*
231 * Speed up the exit process, for large files this can
232 * take quite a while.
233 *
234 * XXX Enable this when using valgrind or if we ever
235 * librarize this command.
236 *
237 * Also experiment with obstacks to see how much speed
238 * up we'll get here.
239 *
240 * perf_session__delete(session);
241 */
Li Zefanbab81b62009-12-01 14:04:49 +0800242 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +0200243}
244
245static const char * const annotate_usage[] = {
246 "perf annotate [<options>] <command>",
247 NULL
248};
249
250static const struct option options[] = {
251 OPT_STRING('i', "input", &input_name, "file",
252 "input file name"),
Arnaldo Carvalho de Meloac73c5a2010-03-24 16:40:16 -0300253 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
254 "only consider symbols in these dsos"),
Ingo Molnar23b87112009-06-06 21:25:29 +0200255 OPT_STRING('s', "symbol", &sym_hist_filter, "symbol",
Ingo Molnar0b73da32009-06-06 15:48:52 +0200256 "symbol to annotate"),
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200257 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Ian Munsiec0555642010-04-13 18:37:33 +1000258 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar8035e422009-06-06 15:19:13 +0200259 "be more verbose (show symbol address, etc)"),
260 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
261 "dump raw trace in ASCII"),
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300262 OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"),
263 OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200264 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
265 "file", "vmlinux pathname"),
266 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200267 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200268 OPT_BOOLEAN('l', "print-line", &print_line,
269 "print matching source lines (may be slow)"),
Mike Galbraith42976482009-07-02 08:09:46 +0200270 OPT_BOOLEAN('P', "full-paths", &full_paths,
271 "Don't shorten the displayed pathnames"),
Anton Blanchard5d67be92011-07-04 21:57:50 +1000272 OPT_STRING('c', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
Stephane Eraniane71a0592011-07-30 01:20:40 +0200273 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
274 "Look for files with symbols relative to this directory"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300275 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
Stephane Eranian3e6a2a72011-05-17 17:32:07 +0200276 "Interleave source code with assembly code (default)"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300277 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
Stephane Eranian3e6a2a72011-05-17 17:32:07 +0200278 "Display raw encoding of assembly instructions (default)"),
Andi Kleenf69b64f2011-09-15 14:31:41 -0700279 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
280 "Specify disassembler style (e.g. -M intel for intel syntax)"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200281 OPT_END()
282};
283
Ingo Molnarf37a2912009-07-01 12:37:06 +0200284int cmd_annotate(int argc, const char **argv, const char *prefix __used)
Ingo Molnar8035e422009-06-06 15:19:13 +0200285{
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200286 argc = parse_options(argc, argv, options, annotate_usage, 0);
287
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300288 if (use_stdio)
289 use_browser = 0;
290 else if (use_tui)
291 use_browser = 1;
292
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -0200293 setup_browser(true);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300294
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200295 symbol_conf.priv_size = sizeof(struct annotation);
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200296 symbol_conf.try_vmlinux_path = true;
297
298 if (symbol__init() < 0)
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200299 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200300
Arnaldo Carvalho de Meloc8829c72009-12-14 20:09:29 -0200301 setup_sorting(annotate_usage, options);
Ingo Molnar8035e422009-06-06 15:19:13 +0200302
Ingo Molnar0b73da32009-06-06 15:48:52 +0200303 if (argc) {
304 /*
305 * Special case: if there's an argument left then assume tha
306 * it's a symbol filter:
307 */
308 if (argc > 1)
309 usage_with_options(annotate_usage, options);
310
311 sym_hist_filter = argv[0];
312 }
313
John Kacurdd68ada2009-09-24 18:02:49 +0200314 if (field_sep && *field_sep == '.') {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -0200315 pr_err("'.' is the only non valid --field-separator argument\n");
316 return -1;
John Kacurdd68ada2009-09-24 18:02:49 +0200317 }
318
Ingo Molnar8035e422009-06-06 15:19:13 +0200319 return __cmd_annotate();
320}