perf tools: Move hist entries printing routines from perf report
[linux-2.6-block.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"
a0055ae2 17#include "util/string.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"
7c6a1c65 24#include "util/header.h"
94c744b6 25#include "util/session.h"
53cb8bc2
IM
26
27#include "util/parse-options.h"
28#include "util/parse-events.h"
29
6baa0a5a 30#include "util/thread.h"
dd68ada2 31#include "util/sort.h"
3d1d07ec 32#include "util/hist.h"
6baa0a5a 33
23ac9cbe 34static char const *input_name = "perf.data";
bd74137e 35
fa6963b2 36static int force;
97b07b69 37
8d513270
BG
38static int show_threads;
39static struct perf_read_values show_threads_values;
40
9f866697
BG
41static char default_pretty_printing_style[] = "normal";
42static char *pretty_printing_style = default_pretty_printing_style;
43
805d127d
FW
44static char callchain_default_opt[] = "fractal,0.5";
45
4e4f06e4
ACM
46static int perf_session__add_hist_entry(struct perf_session *self,
47 struct addr_location *al,
48 struct ip_callchain *chain, u64 count)
8fa66bdc 49{
9735abf1
ACM
50 struct symbol **syms = NULL, *parent = NULL;
51 bool hit;
e7fb08b1 52 struct hist_entry *he;
e7fb08b1 53
d599db3f 54 if ((sort__has_parent || symbol_conf.use_callchain) && chain)
a328626b
ACM
55 syms = perf_session__resolve_callchain(self, al->thread,
56 chain, &parent);
4e4f06e4 57 he = __perf_session__add_hist_entry(self, al, parent, count, &hit);
9735abf1
ACM
58 if (he == NULL)
59 return -ENOMEM;
e7fb08b1 60
9735abf1
ACM
61 if (hit)
62 he->count += count;
e7fb08b1 63
d599db3f 64 if (symbol_conf.use_callchain) {
9735abf1
ACM
65 if (!hit)
66 callchain_init(&he->callchain);
4424961a
FW
67 append_chain(&he->callchain, chain, syms);
68 free(syms);
f55c5552 69 }
e7fb08b1
PZ
70
71 return 0;
8fa66bdc
ACM
72}
73
2a0a50fe 74static int validate_chain(struct ip_callchain *chain, event_t *event)
7522060c
IM
75{
76 unsigned int chain_size;
77
7522060c
IM
78 chain_size = event->header.size;
79 chain_size -= (unsigned long)&event->ip.__more_data - (unsigned long)event;
80
9cffa8d5 81 if (chain->nr*sizeof(u64) > chain_size)
7522060c
IM
82 return -1;
83
84 return 0;
85}
86
b3165f41 87static int process_sample_event(event_t *event, struct perf_session *session)
75051724 88{
c410a338 89 struct sample_data data = { .period = 1, };
1ed091c4 90 struct addr_location al;
180f95e2 91
c019879b 92 event__parse_sample(event, session->sample_type, &data);
ea1900e5 93
62daacb5 94 dump_printf("(IP, %d): %d/%d: %p period: %Ld\n",
75051724 95 event->header.misc,
180f95e2
OH
96 data.pid, data.tid,
97 (void *)(long)data.ip,
98 (long long)data.period);
75051724 99
c019879b 100 if (session->sample_type & PERF_SAMPLE_CALLCHAIN) {
f37a291c 101 unsigned int i;
3efa1cc9 102
180f95e2 103 dump_printf("... chain: nr:%Lu\n", data.callchain->nr);
3efa1cc9 104
180f95e2 105 if (validate_chain(data.callchain, event) < 0) {
6beba7ad
ACM
106 pr_debug("call-chain problem with event, "
107 "skipping it.\n");
7522060c
IM
108 return 0;
109 }
110
111 if (dump_trace) {
180f95e2
OH
112 for (i = 0; i < data.callchain->nr; i++)
113 dump_printf("..... %2d: %016Lx\n",
114 i, data.callchain->ips[i]);
3efa1cc9
IM
115 }
116 }
117
c410a338
ACM
118 if (event__preprocess_sample(event, session, &al, NULL) < 0) {
119 fprintf(stderr, "problem processing %d event, skipping it.\n",
75051724
IM
120 event->header.type);
121 return -1;
122 }
e7fb08b1 123
c410a338 124 if (al.filtered)
ec218fc4 125 return 0;
7bec7a91 126
4e4f06e4 127 if (perf_session__add_hist_entry(session, &al, data.callchain, data.period)) {
6beba7ad 128 pr_debug("problem incrementing symbol count, skipping event\n");
ec218fc4 129 return -1;
8fa66bdc 130 }
ec218fc4 131
f823e441 132 session->events_stats.total += data.period;
75051724
IM
133 return 0;
134}
3502973d 135
d8f66248 136static int process_read_event(event_t *event, struct perf_session *session __used)
e9ea2fde 137{
cdd6c482 138 struct perf_event_attr *attr;
0d3a5c88 139
94c744b6 140 attr = perf_header__find_attr(event->read.id, &session->header);
8f18aec5 141
8d513270 142 if (show_threads) {
83a0944f 143 const char *name = attr ? __event_name(attr->type, attr->config)
8d513270
BG
144 : "unknown";
145 perf_read_values_add_value(&show_threads_values,
146 event->read.pid, event->read.tid,
147 event->read.id,
148 name,
149 event->read.value);
150 }
151
62daacb5
ACM
152 dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
153 attr ? __event_name(attr->type, attr->config) : "FAIL",
154 event->read.value);
e9ea2fde
PZ
155
156 return 0;
157}
158
c019879b 159static int sample_type_check(struct perf_session *session)
d80d338d 160{
c019879b 161 if (!(session->sample_type & PERF_SAMPLE_CALLCHAIN)) {
91b4eaea
FW
162 if (sort__has_parent) {
163 fprintf(stderr, "selected --sort parent, but no"
164 " callchain data. Did you call"
165 " perf record without -g?\n");
016e92fb 166 return -1;
91b4eaea 167 }
d599db3f 168 if (symbol_conf.use_callchain) {
6ede59c4 169 fprintf(stderr, "selected -g but no callchain data."
91b4eaea
FW
170 " Did you call perf record without"
171 " -g?\n");
016e92fb 172 return -1;
91b4eaea 173 }
d599db3f
ACM
174 } else if (callchain_param.mode != CHAIN_NONE && !symbol_conf.use_callchain) {
175 symbol_conf.use_callchain = true;
b1a88349
FW
176 if (register_callchain_param(&callchain_param) < 0) {
177 fprintf(stderr, "Can't register callchain"
178 " params\n");
016e92fb 179 return -1;
b1a88349 180 }
f5970550
PZ
181 }
182
016e92fb
FW
183 return 0;
184}
6142f9ec 185
301a0b02 186static struct perf_event_ops event_ops = {
016e92fb 187 .process_sample_event = process_sample_event,
62daacb5 188 .process_mmap_event = event__process_mmap,
d599db3f 189 .process_comm_event = event__process_mmap,
62daacb5
ACM
190 .process_exit_event = event__process_task,
191 .process_fork_event = event__process_task,
192 .process_lost_event = event__process_lost,
016e92fb
FW
193 .process_read_event = process_read_event,
194 .sample_type_check = sample_type_check,
195};
6142f9ec 196
6142f9ec 197
016e92fb
FW
198static int __cmd_report(void)
199{
016e92fb 200 int ret;
d8f66248 201 struct perf_session *session;
8fa66bdc 202
75be6cf4 203 session = perf_session__new(input_name, O_RDONLY, force);
94c744b6
ACM
204 if (session == NULL)
205 return -ENOMEM;
206
016e92fb
FW
207 if (show_threads)
208 perf_read_values_init(&show_threads_values);
f5970550 209
ec913369 210 ret = perf_session__process_events(session, &event_ops);
016e92fb 211 if (ret)
94c744b6 212 goto out_delete;
97b07b69 213
62daacb5
ACM
214 if (dump_trace) {
215 event__print_totals();
94c744b6 216 goto out_delete;
62daacb5 217 }
97b07b69 218
da21d1b5 219 if (verbose > 3)
b3165f41 220 perf_session__fprintf(session, stdout);
9ac99545 221
da21d1b5 222 if (verbose > 2)
16f762a2 223 dsos__fprintf(stdout);
16f762a2 224
4e4f06e4 225 perf_session__collapse_resort(session);
f823e441 226 perf_session__output_resort(session, session->events_stats.total);
d599db3f
ACM
227 perf_session__fprintf_hists(session, stdout);
228 if (show_threads) {
229 bool raw_printing_style = !strcmp(pretty_printing_style, "raw");
230 perf_read_values_display(stdout, &show_threads_values,
231 raw_printing_style);
8d513270 232 perf_read_values_destroy(&show_threads_values);
d599db3f 233 }
94c744b6
ACM
234out_delete:
235 perf_session__delete(session);
016e92fb 236 return ret;
8fa66bdc
ACM
237}
238
4eb3e478
FW
239static int
240parse_callchain_opt(const struct option *opt __used, const char *arg,
241 int unset __used)
242{
c20ab37e
FW
243 char *tok;
244 char *endptr;
245
d599db3f 246 symbol_conf.use_callchain = true;
4eb3e478
FW
247
248 if (!arg)
249 return 0;
250
c20ab37e
FW
251 tok = strtok((char *)arg, ",");
252 if (!tok)
253 return -1;
254
255 /* get the output mode */
256 if (!strncmp(tok, "graph", strlen(arg)))
805d127d 257 callchain_param.mode = CHAIN_GRAPH_ABS;
4eb3e478 258
c20ab37e 259 else if (!strncmp(tok, "flat", strlen(arg)))
805d127d
FW
260 callchain_param.mode = CHAIN_FLAT;
261
262 else if (!strncmp(tok, "fractal", strlen(arg)))
263 callchain_param.mode = CHAIN_GRAPH_REL;
264
b1a88349
FW
265 else if (!strncmp(tok, "none", strlen(arg))) {
266 callchain_param.mode = CHAIN_NONE;
d599db3f 267 symbol_conf.use_callchain = true;
b1a88349
FW
268
269 return 0;
270 }
271
4eb3e478
FW
272 else
273 return -1;
274
c20ab37e
FW
275 /* get the min percentage */
276 tok = strtok(NULL, ",");
277 if (!tok)
805d127d 278 goto setup;
c20ab37e 279
805d127d 280 callchain_param.min_percent = strtod(tok, &endptr);
c20ab37e
FW
281 if (tok == endptr)
282 return -1;
283
805d127d
FW
284setup:
285 if (register_callchain_param(&callchain_param) < 0) {
286 fprintf(stderr, "Can't register callchain params\n");
287 return -1;
288 }
4eb3e478
FW
289 return 0;
290}
291
dd68ada2
JK
292//static const char * const report_usage[] = {
293const char * const report_usage[] = {
53cb8bc2
IM
294 "perf report [<options>] <command>",
295 NULL
296};
297
298static const struct option options[] = {
299 OPT_STRING('i', "input", &input_name, "file",
300 "input file name"),
815e777f
ACM
301 OPT_BOOLEAN('v', "verbose", &verbose,
302 "be more verbose (show symbol address, etc)"),
97b07b69
IM
303 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
304 "dump raw trace in ASCII"),
b32d133a
ACM
305 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
306 "file", "vmlinux pathname"),
fa6963b2 307 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
b32d133a 308 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 309 "load module symbols - WARNING: use only with -k and LIVE kernel"),
d599db3f 310 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
e3d7e183 311 "Show a column with the number of samples"),
8d513270
BG
312 OPT_BOOLEAN('T', "threads", &show_threads,
313 "Show per-thread event counters"),
9f866697
BG
314 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
315 "pretty printing style key: normal raw"),
63299f05 316 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b25bcf2f 317 "sort by key(s): pid, comm, dso, symbol, parent"),
ec913369 318 OPT_BOOLEAN('P', "full-paths", &event_ops.full_paths,
b78c07d4 319 "Don't shorten the pathnames taking into account the cwd"),
b25bcf2f
IM
320 OPT_STRING('p', "parent", &parent_pattern, "regex",
321 "regex filter to identify parent, see: '--sort parent'"),
d599db3f 322 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
b8e6d829 323 "Only display entries with parent-match"),
1483b19f 324 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
c20ab37e 325 "Display callchains using output_type and min percent threshold. "
1483b19f 326 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
655000e7 327 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
25903407 328 "only consider symbols in these dsos"),
655000e7 329 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
cc8b88b1 330 "only consider symbols in these comms"),
655000e7 331 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
7bec7a91 332 "only consider these symbols"),
655000e7 333 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
52d422de
ACM
334 "width[,width...]",
335 "don't try to adjust column width, use these fixed values"),
c410a338 336 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
52d422de
ACM
337 "separator for columns, no spaces will be added between "
338 "columns '.' is reserved."),
53cb8bc2
IM
339 OPT_END()
340};
341
655000e7
ACM
342static void sort_entry__setup_elide(struct sort_entry *self,
343 struct strlist *list,
344 const char *list_name, FILE *fp)
cc8b88b1 345{
655000e7
ACM
346 if (list && strlist__nr_entries(list) == 1) {
347 fprintf(fp, "# %s: %s\n", list_name, strlist__entry(list, 0)->s);
348 self->elide = true;
cc8b88b1
ACM
349 }
350}
351
f37a291c 352int cmd_report(int argc, const char **argv, const char *prefix __used)
53cb8bc2 353{
655000e7
ACM
354 argc = parse_options(argc, argv, options, report_usage, 0);
355
356 setup_pager();
357
75be6cf4 358 if (symbol__init() < 0)
b32d133a 359 return -1;
53cb8bc2 360
c8829c7a 361 setup_sorting(report_usage, options);
1aa16738 362
021191b3 363 if (parent_pattern != default_parent_pattern) {
b8e6d829 364 sort_dimension__add("parent");
021191b3
ACM
365 sort_parent.elide = 1;
366 } else
d599db3f 367 symbol_conf.exclude_other = false;
b8e6d829 368
edc52dea
IM
369 /*
370 * Any (unrecognized) arguments left?
371 */
372 if (argc)
373 usage_with_options(report_usage, options);
374
655000e7
ACM
375 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
376 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
377 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
25903407 378
53cb8bc2
IM
379 return __cmd_report();
380}