blob: 952b5ece6740c3abde175b473c2a706f9fce448a [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,
Namhyung Kim820bc812014-04-22 11:44:21 +090049 struct perf_sample *sample __maybe_unused,
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 Kima0b51af2012-09-11 13:34:27 +090068 he = __hists__add_entry(&evsel->hists, al, NULL, NULL, NULL, 1, 1, 0,
69 true);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030070 if (he == NULL)
Ingo Molnar8035e422009-06-06 15:19:13 +020071 return -ENOMEM;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030072
Arnaldo Carvalho de Melo00e55212013-12-18 15:46:32 -030073 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
Namhyung Kim1844dbc2014-05-28 14:12:18 +090074 hists__inc_nr_samples(&evsel->hists, true);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030075 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 Melo04662522013-12-26 17:41:15 -0300183 zfree(&notes->src);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300184 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200185 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200186}
187
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200188static int __cmd_annotate(struct perf_annotate *ann)
Ingo Molnar8035e422009-06-06 15:19:13 +0200189{
Li Zefanbab81b62009-12-01 14:04:49 +0800190 int ret;
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200191 struct perf_session *session;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300192 struct perf_evsel *pos;
193 u64 total_nr_samples;
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200194 struct perf_data_file file = {
195 .path = input_name,
196 .mode = PERF_DATA_MODE_READ,
197 .force = ann->force,
198 };
Ingo Molnar8035e422009-06-06 15:19:13 +0200199
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200200 session = perf_session__new(&file, false, &ann->tool);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200201 if (session == NULL)
202 return -ENOMEM;
203
Adrian Hunter476d35c2013-08-08 14:32:24 +0300204 machines__set_symbol_filter(&session->machines, symbol__annotate_init);
205
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200206 if (ann->cpu_list) {
207 ret = perf_session__cpu_bitmap(session, ann->cpu_list,
208 ann->cpu_bitmap);
Anton Blanchard5d67be92011-07-04 21:57:50 +1000209 if (ret)
210 goto out_delete;
211 }
212
Irina Tirdea68e94f42012-10-16 02:33:38 +0300213 if (!objdump_path) {
214 ret = perf_session_env__lookup_objdump(&session->header.env);
215 if (ret)
216 goto out_delete;
217 }
218
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200219 ret = perf_session__process_events(session, &ann->tool);
Li Zefanbab81b62009-12-01 14:04:49 +0800220 if (ret)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200221 goto out_delete;
Ingo Molnar8035e422009-06-06 15:19:13 +0200222
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200223 if (dump_trace) {
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300224 perf_session__fprintf_nr_events(session, stdout);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200225 goto out_delete;
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200226 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200227
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300228 if (verbose > 3)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200229 perf_session__fprintf(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200230
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300231 if (verbose > 2)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300232 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200233
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300234 total_nr_samples = 0;
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300235 evlist__for_each(session->evlist, pos) {
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300236 struct hists *hists = &pos->hists;
237 u32 nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
Ingo Molnar8035e422009-06-06 15:19:13 +0200238
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300239 if (nr_samples > 0) {
240 total_nr_samples += nr_samples;
Namhyung Kimc1fb5652013-10-11 14:15:38 +0900241 hists__collapse_resort(hists, NULL);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300242 hists__output_resort(hists);
Namhyung Kimb1dd4432013-03-05 14:53:25 +0900243
244 if (symbol_conf.event_group &&
245 !perf_evsel__is_group_leader(pos))
246 continue;
247
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900248 hists__find_annotations(hists, pos, ann);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300249 }
250 }
251
252 if (total_nr_samples == 0) {
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200253 ui__error("The %s file has no samples!\n", file.path);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300254 goto out_delete;
255 }
Namhyung Kim7a60ba92013-02-07 18:02:09 +0900256
Namhyung Kimfc672972013-09-13 15:27:43 +0900257 if (use_browser == 2) {
258 void (*show_annotations)(void);
259
260 show_annotations = dlsym(perf_gtk_handle,
261 "perf_gtk__show_annotations");
262 if (show_annotations == NULL) {
263 ui__error("GTK browser not found!\n");
264 goto out_delete;
265 }
266 show_annotations();
267 }
Namhyung Kim7a60ba92013-02-07 18:02:09 +0900268
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300269out_delete:
270 /*
271 * Speed up the exit process, for large files this can
272 * take quite a while.
273 *
274 * XXX Enable this when using valgrind or if we ever
275 * librarize this command.
276 *
277 * Also experiment with obstacks to see how much speed
278 * up we'll get here.
279 *
280 * perf_session__delete(session);
281 */
Li Zefanbab81b62009-12-01 14:04:49 +0800282 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +0200283}
284
285static const char * const annotate_usage[] = {
Namhyung Kim99345252012-01-08 02:25:30 +0900286 "perf annotate [<options>]",
Ingo Molnar8035e422009-06-06 15:19:13 +0200287 NULL
288};
289
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300290int cmd_annotate(int argc, const char **argv, const char *prefix __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200291{
292 struct perf_annotate annotate = {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200293 .tool = {
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200294 .sample = process_sample_event,
295 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200296 .mmap2 = perf_event__process_mmap2,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200297 .comm = perf_event__process_comm,
Arnaldo Carvalho de Meloec4622f2012-10-06 15:53:41 -0300298 .exit = perf_event__process_exit,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300299 .fork = perf_event__process_fork,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200300 .ordered_events = true,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200301 .ordering_requires_timestamps = true,
302 },
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200303 };
304 const struct option options[] = {
Feng Tang70cb4e92012-10-30 11:56:02 +0800305 OPT_STRING('i', "input", &input_name, "file",
Ingo Molnar8035e422009-06-06 15:19:13 +0200306 "input file name"),
Arnaldo Carvalho de Meloac73c5a2010-03-24 16:40:16 -0300307 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
308 "only consider symbols in these dsos"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200309 OPT_STRING('s', "symbol", &annotate.sym_hist_filter, "symbol",
Ingo Molnar0b73da32009-06-06 15:48:52 +0200310 "symbol to annotate"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200311 OPT_BOOLEAN('f', "force", &annotate.force, "don't complain, do it"),
Ian Munsiec0555642010-04-13 18:37:33 +1000312 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar8035e422009-06-06 15:19:13 +0200313 "be more verbose (show symbol address, etc)"),
314 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
315 "dump raw trace in ASCII"),
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900316 OPT_BOOLEAN(0, "gtk", &annotate.use_gtk, "Use the GTK interface"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200317 OPT_BOOLEAN(0, "tui", &annotate.use_tui, "Use the TUI interface"),
318 OPT_BOOLEAN(0, "stdio", &annotate.use_stdio, "Use the stdio interface"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200319 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
320 "file", "vmlinux pathname"),
321 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200322 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200323 OPT_BOOLEAN('l', "print-line", &annotate.print_line,
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200324 "print matching source lines (may be slow)"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200325 OPT_BOOLEAN('P', "full-paths", &annotate.full_paths,
Mike Galbraith42976482009-07-02 08:09:46 +0200326 "Don't shorten the displayed pathnames"),
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900327 OPT_BOOLEAN(0, "skip-missing", &annotate.skip_missing,
328 "Skip symbols that cannot be annotated"),
David Ahernc8e66722011-11-13 11:30:08 -0700329 OPT_STRING('C', "cpu", &annotate.cpu_list, "cpu", "list of cpus to profile"),
Stephane Eraniane71a0592011-07-30 01:20:40 +0200330 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
331 "Look for files with symbols relative to this directory"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300332 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
Stephane Eranian3e6a2a72011-05-17 17:32:07 +0200333 "Interleave source code with assembly code (default)"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300334 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
Stephane Eranian3e6a2a72011-05-17 17:32:07 +0200335 "Display raw encoding of assembly instructions (default)"),
Andi Kleenf69b64f2011-09-15 14:31:41 -0700336 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
337 "Specify disassembler style (e.g. -M intel for intel syntax)"),
Maciek Borzecki7a4ec932012-09-04 12:32:30 +0200338 OPT_STRING(0, "objdump", &objdump_path, "path",
339 "objdump binary to use for disassembly and annotations"),
Namhyung Kimb1dd4432013-03-05 14:53:25 +0900340 OPT_BOOLEAN(0, "group", &symbol_conf.event_group,
341 "Show event group information together"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200342 OPT_END()
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200343 };
Ingo Molnar8035e422009-06-06 15:19:13 +0200344
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200345 argc = parse_options(argc, argv, options, annotate_usage, 0);
346
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200347 if (annotate.use_stdio)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300348 use_browser = 0;
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200349 else if (annotate.use_tui)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300350 use_browser = 1;
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900351 else if (annotate.use_gtk)
352 use_browser = 2;
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300353
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -0200354 setup_browser(true);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300355
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200356 symbol_conf.priv_size = sizeof(struct annotation);
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200357 symbol_conf.try_vmlinux_path = true;
358
359 if (symbol__init() < 0)
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200360 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200361
Namhyung Kim55309982013-02-06 14:57:16 +0900362 if (setup_sorting() < 0)
363 usage_with_options(annotate_usage, options);
Ingo Molnar8035e422009-06-06 15:19:13 +0200364
Ingo Molnar0b73da32009-06-06 15:48:52 +0200365 if (argc) {
366 /*
Dongsheng Yang6f1d0c82013-12-09 17:47:48 -0500367 * Special case: if there's an argument left then assume that
Ingo Molnar0b73da32009-06-06 15:48:52 +0200368 * it's a symbol filter:
369 */
370 if (argc > 1)
371 usage_with_options(annotate_usage, options);
372
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200373 annotate.sym_hist_filter = argv[0];
Ingo Molnar0b73da32009-06-06 15:48:52 +0200374 }
375
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200376 return __cmd_annotate(&annotate);
Ingo Molnar8035e422009-06-06 15:19:13 +0200377}