blob: 5ebd0c3b71b6aa45d80aa63b47661996577cf6a4 [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"
Irina Tirdea68e94f42012-10-16 02:33:38 +030031#include "arch/common.h"
Ingo Molnar8035e422009-06-06 15:19:13 +020032
Anton Blanchard5d67be92011-07-04 21:57:50 +100033#include <linux/bitmap.h>
34
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020035struct perf_annotate {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020036 struct perf_tool tool;
Namhyung Kim2b676bf2013-02-07 18:02:08 +090037 bool force, use_tui, use_stdio, use_gtk;
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -020038 bool full_paths;
39 bool print_line;
Namhyung Kim18c9e5c2013-02-07 18:02:14 +090040 bool skip_missing;
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -020041 const char *sym_hist_filter;
42 const char *cpu_list;
43 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020044};
Anton Blanchard5d67be92011-07-04 21:57:50 +100045
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -020046static int perf_evsel__add_sample(struct perf_evsel *evsel,
47 struct perf_sample *sample,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020048 struct addr_location *al,
49 struct perf_annotate *ann)
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
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -020054 if (ann->sym_hist_filter != NULL &&
55 (al->sym == NULL ||
56 strcmp(ann->sym_hist_filter, al->sym->name) != 0)) {
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030057 /* We're only interested in a symbol named sym_hist_filter */
58 if (al->sym != NULL) {
59 rb_erase(&al->sym->rb_node,
60 &al->map->dso->symbols[al->map->type]);
61 symbol__delete(al->sym);
62 }
63 return 0;
64 }
65
Andi Kleen05484292013-01-24 16:10:29 +010066 he = __hists__add_entry(&evsel->hists, al, NULL, 1, 1);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -030067 if (he == NULL)
Ingo Molnar8035e422009-06-06 15:19:13 +020068 return -ENOMEM;
Arnaldo Carvalho de Melo628ada02010-02-25 12:57:40 -030069
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030070 ret = 0;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020071 if (he->ms.sym != NULL) {
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020072 struct annotation *notes = symbol__annotation(he->ms.sym);
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -020073 if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 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 Melo45694aa2011-11-28 08:30:20 -020084static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020085 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020086 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030087 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020088 struct machine *machine)
Ingo Molnar8035e422009-06-06 15:19:13 +020089{
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020090 struct perf_annotate *ann = container_of(tool, struct perf_annotate, tool);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020091 struct addr_location al;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020092
Adrian Huntere44baa32013-08-08 14:32:25 +030093 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
Arnaldo Carvalho de Melo29a9f662010-02-03 16:52:06 -020094 pr_warning("problem processing %d event, skipping it.\n",
95 event->header.type);
Ingo Molnar8035e422009-06-06 15:19:13 +020096 return -1;
97 }
98
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -020099 if (ann->cpu_list && !test_bit(sample->cpu, ann->cpu_bitmap))
Anton Blanchard5d67be92011-07-04 21:57:50 +1000100 return 0;
101
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200102 if (!al.filtered && perf_evsel__add_sample(evsel, sample, &al, ann)) {
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
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900111static int hist_entry__tty_annotate(struct hist_entry *he,
112 struct perf_evsel *evsel,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200113 struct perf_annotate *ann)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200114{
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900115 return symbol__tty_annotate(he->ms.sym, he->ms.map, evsel,
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200116 ann->print_line, ann->full_paths, 0, 0);
Ingo Molnar0b73da32009-06-06 15:48:52 +0200117}
118
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900119static void hists__find_annotations(struct hists *self,
120 struct perf_evsel *evsel,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200121 struct perf_annotate *ann)
Ingo Molnar0b73da32009-06-06 15:48:52 +0200122{
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300123 struct rb_node *nd = rb_first(&self->entries), *next;
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200124 int key = K_RIGHT;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200125
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300126 while (nd) {
Arnaldo Carvalho de Meloed52ce22009-10-19 17:17:57 -0200127 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200128 struct annotation *notes;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200129
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300130 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned)
131 goto find_next;
Ingo Molnar0b73da32009-06-06 15:48:52 +0200132
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200133 notes = symbol__annotation(he->ms.sym);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200134 if (notes->src == NULL) {
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300135find_next:
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200136 if (key == K_LEFT)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300137 nd = rb_prev(nd);
138 else
139 nd = rb_next(nd);
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200140 continue;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300141 }
Arnaldo Carvalho de Meloe4204992009-10-20 14:25:40 -0200142
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900143 if (use_browser == 2) {
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900144 int ret;
145
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900146 ret = hist_entry__gtk_annotate(he, evsel, NULL);
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900147 if (!ret || !ann->skip_missing)
148 return;
149
150 /* skip missing symbols */
151 nd = rb_next(nd);
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900152 } else if (use_browser == 1) {
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900153 key = hist_entry__tui_annotate(he, evsel, NULL);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300154 switch (key) {
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900155 case -1:
156 if (!ann->skip_missing)
157 return;
158 /* fall through */
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200159 case K_RIGHT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300160 next = rb_next(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300161 break;
Arnaldo Carvalho de Melocf958002011-10-20 16:59:15 -0200162 case K_LEFT:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300163 next = rb_prev(nd);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300164 break;
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300165 default:
166 return;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300167 }
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300168
169 if (next != NULL)
170 nd = next;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300171 } else {
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900172 hist_entry__tty_annotate(he, evsel, ann);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300173 nd = rb_next(nd);
174 /*
175 * Since we have a hist_entry per IP for the same
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200176 * symbol, free he->ms.sym->src to signal we already
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300177 * processed this symbol.
178 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200179 free(notes->src);
180 notes->src = NULL;
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300181 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200182 }
Ingo Molnar0b73da32009-06-06 15:48:52 +0200183}
184
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200185static int __cmd_annotate(struct perf_annotate *ann)
Ingo Molnar8035e422009-06-06 15:19:13 +0200186{
Li Zefanbab81b62009-12-01 14:04:49 +0800187 int ret;
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200188 struct perf_session *session;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300189 struct perf_evsel *pos;
190 u64 total_nr_samples;
Ingo Molnar8035e422009-06-06 15:19:13 +0200191
Feng Tang70cb4e92012-10-30 11:56:02 +0800192 session = perf_session__new(input_name, O_RDONLY,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200193 ann->force, false, &ann->tool);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200194 if (session == NULL)
195 return -ENOMEM;
196
Adrian Hunter476d35c2013-08-08 14:32:24 +0300197 machines__set_symbol_filter(&session->machines, symbol__annotate_init);
198
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200199 if (ann->cpu_list) {
200 ret = perf_session__cpu_bitmap(session, ann->cpu_list,
201 ann->cpu_bitmap);
Anton Blanchard5d67be92011-07-04 21:57:50 +1000202 if (ret)
203 goto out_delete;
204 }
205
Irina Tirdea68e94f42012-10-16 02:33:38 +0300206 if (!objdump_path) {
207 ret = perf_session_env__lookup_objdump(&session->header.env);
208 if (ret)
209 goto out_delete;
210 }
211
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200212 ret = perf_session__process_events(session, &ann->tool);
Li Zefanbab81b62009-12-01 14:04:49 +0800213 if (ret)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200214 goto out_delete;
Ingo Molnar8035e422009-06-06 15:19:13 +0200215
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200216 if (dump_trace) {
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300217 perf_session__fprintf_nr_events(session, stdout);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200218 goto out_delete;
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200219 }
Ingo Molnar8035e422009-06-06 15:19:13 +0200220
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300221 if (verbose > 3)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200222 perf_session__fprintf(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200223
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300224 if (verbose > 2)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300225 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar8035e422009-06-06 15:19:13 +0200226
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300227 total_nr_samples = 0;
228 list_for_each_entry(pos, &session->evlist->entries, node) {
229 struct hists *hists = &pos->hists;
230 u32 nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
Ingo Molnar8035e422009-06-06 15:19:13 +0200231
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300232 if (nr_samples > 0) {
233 total_nr_samples += nr_samples;
234 hists__collapse_resort(hists);
235 hists__output_resort(hists);
Namhyung Kimb1dd4432013-03-05 14:53:25 +0900236
237 if (symbol_conf.event_group &&
238 !perf_evsel__is_group_leader(pos))
239 continue;
240
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900241 hists__find_annotations(hists, pos, ann);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300242 }
243 }
244
245 if (total_nr_samples == 0) {
Namhyung Kim3780f482012-05-29 13:22:57 +0900246 ui__error("The %s file has no samples!\n", session->filename);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300247 goto out_delete;
248 }
Namhyung Kim7a60ba92013-02-07 18:02:09 +0900249
250 if (use_browser == 2)
251 perf_gtk__show_annotations();
252
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300253out_delete:
254 /*
255 * Speed up the exit process, for large files this can
256 * take quite a while.
257 *
258 * XXX Enable this when using valgrind or if we ever
259 * librarize this command.
260 *
261 * Also experiment with obstacks to see how much speed
262 * up we'll get here.
263 *
264 * perf_session__delete(session);
265 */
Li Zefanbab81b62009-12-01 14:04:49 +0800266 return ret;
Ingo Molnar8035e422009-06-06 15:19:13 +0200267}
268
269static const char * const annotate_usage[] = {
Namhyung Kim99345252012-01-08 02:25:30 +0900270 "perf annotate [<options>]",
Ingo Molnar8035e422009-06-06 15:19:13 +0200271 NULL
272};
273
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300274int cmd_annotate(int argc, const char **argv, const char *prefix __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200275{
276 struct perf_annotate annotate = {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200277 .tool = {
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200278 .sample = process_sample_event,
279 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200280 .mmap2 = perf_event__process_mmap2,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200281 .comm = perf_event__process_comm,
Arnaldo Carvalho de Meloec4622f2012-10-06 15:53:41 -0300282 .exit = perf_event__process_exit,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300283 .fork = perf_event__process_fork,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200284 .ordered_samples = true,
285 .ordering_requires_timestamps = true,
286 },
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200287 };
288 const struct option options[] = {
Feng Tang70cb4e92012-10-30 11:56:02 +0800289 OPT_STRING('i', "input", &input_name, "file",
Ingo Molnar8035e422009-06-06 15:19:13 +0200290 "input file name"),
Arnaldo Carvalho de Meloac73c5a2010-03-24 16:40:16 -0300291 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
292 "only consider symbols in these dsos"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200293 OPT_STRING('s', "symbol", &annotate.sym_hist_filter, "symbol",
Ingo Molnar0b73da32009-06-06 15:48:52 +0200294 "symbol to annotate"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200295 OPT_BOOLEAN('f', "force", &annotate.force, "don't complain, do it"),
Ian Munsiec0555642010-04-13 18:37:33 +1000296 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar8035e422009-06-06 15:19:13 +0200297 "be more verbose (show symbol address, etc)"),
298 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
299 "dump raw trace in ASCII"),
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900300 OPT_BOOLEAN(0, "gtk", &annotate.use_gtk, "Use the GTK interface"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200301 OPT_BOOLEAN(0, "tui", &annotate.use_tui, "Use the TUI interface"),
302 OPT_BOOLEAN(0, "stdio", &annotate.use_stdio, "Use the stdio interface"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200303 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
304 "file", "vmlinux pathname"),
305 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200306 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200307 OPT_BOOLEAN('l', "print-line", &annotate.print_line,
Frederic Weisbecker301406b2009-06-13 00:11:21 +0200308 "print matching source lines (may be slow)"),
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200309 OPT_BOOLEAN('P', "full-paths", &annotate.full_paths,
Mike Galbraith42976482009-07-02 08:09:46 +0200310 "Don't shorten the displayed pathnames"),
Namhyung Kim18c9e5c2013-02-07 18:02:14 +0900311 OPT_BOOLEAN(0, "skip-missing", &annotate.skip_missing,
312 "Skip symbols that cannot be annotated"),
David Ahernc8e66722011-11-13 11:30:08 -0700313 OPT_STRING('C', "cpu", &annotate.cpu_list, "cpu", "list of cpus to profile"),
Stephane Eraniane71a0592011-07-30 01:20:40 +0200314 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
315 "Look for files with symbols relative to this directory"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300316 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
Stephane Eranian3e6a2a72011-05-17 17:32:07 +0200317 "Interleave source code with assembly code (default)"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300318 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
Stephane Eranian3e6a2a72011-05-17 17:32:07 +0200319 "Display raw encoding of assembly instructions (default)"),
Andi Kleenf69b64f2011-09-15 14:31:41 -0700320 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
321 "Specify disassembler style (e.g. -M intel for intel syntax)"),
Maciek Borzecki7a4ec932012-09-04 12:32:30 +0200322 OPT_STRING(0, "objdump", &objdump_path, "path",
323 "objdump binary to use for disassembly and annotations"),
Namhyung Kimb1dd4432013-03-05 14:53:25 +0900324 OPT_BOOLEAN(0, "group", &symbol_conf.event_group,
325 "Show event group information together"),
Ingo Molnar8035e422009-06-06 15:19:13 +0200326 OPT_END()
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200327 };
Ingo Molnar8035e422009-06-06 15:19:13 +0200328
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200329 argc = parse_options(argc, argv, options, annotate_usage, 0);
330
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200331 if (annotate.use_stdio)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300332 use_browser = 0;
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200333 else if (annotate.use_tui)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300334 use_browser = 1;
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900335 else if (annotate.use_gtk)
336 use_browser = 2;
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300337
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -0200338 setup_browser(true);
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300339
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200340 symbol_conf.priv_size = sizeof(struct annotation);
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200341 symbol_conf.try_vmlinux_path = true;
342
343 if (symbol__init() < 0)
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200344 return -1;
Ingo Molnar8035e422009-06-06 15:19:13 +0200345
Namhyung Kim55309982013-02-06 14:57:16 +0900346 if (setup_sorting() < 0)
347 usage_with_options(annotate_usage, options);
Ingo Molnar8035e422009-06-06 15:19:13 +0200348
Ingo Molnar0b73da32009-06-06 15:48:52 +0200349 if (argc) {
350 /*
351 * Special case: if there's an argument left then assume tha
352 * it's a symbol filter:
353 */
354 if (argc > 1)
355 usage_with_options(annotate_usage, options);
356
Arnaldo Carvalho de Melo7009cc32011-11-17 12:33:21 -0200357 annotate.sym_hist_filter = argv[0];
Ingo Molnar0b73da32009-06-06 15:48:52 +0200358 }
359
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200360 return __cmd_annotate(&annotate);
Ingo Molnar8035e422009-06-06 15:19:13 +0200361}