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