]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - tools/perf/builtin-report.c
Merge branch 'for-linus-1' of git://git.infradead.org/mtd-2.6
[mirror_ubuntu-jammy-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
78f7defe 12#include "util/annotate.h"
8fc0321f 13#include "util/color.h"
5da50258 14#include <linux/list.h>
a930d2c0 15#include "util/cache.h"
43cbcd8a 16#include <linux/rbtree.h>
a2928c42 17#include "util/symbol.h"
f55c5552 18#include "util/callchain.h"
25903407 19#include "util/strlist.h"
8d513270 20#include "util/values.h"
8fa66bdc 21
53cb8bc2 22#include "perf.h"
8f28827a 23#include "util/debug.h"
e248de33
ACM
24#include "util/evlist.h"
25#include "util/evsel.h"
7c6a1c65 26#include "util/header.h"
94c744b6 27#include "util/session.h"
53cb8bc2
IM
28
29#include "util/parse-options.h"
30#include "util/parse-events.h"
31
6baa0a5a 32#include "util/thread.h"
dd68ada2 33#include "util/sort.h"
3d1d07ec 34#include "util/hist.h"
6baa0a5a 35
23ac9cbe 36static char const *input_name = "perf.data";
bd74137e 37
8b9e74eb 38static bool force, use_tui, use_stdio;
71289be7 39static bool hide_unresolved;
b9a63b9b 40static bool dont_use_callchains;
97b07b69 41
c0555642 42static bool show_threads;
8d513270
BG
43static struct perf_read_values show_threads_values;
44
edb7c60e
ACM
45static const char default_pretty_printing_style[] = "normal";
46static const char *pretty_printing_style = default_pretty_printing_style;
9f866697 47
805d127d 48static char callchain_default_opt[] = "fractal,0.5";
0849327d 49static symbol_filter_t annotate_init;
805d127d 50
8d50e5b4 51static int perf_session__add_hist_entry(struct perf_session *session,
4e4f06e4 52 struct addr_location *al,
9e69c210
ACM
53 struct perf_sample *sample,
54 struct perf_evsel *evsel)
8fa66bdc 55{
b3c9ac08 56 struct symbol *parent = NULL;
1b3a0e95 57 int err = 0;
e7fb08b1 58 struct hist_entry *he;
e7fb08b1 59
8d50e5b4
ACM
60 if ((sort__has_parent || symbol_conf.use_callchain) && sample->callchain) {
61 err = perf_session__resolve_callchain(session, al->thread,
62 sample->callchain, &parent);
1b3a0e95
FW
63 if (err)
64 return err;
ad5b217b 65 }
cbbc79a5 66
e248de33 67 he = __hists__add_entry(&evsel->hists, al, parent, sample->period);
9735abf1 68 if (he == NULL)
1b3a0e95
FW
69 return -ENOMEM;
70
ef7b93a1 71 if (symbol_conf.use_callchain) {
8d50e5b4
ACM
72 err = callchain_append(he->callchain, &session->callchain_cursor,
73 sample->period);
ef7b93a1 74 if (err)
1b3a0e95 75 return err;
ef7b93a1
ACM
76 }
77 /*
78 * Only in the newt browser we are doing integrated annotation,
79 * so we don't allocated the extra space needed because the stdio
80 * code will not use it.
81 */
2f525d01 82 if (al->sym != NULL && use_browser > 0) {
2f525d01 83 struct annotation *notes = symbol__annotation(he->ms.sym);
e248de33
ACM
84
85 assert(evsel != NULL);
86
87 err = -ENOMEM;
ce6f4fab 88 if (notes->src == NULL &&
e248de33
ACM
89 symbol__alloc_hist(he->ms.sym, session->evlist->nr_entries) < 0)
90 goto out;
91
92 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
2f525d01 93 }
1b3a0e95 94
e248de33
ACM
95 evsel->hists.stats.total_period += sample->period;
96 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
97out:
39d1e1b1 98 return err;
8fa66bdc
ACM
99}
100
cbbc79a5 101
8115d60c
ACM
102static int process_sample_event(union perf_event *event,
103 struct perf_sample *sample,
9e69c210 104 struct perf_evsel *evsel,
640c03ce 105 struct perf_session *session)
75051724 106{
1ed091c4 107 struct addr_location al;
180f95e2 108
ce6f4fab 109 if (perf_event__preprocess_sample(event, session, &al, sample,
0849327d 110 annotate_init) < 0) {
c410a338 111 fprintf(stderr, "problem processing %d event, skipping it.\n",
75051724
IM
112 event->header.type);
113 return -1;
114 }
e7fb08b1 115
71289be7 116 if (al.filtered || (hide_unresolved && al.sym == NULL))
ec218fc4 117 return 0;
7bec7a91 118
9e69c210 119 if (perf_session__add_hist_entry(session, &al, sample, evsel)) {
c82ee828 120 pr_debug("problem incrementing symbol period, skipping event\n");
ec218fc4 121 return -1;
8fa66bdc 122 }
ec218fc4 123
75051724
IM
124 return 0;
125}
3502973d 126
8115d60c
ACM
127static int process_read_event(union perf_event *event,
128 struct perf_sample *sample __used,
e248de33 129 struct perf_session *session)
e9ea2fde 130{
e248de33
ACM
131 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist,
132 event->read.id);
8d513270 133 if (show_threads) {
e248de33 134 const char *name = evsel ? event_name(evsel) : "unknown";
8d513270
BG
135 perf_read_values_add_value(&show_threads_values,
136 event->read.pid, event->read.tid,
137 event->read.id,
138 name,
139 event->read.value);
140 }
141
9486aa38 142 dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
e248de33 143 evsel ? event_name(evsel) : "FAIL",
62daacb5 144 event->read.value);
e9ea2fde
PZ
145
146 return 0;
147}
148
d549c769 149static int perf_session__setup_sample_type(struct perf_session *self)
d80d338d 150{
d549c769 151 if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
91b4eaea
FW
152 if (sort__has_parent) {
153 fprintf(stderr, "selected --sort parent, but no"
154 " callchain data. Did you call"
155 " perf record without -g?\n");
d549c769 156 return -EINVAL;
91b4eaea 157 }
d599db3f 158 if (symbol_conf.use_callchain) {
6ede59c4 159 fprintf(stderr, "selected -g but no callchain data."
91b4eaea
FW
160 " Did you call perf record without"
161 " -g?\n");
016e92fb 162 return -1;
91b4eaea 163 }
b9a63b9b
ACM
164 } else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
165 !symbol_conf.use_callchain) {
d599db3f 166 symbol_conf.use_callchain = true;
16537f13 167 if (callchain_register_param(&callchain_param) < 0) {
b1a88349
FW
168 fprintf(stderr, "Can't register callchain"
169 " params\n");
d549c769 170 return -EINVAL;
b1a88349 171 }
f5970550
PZ
172 }
173
016e92fb
FW
174 return 0;
175}
6142f9ec 176
301a0b02 177static struct perf_event_ops event_ops = {
8115d60c
ACM
178 .sample = process_sample_event,
179 .mmap = perf_event__process_mmap,
180 .comm = perf_event__process_comm,
181 .exit = perf_event__process_task,
182 .fork = perf_event__process_task,
183 .lost = perf_event__process_lost,
184 .read = process_read_event,
185 .attr = perf_event__process_attr,
186 .event_type = perf_event__process_event_type,
187 .tracing_data = perf_event__process_tracing_data,
188 .build_id = perf_event__process_build_id,
eac23d1c
IM
189 .ordered_samples = true,
190 .ordering_requires_timestamps = true,
016e92fb 191};
6142f9ec 192
46656ac7
TZ
193extern volatile int session_done;
194
c82ee828 195static void sig_handler(int sig __used)
46656ac7
TZ
196{
197 session_done = 1;
198}
199
c82ee828
ACM
200static size_t hists__fprintf_nr_sample_events(struct hists *self,
201 const char *evname, FILE *fp)
202{
203 size_t ret;
204 char unit;
205 unsigned long nr_events = self->stats.nr_events[PERF_RECORD_SAMPLE];
206
207 nr_events = convert_unit(nr_events, &unit);
208 ret = fprintf(fp, "# Events: %lu%c", nr_events, unit);
209 if (evname != NULL)
210 ret += fprintf(fp, " %s", evname);
211 return ret + fprintf(fp, "\n#\n");
212}
213
7f0030b2
ACM
214static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
215 const char *help)
d67f088e 216{
e248de33 217 struct perf_evsel *pos;
d67f088e 218
e248de33
ACM
219 list_for_each_entry(pos, &evlist->entries, node) {
220 struct hists *hists = &pos->hists;
d67f088e
ACM
221 const char *evname = NULL;
222
223 if (rb_first(&hists->entries) != rb_last(&hists->entries))
e248de33 224 evname = event_name(pos);
d67f088e
ACM
225
226 hists__fprintf_nr_sample_events(hists, evname, stdout);
227 hists__fprintf(hists, NULL, false, stdout);
228 fprintf(stdout, "\n\n");
d67f088e
ACM
229 }
230
231 if (sort_order == default_sort_order &&
232 parent_pattern == default_parent_pattern) {
233 fprintf(stdout, "#\n# (%s)\n#\n", help);
234
235 if (show_threads) {
236 bool style = !strcmp(pretty_printing_style, "raw");
237 perf_read_values_display(stdout, &show_threads_values,
238 style);
239 perf_read_values_destroy(&show_threads_values);
240 }
241 }
242
243 return 0;
244}
245
016e92fb
FW
246static int __cmd_report(void)
247{
d549c769 248 int ret = -EINVAL;
e248de33 249 u64 nr_samples;
d8f66248 250 struct perf_session *session;
e248de33 251 struct perf_evsel *pos;
f9224c5c 252 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
8fa66bdc 253
46656ac7
TZ
254 signal(SIGINT, sig_handler);
255
21ef97f0 256 session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops);
94c744b6
ACM
257 if (session == NULL)
258 return -ENOMEM;
259
016e92fb
FW
260 if (show_threads)
261 perf_read_values_init(&show_threads_values);
f5970550 262
d549c769
ACM
263 ret = perf_session__setup_sample_type(session);
264 if (ret)
265 goto out_delete;
266
ec913369 267 ret = perf_session__process_events(session, &event_ops);
016e92fb 268 if (ret)
94c744b6 269 goto out_delete;
97b07b69 270
62daacb5 271 if (dump_trace) {
c8446b9b 272 perf_session__fprintf_nr_events(session, stdout);
94c744b6 273 goto out_delete;
62daacb5 274 }
97b07b69 275
da21d1b5 276 if (verbose > 3)
b3165f41 277 perf_session__fprintf(session, stdout);
9ac99545 278
da21d1b5 279 if (verbose > 2)
cbf69680 280 perf_session__fprintf_dsos(session, stdout);
16f762a2 281
e248de33
ACM
282 nr_samples = 0;
283 list_for_each_entry(pos, &session->evlist->entries, node) {
284 struct hists *hists = &pos->hists;
cbbc79a5 285
1c02c4d2 286 hists__collapse_resort(hists);
fefb0b94 287 hists__output_resort(hists);
e248de33
ACM
288 nr_samples += hists->stats.nr_events[PERF_RECORD_SAMPLE];
289 }
290
291 if (nr_samples == 0) {
292 ui__warning("The %s file has no samples!\n", input_name);
293 goto out_delete;
cbbc79a5
EM
294 }
295
d67f088e 296 if (use_browser > 0)
7f0030b2 297 perf_evlist__tui_browse_hists(session->evlist, help);
d67f088e 298 else
7f0030b2 299 perf_evlist__tty_browse_hists(session->evlist, help);
3e6055ab 300
94c744b6 301out_delete:
71e7cf3a
ACM
302 /*
303 * Speed up the exit process, for large files this can
304 * take quite a while.
305 *
306 * XXX Enable this when using valgrind or if we ever
307 * librarize this command.
308 *
309 * Also experiment with obstacks to see how much speed
310 * up we'll get here.
311 *
312 * perf_session__delete(session);
313 */
016e92fb 314 return ret;
8fa66bdc
ACM
315}
316
4eb3e478
FW
317static int
318parse_callchain_opt(const struct option *opt __used, const char *arg,
b9a63b9b 319 int unset)
4eb3e478 320{
232a5c94 321 char *tok, *tok2;
c20ab37e
FW
322 char *endptr;
323
b9a63b9b
ACM
324 /*
325 * --no-call-graph
326 */
327 if (unset) {
328 dont_use_callchains = true;
329 return 0;
330 }
331
d599db3f 332 symbol_conf.use_callchain = true;
4eb3e478
FW
333
334 if (!arg)
335 return 0;
336
c20ab37e
FW
337 tok = strtok((char *)arg, ",");
338 if (!tok)
339 return -1;
340
341 /* get the output mode */
342 if (!strncmp(tok, "graph", strlen(arg)))
805d127d 343 callchain_param.mode = CHAIN_GRAPH_ABS;
4eb3e478 344
c20ab37e 345 else if (!strncmp(tok, "flat", strlen(arg)))
805d127d
FW
346 callchain_param.mode = CHAIN_FLAT;
347
348 else if (!strncmp(tok, "fractal", strlen(arg)))
349 callchain_param.mode = CHAIN_GRAPH_REL;
350
b1a88349
FW
351 else if (!strncmp(tok, "none", strlen(arg))) {
352 callchain_param.mode = CHAIN_NONE;
b7ae11b3 353 symbol_conf.use_callchain = false;
b1a88349
FW
354
355 return 0;
356 }
357
4eb3e478
FW
358 else
359 return -1;
360
c20ab37e
FW
361 /* get the min percentage */
362 tok = strtok(NULL, ",");
363 if (!tok)
805d127d 364 goto setup;
c20ab37e 365
232a5c94 366 tok2 = strtok(NULL, ",");
805d127d 367 callchain_param.min_percent = strtod(tok, &endptr);
c20ab37e
FW
368 if (tok == endptr)
369 return -1;
370
232a5c94
ACM
371 if (tok2)
372 callchain_param.print_limit = strtod(tok2, &endptr);
805d127d 373setup:
16537f13 374 if (callchain_register_param(&callchain_param) < 0) {
805d127d
FW
375 fprintf(stderr, "Can't register callchain params\n");
376 return -1;
377 }
4eb3e478
FW
378 return 0;
379}
380
0422a4fc 381static const char * const report_usage[] = {
53cb8bc2
IM
382 "perf report [<options>] <command>",
383 NULL
384};
385
386static const struct option options[] = {
387 OPT_STRING('i', "input", &input_name, "file",
388 "input file name"),
c0555642 389 OPT_INCR('v', "verbose", &verbose,
815e777f 390 "be more verbose (show symbol address, etc)"),
97b07b69
IM
391 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
392 "dump raw trace in ASCII"),
b32d133a
ACM
393 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
394 "file", "vmlinux pathname"),
b226a5a7
DA
395 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
396 "file", "kallsyms pathname"),
fa6963b2 397 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
b32d133a 398 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 399 "load module symbols - WARNING: use only with -k and LIVE kernel"),
d599db3f 400 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
e3d7e183 401 "Show a column with the number of samples"),
8d513270
BG
402 OPT_BOOLEAN('T', "threads", &show_threads,
403 "Show per-thread event counters"),
9f866697
BG
404 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
405 "pretty printing style key: normal raw"),
8b9e74eb
ACM
406 OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"),
407 OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"),
63299f05 408 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b25bcf2f 409 "sort by key(s): pid, comm, dso, symbol, parent"),
a1645ce1
ZY
410 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
411 "Show sample percentage for different cpu modes"),
b25bcf2f
IM
412 OPT_STRING('p', "parent", &parent_pattern, "regex",
413 "regex filter to identify parent, see: '--sort parent'"),
d599db3f 414 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
b8e6d829 415 "Only display entries with parent-match"),
1483b19f 416 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
e157eb83 417 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
1483b19f 418 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
655000e7 419 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
25903407 420 "only consider symbols in these dsos"),
655000e7 421 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
cc8b88b1 422 "only consider symbols in these comms"),
655000e7 423 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
7bec7a91 424 "only consider these symbols"),
655000e7 425 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
52d422de
ACM
426 "width[,width...]",
427 "don't try to adjust column width, use these fixed values"),
c410a338 428 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
52d422de
ACM
429 "separator for columns, no spaces will be added between "
430 "columns '.' is reserved."),
71289be7
ACM
431 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
432 "Only display entries resolved to a symbol"),
ec5761ea
DA
433 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
434 "Look for files with symbols relative to this directory"),
53cb8bc2
IM
435 OPT_END()
436};
437
f37a291c 438int cmd_report(int argc, const char **argv, const char *prefix __used)
53cb8bc2 439{
655000e7
ACM
440 argc = parse_options(argc, argv, options, report_usage, 0);
441
8b9e74eb
ACM
442 if (use_stdio)
443 use_browser = 0;
444 else if (use_tui)
445 use_browser = 1;
446
46656ac7 447 if (strcmp(input_name, "-") != 0)
229ade9b 448 setup_browser(true);
8b9e74eb
ACM
449 else
450 use_browser = 0;
ef7b93a1
ACM
451 /*
452 * Only in the newt browser we are doing integrated annotation,
453 * so don't allocate extra space that won't be used in the stdio
454 * implementation.
455 */
80d50cae 456 if (use_browser > 0) {
78f7defe 457 symbol_conf.priv_size = sizeof(struct annotation);
0849327d 458 annotate_init = symbol__annotate_init;
80d50cae
ACM
459 /*
460 * For searching by name on the "Browse map details".
461 * providing it only in verbose mode not to bloat too
462 * much struct symbol.
463 */
464 if (verbose) {
465 /*
466 * XXX: Need to provide a less kludgy way to ask for
467 * more space per symbol, the u32 is for the index on
468 * the ui browser.
469 * See symbol__browser_index.
470 */
471 symbol_conf.priv_size += sizeof(u32);
472 symbol_conf.sort_by_name = true;
473 }
474 }
655000e7 475
75be6cf4 476 if (symbol__init() < 0)
b32d133a 477 return -1;
53cb8bc2 478
c8829c7a 479 setup_sorting(report_usage, options);
1aa16738 480
021191b3 481 if (parent_pattern != default_parent_pattern) {
2aefa4f7
ACM
482 if (sort_dimension__add("parent") < 0)
483 return -1;
021191b3
ACM
484 sort_parent.elide = 1;
485 } else
d599db3f 486 symbol_conf.exclude_other = false;
b8e6d829 487
edc52dea
IM
488 /*
489 * Any (unrecognized) arguments left?
490 */
491 if (argc)
492 usage_with_options(report_usage, options);
493
655000e7
ACM
494 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
495 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
496 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
25903407 497
53cb8bc2
IM
498 return __cmd_report();
499}