blob: 3a70c5807c049d5083df0ffdbb7040faac2e8747 [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 Melo9735abf2009-10-03 10:42:45 -030085 bool hit;
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -030086 int err = -ENOMEM;
Peter Zijlstrae7fb08b2009-05-27 20:20:24 +020087 struct hist_entry *he;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -030088 struct event_stat_id *stats;
89 struct perf_event_attr *attr;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -030090
Arnaldo Carvalho de Meload5b2172010-04-02 10:04:18 -030091 if ((sort__has_parent || symbol_conf.use_callchain) && data->callchain) {
Arnaldo Carvalho de Meloa3286262009-12-14 14:22:59 -020092 syms = perf_session__resolve_callchain(self, al->thread,
Eric B Munsoncbbc79a2010-03-05 12:51:09 -030093 data->callchain, &parent);
Arnaldo Carvalho de Meload5b2172010-04-02 10:04:18 -030094 if (syms == NULL)
95 return -ENOMEM;
96 }
Eric B Munsoncbbc79a2010-03-05 12:51:09 -030097
98 attr = perf_header__find_attr(data->id, &self->header);
99 if (attr)
100 stats = get_stats(self, data->id, attr->type, attr->config);
101 else
102 stats = get_stats(self, data->id, 0, 0);
103 if (stats == NULL)
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -0300104 goto out_free_syms;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300105 he = __perf_session__add_hist_entry(&stats->hists, al, parent,
106 data->period, &hit);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300107 if (he == NULL)
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -0300108 goto out_free_syms;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300109
110 if (hit)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800111 __perf_session__add_count(he, al, data->period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300112
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -0300113 err = 0;
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200114 if (symbol_conf.use_callchain) {
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300115 if (!hit)
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -0300116 callchain_init(he->callchain);
117 err = append_chain(he->callchain, data->callchain, syms);
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +0200118 }
Arnaldo Carvalho de Melo39d1e1b2010-05-09 12:01:05 -0300119out_free_syms:
120 free(syms);
121 return err;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300122}
123
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300124static int add_event_total(struct perf_session *session,
125 struct sample_data *data,
126 struct perf_event_attr *attr)
127{
128 struct event_stat_id *stats;
129
130 if (attr)
131 stats = get_stats(session, data->id, attr->type, attr->config);
132 else
133 stats = get_stats(session, data->id, 0, 0);
134
135 if (!stats)
136 return -ENOMEM;
137
138 stats->stats.total += data->period;
139 session->events_stats.total += data->period;
140 return 0;
141}
142
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200143static int process_sample_event(event_t *event, struct perf_session *session)
Ingo Molnar75051722009-06-03 23:14:49 +0200144{
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200145 struct sample_data data = { .period = 1, };
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200146 struct addr_location al;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300147 struct perf_event_attr *attr;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900148
Arnaldo Carvalho de Meloc0198792009-12-14 14:23:00 -0200149 event__parse_sample(event, session->sample_type, &data);
Peter Zijlstraea1900e2009-06-10 21:45:22 +0200150
Arnaldo Carvalho de Melo0d755032010-01-14 12:23:09 -0200151 dump_printf("(IP, %d): %d/%d: %#Lx period: %Ld\n", event->header.misc,
152 data.pid, data.tid, data.ip, data.period);
Ingo Molnar75051722009-06-03 23:14:49 +0200153
Arnaldo Carvalho de Meloc0198792009-12-14 14:23:00 -0200154 if (session->sample_type & PERF_SAMPLE_CALLCHAIN) {
Ingo Molnarf37a2912009-07-01 12:37:06 +0200155 unsigned int i;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200156
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900157 dump_printf("... chain: nr:%Lu\n", data.callchain->nr);
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200158
Arnaldo Carvalho de Melo139633c2010-05-09 11:47:13 -0300159 if (!ip_callchain__valid(data.callchain, event)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200160 pr_debug("call-chain problem with event, "
161 "skipping it.\n");
Ingo Molnar75220602009-06-18 08:00:17 +0200162 return 0;
163 }
164
165 if (dump_trace) {
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900166 for (i = 0; i < data.callchain->nr; i++)
167 dump_printf("..... %2d: %016Lx\n",
168 i, data.callchain->ips[i]);
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200169 }
170 }
171
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200172 if (event__preprocess_sample(event, session, &al, NULL) < 0) {
173 fprintf(stderr, "problem processing %d event, skipping it.\n",
Ingo Molnar75051722009-06-03 23:14:49 +0200174 event->header.type);
175 return -1;
176 }
177
Arnaldo Carvalho de Melo71289be2009-12-28 22:48:34 -0200178 if (al.filtered || (hide_unresolved && al.sym == NULL))
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300179 return 0;
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -0300180
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300181 if (perf_session__add_hist_entry(session, &al, &data)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200182 pr_debug("problem incrementing symbol count, skipping event\n");
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300183 return -1;
Ingo Molnar75051722009-06-03 23:14:49 +0200184 }
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300185
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300186 attr = perf_header__find_attr(data.id, &session->header);
187
188 if (add_event_total(session, &data, attr)) {
189 pr_debug("problem adding event count\n");
190 return -1;
191 }
192
Ingo Molnar75051722009-06-03 23:14:49 +0200193 return 0;
194}
195
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200196static int process_read_event(event_t *event, struct perf_session *session __used)
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200197{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200198 struct perf_event_attr *attr;
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +0200199
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200200 attr = perf_header__find_attr(event->read.id, &session->header);
Peter Zijlstra8f18aec2009-08-06 19:40:28 +0200201
Brice Goglin8d513272009-08-07 13:55:24 +0200202 if (show_threads) {
Ingo Molnar83a09442009-08-15 12:26:57 +0200203 const char *name = attr ? __event_name(attr->type, attr->config)
Brice Goglin8d513272009-08-07 13:55:24 +0200204 : "unknown";
205 perf_read_values_add_value(&show_threads_values,
206 event->read.pid, event->read.tid,
207 event->read.id,
208 name,
209 event->read.value);
210 }
211
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200212 dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
213 attr ? __event_name(attr->type, attr->config) : "FAIL",
214 event->read.value);
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200215
216 return 0;
217}
218
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200219static int perf_session__setup_sample_type(struct perf_session *self)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300220{
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200221 if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200222 if (sort__has_parent) {
223 fprintf(stderr, "selected --sort parent, but no"
224 " callchain data. Did you call"
225 " perf record without -g?\n");
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200226 return -EINVAL;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200227 }
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200228 if (symbol_conf.use_callchain) {
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200229 fprintf(stderr, "selected -g but no callchain data."
230 " Did you call perf record without"
231 " -g?\n");
232 return -1;
233 }
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200234 } else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
235 !symbol_conf.use_callchain) {
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200236 symbol_conf.use_callchain = true;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200237 if (register_callchain_param(&callchain_param) < 0) {
238 fprintf(stderr, "Can't register callchain"
239 " params\n");
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200240 return -EINVAL;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200241 }
Ingo Molnard80d3382009-06-03 23:14:49 +0200242 }
243
244 return 0;
245}
246
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -0200247static struct perf_event_ops event_ops = {
Arnaldo Carvalho de Melo55aa6402009-12-27 21:37:05 -0200248 .sample = process_sample_event,
249 .mmap = event__process_mmap,
250 .comm = event__process_comm,
251 .exit = event__process_task,
252 .fork = event__process_task,
253 .lost = event__process_lost,
254 .read = process_read_event,
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500255 .attr = event__process_attr,
Tom Zanussicd19a032010-04-01 23:59:20 -0500256 .event_type = event__process_event_type,
Tom Zanussi92155452010-04-01 23:59:21 -0500257 .tracing_data = event__process_tracing_data,
Tom Zanussic7929e42010-04-01 23:59:22 -0500258 .build_id = event__process_build_id,
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200259};
260
Tom Zanussi46656ac2010-04-01 23:59:17 -0500261extern volatile int session_done;
262
263static void sig_handler(int sig __attribute__((__unused__)))
264{
265 session_done = 1;
266}
267
Ingo Molnard80d3382009-06-03 23:14:49 +0200268static int __cmd_report(void)
269{
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200270 int ret = -EINVAL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200271 struct perf_session *session;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300272 struct rb_node *next;
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300273 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
Ingo Molnard80d3382009-06-03 23:14:49 +0200274
Tom Zanussi46656ac2010-04-01 23:59:17 -0500275 signal(SIGINT, sig_handler);
276
Tom Zanussi454c4072010-05-01 01:41:20 -0500277 session = perf_session__new(input_name, O_RDONLY, force, false);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200278 if (session == NULL)
279 return -ENOMEM;
280
Brice Goglin8d513272009-08-07 13:55:24 +0200281 if (show_threads)
282 perf_read_values_init(&show_threads_values);
283
Arnaldo Carvalho de Melod549c762009-12-27 21:37:02 -0200284 ret = perf_session__setup_sample_type(session);
285 if (ret)
286 goto out_delete;
287
Arnaldo Carvalho de Meloec913362009-12-13 19:50:27 -0200288 ret = perf_session__process_events(session, &event_ops);
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200289 if (ret)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200290 goto out_delete;
Ingo Molnar97b07b62009-05-26 18:48:58 +0200291
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200292 if (dump_trace) {
293 event__print_totals();
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200294 goto out_delete;
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200295 }
Ingo Molnar97b07b62009-05-26 18:48:58 +0200296
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300297 if (verbose > 3)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200298 perf_session__fprintf(session, stdout);
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -0300299
Arnaldo Carvalho de Meloda21d1b2009-10-07 10:49:00 -0300300 if (verbose > 2)
Arnaldo Carvalho de Melocbf69682010-04-27 21:22:44 -0300301 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar16f762a2009-05-27 09:10:38 +0200302
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300303 next = rb_first(&session->stats_by_id);
304 while (next) {
305 struct event_stat_id *stats;
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300306 u64 nr_hists;
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300307
308 stats = rb_entry(next, struct event_stat_id, rb_node);
309 perf_session__collapse_resort(&stats->hists);
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300310 nr_hists = perf_session__output_resort(&stats->hists,
311 stats->stats.total);
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300312 if (use_browser)
Arnaldo Carvalho de Melo5f4d3f82010-03-26 21:16:22 -0300313 perf_session__browse_hists(&stats->hists, nr_hists,
Arnaldo Carvalho de Melo533c46c2010-04-03 11:54:35 -0300314 stats->stats.total, help,
315 input_name);
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300316 else {
317 if (rb_first(&session->stats_by_id) ==
318 rb_last(&session->stats_by_id))
319 fprintf(stdout, "# Samples: %Ld\n#\n",
320 stats->stats.total);
321 else
322 fprintf(stdout, "# Samples: %Ld %s\n#\n",
323 stats->stats.total,
324 __event_name(stats->type, stats->config));
325
326 perf_session__fprintf_hists(&stats->hists, NULL, false, stdout,
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300327 stats->stats.total);
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300328 fprintf(stdout, "\n\n");
329 }
330
Eric B Munsoncbbc79a2010-03-05 12:51:09 -0300331 next = rb_next(&stats->rb_node);
332 }
333
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300334 if (!use_browser && sort_order == default_sort_order &&
335 parent_pattern == default_parent_pattern) {
336 fprintf(stdout, "#\n# (%s)\n#\n", help);
Arnaldo Carvalho de Melo3e6055a2009-12-16 12:27:10 -0200337
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -0300338 if (show_threads) {
339 bool style = !strcmp(pretty_printing_style, "raw");
340 perf_read_values_display(stdout, &show_threads_values,
341 style);
342 perf_read_values_destroy(&show_threads_values);
343 }
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200344 }
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200345out_delete:
346 perf_session__delete(session);
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200347 return ret;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300348}
349
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200350static int
351parse_callchain_opt(const struct option *opt __used, const char *arg,
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200352 int unset)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200353{
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200354 char *tok;
355 char *endptr;
356
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200357 /*
358 * --no-call-graph
359 */
360 if (unset) {
361 dont_use_callchains = true;
362 return 0;
363 }
364
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200365 symbol_conf.use_callchain = true;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200366
367 if (!arg)
368 return 0;
369
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200370 tok = strtok((char *)arg, ",");
371 if (!tok)
372 return -1;
373
374 /* get the output mode */
375 if (!strncmp(tok, "graph", strlen(arg)))
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200376 callchain_param.mode = CHAIN_GRAPH_ABS;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200377
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200378 else if (!strncmp(tok, "flat", strlen(arg)))
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200379 callchain_param.mode = CHAIN_FLAT;
380
381 else if (!strncmp(tok, "fractal", strlen(arg)))
382 callchain_param.mode = CHAIN_GRAPH_REL;
383
Frederic Weisbeckerb1a88342009-08-08 02:16:24 +0200384 else if (!strncmp(tok, "none", strlen(arg))) {
385 callchain_param.mode = CHAIN_NONE;
Yong Wangb7ae11b2010-01-22 09:47:50 +0800386 symbol_conf.use_callchain = false;
Frederic Weisbeckerb1a88342009-08-08 02:16:24 +0200387
388 return 0;
389 }
390
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200391 else
392 return -1;
393
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200394 /* get the min percentage */
395 tok = strtok(NULL, ",");
396 if (!tok)
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200397 goto setup;
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200398
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200399 callchain_param.min_percent = strtod(tok, &endptr);
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200400 if (tok == endptr)
401 return -1;
402
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200403setup:
404 if (register_callchain_param(&callchain_param) < 0) {
405 fprintf(stderr, "Can't register callchain params\n");
406 return -1;
407 }
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200408 return 0;
409}
410
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -0200411static const char * const report_usage[] = {
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200412 "perf report [<options>] <command>",
413 NULL
414};
415
416static const struct option options[] = {
417 OPT_STRING('i', "input", &input_name, "file",
418 "input file name"),
Ian Munsiec0555642010-04-13 18:37:33 +1000419 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Melo815e7772009-05-26 19:46:14 -0300420 "be more verbose (show symbol address, etc)"),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200421 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
422 "dump raw trace in ASCII"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200423 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
424 "file", "vmlinux pathname"),
Peter Zijlstrafa6963b2009-08-19 11:18:26 +0200425 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200426 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200427 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200428 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
Arnaldo Carvalho de Meloe3d7e182009-07-11 12:18:37 -0300429 "Show a column with the number of samples"),
Brice Goglin8d513272009-08-07 13:55:24 +0200430 OPT_BOOLEAN('T', "threads", &show_threads,
431 "Show per-thread event counters"),
Brice Goglin9f866692009-08-10 15:26:32 +0200432 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
433 "pretty printing style key: normal raw"),
Ingo Molnar63299f02009-05-28 10:52:00 +0200434 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200435 "sort by key(s): pid, comm, dso, symbol, parent"),
Arnaldo Carvalho de Melof7d87442009-12-27 21:37:04 -0200436 OPT_BOOLEAN('P', "full-paths", &symbol_conf.full_paths,
Arnaldo Carvalho de Melob78c07d2009-05-29 13:48:59 -0300437 "Don't shorten the pathnames taking into account the cwd"),
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800438 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
439 "Show sample percentage for different cpu modes"),
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200440 OPT_STRING('p', "parent", &parent_pattern, "regex",
441 "regex filter to identify parent, see: '--sort parent'"),
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200442 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
Ingo Molnarb8e6d822009-06-18 14:32:19 +0200443 "Only display entries with parent-match"),
Anton Blanchard1483b192009-07-16 15:44:29 +0200444 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
Pekka Enberge157eb82010-05-08 18:33:03 +0300445 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
Anton Blanchard1483b192009-07-16 15:44:29 +0200446 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200447 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -0300448 "only consider symbols in these dsos"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200449 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -0300450 "only consider symbols in these comms"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200451 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -0300452 "only consider these symbols"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200453 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300454 "width[,width...]",
455 "don't try to adjust column width, use these fixed values"),
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200456 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300457 "separator for columns, no spaces will be added between "
458 "columns '.' is reserved."),
Arnaldo Carvalho de Melo71289be2009-12-28 22:48:34 -0200459 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
460 "Only display entries resolved to a symbol"),
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200461 OPT_END()
462};
463
Ingo Molnarf37a2912009-07-01 12:37:06 +0200464int cmd_report(int argc, const char **argv, const char *prefix __used)
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200465{
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200466 argc = parse_options(argc, argv, options, report_usage, 0);
467
Tom Zanussi46656ac2010-04-01 23:59:17 -0500468 if (strcmp(input_name, "-") != 0)
469 setup_browser();
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200470
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200471 if (symbol__init() < 0)
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200472 return -1;
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200473
Arnaldo Carvalho de Meloc8829c72009-12-14 20:09:29 -0200474 setup_sorting(report_usage, options);
Peter Zijlstra1aa16732009-05-27 20:20:25 +0200475
Arnaldo Carvalho de Melo021191b2009-07-11 12:18:35 -0300476 if (parent_pattern != default_parent_pattern) {
Arnaldo Carvalho de Melo2aefa4f2010-04-02 12:30:57 -0300477 if (sort_dimension__add("parent") < 0)
478 return -1;
Arnaldo Carvalho de Melo021191b2009-07-11 12:18:35 -0300479 sort_parent.elide = 1;
480 } else
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200481 symbol_conf.exclude_other = false;
Ingo Molnarb8e6d822009-06-18 14:32:19 +0200482
Ingo Molnaredc52de2009-06-04 16:24:37 +0200483 /*
484 * Any (unrecognized) arguments left?
485 */
486 if (argc)
487 usage_with_options(report_usage, options);
488
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200489 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
490 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
491 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -0300492
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200493 return __cmd_report();
494}