blob: 642a6d8eb5dca87cceab4f35a3ad32c073df2496 [file] [log] [blame]
Ingo Molnarbf9e1872009-06-02 23:37:05 +02001/*
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 */
Ingo Molnar16f762a2009-05-27 09:10:38 +02008#include "builtin.h"
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02009
Ingo Molnarbf9e1872009-06-02 23:37:05 +020010#include "util/util.h"
11
Ingo Molnar8fc03212009-06-04 15:19:47 +020012#include "util/color.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -030013#include <linux/list.h>
Ingo Molnara930d2c2009-05-27 09:50:13 +020014#include "util/cache.h"
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030015#include <linux/rbtree.h>
Arnaldo Carvalho de Meloa2928c42009-05-28 14:55:04 -030016#include "util/symbol.h"
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +020017#include "util/callchain.h"
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -030018#include "util/strlist.h"
Brice Goglin8d513272009-08-07 13:55:24 +020019#include "util/values.h"
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030020
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020021#include "perf.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020022#include "util/debug.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020023#include "util/header.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020024#include "util/session.h"
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020025
26#include "util/parse-options.h"
27#include "util/parse-events.h"
28
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020029#include "util/thread.h"
John Kacurdd68ada2009-09-24 18:02:49 +020030#include "util/sort.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020031#include "util/hist.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020032
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020033static char const *input_name = "perf.data";
Ingo Molnarbd741372009-06-04 14:13:04 +020034
Ian Munsiec0555642010-04-13 18:37:33 +100035static bool force;
Arnaldo Carvalho de Melo71289be2009-12-28 22:48:34 -020036static bool hide_unresolved;
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -020037static bool dont_use_callchains;
Ingo Molnar97b07b62009-05-26 18:48:58 +020038
Ian Munsiec0555642010-04-13 18:37:33 +100039static bool show_threads;
Brice Goglin8d513272009-08-07 13:55:24 +020040static struct perf_read_values show_threads_values;
41
Brice Goglin9f866692009-08-10 15:26:32 +020042static char default_pretty_printing_style[] = "normal";
43static char *pretty_printing_style = default_pretty_printing_style;
44
Frederic Weisbecker805d1272009-07-05 07:39:21 +020045static char callchain_default_opt[] = "fractal,0.5";
46
Eric B Munsoncbbc79a2010-03-05 12:51:09 -030047static struct event_stat_id *get_stats(struct perf_session *self,
48 u64 event_stream, u32 type, u64 config)
49{
50 struct rb_node **p = &self->stats_by_id.rb_node;
51 struct rb_node *parent = NULL;
52 struct event_stat_id *iter, *new;
53
54 while (*p != NULL) {
55 parent = *p;
56 iter = rb_entry(parent, struct event_stat_id, rb_node);
57 if (iter->config == config)
58 return iter;
59
60
61 if (config > iter->config)
62 p = &(*p)->rb_right;
63 else
64 p = &(*p)->rb_left;
65 }
66
67 new = malloc(sizeof(struct event_stat_id));
68 if (new == NULL)
69 return NULL;
70 memset(new, 0, sizeof(struct event_stat_id));
71 new->event_stream = event_stream;
72 new->config = config;
73 new->type = type;
74 rb_link_node(&new->rb_node, parent, p);
75 rb_insert_color(&new->rb_node, &self->stats_by_id);
76 return new;
77}
78
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020079static int perf_session__add_hist_entry(struct perf_session *self,
80 struct addr_location *al,
Eric B Munsoncbbc79a2010-03-05 12:51:09 -030081 struct sample_data *data)
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -030082{
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -030083 struct map_symbol *syms = NULL;
84 struct symbol *parent = NULL;
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -030085 int err = -ENOMEM;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +020086 struct hist_entry *he;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -030087 struct event_stat_id *stats;
88 struct perf_event_attr *attr;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -030089
Arnaldo Carvalho de Meload5b2172010-04-02 10:04:18 -030090 if ((sort__has_parent || symbol_conf.use_callchain) && data->callchain) {
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -020091 syms = perf_session__resolve_callchain(self, al->thread,
Eric B Munsoncbbc79a2010-03-05 12:51:09 -030092 data->callchain, &parent);
Arnaldo Carvalho de Meload5b2172010-04-02 10:04:18 -030093 if (syms == NULL)
94 return -ENOMEM;
95 }
Eric B Munsoncbbc79a2010-03-05 12:51:09 -030096
97 attr = perf_header__find_attr(data->id, &self->header);
98 if (attr)
99 stats = get_stats(self, data->id, attr->type, attr->config);
100 else
101 stats = get_stats(self, data->id, 0, 0);
102 if (stats == NULL)
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -0300103 goto out_free_syms;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300104 he = __perf_session__add_hist_entry(&stats->hists, al, parent,
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300105 data->period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300106 if (he == NULL)
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -0300107 goto out_free_syms;
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -0300108 err = 0;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300109 if (symbol_conf.use_callchain)
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -0300110 err = append_chain(he->callchain, data->callchain, syms);
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -0300111out_free_syms:
112 free(syms);
113 return err;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300114}
115
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300116static int add_event_total(struct perf_session *session,
117 struct sample_data *data,
118 struct perf_event_attr *attr)
119{
120 struct event_stat_id *stats;
121
122 if (attr)
123 stats = get_stats(session, data->id, attr->type, attr->config);
124 else
125 stats = get_stats(session, data->id, 0, 0);
126
127 if (!stats)
128 return -ENOMEM;
129
130 stats->stats.total += data->period;
131 session->events_stats.total += data->period;
132 return 0;
133}
134
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200135static int process_sample_event(event_t *event, struct perf_session *session)
Ingo Molnar75051722009-06-03 23:14:49 +0200136{
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200137 struct sample_data data = { .period = 1, };
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200138 struct addr_location al;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300139 struct perf_event_attr *attr;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900140
Arnaldo Carvalho de Meloc0198792009-12-14 14:23:00 -0200141 event__parse_sample(event, session->sample_type, &data);
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200142
Arnaldo Carvalho de Melo0d755032010-01-14 12:23:09 -0200143 dump_printf("(IP, %d): %d/%d: %#Lx period: %Ld\n", event->header.misc,
144 data.pid, data.tid, data.ip, data.period);
Ingo Molnar75051722009-06-03 23:14:49 +0200145
Arnaldo Carvalho de Meloc0198792009-12-14 14:23:00 -0200146 if (session->sample_type & PERF_SAMPLE_CALLCHAIN) {
Ingo Molnarf37a2912009-07-01 12:37:06 +0200147 unsigned int i;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200148
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900149 dump_printf("... chain: nr:%Lu\n", data.callchain->nr);
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200150
Arnaldo Carvalho de Melo139633c2010-05-09 11:47:13 -0300151 if (!ip_callchain__valid(data.callchain, event)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200152 pr_debug("call-chain problem with event, "
153 "skipping it.\n");
Ingo Molnar75220602009-06-18 08:00:17 +0200154 return 0;
155 }
156
157 if (dump_trace) {
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900158 for (i = 0; i < data.callchain->nr; i++)
159 dump_printf("..... %2d: %016Lx\n",
160 i, data.callchain->ips[i]);
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200161 }
162 }
163
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200164 if (event__preprocess_sample(event, session, &al, NULL) < 0) {
165 fprintf(stderr, "problem processing %d event, skipping it.\n",
Ingo Molnar75051722009-06-03 23:14:49 +0200166 event->header.type);
167 return -1;
168 }
169
Arnaldo Carvalho de Melo71289be2009-12-28 22:48:34 -0200170 if (al.filtered || (hide_unresolved && al.sym == NULL))
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300171 return 0;
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -0300172
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300173 if (perf_session__add_hist_entry(session, &al, &data)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200174 pr_debug("problem incrementing symbol count, skipping event\n");
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300175 return -1;
Ingo Molnar75051722009-06-03 23:14:49 +0200176 }
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300177
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300178 attr = perf_header__find_attr(data.id, &session->header);
179
180 if (add_event_total(session, &data, attr)) {
181 pr_debug("problem adding event count\n");
182 return -1;
183 }
184
Ingo Molnar75051722009-06-03 23:14:49 +0200185 return 0;
186}
187
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200188static int process_read_event(event_t *event, struct perf_session *session __used)
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200189{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200190 struct perf_event_attr *attr;
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +0200191
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200192 attr = perf_header__find_attr(event->read.id, &session->header);
Peter Zijlstra8f18aec2009-08-06 19:40:28 +0200193
Brice Goglin8d513272009-08-07 13:55:24 +0200194 if (show_threads) {
Ingo Molnar83a09442009-08-15 12:26:57 +0200195 const char *name = attr ? __event_name(attr->type, attr->config)
Brice Goglin8d513272009-08-07 13:55:24 +0200196 : "unknown";
197 perf_read_values_add_value(&show_threads_values,
198 event->read.pid, event->read.tid,
199 event->read.id,
200 name,
201 event->read.value);
202 }
203
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200204 dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
205 attr ? __event_name(attr->type, attr->config) : "FAIL",
206 event->read.value);
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200207
208 return 0;
209}
210
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200211static int perf_session__setup_sample_type(struct perf_session *self)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300212{
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200213 if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200214 if (sort__has_parent) {
215 fprintf(stderr, "selected --sort parent, but no"
216 " callchain data. Did you call"
217 " perf record without -g?\n");
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200218 return -EINVAL;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200219 }
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200220 if (symbol_conf.use_callchain) {
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200221 fprintf(stderr, "selected -g but no callchain data."
222 " Did you call perf record without"
223 " -g?\n");
224 return -1;
225 }
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200226 } else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
227 !symbol_conf.use_callchain) {
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200228 symbol_conf.use_callchain = true;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200229 if (register_callchain_param(&callchain_param) < 0) {
230 fprintf(stderr, "Can't register callchain"
231 " params\n");
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200232 return -EINVAL;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200233 }
Ingo Molnard80d3382009-06-03 23:14:49 +0200234 }
235
236 return 0;
237}
238
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -0200239static struct perf_event_ops event_ops = {
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200240 .sample = process_sample_event,
241 .mmap = event__process_mmap,
242 .comm = event__process_comm,
243 .exit = event__process_task,
244 .fork = event__process_task,
245 .lost = event__process_lost,
246 .read = process_read_event,
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500247 .attr = event__process_attr,
Tom Zanussicd19a032010-04-01 23:59:20 -0500248 .event_type = event__process_event_type,
Tom Zanussi92155452010-04-01 23:59:21 -0500249 .tracing_data = event__process_tracing_data,
Tom Zanussic7929e42010-04-01 23:59:22 -0500250 .build_id = event__process_build_id,
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200251};
252
Tom Zanussi46656ac2010-04-01 23:59:17 -0500253extern volatile int session_done;
254
255static void sig_handler(int sig __attribute__((__unused__)))
256{
257 session_done = 1;
258}
259
Ingo Molnard80d3382009-06-03 23:14:49 +0200260static int __cmd_report(void)
261{
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200262 int ret = -EINVAL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200263 struct perf_session *session;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300264 struct rb_node *next;
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300265 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
Ingo Molnard80d3382009-06-03 23:14:49 +0200266
Tom Zanussi46656ac2010-04-01 23:59:17 -0500267 signal(SIGINT, sig_handler);
268
Tom Zanussi454c4072010-05-01 01:41:20 -0500269 session = perf_session__new(input_name, O_RDONLY, force, false);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200270 if (session == NULL)
271 return -ENOMEM;
272
Brice Goglin8d513272009-08-07 13:55:24 +0200273 if (show_threads)
274 perf_read_values_init(&show_threads_values);
275
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200276 ret = perf_session__setup_sample_type(session);
277 if (ret)
278 goto out_delete;
279
Arnaldo Carvalho de Meloec913362009-12-13 19:50:27 -0200280 ret = perf_session__process_events(session, &event_ops);
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200281 if (ret)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200282 goto out_delete;
Ingo Molnar97b07b62009-05-26 18:48:58 +0200283
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200284 if (dump_trace) {
285 event__print_totals();
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200286 goto out_delete;
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200287 }
Ingo Molnar97b07b62009-05-26 18:48:58 +0200288
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300289 if (verbose > 3)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200290 perf_session__fprintf(session, stdout);
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -0300291
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300292 if (verbose > 2)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300293 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar16f762a2009-05-27 09:10:38 +0200294
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300295 next = rb_first(&session->stats_by_id);
296 while (next) {
297 struct event_stat_id *stats;
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300298 u64 nr_hists;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300299
300 stats = rb_entry(next, struct event_stat_id, rb_node);
301 perf_session__collapse_resort(&stats->hists);
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300302 nr_hists = perf_session__output_resort(&stats->hists,
303 stats->stats.total);
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300304 if (use_browser)
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300305 perf_session__browse_hists(&stats->hists, nr_hists,
Arnaldo Carvalho de Melo533c46c2010-04-03 11:54:35 -0300306 stats->stats.total, help,
307 input_name);
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300308 else {
309 if (rb_first(&session->stats_by_id) ==
310 rb_last(&session->stats_by_id))
311 fprintf(stdout, "# Samples: %Ld\n#\n",
312 stats->stats.total);
313 else
314 fprintf(stdout, "# Samples: %Ld %s\n#\n",
315 stats->stats.total,
316 __event_name(stats->type, stats->config));
317
318 perf_session__fprintf_hists(&stats->hists, NULL, false, stdout,
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300319 stats->stats.total);
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300320 fprintf(stdout, "\n\n");
321 }
322
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300323 next = rb_next(&stats->rb_node);
324 }
325
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300326 if (!use_browser && sort_order == default_sort_order &&
327 parent_pattern == default_parent_pattern) {
328 fprintf(stdout, "#\n# (%s)\n#\n", help);
Arnaldo Carvalho de Melo3e6055a2009-12-16 12:27:10 -0200329
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300330 if (show_threads) {
331 bool style = !strcmp(pretty_printing_style, "raw");
332 perf_read_values_display(stdout, &show_threads_values,
333 style);
334 perf_read_values_destroy(&show_threads_values);
335 }
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200336 }
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200337out_delete:
338 perf_session__delete(session);
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200339 return ret;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300340}
341
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200342static int
343parse_callchain_opt(const struct option *opt __used, const char *arg,
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200344 int unset)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200345{
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300346 char *tok, *tok2;
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200347 char *endptr;
348
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200349 /*
350 * --no-call-graph
351 */
352 if (unset) {
353 dont_use_callchains = true;
354 return 0;
355 }
356
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200357 symbol_conf.use_callchain = true;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200358
359 if (!arg)
360 return 0;
361
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200362 tok = strtok((char *)arg, ",");
363 if (!tok)
364 return -1;
365
366 /* get the output mode */
367 if (!strncmp(tok, "graph", strlen(arg)))
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200368 callchain_param.mode = CHAIN_GRAPH_ABS;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200369
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200370 else if (!strncmp(tok, "flat", strlen(arg)))
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200371 callchain_param.mode = CHAIN_FLAT;
372
373 else if (!strncmp(tok, "fractal", strlen(arg)))
374 callchain_param.mode = CHAIN_GRAPH_REL;
375
Frederic Weisbeckerb1a88342009-08-08 02:16:24 +0200376 else if (!strncmp(tok, "none", strlen(arg))) {
377 callchain_param.mode = CHAIN_NONE;
Yong Wangb7ae11b2010-01-22 09:47:50 +0800378 symbol_conf.use_callchain = false;
Frederic Weisbeckerb1a88342009-08-08 02:16:24 +0200379
380 return 0;
381 }
382
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200383 else
384 return -1;
385
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200386 /* get the min percentage */
387 tok = strtok(NULL, ",");
388 if (!tok)
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200389 goto setup;
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200390
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300391 tok2 = strtok(NULL, ",");
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200392 callchain_param.min_percent = strtod(tok, &endptr);
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200393 if (tok == endptr)
394 return -1;
395
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300396 if (tok2)
397 callchain_param.print_limit = strtod(tok2, &endptr);
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200398setup:
399 if (register_callchain_param(&callchain_param) < 0) {
400 fprintf(stderr, "Can't register callchain params\n");
401 return -1;
402 }
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200403 return 0;
404}
405
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -0200406static const char * const report_usage[] = {
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200407 "perf report [<options>] <command>",
408 NULL
409};
410
411static const struct option options[] = {
412 OPT_STRING('i', "input", &input_name, "file",
413 "input file name"),
Ian Munsiec0555642010-04-13 18:37:33 +1000414 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Melo815e7772009-05-26 19:46:14 -0300415 "be more verbose (show symbol address, etc)"),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200416 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
417 "dump raw trace in ASCII"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200418 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
419 "file", "vmlinux pathname"),
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200420 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200421 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200422 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200423 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
Arnaldo Carvalho de Meloe3d7e182009-07-11 12:18:37 -0300424 "Show a column with the number of samples"),
Brice Goglin8d513272009-08-07 13:55:24 +0200425 OPT_BOOLEAN('T', "threads", &show_threads,
426 "Show per-thread event counters"),
Brice Goglin9f866692009-08-10 15:26:32 +0200427 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
428 "pretty printing style key: normal raw"),
Ingo Molnar63299f02009-05-28 10:52:00 +0200429 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200430 "sort by key(s): pid, comm, dso, symbol, parent"),
Arnaldo Carvalho de Melof7d87442009-12-27 21:37:04 -0200431 OPT_BOOLEAN('P', "full-paths", &symbol_conf.full_paths,
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -0300432 "Don't shorten the pathnames taking into account the cwd"),
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800433 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
434 "Show sample percentage for different cpu modes"),
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200435 OPT_STRING('p', "parent", &parent_pattern, "regex",
436 "regex filter to identify parent, see: '--sort parent'"),
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200437 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
Ingo Molnarb8e6d822009-06-18 14:32:19 +0200438 "Only display entries with parent-match"),
Anton Blanchard1483b192009-07-16 15:44:29 +0200439 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
Pekka Enberge157eb82010-05-08 18:33:03 +0300440 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
Anton Blanchard1483b192009-07-16 15:44:29 +0200441 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200442 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -0300443 "only consider symbols in these dsos"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200444 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -0300445 "only consider symbols in these comms"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200446 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -0300447 "only consider these symbols"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200448 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300449 "width[,width...]",
450 "don't try to adjust column width, use these fixed values"),
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200451 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300452 "separator for columns, no spaces will be added between "
453 "columns '.' is reserved."),
Arnaldo Carvalho de Melo71289be2009-12-28 22:48:34 -0200454 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
455 "Only display entries resolved to a symbol"),
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200456 OPT_END()
457};
458
Ingo Molnarf37a2912009-07-01 12:37:06 +0200459int cmd_report(int argc, const char **argv, const char *prefix __used)
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200460{
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200461 argc = parse_options(argc, argv, options, report_usage, 0);
462
Tom Zanussi46656ac2010-04-01 23:59:17 -0500463 if (strcmp(input_name, "-") != 0)
464 setup_browser();
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200465
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200466 if (symbol__init() < 0)
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200467 return -1;
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200468
Arnaldo Carvalho de Meloc8829c72009-12-14 20:09:29 -0200469 setup_sorting(report_usage, options);
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200470
Arnaldo Carvalho de Melo021191b2009-07-11 12:18:35 -0300471 if (parent_pattern != default_parent_pattern) {
Arnaldo Carvalho de Melo2aefa4f2010-04-02 12:30:57 -0300472 if (sort_dimension__add("parent") < 0)
473 return -1;
Arnaldo Carvalho de Melo021191b2009-07-11 12:18:35 -0300474 sort_parent.elide = 1;
475 } else
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200476 symbol_conf.exclude_other = false;
Ingo Molnarb8e6d822009-06-18 14:32:19 +0200477
Ingo Molnaredc52de2009-06-04 16:24:37 +0200478 /*
479 * Any (unrecognized) arguments left?
480 */
481 if (argc)
482 usage_with_options(report_usage, options);
483
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200484 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
485 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
486 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -0300487
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200488 return __cmd_report();
489}