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