blob: 4136f9970fd5395b1af96231a94380f45e4684ec [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 Weisbecker8f28827a2009-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"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020030#include "util/tool.h"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020031#include "util/data.h"
Irina Tirdea68e94f42012-10-16 02:33:38 +030032#include "arch/common.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020033
Namhyung Kimfc672972013-09-13 15:27:43 +090034#include <dlfcn.h>
Anton Blanchard5d67be92011-07-04 21:57:50 +100035#include <linux/bitmap.h>
36
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020037struct perf_annotate {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020038 struct perf_tool tool;
Namhyung Kim2b676bf2013-02-07 18:02:08 +090039 bool force, use_tui, use_stdio, use_gtk;
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -020040 bool full_paths;
41 bool print_line;
Namhyung Kim18c9e5c2013-02-07 18:02:14 +090042 bool skip_missing;
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -020043 const char *sym_hist_filter;
44 const char *cpu_list;
45 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020046};
Anton Blanchard5d67be92011-07-04 21:57:50 +100047
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -020048static int perf_evsel__add_sample(struct perf_evsel *evsel,
49 struct perf_sample *sample,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020050 struct addr_location *al,
51 struct perf_annotate *ann)
Ingo Molnar8035e422009-06-06 15:19:13 +020052{
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030053 struct hist_entry *he;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030054 int ret;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030055
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -020056 if (ann->sym_hist_filter != NULL &&
57 (al->sym == NULL ||
58 strcmp(ann->sym_hist_filter, al->sym->name) != 0)) {
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030059 /* We're only interested in a symbol named sym_hist_filter */
60 if (al->sym != NULL) {
61 rb_erase(&al->sym->rb_node,
62 &al->map->dso->symbols[al->map->type]);
63 symbol__delete(al->sym);
64 }
65 return 0;
66 }
67
Namhyung Kim41a4e6e2013-10-31 15:56:03 +090068 he = __hists__add_entry(&evsel->hists, al, NULL, NULL, NULL, 1, 1, 0);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030069 if (he == NULL)
Ingo Molnar8035e422009-06-06 15:19:13 +020070 return -ENOMEM;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030071
Arnaldo Carvalho de Melo00e55212013-12-18 15:46:32 -030072 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030073 evsel->hists.stats.total_period += sample->period;
74 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
75 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +020076}
77
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020078static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020079 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020080 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030081 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020082 struct machine *machine)
Ingo Molnar8035e422009-06-06 15:19:13 +020083{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020084 struct perf_annotate *ann = container_of(tool, struct perf_annotate, tool);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020085 struct addr_location al;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020086
Adrian Huntere44baa32013-08-08 14:32:25 +030087 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -020088 pr_warning("problem processing %d event, skipping it.\n",
89 event->header.type);
Ingo Molnar8035e422009-06-06 15:19:13 +020090 return -1;
91 }
92
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -020093 if (ann->cpu_list && !test_bit(sample->cpu, ann->cpu_bitmap))
Anton Blanchard5d67be92011-07-04 21:57:50 +100094 return 0;
95
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020096 if (!al.filtered && perf_evsel__add_sample(evsel, sample, &al, ann)) {
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
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900105static int hist_entry__tty_annotate(struct hist_entry *he,
106 struct perf_evsel *evsel,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200107 struct perf_annotate *ann)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200108{
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900109 return symbol__tty_annotate(he->ms.sym, he->ms.map, evsel,
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200110 ann->print_line, ann->full_paths, 0, 0);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200111}
112
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300113static void hists__find_annotations(struct hists *hists,
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900114 struct perf_evsel *evsel,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200115 struct perf_annotate *ann)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200116{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300117 struct rb_node *nd = rb_first(&hists->entries), *next;
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200118 int key = K_RIGHT;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200119
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300120 while (nd) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200121 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200122 struct annotation *notes;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200123
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300124 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned)
125 goto find_next;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200126
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200127 notes = symbol__annotation(he->ms.sym);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200128 if (notes->src == NULL) {
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300129find_next:
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200130 if (key == K_LEFT)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300131 nd = rb_prev(nd);
132 else
133 nd = rb_next(nd);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200134 continue;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300135 }
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200136
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900137 if (use_browser == 2) {
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900138 int ret;
Namhyung Kimfc672972013-09-13 15:27:43 +0900139 int (*annotate)(struct hist_entry *he,
140 struct perf_evsel *evsel,
141 struct hist_browser_timer *hbt);
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900142
Namhyung Kimfc672972013-09-13 15:27:43 +0900143 annotate = dlsym(perf_gtk_handle,
144 "hist_entry__gtk_annotate");
145 if (annotate == NULL) {
146 ui__error("GTK browser not found!\n");
147 return;
148 }
149
150 ret = annotate(he, evsel, NULL);
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900151 if (!ret || !ann->skip_missing)
152 return;
153
154 /* skip missing symbols */
155 nd = rb_next(nd);
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900156 } else if (use_browser == 1) {
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900157 key = hist_entry__tui_annotate(he, evsel, NULL);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300158 switch (key) {
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900159 case -1:
160 if (!ann->skip_missing)
161 return;
162 /* fall through */
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200163 case K_RIGHT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300164 next = rb_next(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300165 break;
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200166 case K_LEFT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300167 next = rb_prev(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300168 break;
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300169 default:
170 return;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300171 }
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300172
173 if (next != NULL)
174 nd = next;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300175 } else {
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900176 hist_entry__tty_annotate(he, evsel, ann);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300177 nd = rb_next(nd);
178 /*
179 * Since we have a hist_entry per IP for the same
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200180 * symbol, free he->ms.sym->src to signal we already
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300181 * processed this symbol.
182 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200183 free(notes->src);
184 notes->src = NULL;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300185 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200186 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200187}
188
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200189static int __cmd_annotate(struct perf_annotate *ann)
Ingo Molnar8035e422009-06-06 15:19:13 +0200190{
Li Zefanbab81b62009-12-01 14:04:49 +0800191 int ret;
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200192 struct perf_session *session;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300193 struct perf_evsel *pos;
194 u64 total_nr_samples;
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200195 struct perf_data_file file = {
196 .path = input_name,
197 .mode = PERF_DATA_MODE_READ,
198 .force = ann->force,
199 };
Ingo Molnar8035e422009-06-06 15:19:13 +0200200
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200201 session = perf_session__new(&file, false, &ann->tool);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200202 if (session == NULL)
203 return -ENOMEM;
204
Adrian Hunter476d35c2013-08-08 14:32:24 +0300205 machines__set_symbol_filter(&session->machines, symbol__annotate_init);
206
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200207 if (ann->cpu_list) {
208 ret = perf_session__cpu_bitmap(session, ann->cpu_list,
209 ann->cpu_bitmap);
Anton Blanchard5d67be92011-07-04 21:57:50 +1000210 if (ret)
211 goto out_delete;
212 }
213
Irina Tirdea68e94f42012-10-16 02:33:38 +0300214 if (!objdump_path) {
215 ret = perf_session_env__lookup_objdump(&session->header.env);
216 if (ret)
217 goto out_delete;
218 }
219
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200220 ret = perf_session__process_events(session, &ann->tool);
Li Zefanbab81b62009-12-01 14:04:49 +0800221 if (ret)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200222 goto out_delete;
Ingo Molnar8035e422009-06-06 15:19:13 +0200223
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200224 if (dump_trace) {
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300225 perf_session__fprintf_nr_events(session, stdout);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200226 goto out_delete;
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200227 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200228
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300229 if (verbose > 3)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200230 perf_session__fprintf(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200231
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300232 if (verbose > 2)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300233 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200234
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300235 total_nr_samples = 0;
236 list_for_each_entry(pos, &session->evlist->entries, node) {
237 struct hists *hists = &pos->hists;
238 u32 nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
Ingo Molnar8035e422009-06-06 15:19:13 +0200239
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300240 if (nr_samples > 0) {
241 total_nr_samples += nr_samples;
Namhyung Kimc1fb5652013-10-11 14:15:38 +0900242 hists__collapse_resort(hists, NULL);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300243 hists__output_resort(hists);
Namhyung Kimb1dd4432013-03-05 14:53:25 +0900244
245 if (symbol_conf.event_group &&
246 !perf_evsel__is_group_leader(pos))
247 continue;
248
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900249 hists__find_annotations(hists, pos, ann);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300250 }
251 }
252
253 if (total_nr_samples == 0) {
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200254 ui__error("The %s file has no samples!\n", file.path);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300255 goto out_delete;
256 }
Namhyung Kim7a60ba92013-02-07 18:02:09 +0900257
Namhyung Kimfc672972013-09-13 15:27:43 +0900258 if (use_browser == 2) {
259 void (*show_annotations)(void);
260
261 show_annotations = dlsym(perf_gtk_handle,
262 "perf_gtk__show_annotations");
263 if (show_annotations == NULL) {
264 ui__error("GTK browser not found!\n");
265 goto out_delete;
266 }
267 show_annotations();
268 }
Namhyung Kim7a60ba92013-02-07 18:02:09 +0900269
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300270out_delete:
271 /*
272 * Speed up the exit process, for large files this can
273 * take quite a while.
274 *
275 * XXX Enable this when using valgrind or if we ever
276 * librarize this command.
277 *
278 * Also experiment with obstacks to see how much speed
279 * up we'll get here.
280 *
281 * perf_session__delete(session);
282 */
Li Zefanbab81b62009-12-01 14:04:49 +0800283 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +0200284}
285
286static const char * const annotate_usage[] = {
Namhyung Kim99345252012-01-08 02:25:30 +0900287 "perf annotate [<options>]",
Ingo Molnar8035e422009-06-06 15:19:13 +0200288 NULL
289};
290
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300291int cmd_annotate(int argc, const char **argv, const char *prefix __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200292{
293 struct perf_annotate annotate = {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200294 .tool = {
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200295 .sample = process_sample_event,
296 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200297 .mmap2 = perf_event__process_mmap2,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200298 .comm = perf_event__process_comm,
Arnaldo Carvalho de Meloec4622f2012-10-06 15:53:41 -0300299 .exit = perf_event__process_exit,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300300 .fork = perf_event__process_fork,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200301 .ordered_samples = true,
302 .ordering_requires_timestamps = true,
303 },
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200304 };
305 const struct option options[] = {
Feng Tang70cb4e92012-10-30 11:56:02 +0800306 OPT_STRING('i', "input", &input_name, "file",
Ingo Molnar8035e422009-06-06 15:19:13 +0200307 "input file name"),
Arnaldo Carvalho de Meloac73c5a2010-03-24 16:40:16 -0300308 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
309 "only consider symbols in these dsos"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200310 OPT_STRING('s', "symbol", &annotate.sym_hist_filter, "symbol",
Ingo Molnar0b73da32009-06-06 15:48:52 +0200311 "symbol to annotate"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200312 OPT_BOOLEAN('f', "force", &annotate.force, "don't complain, do it"),
Ian Munsiec0555642010-04-13 18:37:33 +1000313 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar8035e422009-06-06 15:19:13 +0200314 "be more verbose (show symbol address, etc)"),
315 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
316 "dump raw trace in ASCII"),
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900317 OPT_BOOLEAN(0, "gtk", &annotate.use_gtk, "Use the GTK interface"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200318 OPT_BOOLEAN(0, "tui", &annotate.use_tui, "Use the TUI interface"),
319 OPT_BOOLEAN(0, "stdio", &annotate.use_stdio, "Use the stdio interface"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200320 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
321 "file", "vmlinux pathname"),
322 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200323 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200324 OPT_BOOLEAN('l', "print-line", &annotate.print_line,
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200325 "print matching source lines (may be slow)"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200326 OPT_BOOLEAN('P', "full-paths", &annotate.full_paths,
Mike Galbraith42976482009-07-02 08:09:46 +0200327 "Don't shorten the displayed pathnames"),
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900328 OPT_BOOLEAN(0, "skip-missing", &annotate.skip_missing,
329 "Skip symbols that cannot be annotated"),
David Ahernc8e66722011-11-13 11:30:08 -0700330 OPT_STRING('C', "cpu", &annotate.cpu_list, "cpu", "list of cpus to profile"),
Stephane Eraniane71a0592011-07-30 01:20:40 +0200331 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
332 "Look for files with symbols relative to this directory"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300333 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
Stephane Eranian3e6a2a72011-05-17 17:32:07 +0200334 "Interleave source code with assembly code (default)"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300335 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
Stephane Eranian3e6a2a72011-05-17 17:32:07 +0200336 "Display raw encoding of assembly instructions (default)"),
Andi Kleenf69b64f2011-09-15 14:31:41 -0700337 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
338 "Specify disassembler style (e.g. -M intel for intel syntax)"),
Maciek Borzecki7a4ec932012-09-04 12:32:30 +0200339 OPT_STRING(0, "objdump", &objdump_path, "path",
340 "objdump binary to use for disassembly and annotations"),
Namhyung Kimb1dd4432013-03-05 14:53:25 +0900341 OPT_BOOLEAN(0, "group", &symbol_conf.event_group,
342 "Show event group information together"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200343 OPT_END()
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200344 };
Ingo Molnar8035e422009-06-06 15:19:13 +0200345
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200346 argc = parse_options(argc, argv, options, annotate_usage, 0);
347
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200348 if (annotate.use_stdio)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300349 use_browser = 0;
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200350 else if (annotate.use_tui)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300351 use_browser = 1;
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900352 else if (annotate.use_gtk)
353 use_browser = 2;
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300354
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -0200355 setup_browser(true);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300356
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200357 symbol_conf.priv_size = sizeof(struct annotation);
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200358 symbol_conf.try_vmlinux_path = true;
359
360 if (symbol__init() < 0)
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200361 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200362
Namhyung Kim55309982013-02-06 14:57:16 +0900363 if (setup_sorting() < 0)
364 usage_with_options(annotate_usage, options);
Ingo Molnar8035e422009-06-06 15:19:13 +0200365
Ingo Molnar0b73da32009-06-06 15:48:52 +0200366 if (argc) {
367 /*
Dongsheng Yang6f1d0c82013-12-09 17:47:48 -0500368 * Special case: if there's an argument left then assume that
Ingo Molnar0b73da32009-06-06 15:48:52 +0200369 * it's a symbol filter:
370 */
371 if (argc > 1)
372 usage_with_options(annotate_usage, options);
373
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200374 annotate.sym_hist_filter = argv[0];
Ingo Molnar0b73da32009-06-06 15:48:52 +0200375 }
376
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200377 return __cmd_annotate(&annotate);
Ingo Molnar8035e422009-06-06 15:19:13 +0200378}