diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-06 11:02:58 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-06 11:02:58 -0500 |
commit | 35b740e4662ef386f0c60e1b60aaf5b44db9914c (patch) | |
tree | 502a8f9499bc1b4cb3300d666dab2d01a1921224 /tools/perf/builtin-annotate.c | |
parent | 423d091dfe58d3109d84c408810a7cfa82f6f184 (diff) | |
parent | 9e183426bfb52bb44bf3c443d6587e4d02478603 (diff) |
Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
* 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (106 commits)
perf kvm: Fix copy & paste error in description
perf script: Kill script_spec__delete
perf top: Fix a memory leak
perf stat: Introduce get_ratio_color() helper
perf session: Remove impossible condition check
perf tools: Fix feature-bits rework fallout, remove unused variable
perf script: Add generic perl handler to process events
perf tools: Use for_each_set_bit() to iterate over feature flags
perf tools: Unify handling of features when writing feature section
perf report: Accept fifos as input file
perf tools: Moving code in some files
perf tools: Fix out-of-bound access to struct perf_session
perf tools: Continue processing header on unknown features
perf tools: Improve macros for struct feature_ops
perf: builtin-record: Document and check that mmap_pages must be a power of two.
perf: builtin-record: Provide advice if mmap'ing fails with EPERM.
perf tools: Fix truncated annotation
perf script: look up thread using tid instead of pid
perf tools: Look up thread names for system wide profiling
perf tools: Fix comm for processes with named threads
...
Diffstat (limited to 'tools/perf/builtin-annotate.c')
-rw-r--r-- | tools/perf/builtin-annotate.c | 132 |
1 files changed, 67 insertions, 65 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index 46b4c24f338..214ba7f9f57 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c | |||
@@ -27,32 +27,32 @@ | |||
27 | #include "util/sort.h" | 27 | #include "util/sort.h" |
28 | #include "util/hist.h" | 28 | #include "util/hist.h" |
29 | #include "util/session.h" | 29 | #include "util/session.h" |
30 | #include "util/tool.h" | ||
30 | 31 | ||
31 | #include <linux/bitmap.h> | 32 | #include <linux/bitmap.h> |
32 | 33 | ||
33 | static char const *input_name = "perf.data"; | 34 | struct perf_annotate { |
34 | 35 | struct perf_tool tool; | |
35 | static bool force, use_tui, use_stdio; | 36 | char const *input_name; |
36 | 37 | bool force, use_tui, use_stdio; | |
37 | static bool full_paths; | 38 | bool full_paths; |
38 | 39 | bool print_line; | |
39 | static bool print_line; | 40 | const char *sym_hist_filter; |
40 | 41 | const char *cpu_list; | |
41 | static const char *sym_hist_filter; | 42 | DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS); |
42 | 43 | }; | |
43 | static const char *cpu_list; | ||
44 | static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS); | ||
45 | 44 | ||
46 | static int perf_evlist__add_sample(struct perf_evlist *evlist, | 45 | static int perf_evsel__add_sample(struct perf_evsel *evsel, |
47 | struct perf_sample *sample, | 46 | struct perf_sample *sample, |
48 | struct perf_evsel *evsel, | 47 | struct addr_location *al, |
49 | struct addr_location *al) | 48 | struct perf_annotate *ann) |
50 | { | 49 | { |
51 | struct hist_entry *he; | 50 | struct hist_entry *he; |
52 | int ret; | 51 | int ret; |
53 | 52 | ||
54 | if (sym_hist_filter != NULL && | 53 | if (ann->sym_hist_filter != NULL && |
55 | (al->sym == NULL || strcmp(sym_hist_filter, al->sym->name) != 0)) { | 54 | (al->sym == NULL || |
55 | strcmp(ann->sym_hist_filter, al->sym->name) != 0)) { | ||
56 | /* We're only interested in a symbol named sym_hist_filter */ | 56 | /* We're only interested in a symbol named sym_hist_filter */ |
57 | if (al->sym != NULL) { | 57 | if (al->sym != NULL) { |
58 | rb_erase(&al->sym->rb_node, | 58 | rb_erase(&al->sym->rb_node, |
@@ -69,8 +69,7 @@ static int perf_evlist__add_sample(struct perf_evlist *evlist, | |||
69 | ret = 0; | 69 | ret = 0; |
70 | if (he->ms.sym != NULL) { | 70 | if (he->ms.sym != NULL) { |
71 | struct annotation *notes = symbol__annotation(he->ms.sym); | 71 | struct annotation *notes = symbol__annotation(he->ms.sym); |
72 | if (notes->src == NULL && | 72 | if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 0) |
73 | symbol__alloc_hist(he->ms.sym, evlist->nr_entries) < 0) | ||
74 | return -ENOMEM; | 73 | return -ENOMEM; |
75 | 74 | ||
76 | ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); | 75 | ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr); |
@@ -81,25 +80,26 @@ static int perf_evlist__add_sample(struct perf_evlist *evlist, | |||
81 | return ret; | 80 | return ret; |
82 | } | 81 | } |
83 | 82 | ||
84 | static int process_sample_event(union perf_event *event, | 83 | static int process_sample_event(struct perf_tool *tool, |
84 | union perf_event *event, | ||
85 | struct perf_sample *sample, | 85 | struct perf_sample *sample, |
86 | struct perf_evsel *evsel, | 86 | struct perf_evsel *evsel, |
87 | struct perf_session *session) | 87 | struct machine *machine) |
88 | { | 88 | { |
89 | struct perf_annotate *ann = container_of(tool, struct perf_annotate, tool); | ||
89 | struct addr_location al; | 90 | struct addr_location al; |
90 | 91 | ||
91 | if (perf_event__preprocess_sample(event, session, &al, sample, | 92 | if (perf_event__preprocess_sample(event, machine, &al, sample, |
92 | symbol__annotate_init) < 0) { | 93 | symbol__annotate_init) < 0) { |
93 | pr_warning("problem processing %d event, skipping it.\n", | 94 | pr_warning("problem processing %d event, skipping it.\n", |
94 | event->header.type); | 95 | event->header.type); |
95 | return -1; | 96 | return -1; |
96 | } | 97 | } |
97 | 98 | ||
98 | if (cpu_list && !test_bit(sample->cpu, cpu_bitmap)) | 99 | if (ann->cpu_list && !test_bit(sample->cpu, ann->cpu_bitmap)) |
99 | return 0; | 100 | return 0; |
100 | 101 | ||
101 | if (!al.filtered && | 102 | if (!al.filtered && perf_evsel__add_sample(evsel, sample, &al, ann)) { |
102 | perf_evlist__add_sample(session->evlist, sample, evsel, &al)) { | ||
103 | pr_warning("problem incrementing symbol count, " | 103 | pr_warning("problem incrementing symbol count, " |
104 | "skipping event\n"); | 104 | "skipping event\n"); |
105 | return -1; | 105 | return -1; |
@@ -108,14 +108,15 @@ static int process_sample_event(union perf_event *event, | |||
108 | return 0; | 108 | return 0; |
109 | } | 109 | } |
110 | 110 | ||
111 | static int hist_entry__tty_annotate(struct hist_entry *he, int evidx) | 111 | static int hist_entry__tty_annotate(struct hist_entry *he, int evidx, |
112 | struct perf_annotate *ann) | ||
112 | { | 113 | { |
113 | return symbol__tty_annotate(he->ms.sym, he->ms.map, evidx, | 114 | return symbol__tty_annotate(he->ms.sym, he->ms.map, evidx, |
114 | print_line, full_paths, 0, 0); | 115 | ann->print_line, ann->full_paths, 0, 0); |
115 | } | 116 | } |
116 | 117 | ||
117 | static void hists__find_annotations(struct hists *self, int evidx, | 118 | static void hists__find_annotations(struct hists *self, int evidx, |
118 | int nr_events) | 119 | struct perf_annotate *ann) |
119 | { | 120 | { |
120 | struct rb_node *nd = rb_first(&self->entries), *next; | 121 | struct rb_node *nd = rb_first(&self->entries), *next; |
121 | int key = K_RIGHT; | 122 | int key = K_RIGHT; |
@@ -138,8 +139,7 @@ find_next: | |||
138 | } | 139 | } |
139 | 140 | ||
140 | if (use_browser > 0) { | 141 | if (use_browser > 0) { |
141 | key = hist_entry__tui_annotate(he, evidx, nr_events, | 142 | key = hist_entry__tui_annotate(he, evidx, NULL, NULL, 0); |
142 | NULL, NULL, 0); | ||
143 | switch (key) { | 143 | switch (key) { |
144 | case K_RIGHT: | 144 | case K_RIGHT: |
145 | next = rb_next(nd); | 145 | next = rb_next(nd); |
@@ -154,7 +154,7 @@ find_next: | |||
154 | if (next != NULL) | 154 | if (next != NULL) |
155 | nd = next; | 155 | nd = next; |
156 | } else { | 156 | } else { |
157 | hist_entry__tty_annotate(he, evidx); | 157 | hist_entry__tty_annotate(he, evidx, ann); |
158 | nd = rb_next(nd); | 158 | nd = rb_next(nd); |
159 | /* | 159 | /* |
160 | * Since we have a hist_entry per IP for the same | 160 | * Since we have a hist_entry per IP for the same |
@@ -167,33 +167,26 @@ find_next: | |||
167 | } | 167 | } |
168 | } | 168 | } |
169 | 169 | ||
170 | static struct perf_event_ops event_ops = { | 170 | static int __cmd_annotate(struct perf_annotate *ann) |
171 | .sample = process_sample_event, | ||
172 | .mmap = perf_event__process_mmap, | ||
173 | .comm = perf_event__process_comm, | ||
174 | .fork = perf_event__process_task, | ||
175 | .ordered_samples = true, | ||
176 | .ordering_requires_timestamps = true, | ||
177 | }; | ||
178 | |||
179 | static int __cmd_annotate(void) | ||
180 | { | 171 | { |
181 | int ret; | 172 | int ret; |
182 | struct perf_session *session; | 173 | struct perf_session *session; |
183 | struct perf_evsel *pos; | 174 | struct perf_evsel *pos; |
184 | u64 total_nr_samples; | 175 | u64 total_nr_samples; |
185 | 176 | ||
186 | session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops); | 177 | session = perf_session__new(ann->input_name, O_RDONLY, |
178 | ann->force, false, &ann->tool); | ||
187 | if (session == NULL) | 179 | if (session == NULL) |
188 | return -ENOMEM; | 180 | return -ENOMEM; |
189 | 181 | ||
190 | if (cpu_list) { | 182 | if (ann->cpu_list) { |
191 | ret = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap); | 183 | ret = perf_session__cpu_bitmap(session, ann->cpu_list, |
184 | ann->cpu_bitmap); | ||
192 | if (ret) | 185 | if (ret) |
193 | goto out_delete; | 186 | goto out_delete; |
194 | } | 187 | } |
195 | 188 | ||
196 | ret = perf_session__process_events(session, &event_ops); | 189 | ret = perf_session__process_events(session, &ann->tool); |
197 | if (ret) | 190 | if (ret) |
198 | goto out_delete; | 191 | goto out_delete; |
199 | 192 | ||
@@ -217,13 +210,12 @@ static int __cmd_annotate(void) | |||
217 | total_nr_samples += nr_samples; | 210 | total_nr_samples += nr_samples; |
218 | hists__collapse_resort(hists); | 211 | hists__collapse_resort(hists); |
219 | hists__output_resort(hists); | 212 | hists__output_resort(hists); |
220 | hists__find_annotations(hists, pos->idx, | 213 | hists__find_annotations(hists, pos->idx, ann); |
221 | session->evlist->nr_entries); | ||
222 | } | 214 | } |
223 | } | 215 | } |
224 | 216 | ||
225 | if (total_nr_samples == 0) { | 217 | if (total_nr_samples == 0) { |
226 | ui__warning("The %s file has no samples!\n", input_name); | 218 | ui__warning("The %s file has no samples!\n", session->filename); |
227 | goto out_delete; | 219 | goto out_delete; |
228 | } | 220 | } |
229 | out_delete: | 221 | out_delete: |
@@ -247,29 +239,41 @@ static const char * const annotate_usage[] = { | |||
247 | NULL | 239 | NULL |
248 | }; | 240 | }; |
249 | 241 | ||
250 | static const struct option options[] = { | 242 | int cmd_annotate(int argc, const char **argv, const char *prefix __used) |
251 | OPT_STRING('i', "input", &input_name, "file", | 243 | { |
244 | struct perf_annotate annotate = { | ||
245 | .tool = { | ||
246 | .sample = process_sample_event, | ||
247 | .mmap = perf_event__process_mmap, | ||
248 | .comm = perf_event__process_comm, | ||
249 | .fork = perf_event__process_task, | ||
250 | .ordered_samples = true, | ||
251 | .ordering_requires_timestamps = true, | ||
252 | }, | ||
253 | }; | ||
254 | const struct option options[] = { | ||
255 | OPT_STRING('i', "input", &annotate.input_name, "file", | ||
252 | "input file name"), | 256 | "input file name"), |
253 | OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]", | 257 | OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]", |
254 | "only consider symbols in these dsos"), | 258 | "only consider symbols in these dsos"), |
255 | OPT_STRING('s', "symbol", &sym_hist_filter, "symbol", | 259 | OPT_STRING('s', "symbol", &annotate.sym_hist_filter, "symbol", |
256 | "symbol to annotate"), | 260 | "symbol to annotate"), |
257 | OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), | 261 | OPT_BOOLEAN('f', "force", &annotate.force, "don't complain, do it"), |
258 | OPT_INCR('v', "verbose", &verbose, | 262 | OPT_INCR('v', "verbose", &verbose, |
259 | "be more verbose (show symbol address, etc)"), | 263 | "be more verbose (show symbol address, etc)"), |
260 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, | 264 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, |
261 | "dump raw trace in ASCII"), | 265 | "dump raw trace in ASCII"), |
262 | OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"), | 266 | OPT_BOOLEAN(0, "tui", &annotate.use_tui, "Use the TUI interface"), |
263 | OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"), | 267 | OPT_BOOLEAN(0, "stdio", &annotate.use_stdio, "Use the stdio interface"), |
264 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, | 268 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, |
265 | "file", "vmlinux pathname"), | 269 | "file", "vmlinux pathname"), |
266 | OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules, | 270 | OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules, |
267 | "load module symbols - WARNING: use only with -k and LIVE kernel"), | 271 | "load module symbols - WARNING: use only with -k and LIVE kernel"), |
268 | OPT_BOOLEAN('l', "print-line", &print_line, | 272 | OPT_BOOLEAN('l', "print-line", &annotate.print_line, |
269 | "print matching source lines (may be slow)"), | 273 | "print matching source lines (may be slow)"), |
270 | OPT_BOOLEAN('P', "full-paths", &full_paths, | 274 | OPT_BOOLEAN('P', "full-paths", &annotate.full_paths, |
271 | "Don't shorten the displayed pathnames"), | 275 | "Don't shorten the displayed pathnames"), |
272 | OPT_STRING('c', "cpu", &cpu_list, "cpu", "list of cpus to profile"), | 276 | OPT_STRING('C', "cpu", &annotate.cpu_list, "cpu", "list of cpus to profile"), |
273 | OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", | 277 | OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", |
274 | "Look for files with symbols relative to this directory"), | 278 | "Look for files with symbols relative to this directory"), |
275 | OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src, | 279 | OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src, |
@@ -279,15 +283,13 @@ static const struct option options[] = { | |||
279 | OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style", | 283 | OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style", |
280 | "Specify disassembler style (e.g. -M intel for intel syntax)"), | 284 | "Specify disassembler style (e.g. -M intel for intel syntax)"), |
281 | OPT_END() | 285 | OPT_END() |
282 | }; | 286 | }; |
283 | 287 | ||
284 | int cmd_annotate(int argc, const char **argv, const char *prefix __used) | ||
285 | { | ||
286 | argc = parse_options(argc, argv, options, annotate_usage, 0); | 288 | argc = parse_options(argc, argv, options, annotate_usage, 0); |
287 | 289 | ||
288 | if (use_stdio) | 290 | if (annotate.use_stdio) |
289 | use_browser = 0; | 291 | use_browser = 0; |
290 | else if (use_tui) | 292 | else if (annotate.use_tui) |
291 | use_browser = 1; | 293 | use_browser = 1; |
292 | 294 | ||
293 | setup_browser(true); | 295 | setup_browser(true); |
@@ -308,7 +310,7 @@ int cmd_annotate(int argc, const char **argv, const char *prefix __used) | |||
308 | if (argc > 1) | 310 | if (argc > 1) |
309 | usage_with_options(annotate_usage, options); | 311 | usage_with_options(annotate_usage, options); |
310 | 312 | ||
311 | sym_hist_filter = argv[0]; | 313 | annotate.sym_hist_filter = argv[0]; |
312 | } | 314 | } |
313 | 315 | ||
314 | if (field_sep && *field_sep == '.') { | 316 | if (field_sep && *field_sep == '.') { |
@@ -316,5 +318,5 @@ int cmd_annotate(int argc, const char **argv, const char *prefix __used) | |||
316 | return -1; | 318 | return -1; |
317 | } | 319 | } |
318 | 320 | ||
319 | return __cmd_annotate(); | 321 | return __cmd_annotate(&annotate); |
320 | } | 322 | } |