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";
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
= append_chain(he
->callchain
, data
->callchain
, syms
);
115 * Only in the newt browser we are doing integrated annotation,
116 * so we don't allocated the extra space needed because the stdio
117 * code will not use it.
120 err
= hist_entry__inc_addr_samples(he
, al
->addr
);
126 static int add_event_total(struct perf_session
*session
,
127 struct sample_data
*data
,
128 struct perf_event_attr
*attr
)
133 hists
= perf_session__hists_findnew(session
, data
->id
,
134 attr
->type
, attr
->config
);
136 hists
= perf_session__hists_findnew(session
, data
->id
, 0, 0);
141 hists
->stats
.total_period
+= data
->period
;
143 * FIXME: add_event_total should be moved from here to
144 * perf_session__process_event so that the proper hist is passed to
145 * the event_op methods.
147 hists__inc_nr_events(hists
, PERF_RECORD_SAMPLE
);
148 session
->hists
.stats
.total_period
+= data
->period
;
152 static int process_sample_event(event_t
*event
, struct perf_session
*session
)
154 struct sample_data data
= { .period
= 1, };
155 struct addr_location al
;
156 struct perf_event_attr
*attr
;
158 event__parse_sample(event
, session
->sample_type
, &data
);
160 dump_printf("(IP, %d): %d/%d: %#Lx period: %Ld\n", event
->header
.misc
,
161 data
.pid
, data
.tid
, data
.ip
, data
.period
);
163 if (session
->sample_type
& PERF_SAMPLE_CALLCHAIN
) {
166 dump_printf("... chain: nr:%Lu\n", data
.callchain
->nr
);
168 if (!ip_callchain__valid(data
.callchain
, event
)) {
169 pr_debug("call-chain problem with event, "
175 for (i
= 0; i
< data
.callchain
->nr
; i
++)
176 dump_printf("..... %2d: %016Lx\n",
177 i
, data
.callchain
->ips
[i
]);
181 if (event__preprocess_sample(event
, session
, &al
, NULL
) < 0) {
182 fprintf(stderr
, "problem processing %d event, skipping it.\n",
187 if (al
.filtered
|| (hide_unresolved
&& al
.sym
== NULL
))
190 if (perf_session__add_hist_entry(session
, &al
, &data
)) {
191 pr_debug("problem incrementing symbol period, skipping event\n");
195 attr
= perf_header__find_attr(data
.id
, &session
->header
);
197 if (add_event_total(session
, &data
, attr
)) {
198 pr_debug("problem adding event period\n");
205 static int process_read_event(event_t
*event
, struct perf_session
*session __used
)
207 struct perf_event_attr
*attr
;
209 attr
= perf_header__find_attr(event
->read
.id
, &session
->header
);
212 const char *name
= attr
? __event_name(attr
->type
, attr
->config
)
214 perf_read_values_add_value(&show_threads_values
,
215 event
->read
.pid
, event
->read
.tid
,
221 dump_printf(": %d %d %s %Lu\n", event
->read
.pid
, event
->read
.tid
,
222 attr
? __event_name(attr
->type
, attr
->config
) : "FAIL",
228 static int perf_session__setup_sample_type(struct perf_session
*self
)
230 if (!(self
->sample_type
& PERF_SAMPLE_CALLCHAIN
)) {
231 if (sort__has_parent
) {
232 fprintf(stderr
, "selected --sort parent, but no"
233 " callchain data. Did you call"
234 " perf record without -g?\n");
237 if (symbol_conf
.use_callchain
) {
238 fprintf(stderr
, "selected -g but no callchain data."
239 " Did you call perf record without"
243 } else if (!dont_use_callchains
&& callchain_param
.mode
!= CHAIN_NONE
&&
244 !symbol_conf
.use_callchain
) {
245 symbol_conf
.use_callchain
= true;
246 if (register_callchain_param(&callchain_param
) < 0) {
247 fprintf(stderr
, "Can't register callchain"
256 static struct perf_event_ops event_ops
= {
257 .sample
= process_sample_event
,
258 .mmap
= event__process_mmap
,
259 .comm
= event__process_comm
,
260 .exit
= event__process_task
,
261 .fork
= event__process_task
,
262 .lost
= event__process_lost
,
263 .read
= process_read_event
,
264 .attr
= event__process_attr
,
265 .event_type
= event__process_event_type
,
266 .tracing_data
= event__process_tracing_data
,
267 .build_id
= event__process_build_id
,
270 extern volatile int session_done
;
272 static void sig_handler(int sig __used
)
277 static size_t hists__fprintf_nr_sample_events(struct hists
*self
,
278 const char *evname
, FILE *fp
)
282 unsigned long nr_events
= self
->stats
.nr_events
[PERF_RECORD_SAMPLE
];
284 nr_events
= convert_unit(nr_events
, &unit
);
285 ret
= fprintf(fp
, "# Events: %lu%c", nr_events
, unit
);
287 ret
+= fprintf(fp
, " %s", evname
);
288 return ret
+ fprintf(fp
, "\n#\n");
291 static int __cmd_report(void)
294 struct perf_session
*session
;
295 struct rb_node
*next
;
296 const char *help
= "For a higher level overview, try: perf report --sort comm,dso";
298 signal(SIGINT
, sig_handler
);
300 session
= perf_session__new(input_name
, O_RDONLY
, force
, false);
305 perf_read_values_init(&show_threads_values
);
307 ret
= perf_session__setup_sample_type(session
);
311 ret
= perf_session__process_events(session
, &event_ops
);
316 perf_session__fprintf_nr_events(session
, stdout
);
321 perf_session__fprintf(session
, stdout
);
324 perf_session__fprintf_dsos(session
, stdout
);
326 next
= rb_first(&session
->hists_tree
);
330 hists
= rb_entry(next
, struct hists
, rb_node
);
331 hists__collapse_resort(hists
);
332 hists__output_resort(hists
);
334 hists__browse(hists
, help
, input_name
);
336 const char *evname
= NULL
;
337 if (rb_first(&session
->hists
.entries
) !=
338 rb_last(&session
->hists
.entries
))
339 evname
= __event_name(hists
->type
, hists
->config
);
341 hists__fprintf_nr_sample_events(hists
, evname
, stdout
);
343 hists__fprintf(hists
, NULL
, false, stdout
);
344 fprintf(stdout
, "\n\n");
347 next
= rb_next(&hists
->rb_node
);
350 if (!use_browser
&& sort_order
== default_sort_order
&&
351 parent_pattern
== default_parent_pattern
) {
352 fprintf(stdout
, "#\n# (%s)\n#\n", help
);
355 bool style
= !strcmp(pretty_printing_style
, "raw");
356 perf_read_values_display(stdout
, &show_threads_values
,
358 perf_read_values_destroy(&show_threads_values
);
362 perf_session__delete(session
);
367 parse_callchain_opt(const struct option
*opt __used
, const char *arg
,
377 dont_use_callchains
= true;
381 symbol_conf
.use_callchain
= true;
386 tok
= strtok((char *)arg
, ",");
390 /* get the output mode */
391 if (!strncmp(tok
, "graph", strlen(arg
)))
392 callchain_param
.mode
= CHAIN_GRAPH_ABS
;
394 else if (!strncmp(tok
, "flat", strlen(arg
)))
395 callchain_param
.mode
= CHAIN_FLAT
;
397 else if (!strncmp(tok
, "fractal", strlen(arg
)))
398 callchain_param
.mode
= CHAIN_GRAPH_REL
;
400 else if (!strncmp(tok
, "none", strlen(arg
))) {
401 callchain_param
.mode
= CHAIN_NONE
;
402 symbol_conf
.use_callchain
= false;
410 /* get the min percentage */
411 tok
= strtok(NULL
, ",");
415 tok2
= strtok(NULL
, ",");
416 callchain_param
.min_percent
= strtod(tok
, &endptr
);
421 callchain_param
.print_limit
= strtod(tok2
, &endptr
);
423 if (register_callchain_param(&callchain_param
) < 0) {
424 fprintf(stderr
, "Can't register callchain params\n");
430 static const char * const report_usage
[] = {
431 "perf report [<options>] <command>",
435 static const struct option options
[] = {
436 OPT_STRING('i', "input", &input_name
, "file",
438 OPT_INCR('v', "verbose", &verbose
,
439 "be more verbose (show symbol address, etc)"),
440 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace
,
441 "dump raw trace in ASCII"),
442 OPT_STRING('k', "vmlinux", &symbol_conf
.vmlinux_name
,
443 "file", "vmlinux pathname"),
444 OPT_BOOLEAN('f', "force", &force
, "don't complain, do it"),
445 OPT_BOOLEAN('m', "modules", &symbol_conf
.use_modules
,
446 "load module symbols - WARNING: use only with -k and LIVE kernel"),
447 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf
.show_nr_samples
,
448 "Show a column with the number of samples"),
449 OPT_BOOLEAN('T', "threads", &show_threads
,
450 "Show per-thread event counters"),
451 OPT_STRING(0, "pretty", &pretty_printing_style
, "key",
452 "pretty printing style key: normal raw"),
453 OPT_STRING('s', "sort", &sort_order
, "key[,key2...]",
454 "sort by key(s): pid, comm, dso, symbol, parent"),
455 OPT_BOOLEAN('P', "full-paths", &symbol_conf
.full_paths
,
456 "Don't shorten the pathnames taking into account the cwd"),
457 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf
.show_cpu_utilization
,
458 "Show sample percentage for different cpu modes"),
459 OPT_STRING('p', "parent", &parent_pattern
, "regex",
460 "regex filter to identify parent, see: '--sort parent'"),
461 OPT_BOOLEAN('x', "exclude-other", &symbol_conf
.exclude_other
,
462 "Only display entries with parent-match"),
463 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL
, "output_type,min_percent",
464 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
465 "Default: fractal,0.5", &parse_callchain_opt
, callchain_default_opt
),
466 OPT_STRING('d', "dsos", &symbol_conf
.dso_list_str
, "dso[,dso...]",
467 "only consider symbols in these dsos"),
468 OPT_STRING('C', "comms", &symbol_conf
.comm_list_str
, "comm[,comm...]",
469 "only consider symbols in these comms"),
470 OPT_STRING('S', "symbols", &symbol_conf
.sym_list_str
, "symbol[,symbol...]",
471 "only consider these symbols"),
472 OPT_STRING('w', "column-widths", &symbol_conf
.col_width_list_str
,
474 "don't try to adjust column width, use these fixed values"),
475 OPT_STRING('t', "field-separator", &symbol_conf
.field_sep
, "separator",
476 "separator for columns, no spaces will be added between "
477 "columns '.' is reserved."),
478 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved
,
479 "Only display entries resolved to a symbol"),
483 int cmd_report(int argc
, const char **argv
, const char *prefix __used
)
485 argc
= parse_options(argc
, argv
, options
, report_usage
, 0);
487 if (strcmp(input_name
, "-") != 0)
490 * Only in the newt browser we are doing integrated annotation,
491 * so don't allocate extra space that won't be used in the stdio
495 symbol_conf
.priv_size
= sizeof(struct sym_priv
);
497 if (symbol__init() < 0)
500 setup_sorting(report_usage
, options
);
502 if (parent_pattern
!= default_parent_pattern
) {
503 if (sort_dimension__add("parent") < 0)
505 sort_parent
.elide
= 1;
507 symbol_conf
.exclude_other
= false;
510 * Any (unrecognized) arguments left?
513 usage_with_options(report_usage
, options
);
515 sort_entry__setup_elide(&sort_dso
, symbol_conf
.dso_list
, "dso", stdout
);
516 sort_entry__setup_elide(&sort_comm
, symbol_conf
.comm_list
, "comm", stdout
);
517 sort_entry__setup_elide(&sort_sym
, symbol_conf
.sym_list
, "symbol", stdout
);
519 return __cmd_report();