]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - tools/perf/builtin-report.c
perf ui: Add ui_helpline methods
[mirror_ubuntu-zesty-kernel.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
9f866697
BG
42static char default_pretty_printing_style[] = "normal";
43static char *pretty_printing_style = default_pretty_printing_style;
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;
28e2a106 109 if (symbol_conf.use_callchain)
b9fb9304 110 err = append_chain(he->callchain, data->callchain, syms);
39d1e1b1
ACM
111out_free_syms:
112 free(syms);
113 return err;
8fa66bdc
ACM
114}
115
cbbc79a5
EM
116static int add_event_total(struct perf_session *session,
117 struct sample_data *data,
118 struct perf_event_attr *attr)
119{
1c02c4d2 120 struct hists *hists;
cbbc79a5
EM
121
122 if (attr)
1c02c4d2
ACM
123 hists = perf_session__hists_findnew(session, data->id,
124 attr->type, attr->config);
cbbc79a5 125 else
1c02c4d2 126 hists = perf_session__hists_findnew(session, data->id, 0, 0);
cbbc79a5 127
1c02c4d2 128 if (!hists)
cbbc79a5
EM
129 return -ENOMEM;
130
1c02c4d2
ACM
131 hists->stats.total += data->period;
132 session->hists.stats.total += data->period;
cbbc79a5
EM
133 return 0;
134}
135
b3165f41 136static int process_sample_event(event_t *event, struct perf_session *session)
75051724 137{
c410a338 138 struct sample_data data = { .period = 1, };
1ed091c4 139 struct addr_location al;
cbbc79a5 140 struct perf_event_attr *attr;
180f95e2 141
c019879b 142 event__parse_sample(event, session->sample_type, &data);
ea1900e5 143
0d755034
ACM
144 dump_printf("(IP, %d): %d/%d: %#Lx period: %Ld\n", event->header.misc,
145 data.pid, data.tid, data.ip, data.period);
75051724 146
c019879b 147 if (session->sample_type & PERF_SAMPLE_CALLCHAIN) {
f37a291c 148 unsigned int i;
3efa1cc9 149
180f95e2 150 dump_printf("... chain: nr:%Lu\n", data.callchain->nr);
3efa1cc9 151
139633c6 152 if (!ip_callchain__valid(data.callchain, event)) {
6beba7ad
ACM
153 pr_debug("call-chain problem with event, "
154 "skipping it.\n");
7522060c
IM
155 return 0;
156 }
157
158 if (dump_trace) {
180f95e2
OH
159 for (i = 0; i < data.callchain->nr; i++)
160 dump_printf("..... %2d: %016Lx\n",
161 i, data.callchain->ips[i]);
3efa1cc9
IM
162 }
163 }
164
c410a338
ACM
165 if (event__preprocess_sample(event, session, &al, NULL) < 0) {
166 fprintf(stderr, "problem processing %d event, skipping it.\n",
75051724
IM
167 event->header.type);
168 return -1;
169 }
e7fb08b1 170
71289be7 171 if (al.filtered || (hide_unresolved && al.sym == NULL))
ec218fc4 172 return 0;
7bec7a91 173
cbbc79a5 174 if (perf_session__add_hist_entry(session, &al, &data)) {
6beba7ad 175 pr_debug("problem incrementing symbol count, skipping event\n");
ec218fc4 176 return -1;
8fa66bdc 177 }
ec218fc4 178
cbbc79a5
EM
179 attr = perf_header__find_attr(data.id, &session->header);
180
181 if (add_event_total(session, &data, attr)) {
182 pr_debug("problem adding event count\n");
183 return -1;
184 }
185
75051724
IM
186 return 0;
187}
3502973d 188
d8f66248 189static int process_read_event(event_t *event, struct perf_session *session __used)
e9ea2fde 190{
cdd6c482 191 struct perf_event_attr *attr;
0d3a5c88 192
94c744b6 193 attr = perf_header__find_attr(event->read.id, &session->header);
8f18aec5 194
8d513270 195 if (show_threads) {
83a0944f 196 const char *name = attr ? __event_name(attr->type, attr->config)
8d513270
BG
197 : "unknown";
198 perf_read_values_add_value(&show_threads_values,
199 event->read.pid, event->read.tid,
200 event->read.id,
201 name,
202 event->read.value);
203 }
204
62daacb5
ACM
205 dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
206 attr ? __event_name(attr->type, attr->config) : "FAIL",
207 event->read.value);
e9ea2fde
PZ
208
209 return 0;
210}
211
d549c769 212static int perf_session__setup_sample_type(struct perf_session *self)
d80d338d 213{
d549c769 214 if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
91b4eaea
FW
215 if (sort__has_parent) {
216 fprintf(stderr, "selected --sort parent, but no"
217 " callchain data. Did you call"
218 " perf record without -g?\n");
d549c769 219 return -EINVAL;
91b4eaea 220 }
d599db3f 221 if (symbol_conf.use_callchain) {
6ede59c4 222 fprintf(stderr, "selected -g but no callchain data."
91b4eaea
FW
223 " Did you call perf record without"
224 " -g?\n");
016e92fb 225 return -1;
91b4eaea 226 }
b9a63b9b
ACM
227 } else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
228 !symbol_conf.use_callchain) {
d599db3f 229 symbol_conf.use_callchain = true;
b1a88349
FW
230 if (register_callchain_param(&callchain_param) < 0) {
231 fprintf(stderr, "Can't register callchain"
232 " params\n");
d549c769 233 return -EINVAL;
b1a88349 234 }
f5970550
PZ
235 }
236
016e92fb
FW
237 return 0;
238}
6142f9ec 239
301a0b02 240static struct perf_event_ops event_ops = {
55aa640f
ACM
241 .sample = process_sample_event,
242 .mmap = event__process_mmap,
243 .comm = event__process_comm,
244 .exit = event__process_task,
245 .fork = event__process_task,
246 .lost = event__process_lost,
247 .read = process_read_event,
2c46dbb5 248 .attr = event__process_attr,
cd19a035 249 .event_type = event__process_event_type,
9215545e 250 .tracing_data = event__process_tracing_data,
c7929e47 251 .build_id = event__process_build_id,
016e92fb 252};
6142f9ec 253
46656ac7
TZ
254extern volatile int session_done;
255
256static void sig_handler(int sig __attribute__((__unused__)))
257{
258 session_done = 1;
259}
260
016e92fb
FW
261static int __cmd_report(void)
262{
d549c769 263 int ret = -EINVAL;
d8f66248 264 struct perf_session *session;
cbbc79a5 265 struct rb_node *next;
f9224c5c 266 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
8fa66bdc 267
46656ac7
TZ
268 signal(SIGINT, sig_handler);
269
454c407e 270 session = perf_session__new(input_name, O_RDONLY, force, false);
94c744b6
ACM
271 if (session == NULL)
272 return -ENOMEM;
273
016e92fb
FW
274 if (show_threads)
275 perf_read_values_init(&show_threads_values);
f5970550 276
d549c769
ACM
277 ret = perf_session__setup_sample_type(session);
278 if (ret)
279 goto out_delete;
280
ec913369 281 ret = perf_session__process_events(session, &event_ops);
016e92fb 282 if (ret)
94c744b6 283 goto out_delete;
97b07b69 284
62daacb5
ACM
285 if (dump_trace) {
286 event__print_totals();
94c744b6 287 goto out_delete;
62daacb5 288 }
97b07b69 289
da21d1b5 290 if (verbose > 3)
b3165f41 291 perf_session__fprintf(session, stdout);
9ac99545 292
da21d1b5 293 if (verbose > 2)
cbf69680 294 perf_session__fprintf_dsos(session, stdout);
16f762a2 295
1c02c4d2 296 next = rb_first(&session->hists_tree);
cbbc79a5 297 while (next) {
1c02c4d2 298 struct hists *hists;
cbbc79a5 299
1c02c4d2
ACM
300 hists = rb_entry(next, struct hists, rb_node);
301 hists__collapse_resort(hists);
fefb0b94 302 hists__output_resort(hists);
f9224c5c 303 if (use_browser)
b09e0190 304 hists__browse(hists, help, input_name);
f9224c5c 305 else {
1c02c4d2
ACM
306 if (rb_first(&session->hists.entries) ==
307 rb_last(&session->hists.entries))
f9224c5c 308 fprintf(stdout, "# Samples: %Ld\n#\n",
1c02c4d2 309 hists->stats.total);
f9224c5c
ACM
310 else
311 fprintf(stdout, "# Samples: %Ld %s\n#\n",
1c02c4d2
ACM
312 hists->stats.total,
313 __event_name(hists->type, hists->config));
f9224c5c 314
1c02c4d2 315 hists__fprintf(hists, NULL, false, stdout);
f9224c5c
ACM
316 fprintf(stdout, "\n\n");
317 }
318
1c02c4d2 319 next = rb_next(&hists->rb_node);
cbbc79a5
EM
320 }
321
f9224c5c
ACM
322 if (!use_browser && sort_order == default_sort_order &&
323 parent_pattern == default_parent_pattern) {
324 fprintf(stdout, "#\n# (%s)\n#\n", help);
3e6055ab 325
f9224c5c
ACM
326 if (show_threads) {
327 bool style = !strcmp(pretty_printing_style, "raw");
328 perf_read_values_display(stdout, &show_threads_values,
329 style);
330 perf_read_values_destroy(&show_threads_values);
331 }
d599db3f 332 }
94c744b6
ACM
333out_delete:
334 perf_session__delete(session);
016e92fb 335 return ret;
8fa66bdc
ACM
336}
337
4eb3e478
FW
338static int
339parse_callchain_opt(const struct option *opt __used, const char *arg,
b9a63b9b 340 int unset)
4eb3e478 341{
232a5c94 342 char *tok, *tok2;
c20ab37e
FW
343 char *endptr;
344
b9a63b9b
ACM
345 /*
346 * --no-call-graph
347 */
348 if (unset) {
349 dont_use_callchains = true;
350 return 0;
351 }
352
d599db3f 353 symbol_conf.use_callchain = true;
4eb3e478
FW
354
355 if (!arg)
356 return 0;
357
c20ab37e
FW
358 tok = strtok((char *)arg, ",");
359 if (!tok)
360 return -1;
361
362 /* get the output mode */
363 if (!strncmp(tok, "graph", strlen(arg)))
805d127d 364 callchain_param.mode = CHAIN_GRAPH_ABS;
4eb3e478 365
c20ab37e 366 else if (!strncmp(tok, "flat", strlen(arg)))
805d127d
FW
367 callchain_param.mode = CHAIN_FLAT;
368
369 else if (!strncmp(tok, "fractal", strlen(arg)))
370 callchain_param.mode = CHAIN_GRAPH_REL;
371
b1a88349
FW
372 else if (!strncmp(tok, "none", strlen(arg))) {
373 callchain_param.mode = CHAIN_NONE;
b7ae11b3 374 symbol_conf.use_callchain = false;
b1a88349
FW
375
376 return 0;
377 }
378
4eb3e478
FW
379 else
380 return -1;
381
c20ab37e
FW
382 /* get the min percentage */
383 tok = strtok(NULL, ",");
384 if (!tok)
805d127d 385 goto setup;
c20ab37e 386
232a5c94 387 tok2 = strtok(NULL, ",");
805d127d 388 callchain_param.min_percent = strtod(tok, &endptr);
c20ab37e
FW
389 if (tok == endptr)
390 return -1;
391
232a5c94
ACM
392 if (tok2)
393 callchain_param.print_limit = strtod(tok2, &endptr);
805d127d
FW
394setup:
395 if (register_callchain_param(&callchain_param) < 0) {
396 fprintf(stderr, "Can't register callchain params\n");
397 return -1;
398 }
4eb3e478
FW
399 return 0;
400}
401
0422a4fc 402static const char * const report_usage[] = {
53cb8bc2
IM
403 "perf report [<options>] <command>",
404 NULL
405};
406
407static const struct option options[] = {
408 OPT_STRING('i', "input", &input_name, "file",
409 "input file name"),
c0555642 410 OPT_INCR('v', "verbose", &verbose,
815e777f 411 "be more verbose (show symbol address, etc)"),
97b07b69
IM
412 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
413 "dump raw trace in ASCII"),
b32d133a
ACM
414 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
415 "file", "vmlinux pathname"),
fa6963b2 416 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
b32d133a 417 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 418 "load module symbols - WARNING: use only with -k and LIVE kernel"),
d599db3f 419 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
e3d7e183 420 "Show a column with the number of samples"),
8d513270
BG
421 OPT_BOOLEAN('T', "threads", &show_threads,
422 "Show per-thread event counters"),
9f866697
BG
423 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
424 "pretty printing style key: normal raw"),
63299f05 425 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b25bcf2f 426 "sort by key(s): pid, comm, dso, symbol, parent"),
f7d87444 427 OPT_BOOLEAN('P', "full-paths", &symbol_conf.full_paths,
b78c07d4 428 "Don't shorten the pathnames taking into account the cwd"),
a1645ce1
ZY
429 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
430 "Show sample percentage for different cpu modes"),
b25bcf2f
IM
431 OPT_STRING('p', "parent", &parent_pattern, "regex",
432 "regex filter to identify parent, see: '--sort parent'"),
d599db3f 433 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
b8e6d829 434 "Only display entries with parent-match"),
1483b19f 435 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
e157eb83 436 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
1483b19f 437 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
655000e7 438 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
25903407 439 "only consider symbols in these dsos"),
655000e7 440 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
cc8b88b1 441 "only consider symbols in these comms"),
655000e7 442 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
7bec7a91 443 "only consider these symbols"),
655000e7 444 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
52d422de
ACM
445 "width[,width...]",
446 "don't try to adjust column width, use these fixed values"),
c410a338 447 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
52d422de
ACM
448 "separator for columns, no spaces will be added between "
449 "columns '.' is reserved."),
71289be7
ACM
450 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
451 "Only display entries resolved to a symbol"),
53cb8bc2
IM
452 OPT_END()
453};
454
f37a291c 455int cmd_report(int argc, const char **argv, const char *prefix __used)
53cb8bc2 456{
655000e7
ACM
457 argc = parse_options(argc, argv, options, report_usage, 0);
458
46656ac7
TZ
459 if (strcmp(input_name, "-") != 0)
460 setup_browser();
655000e7 461
75be6cf4 462 if (symbol__init() < 0)
b32d133a 463 return -1;
53cb8bc2 464
c8829c7a 465 setup_sorting(report_usage, options);
1aa16738 466
021191b3 467 if (parent_pattern != default_parent_pattern) {
2aefa4f7
ACM
468 if (sort_dimension__add("parent") < 0)
469 return -1;
021191b3
ACM
470 sort_parent.elide = 1;
471 } else
d599db3f 472 symbol_conf.exclude_other = false;
b8e6d829 473
edc52dea
IM
474 /*
475 * Any (unrecognized) arguments left?
476 */
477 if (argc)
478 usage_with_options(report_usage, options);
479
655000e7
ACM
480 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
481 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
482 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
25903407 483
53cb8bc2
IM
484 return __cmd_report();
485}