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.
10 #include "util/util.h"
12 #include "util/color.h"
13 #include <linux/list.h>
14 #include "util/cache.h"
15 #include <linux/rbtree.h>
16 #include "util/symbol.h"
17 #include "util/callchain.h"
18 #include "util/strlist.h"
19 #include "util/values.h"
22 #include "util/debug.h"
23 #include "util/header.h"
24 #include "util/session.h"
26 #include "util/parse-options.h"
27 #include "util/parse-events.h"
29 #include "util/thread.h"
30 #include "util/sort.h"
31 #include "util/hist.h"
33 static char const *input_name
= "perf.data";
35 static bool force
, use_tui
, use_stdio
;
36 static bool hide_unresolved
;
37 static bool dont_use_callchains
;
39 static bool show_threads
;
40 static struct perf_read_values show_threads_values
;
42 static const char default_pretty_printing_style
[] = "normal";
43 static const char *pretty_printing_style
= default_pretty_printing_style
;
45 static char callchain_default_opt
[] = "fractal,0.5";
47 static struct hists
*perf_session__hists_findnew(struct perf_session
*self
,
48 u64 event_stream
, u32 type
,
51 struct rb_node
**p
= &self
->hists_tree
.rb_node
;
52 struct rb_node
*parent
= NULL
;
53 struct hists
*iter
, *new;
57 iter
= rb_entry(parent
, struct hists
, rb_node
);
58 if (iter
->config
== config
)
62 if (config
> iter
->config
)
68 new = malloc(sizeof(struct hists
));
71 memset(new, 0, sizeof(struct hists
));
72 new->event_stream
= event_stream
;
75 rb_link_node(&new->rb_node
, parent
, p
);
76 rb_insert_color(&new->rb_node
, &self
->hists_tree
);
80 static int perf_session__add_hist_entry(struct perf_session
*self
,
81 struct addr_location
*al
,
82 struct sample_data
*data
)
84 struct map_symbol
*syms
= NULL
;
85 struct symbol
*parent
= NULL
;
87 struct hist_entry
*he
;
89 struct perf_event_attr
*attr
;
91 if ((sort__has_parent
|| symbol_conf
.use_callchain
) && data
->callchain
) {
92 syms
= perf_session__resolve_callchain(self
, al
->thread
,
93 data
->callchain
, &parent
);
98 attr
= perf_header__find_attr(data
->id
, &self
->header
);
100 hists
= perf_session__hists_findnew(self
, data
->id
, attr
->type
, attr
->config
);
102 hists
= perf_session__hists_findnew(self
, data
->id
, 0, 0);
105 he
= __hists__add_entry(hists
, al
, parent
, data
->period
);
109 if (symbol_conf
.use_callchain
) {
110 err
= callchain_append(he
->callchain
, data
->callchain
, syms
,
116 * Only in the newt browser we are doing integrated annotation,
117 * so we don't allocated the extra space needed because the stdio
118 * code will not use it.
121 err
= hist_entry__inc_addr_samples(he
, al
->addr
);
127 static int add_event_total(struct perf_session
*session
,
128 struct sample_data
*data
,
129 struct perf_event_attr
*attr
)
134 hists
= perf_session__hists_findnew(session
, data
->id
,
135 attr
->type
, attr
->config
);
137 hists
= perf_session__hists_findnew(session
, data
->id
, 0, 0);
142 hists
->stats
.total_period
+= data
->period
;
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.
148 hists__inc_nr_events(hists
, PERF_RECORD_SAMPLE
);
149 session
->hists
.stats
.total_period
+= data
->period
;
153 static int process_sample_event(event_t
*event
, struct perf_session
*session
)
155 struct sample_data data
= { .period
= 1, };
156 struct addr_location al
;
157 struct perf_event_attr
*attr
;
159 if (event__preprocess_sample(event
, session
, &al
, &data
, NULL
) < 0) {
160 fprintf(stderr
, "problem processing %d event, skipping it.\n",
165 if (al
.filtered
|| (hide_unresolved
&& al
.sym
== NULL
))
168 if (perf_session__add_hist_entry(session
, &al
, &data
)) {
169 pr_debug("problem incrementing symbol period, skipping event\n");
173 attr
= perf_header__find_attr(data
.id
, &session
->header
);
175 if (add_event_total(session
, &data
, attr
)) {
176 pr_debug("problem adding event period\n");
183 static int process_read_event(event_t
*event
, struct perf_session
*session __used
)
185 struct perf_event_attr
*attr
;
187 attr
= perf_header__find_attr(event
->read
.id
, &session
->header
);
190 const char *name
= attr
? __event_name(attr
->type
, attr
->config
)
192 perf_read_values_add_value(&show_threads_values
,
193 event
->read
.pid
, event
->read
.tid
,
199 dump_printf(": %d %d %s %Lu\n", event
->read
.pid
, event
->read
.tid
,
200 attr
? __event_name(attr
->type
, attr
->config
) : "FAIL",
206 static int perf_session__setup_sample_type(struct perf_session
*self
)
208 if (!(self
->sample_type
& PERF_SAMPLE_CALLCHAIN
)) {
209 if (sort__has_parent
) {
210 fprintf(stderr
, "selected --sort parent, but no"
211 " callchain data. Did you call"
212 " perf record without -g?\n");
215 if (symbol_conf
.use_callchain
) {
216 fprintf(stderr
, "selected -g but no callchain data."
217 " Did you call perf record without"
221 } else if (!dont_use_callchains
&& callchain_param
.mode
!= CHAIN_NONE
&&
222 !symbol_conf
.use_callchain
) {
223 symbol_conf
.use_callchain
= true;
224 if (register_callchain_param(&callchain_param
) < 0) {
225 fprintf(stderr
, "Can't register callchain"
234 static struct perf_event_ops event_ops
= {
235 .sample
= process_sample_event
,
236 .mmap
= event__process_mmap
,
237 .comm
= event__process_comm
,
238 .exit
= event__process_task
,
239 .fork
= event__process_task
,
240 .lost
= event__process_lost
,
241 .read
= process_read_event
,
242 .attr
= event__process_attr
,
243 .event_type
= event__process_event_type
,
244 .tracing_data
= event__process_tracing_data
,
245 .build_id
= event__process_build_id
,
248 extern volatile int session_done
;
250 static void sig_handler(int sig __used
)
255 static size_t hists__fprintf_nr_sample_events(struct hists
*self
,
256 const char *evname
, FILE *fp
)
260 unsigned long nr_events
= self
->stats
.nr_events
[PERF_RECORD_SAMPLE
];
262 nr_events
= convert_unit(nr_events
, &unit
);
263 ret
= fprintf(fp
, "# Events: %lu%c", nr_events
, unit
);
265 ret
+= fprintf(fp
, " %s", evname
);
266 return ret
+ fprintf(fp
, "\n#\n");
269 static int hists__tty_browse_tree(struct rb_root
*tree
, const char *help
)
271 struct rb_node
*next
= rb_first(tree
);
274 struct hists
*hists
= rb_entry(next
, struct hists
, rb_node
);
275 const char *evname
= NULL
;
277 if (rb_first(&hists
->entries
) != rb_last(&hists
->entries
))
278 evname
= __event_name(hists
->type
, hists
->config
);
280 hists__fprintf_nr_sample_events(hists
, evname
, stdout
);
281 hists__fprintf(hists
, NULL
, false, stdout
);
282 fprintf(stdout
, "\n\n");
283 next
= rb_next(&hists
->rb_node
);
286 if (sort_order
== default_sort_order
&&
287 parent_pattern
== default_parent_pattern
) {
288 fprintf(stdout
, "#\n# (%s)\n#\n", help
);
291 bool style
= !strcmp(pretty_printing_style
, "raw");
292 perf_read_values_display(stdout
, &show_threads_values
,
294 perf_read_values_destroy(&show_threads_values
);
301 static int __cmd_report(void)
304 struct perf_session
*session
;
305 struct rb_node
*next
;
306 const char *help
= "For a higher level overview, try: perf report --sort comm,dso";
308 signal(SIGINT
, sig_handler
);
310 session
= perf_session__new(input_name
, O_RDONLY
, force
, false);
315 perf_read_values_init(&show_threads_values
);
317 ret
= perf_session__setup_sample_type(session
);
321 ret
= perf_session__process_events(session
, &event_ops
);
326 perf_session__fprintf_nr_events(session
, stdout
);
331 perf_session__fprintf(session
, stdout
);
334 perf_session__fprintf_dsos(session
, stdout
);
336 next
= rb_first(&session
->hists_tree
);
340 hists
= rb_entry(next
, struct hists
, rb_node
);
341 hists__collapse_resort(hists
);
342 hists__output_resort(hists
);
343 next
= rb_next(&hists
->rb_node
);
347 hists__tui_browse_tree(&session
->hists_tree
, help
);
349 hists__tty_browse_tree(&session
->hists_tree
, help
);
353 * Speed up the exit process, for large files this can
354 * take quite a while.
356 * XXX Enable this when using valgrind or if we ever
357 * librarize this command.
359 * Also experiment with obstacks to see how much speed
362 * perf_session__delete(session);
368 parse_callchain_opt(const struct option
*opt __used
, const char *arg
,
378 dont_use_callchains
= true;
382 symbol_conf
.use_callchain
= true;
387 tok
= strtok((char *)arg
, ",");
391 /* get the output mode */
392 if (!strncmp(tok
, "graph", strlen(arg
)))
393 callchain_param
.mode
= CHAIN_GRAPH_ABS
;
395 else if (!strncmp(tok
, "flat", strlen(arg
)))
396 callchain_param
.mode
= CHAIN_FLAT
;
398 else if (!strncmp(tok
, "fractal", strlen(arg
)))
399 callchain_param
.mode
= CHAIN_GRAPH_REL
;
401 else if (!strncmp(tok
, "none", strlen(arg
))) {
402 callchain_param
.mode
= CHAIN_NONE
;
403 symbol_conf
.use_callchain
= false;
411 /* get the min percentage */
412 tok
= strtok(NULL
, ",");
416 tok2
= strtok(NULL
, ",");
417 callchain_param
.min_percent
= strtod(tok
, &endptr
);
422 callchain_param
.print_limit
= strtod(tok2
, &endptr
);
424 if (register_callchain_param(&callchain_param
) < 0) {
425 fprintf(stderr
, "Can't register callchain params\n");
431 static const char * const report_usage
[] = {
432 "perf report [<options>] <command>",
436 static const struct option options
[] = {
437 OPT_STRING('i', "input", &input_name
, "file",
439 OPT_INCR('v', "verbose", &verbose
,
440 "be more verbose (show symbol address, etc)"),
441 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace
,
442 "dump raw trace in ASCII"),
443 OPT_STRING('k', "vmlinux", &symbol_conf
.vmlinux_name
,
444 "file", "vmlinux pathname"),
445 OPT_BOOLEAN('f', "force", &force
, "don't complain, do it"),
446 OPT_BOOLEAN('m', "modules", &symbol_conf
.use_modules
,
447 "load module symbols - WARNING: use only with -k and LIVE kernel"),
448 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf
.show_nr_samples
,
449 "Show a column with the number of samples"),
450 OPT_BOOLEAN('T', "threads", &show_threads
,
451 "Show per-thread event counters"),
452 OPT_STRING(0, "pretty", &pretty_printing_style
, "key",
453 "pretty printing style key: normal raw"),
454 OPT_BOOLEAN(0, "tui", &use_tui
, "Use the TUI interface"),
455 OPT_BOOLEAN(0, "stdio", &use_stdio
, "Use the stdio interface"),
456 OPT_STRING('s', "sort", &sort_order
, "key[,key2...]",
457 "sort by key(s): pid, comm, dso, symbol, parent"),
458 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf
.show_cpu_utilization
,
459 "Show sample percentage for different cpu modes"),
460 OPT_STRING('p', "parent", &parent_pattern
, "regex",
461 "regex filter to identify parent, see: '--sort parent'"),
462 OPT_BOOLEAN('x', "exclude-other", &symbol_conf
.exclude_other
,
463 "Only display entries with parent-match"),
464 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL
, "output_type,min_percent",
465 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
466 "Default: fractal,0.5", &parse_callchain_opt
, callchain_default_opt
),
467 OPT_STRING('d', "dsos", &symbol_conf
.dso_list_str
, "dso[,dso...]",
468 "only consider symbols in these dsos"),
469 OPT_STRING('C', "comms", &symbol_conf
.comm_list_str
, "comm[,comm...]",
470 "only consider symbols in these comms"),
471 OPT_STRING('S', "symbols", &symbol_conf
.sym_list_str
, "symbol[,symbol...]",
472 "only consider these symbols"),
473 OPT_STRING('w', "column-widths", &symbol_conf
.col_width_list_str
,
475 "don't try to adjust column width, use these fixed values"),
476 OPT_STRING('t', "field-separator", &symbol_conf
.field_sep
, "separator",
477 "separator for columns, no spaces will be added between "
478 "columns '.' is reserved."),
479 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved
,
480 "Only display entries resolved to a symbol"),
484 int cmd_report(int argc
, const char **argv
, const char *prefix __used
)
486 argc
= parse_options(argc
, argv
, options
, report_usage
, 0);
493 if (strcmp(input_name
, "-") != 0)
498 * Only in the newt browser we are doing integrated annotation,
499 * so don't allocate extra space that won't be used in the stdio
502 if (use_browser
> 0) {
503 symbol_conf
.priv_size
= sizeof(struct sym_priv
);
505 * For searching by name on the "Browse map details".
506 * providing it only in verbose mode not to bloat too
507 * much struct symbol.
511 * XXX: Need to provide a less kludgy way to ask for
512 * more space per symbol, the u32 is for the index on
514 * See symbol__browser_index.
516 symbol_conf
.priv_size
+= sizeof(u32
);
517 symbol_conf
.sort_by_name
= true;
521 if (symbol__init() < 0)
524 setup_sorting(report_usage
, options
);
526 if (parent_pattern
!= default_parent_pattern
) {
527 if (sort_dimension__add("parent") < 0)
529 sort_parent
.elide
= 1;
531 symbol_conf
.exclude_other
= false;
534 * Any (unrecognized) arguments left?
537 usage_with_options(report_usage
, options
);
539 sort_entry__setup_elide(&sort_dso
, symbol_conf
.dso_list
, "dso", stdout
);
540 sort_entry__setup_elide(&sort_comm
, symbol_conf
.comm_list
, "comm", stdout
);
541 sort_entry__setup_elide(&sort_sym
, symbol_conf
.sym_list
, "symbol", stdout
);
543 return __cmd_report();