param: update drivers/char/ipmi/ipmi_watchdog.c to new scheme
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / tools / perf / builtin-report.c
blob2f4b92925b2619a85d615ed109851c78619f4465
1 /*
2 * builtin-report.c
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 */
8 #include "builtin.h"
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"
21 #include "perf.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;
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,
49 u64 config)
51 struct rb_node **p = &self->hists_tree.rb_node;
52 struct rb_node *parent = NULL;
53 struct hists *iter, *new;
55 while (*p != NULL) {
56 parent = *p;
57 iter = rb_entry(parent, struct hists, rb_node);
58 if (iter->config == config)
59 return iter;
62 if (config > iter->config)
63 p = &(*p)->rb_right;
64 else
65 p = &(*p)->rb_left;
68 new = malloc(sizeof(struct hists));
69 if (new == NULL)
70 return NULL;
71 memset(new, 0, sizeof(struct hists));
72 new->event_stream = event_stream;
73 new->config = config;
74 new->type = type;
75 rb_link_node(&new->rb_node, parent, p);
76 rb_insert_color(&new->rb_node, &self->hists_tree);
77 return new;
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;
86 int err = -ENOMEM;
87 struct hist_entry *he;
88 struct hists *hists;
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);
94 if (syms == NULL)
95 return -ENOMEM;
98 attr = perf_header__find_attr(data->id, &self->header);
99 if (attr)
100 hists = perf_session__hists_findnew(self, data->id, attr->type, attr->config);
101 else
102 hists = perf_session__hists_findnew(self, data->id, 0, 0);
103 if (hists == NULL)
104 goto out_free_syms;
105 he = __hists__add_entry(hists, al, parent, data->period);
106 if (he == NULL)
107 goto out_free_syms;
108 err = 0;
109 if (symbol_conf.use_callchain) {
110 err = append_chain(he->callchain, data->callchain, syms, data->period);
111 if (err)
112 goto out_free_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.
119 if (use_browser > 0)
120 err = hist_entry__inc_addr_samples(he, al->addr);
121 out_free_syms:
122 free(syms);
123 return err;
126 static int add_event_total(struct perf_session *session,
127 struct sample_data *data,
128 struct perf_event_attr *attr)
130 struct hists *hists;
132 if (attr)
133 hists = perf_session__hists_findnew(session, data->id,
134 attr->type, attr->config);
135 else
136 hists = perf_session__hists_findnew(session, data->id, 0, 0);
138 if (!hists)
139 return -ENOMEM;
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;
149 return 0;
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 if (event__preprocess_sample(event, session, &al, &data, NULL) < 0) {
159 fprintf(stderr, "problem processing %d event, skipping it.\n",
160 event->header.type);
161 return -1;
164 if (al.filtered || (hide_unresolved && al.sym == NULL))
165 return 0;
167 if (perf_session__add_hist_entry(session, &al, &data)) {
168 pr_debug("problem incrementing symbol period, skipping event\n");
169 return -1;
172 attr = perf_header__find_attr(data.id, &session->header);
174 if (add_event_total(session, &data, attr)) {
175 pr_debug("problem adding event period\n");
176 return -1;
179 return 0;
182 static int process_read_event(event_t *event, struct perf_session *session __used)
184 struct perf_event_attr *attr;
186 attr = perf_header__find_attr(event->read.id, &session->header);
188 if (show_threads) {
189 const char *name = attr ? __event_name(attr->type, attr->config)
190 : "unknown";
191 perf_read_values_add_value(&show_threads_values,
192 event->read.pid, event->read.tid,
193 event->read.id,
194 name,
195 event->read.value);
198 dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
199 attr ? __event_name(attr->type, attr->config) : "FAIL",
200 event->read.value);
202 return 0;
205 static int perf_session__setup_sample_type(struct perf_session *self)
207 if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
208 if (sort__has_parent) {
209 fprintf(stderr, "selected --sort parent, but no"
210 " callchain data. Did you call"
211 " perf record without -g?\n");
212 return -EINVAL;
214 if (symbol_conf.use_callchain) {
215 fprintf(stderr, "selected -g but no callchain data."
216 " Did you call perf record without"
217 " -g?\n");
218 return -1;
220 } else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
221 !symbol_conf.use_callchain) {
222 symbol_conf.use_callchain = true;
223 if (register_callchain_param(&callchain_param) < 0) {
224 fprintf(stderr, "Can't register callchain"
225 " params\n");
226 return -EINVAL;
230 return 0;
233 static struct perf_event_ops event_ops = {
234 .sample = process_sample_event,
235 .mmap = event__process_mmap,
236 .comm = event__process_comm,
237 .exit = event__process_task,
238 .fork = event__process_task,
239 .lost = event__process_lost,
240 .read = process_read_event,
241 .attr = event__process_attr,
242 .event_type = event__process_event_type,
243 .tracing_data = event__process_tracing_data,
244 .build_id = event__process_build_id,
247 extern volatile int session_done;
249 static void sig_handler(int sig __used)
251 session_done = 1;
254 static size_t hists__fprintf_nr_sample_events(struct hists *self,
255 const char *evname, FILE *fp)
257 size_t ret;
258 char unit;
259 unsigned long nr_events = self->stats.nr_events[PERF_RECORD_SAMPLE];
261 nr_events = convert_unit(nr_events, &unit);
262 ret = fprintf(fp, "# Events: %lu%c", nr_events, unit);
263 if (evname != NULL)
264 ret += fprintf(fp, " %s", evname);
265 return ret + fprintf(fp, "\n#\n");
268 static int hists__tty_browse_tree(struct rb_root *tree, const char *help)
270 struct rb_node *next = rb_first(tree);
272 while (next) {
273 struct hists *hists = rb_entry(next, struct hists, rb_node);
274 const char *evname = NULL;
276 if (rb_first(&hists->entries) != rb_last(&hists->entries))
277 evname = __event_name(hists->type, hists->config);
279 hists__fprintf_nr_sample_events(hists, evname, stdout);
280 hists__fprintf(hists, NULL, false, stdout);
281 fprintf(stdout, "\n\n");
282 next = rb_next(&hists->rb_node);
285 if (sort_order == default_sort_order &&
286 parent_pattern == default_parent_pattern) {
287 fprintf(stdout, "#\n# (%s)\n#\n", help);
289 if (show_threads) {
290 bool style = !strcmp(pretty_printing_style, "raw");
291 perf_read_values_display(stdout, &show_threads_values,
292 style);
293 perf_read_values_destroy(&show_threads_values);
297 return 0;
300 static int __cmd_report(void)
302 int ret = -EINVAL;
303 struct perf_session *session;
304 struct rb_node *next;
305 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
307 signal(SIGINT, sig_handler);
309 session = perf_session__new(input_name, O_RDONLY, force, false);
310 if (session == NULL)
311 return -ENOMEM;
313 if (show_threads)
314 perf_read_values_init(&show_threads_values);
316 ret = perf_session__setup_sample_type(session);
317 if (ret)
318 goto out_delete;
320 ret = perf_session__process_events(session, &event_ops);
321 if (ret)
322 goto out_delete;
324 if (dump_trace) {
325 perf_session__fprintf_nr_events(session, stdout);
326 goto out_delete;
329 if (verbose > 3)
330 perf_session__fprintf(session, stdout);
332 if (verbose > 2)
333 perf_session__fprintf_dsos(session, stdout);
335 next = rb_first(&session->hists_tree);
336 while (next) {
337 struct hists *hists;
339 hists = rb_entry(next, struct hists, rb_node);
340 hists__collapse_resort(hists);
341 hists__output_resort(hists);
342 next = rb_next(&hists->rb_node);
345 if (use_browser > 0)
346 hists__tui_browse_tree(&session->hists_tree, help);
347 else
348 hists__tty_browse_tree(&session->hists_tree, help);
350 out_delete:
351 perf_session__delete(session);
352 return ret;
355 static int
356 parse_callchain_opt(const struct option *opt __used, const char *arg,
357 int unset)
359 char *tok, *tok2;
360 char *endptr;
363 * --no-call-graph
365 if (unset) {
366 dont_use_callchains = true;
367 return 0;
370 symbol_conf.use_callchain = true;
372 if (!arg)
373 return 0;
375 tok = strtok((char *)arg, ",");
376 if (!tok)
377 return -1;
379 /* get the output mode */
380 if (!strncmp(tok, "graph", strlen(arg)))
381 callchain_param.mode = CHAIN_GRAPH_ABS;
383 else if (!strncmp(tok, "flat", strlen(arg)))
384 callchain_param.mode = CHAIN_FLAT;
386 else if (!strncmp(tok, "fractal", strlen(arg)))
387 callchain_param.mode = CHAIN_GRAPH_REL;
389 else if (!strncmp(tok, "none", strlen(arg))) {
390 callchain_param.mode = CHAIN_NONE;
391 symbol_conf.use_callchain = false;
393 return 0;
396 else
397 return -1;
399 /* get the min percentage */
400 tok = strtok(NULL, ",");
401 if (!tok)
402 goto setup;
404 tok2 = strtok(NULL, ",");
405 callchain_param.min_percent = strtod(tok, &endptr);
406 if (tok == endptr)
407 return -1;
409 if (tok2)
410 callchain_param.print_limit = strtod(tok2, &endptr);
411 setup:
412 if (register_callchain_param(&callchain_param) < 0) {
413 fprintf(stderr, "Can't register callchain params\n");
414 return -1;
416 return 0;
419 static const char * const report_usage[] = {
420 "perf report [<options>] <command>",
421 NULL
424 static const struct option options[] = {
425 OPT_STRING('i', "input", &input_name, "file",
426 "input file name"),
427 OPT_INCR('v', "verbose", &verbose,
428 "be more verbose (show symbol address, etc)"),
429 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
430 "dump raw trace in ASCII"),
431 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
432 "file", "vmlinux pathname"),
433 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
434 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
435 "load module symbols - WARNING: use only with -k and LIVE kernel"),
436 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
437 "Show a column with the number of samples"),
438 OPT_BOOLEAN('T', "threads", &show_threads,
439 "Show per-thread event counters"),
440 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
441 "pretty printing style key: normal raw"),
442 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
443 "sort by key(s): pid, comm, dso, symbol, parent"),
444 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
445 "Show sample percentage for different cpu modes"),
446 OPT_STRING('p', "parent", &parent_pattern, "regex",
447 "regex filter to identify parent, see: '--sort parent'"),
448 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
449 "Only display entries with parent-match"),
450 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
451 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
452 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
453 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
454 "only consider symbols in these dsos"),
455 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
456 "only consider symbols in these comms"),
457 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
458 "only consider these symbols"),
459 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
460 "width[,width...]",
461 "don't try to adjust column width, use these fixed values"),
462 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
463 "separator for columns, no spaces will be added between "
464 "columns '.' is reserved."),
465 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
466 "Only display entries resolved to a symbol"),
467 OPT_END()
470 int cmd_report(int argc, const char **argv, const char *prefix __used)
472 argc = parse_options(argc, argv, options, report_usage, 0);
474 if (strcmp(input_name, "-") != 0)
475 setup_browser();
477 * Only in the newt browser we are doing integrated annotation,
478 * so don't allocate extra space that won't be used in the stdio
479 * implementation.
481 if (use_browser > 0)
482 symbol_conf.priv_size = sizeof(struct sym_priv);
484 if (symbol__init() < 0)
485 return -1;
487 setup_sorting(report_usage, options);
489 if (parent_pattern != default_parent_pattern) {
490 if (sort_dimension__add("parent") < 0)
491 return -1;
492 sort_parent.elide = 1;
493 } else
494 symbol_conf.exclude_other = false;
497 * Any (unrecognized) arguments left?
499 if (argc)
500 usage_with_options(report_usage, options);
502 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
503 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
504 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
506 return __cmd_report();