perf annotate: Move annotate functions to util/
[deliverable/linux.git] / tools / perf / builtin-report.c
CommitLineData
bf9e1876
IM
1/*
2 * builtin-report.c
3 *
4 * Builtin report 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 */
16f762a2 8#include "builtin.h"
53cb8bc2 9
bf9e1876
IM
10#include "util/util.h"
11
78f7defe 12#include "util/annotate.h"
8fc0321f 13#include "util/color.h"
5da50258 14#include <linux/list.h>
a930d2c0 15#include "util/cache.h"
43cbcd8a 16#include <linux/rbtree.h>
a2928c42 17#include "util/symbol.h"
f55c5552 18#include "util/callchain.h"
25903407 19#include "util/strlist.h"
8d513270 20#include "util/values.h"
8fa66bdc 21
53cb8bc2 22#include "perf.h"
8f28827a 23#include "util/debug.h"
7c6a1c65 24#include "util/header.h"
94c744b6 25#include "util/session.h"
53cb8bc2
IM
26
27#include "util/parse-options.h"
28#include "util/parse-events.h"
29
6baa0a5a 30#include "util/thread.h"
dd68ada2 31#include "util/sort.h"
3d1d07ec 32#include "util/hist.h"
6baa0a5a 33
23ac9cbe 34static char const *input_name = "perf.data";
bd74137e 35
8b9e74eb 36static bool force, use_tui, use_stdio;
71289be7 37static bool hide_unresolved;
b9a63b9b 38static bool dont_use_callchains;
97b07b69 39
c0555642 40static bool show_threads;
8d513270
BG
41static struct perf_read_values show_threads_values;
42
edb7c60e
ACM
43static const char default_pretty_printing_style[] = "normal";
44static const char *pretty_printing_style = default_pretty_printing_style;
9f866697 45
805d127d
FW
46static char callchain_default_opt[] = "fractal,0.5";
47
1c02c4d2
ACM
48static struct hists *perf_session__hists_findnew(struct perf_session *self,
49 u64 event_stream, u32 type,
50 u64 config)
cbbc79a5 51{
1c02c4d2 52 struct rb_node **p = &self->hists_tree.rb_node;
cbbc79a5 53 struct rb_node *parent = NULL;
1c02c4d2 54 struct hists *iter, *new;
cbbc79a5
EM
55
56 while (*p != NULL) {
57 parent = *p;
1c02c4d2 58 iter = rb_entry(parent, struct hists, rb_node);
cbbc79a5
EM
59 if (iter->config == config)
60 return iter;
61
62
63 if (config > iter->config)
64 p = &(*p)->rb_right;
65 else
66 p = &(*p)->rb_left;
67 }
68
1c02c4d2 69 new = malloc(sizeof(struct hists));
cbbc79a5
EM
70 if (new == NULL)
71 return NULL;
1c02c4d2 72 memset(new, 0, sizeof(struct hists));
cbbc79a5
EM
73 new->event_stream = event_stream;
74 new->config = config;
75 new->type = type;
76 rb_link_node(&new->rb_node, parent, p);
1c02c4d2 77 rb_insert_color(&new->rb_node, &self->hists_tree);
cbbc79a5
EM
78 return new;
79}
80
8d50e5b4 81static int perf_session__add_hist_entry(struct perf_session *session,
4e4f06e4 82 struct addr_location *al,
8d50e5b4 83 struct perf_sample *sample)
8fa66bdc 84{
b3c9ac08 85 struct symbol *parent = NULL;
1b3a0e95 86 int err = 0;
e7fb08b1 87 struct hist_entry *he;
1c02c4d2 88 struct hists *hists;
cbbc79a5 89 struct perf_event_attr *attr;
e7fb08b1 90
8d50e5b4
ACM
91 if ((sort__has_parent || symbol_conf.use_callchain) && sample->callchain) {
92 err = perf_session__resolve_callchain(session, al->thread,
93 sample->callchain, &parent);
1b3a0e95
FW
94 if (err)
95 return err;
ad5b217b 96 }
cbbc79a5 97
8d50e5b4 98 attr = perf_header__find_attr(sample->id, &session->header);
cbbc79a5 99 if (attr)
8d50e5b4 100 hists = perf_session__hists_findnew(session, sample->id, attr->type, attr->config);
cbbc79a5 101 else
8d50e5b4 102 hists = perf_session__hists_findnew(session, sample->id, 0, 0);
1c02c4d2 103 if (hists == NULL)
1b3a0e95
FW
104 return -ENOMEM;
105
8d50e5b4 106 he = __hists__add_entry(hists, al, parent, sample->period);
9735abf1 107 if (he == NULL)
1b3a0e95
FW
108 return -ENOMEM;
109
ef7b93a1 110 if (symbol_conf.use_callchain) {
8d50e5b4
ACM
111 err = callchain_append(he->callchain, &session->callchain_cursor,
112 sample->period);
ef7b93a1 113 if (err)
1b3a0e95 114 return err;
ef7b93a1
ACM
115 }
116 /*
117 * Only in the newt browser we are doing integrated annotation,
118 * so we don't allocated the extra space needed because the stdio
119 * code will not use it.
120 */
5d06e691 121 if (use_browser > 0)
ef7b93a1 122 err = hist_entry__inc_addr_samples(he, al->addr);
1b3a0e95 123
39d1e1b1 124 return err;
8fa66bdc
ACM
125}
126
cbbc79a5 127static int add_event_total(struct perf_session *session,
8d50e5b4 128 struct perf_sample *sample,
cbbc79a5
EM
129 struct perf_event_attr *attr)
130{
1c02c4d2 131 struct hists *hists;
cbbc79a5
EM
132
133 if (attr)
8d50e5b4 134 hists = perf_session__hists_findnew(session, sample->id,
1c02c4d2 135 attr->type, attr->config);
cbbc79a5 136 else
8d50e5b4 137 hists = perf_session__hists_findnew(session, sample->id, 0, 0);
cbbc79a5 138
1c02c4d2 139 if (!hists)
cbbc79a5
EM
140 return -ENOMEM;
141
8d50e5b4 142 hists->stats.total_period += sample->period;
c8446b9b
ACM
143 /*
144 * FIXME: add_event_total should be moved from here to
145 * perf_session__process_event so that the proper hist is passed to
146 * the event_op methods.
147 */
148 hists__inc_nr_events(hists, PERF_RECORD_SAMPLE);
8d50e5b4 149 session->hists.stats.total_period += sample->period;
cbbc79a5
EM
150 return 0;
151}
152
8115d60c
ACM
153static int process_sample_event(union perf_event *event,
154 struct perf_sample *sample,
640c03ce 155 struct perf_session *session)
75051724 156{
1ed091c4 157 struct addr_location al;
cbbc79a5 158 struct perf_event_attr *attr;
180f95e2 159
8115d60c 160 if (perf_event__preprocess_sample(event, session, &al, sample, NULL) < 0) {
c410a338 161 fprintf(stderr, "problem processing %d event, skipping it.\n",
75051724
IM
162 event->header.type);
163 return -1;
164 }
e7fb08b1 165
71289be7 166 if (al.filtered || (hide_unresolved && al.sym == NULL))
ec218fc4 167 return 0;
7bec7a91 168
640c03ce 169 if (perf_session__add_hist_entry(session, &al, sample)) {
c82ee828 170 pr_debug("problem incrementing symbol period, skipping event\n");
ec218fc4 171 return -1;
8fa66bdc 172 }
ec218fc4 173
640c03ce 174 attr = perf_header__find_attr(sample->id, &session->header);
cbbc79a5 175
640c03ce 176 if (add_event_total(session, sample, attr)) {
c82ee828 177 pr_debug("problem adding event period\n");
cbbc79a5
EM
178 return -1;
179 }
180
75051724
IM
181 return 0;
182}
3502973d 183
8115d60c
ACM
184static int process_read_event(union perf_event *event,
185 struct perf_sample *sample __used,
640c03ce 186 struct perf_session *session __used)
e9ea2fde 187{
cdd6c482 188 struct perf_event_attr *attr;
0d3a5c88 189
94c744b6 190 attr = perf_header__find_attr(event->read.id, &session->header);
8f18aec5 191
8d513270 192 if (show_threads) {
83a0944f 193 const char *name = attr ? __event_name(attr->type, attr->config)
8d513270
BG
194 : "unknown";
195 perf_read_values_add_value(&show_threads_values,
196 event->read.pid, event->read.tid,
197 event->read.id,
198 name,
199 event->read.value);
200 }
201
9486aa38 202 dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
62daacb5
ACM
203 attr ? __event_name(attr->type, attr->config) : "FAIL",
204 event->read.value);
e9ea2fde
PZ
205
206 return 0;
207}
208
d549c769 209static int perf_session__setup_sample_type(struct perf_session *self)
d80d338d 210{
d549c769 211 if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
91b4eaea
FW
212 if (sort__has_parent) {
213 fprintf(stderr, "selected --sort parent, but no"
214 " callchain data. Did you call"
215 " perf record without -g?\n");
d549c769 216 return -EINVAL;
91b4eaea 217 }
d599db3f 218 if (symbol_conf.use_callchain) {
6ede59c4 219 fprintf(stderr, "selected -g but no callchain data."
91b4eaea
FW
220 " Did you call perf record without"
221 " -g?\n");
016e92fb 222 return -1;
91b4eaea 223 }
b9a63b9b
ACM
224 } else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
225 !symbol_conf.use_callchain) {
d599db3f 226 symbol_conf.use_callchain = true;
16537f13 227 if (callchain_register_param(&callchain_param) < 0) {
b1a88349
FW
228 fprintf(stderr, "Can't register callchain"
229 " params\n");
d549c769 230 return -EINVAL;
b1a88349 231 }
f5970550
PZ
232 }
233
016e92fb
FW
234 return 0;
235}
6142f9ec 236
301a0b02 237static struct perf_event_ops event_ops = {
8115d60c
ACM
238 .sample = process_sample_event,
239 .mmap = perf_event__process_mmap,
240 .comm = perf_event__process_comm,
241 .exit = perf_event__process_task,
242 .fork = perf_event__process_task,
243 .lost = perf_event__process_lost,
244 .read = process_read_event,
245 .attr = perf_event__process_attr,
246 .event_type = perf_event__process_event_type,
247 .tracing_data = perf_event__process_tracing_data,
248 .build_id = perf_event__process_build_id,
eac23d1c
IM
249 .ordered_samples = true,
250 .ordering_requires_timestamps = true,
016e92fb 251};
6142f9ec 252
46656ac7
TZ
253extern volatile int session_done;
254
c82ee828 255static void sig_handler(int sig __used)
46656ac7
TZ
256{
257 session_done = 1;
258}
259
c82ee828
ACM
260static size_t hists__fprintf_nr_sample_events(struct hists *self,
261 const char *evname, FILE *fp)
262{
263 size_t ret;
264 char unit;
265 unsigned long nr_events = self->stats.nr_events[PERF_RECORD_SAMPLE];
266
267 nr_events = convert_unit(nr_events, &unit);
268 ret = fprintf(fp, "# Events: %lu%c", nr_events, unit);
269 if (evname != NULL)
270 ret += fprintf(fp, " %s", evname);
271 return ret + fprintf(fp, "\n#\n");
272}
273
d67f088e
ACM
274static int hists__tty_browse_tree(struct rb_root *tree, const char *help)
275{
276 struct rb_node *next = rb_first(tree);
277
278 while (next) {
279 struct hists *hists = rb_entry(next, struct hists, rb_node);
280 const char *evname = NULL;
281
282 if (rb_first(&hists->entries) != rb_last(&hists->entries))
283 evname = __event_name(hists->type, hists->config);
284
285 hists__fprintf_nr_sample_events(hists, evname, stdout);
286 hists__fprintf(hists, NULL, false, stdout);
287 fprintf(stdout, "\n\n");
288 next = rb_next(&hists->rb_node);
289 }
290
291 if (sort_order == default_sort_order &&
292 parent_pattern == default_parent_pattern) {
293 fprintf(stdout, "#\n# (%s)\n#\n", help);
294
295 if (show_threads) {
296 bool style = !strcmp(pretty_printing_style, "raw");
297 perf_read_values_display(stdout, &show_threads_values,
298 style);
299 perf_read_values_destroy(&show_threads_values);
300 }
301 }
302
303 return 0;
304}
305
016e92fb
FW
306static int __cmd_report(void)
307{
d549c769 308 int ret = -EINVAL;
d8f66248 309 struct perf_session *session;
cbbc79a5 310 struct rb_node *next;
f9224c5c 311 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
8fa66bdc 312
46656ac7
TZ
313 signal(SIGINT, sig_handler);
314
21ef97f0 315 session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops);
94c744b6
ACM
316 if (session == NULL)
317 return -ENOMEM;
318
016e92fb
FW
319 if (show_threads)
320 perf_read_values_init(&show_threads_values);
f5970550 321
d549c769
ACM
322 ret = perf_session__setup_sample_type(session);
323 if (ret)
324 goto out_delete;
325
ec913369 326 ret = perf_session__process_events(session, &event_ops);
016e92fb 327 if (ret)
94c744b6 328 goto out_delete;
97b07b69 329
62daacb5 330 if (dump_trace) {
c8446b9b 331 perf_session__fprintf_nr_events(session, stdout);
94c744b6 332 goto out_delete;
62daacb5 333 }
97b07b69 334
da21d1b5 335 if (verbose > 3)
b3165f41 336 perf_session__fprintf(session, stdout);
9ac99545 337
da21d1b5 338 if (verbose > 2)
cbf69680 339 perf_session__fprintf_dsos(session, stdout);
16f762a2 340
1c02c4d2 341 next = rb_first(&session->hists_tree);
cbbc79a5 342 while (next) {
1c02c4d2 343 struct hists *hists;
cbbc79a5 344
1c02c4d2
ACM
345 hists = rb_entry(next, struct hists, rb_node);
346 hists__collapse_resort(hists);
fefb0b94 347 hists__output_resort(hists);
1c02c4d2 348 next = rb_next(&hists->rb_node);
cbbc79a5
EM
349 }
350
d67f088e
ACM
351 if (use_browser > 0)
352 hists__tui_browse_tree(&session->hists_tree, help);
353 else
354 hists__tty_browse_tree(&session->hists_tree, help);
3e6055ab 355
94c744b6 356out_delete:
71e7cf3a
ACM
357 /*
358 * Speed up the exit process, for large files this can
359 * take quite a while.
360 *
361 * XXX Enable this when using valgrind or if we ever
362 * librarize this command.
363 *
364 * Also experiment with obstacks to see how much speed
365 * up we'll get here.
366 *
367 * perf_session__delete(session);
368 */
016e92fb 369 return ret;
8fa66bdc
ACM
370}
371
4eb3e478
FW
372static int
373parse_callchain_opt(const struct option *opt __used, const char *arg,
b9a63b9b 374 int unset)
4eb3e478 375{
232a5c94 376 char *tok, *tok2;
c20ab37e
FW
377 char *endptr;
378
b9a63b9b
ACM
379 /*
380 * --no-call-graph
381 */
382 if (unset) {
383 dont_use_callchains = true;
384 return 0;
385 }
386
d599db3f 387 symbol_conf.use_callchain = true;
4eb3e478
FW
388
389 if (!arg)
390 return 0;
391
c20ab37e
FW
392 tok = strtok((char *)arg, ",");
393 if (!tok)
394 return -1;
395
396 /* get the output mode */
397 if (!strncmp(tok, "graph", strlen(arg)))
805d127d 398 callchain_param.mode = CHAIN_GRAPH_ABS;
4eb3e478 399
c20ab37e 400 else if (!strncmp(tok, "flat", strlen(arg)))
805d127d
FW
401 callchain_param.mode = CHAIN_FLAT;
402
403 else if (!strncmp(tok, "fractal", strlen(arg)))
404 callchain_param.mode = CHAIN_GRAPH_REL;
405
b1a88349
FW
406 else if (!strncmp(tok, "none", strlen(arg))) {
407 callchain_param.mode = CHAIN_NONE;
b7ae11b3 408 symbol_conf.use_callchain = false;
b1a88349
FW
409
410 return 0;
411 }
412
4eb3e478
FW
413 else
414 return -1;
415
c20ab37e
FW
416 /* get the min percentage */
417 tok = strtok(NULL, ",");
418 if (!tok)
805d127d 419 goto setup;
c20ab37e 420
232a5c94 421 tok2 = strtok(NULL, ",");
805d127d 422 callchain_param.min_percent = strtod(tok, &endptr);
c20ab37e
FW
423 if (tok == endptr)
424 return -1;
425
232a5c94
ACM
426 if (tok2)
427 callchain_param.print_limit = strtod(tok2, &endptr);
805d127d 428setup:
16537f13 429 if (callchain_register_param(&callchain_param) < 0) {
805d127d
FW
430 fprintf(stderr, "Can't register callchain params\n");
431 return -1;
432 }
4eb3e478
FW
433 return 0;
434}
435
0422a4fc 436static const char * const report_usage[] = {
53cb8bc2
IM
437 "perf report [<options>] <command>",
438 NULL
439};
440
441static const struct option options[] = {
442 OPT_STRING('i', "input", &input_name, "file",
443 "input file name"),
c0555642 444 OPT_INCR('v', "verbose", &verbose,
815e777f 445 "be more verbose (show symbol address, etc)"),
97b07b69
IM
446 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
447 "dump raw trace in ASCII"),
b32d133a
ACM
448 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
449 "file", "vmlinux pathname"),
b226a5a7
DA
450 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
451 "file", "kallsyms pathname"),
fa6963b2 452 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
b32d133a 453 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 454 "load module symbols - WARNING: use only with -k and LIVE kernel"),
d599db3f 455 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
e3d7e183 456 "Show a column with the number of samples"),
8d513270
BG
457 OPT_BOOLEAN('T', "threads", &show_threads,
458 "Show per-thread event counters"),
9f866697
BG
459 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
460 "pretty printing style key: normal raw"),
8b9e74eb
ACM
461 OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"),
462 OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"),
63299f05 463 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b25bcf2f 464 "sort by key(s): pid, comm, dso, symbol, parent"),
a1645ce1
ZY
465 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
466 "Show sample percentage for different cpu modes"),
b25bcf2f
IM
467 OPT_STRING('p', "parent", &parent_pattern, "regex",
468 "regex filter to identify parent, see: '--sort parent'"),
d599db3f 469 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
b8e6d829 470 "Only display entries with parent-match"),
1483b19f 471 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
e157eb83 472 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
1483b19f 473 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
655000e7 474 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
25903407 475 "only consider symbols in these dsos"),
655000e7 476 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
cc8b88b1 477 "only consider symbols in these comms"),
655000e7 478 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
7bec7a91 479 "only consider these symbols"),
655000e7 480 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
52d422de
ACM
481 "width[,width...]",
482 "don't try to adjust column width, use these fixed values"),
c410a338 483 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
52d422de
ACM
484 "separator for columns, no spaces will be added between "
485 "columns '.' is reserved."),
71289be7
ACM
486 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
487 "Only display entries resolved to a symbol"),
ec5761ea
DA
488 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
489 "Look for files with symbols relative to this directory"),
53cb8bc2
IM
490 OPT_END()
491};
492
f37a291c 493int cmd_report(int argc, const char **argv, const char *prefix __used)
53cb8bc2 494{
655000e7
ACM
495 argc = parse_options(argc, argv, options, report_usage, 0);
496
8b9e74eb
ACM
497 if (use_stdio)
498 use_browser = 0;
499 else if (use_tui)
500 use_browser = 1;
501
46656ac7 502 if (strcmp(input_name, "-") != 0)
229ade9b 503 setup_browser(true);
8b9e74eb
ACM
504 else
505 use_browser = 0;
ef7b93a1
ACM
506 /*
507 * Only in the newt browser we are doing integrated annotation,
508 * so don't allocate extra space that won't be used in the stdio
509 * implementation.
510 */
80d50cae 511 if (use_browser > 0) {
78f7defe 512 symbol_conf.priv_size = sizeof(struct annotation);
80d50cae
ACM
513 /*
514 * For searching by name on the "Browse map details".
515 * providing it only in verbose mode not to bloat too
516 * much struct symbol.
517 */
518 if (verbose) {
519 /*
520 * XXX: Need to provide a less kludgy way to ask for
521 * more space per symbol, the u32 is for the index on
522 * the ui browser.
523 * See symbol__browser_index.
524 */
525 symbol_conf.priv_size += sizeof(u32);
526 symbol_conf.sort_by_name = true;
527 }
528 }
655000e7 529
75be6cf4 530 if (symbol__init() < 0)
b32d133a 531 return -1;
53cb8bc2 532
c8829c7a 533 setup_sorting(report_usage, options);
1aa16738 534
021191b3 535 if (parent_pattern != default_parent_pattern) {
2aefa4f7
ACM
536 if (sort_dimension__add("parent") < 0)
537 return -1;
021191b3
ACM
538 sort_parent.elide = 1;
539 } else
d599db3f 540 symbol_conf.exclude_other = false;
b8e6d829 541
edc52dea
IM
542 /*
543 * Any (unrecognized) arguments left?
544 */
545 if (argc)
546 usage_with_options(report_usage, options);
547
655000e7
ACM
548 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
549 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
550 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
25903407 551
53cb8bc2
IM
552 return __cmd_report();
553}
This page took 0.135307 seconds and 5 git commands to generate.