blob: 6cac509212ee7e7cb92fabe278cd601ac3b93584 [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"
Namhyung Kim00c7e1f2013-01-22 18:09:46 +090011#include "util/cache.h"
Ingo Molnarbf9e1872009-06-02 23:37:05 +020012
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020013#include "util/annotate.h"
Ingo Molnar8fc03212009-06-04 15:19:47 +020014#include "util/color.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -030015#include <linux/list.h>
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030016#include <linux/rbtree.h>
Arnaldo Carvalho de Meloa2928c42009-05-28 14:55:04 -030017#include "util/symbol.h"
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +020018#include "util/callchain.h"
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -030019#include "util/strlist.h"
Brice Goglin8d513272009-08-07 13:55:24 +020020#include "util/values.h"
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030021
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020022#include "perf.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020023#include "util/debug.h"
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030024#include "util/evlist.h"
25#include "util/evsel.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020026#include "util/header.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020027#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020028#include "util/tool.h"
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020029
30#include "util/parse-options.h"
31#include "util/parse-events.h"
32
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020033#include "util/thread.h"
John Kacurdd68ada2009-09-24 18:02:49 +020034#include "util/sort.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020035#include "util/hist.h"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020036#include "util/data.h"
Irina Tirdea68e94f42012-10-16 02:33:38 +030037#include "arch/common.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020038
Namhyung Kimfc672972013-09-13 15:27:43 +090039#include <dlfcn.h>
Anton Blanchard5d67be92011-07-04 21:57:50 +100040#include <linux/bitmap.h>
41
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -030042struct report {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020043 struct perf_tool tool;
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020044 struct perf_session *session;
Pekka Enbergc31a9452012-03-19 15:13:29 -030045 bool force, use_tui, use_gtk, use_stdio;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -020046 bool hide_unresolved;
47 bool dont_use_callchains;
48 bool show_full_info;
49 bool show_threads;
50 bool inverted_callchain;
Stephane Eranianf4f7e282013-01-24 16:10:36 +010051 bool mem_mode;
Jiri Olsa5cfe2c82013-12-09 11:02:49 +010052 bool header;
53 bool header_only;
Waiman Long91e95612013-10-18 10:38:48 -040054 int max_stack;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -020055 struct perf_read_values show_threads_values;
56 const char *pretty_printing_style;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -020057 const char *cpu_list;
Namhyung Kimb14ffac2012-03-16 17:50:54 +090058 const char *symbol_filter_str;
Namhyung Kim064f1982013-05-14 11:09:04 +090059 float min_percent;
Namhyung Kim58c311d2014-04-22 09:47:25 +090060 u64 nr_entries;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -020061 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020062};
Anton Blanchard5d67be92011-07-04 21:57:50 +100063
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -030064static int report__config(const char *var, const char *value, void *cb)
Namhyung Kim00c7e1f2013-01-22 18:09:46 +090065{
66 if (!strcmp(var, "report.group")) {
67 symbol_conf.event_group = perf_config_bool(var, value);
68 return 0;
69 }
Namhyung Kimeec574e2013-05-14 11:09:06 +090070 if (!strcmp(var, "report.percent-limit")) {
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -030071 struct report *rep = cb;
Namhyung Kimeec574e2013-05-14 11:09:06 +090072 rep->min_percent = strtof(value, NULL);
73 return 0;
74 }
Namhyung Kim8d8e6452013-01-22 18:09:46 +090075 if (!strcmp(var, "report.children")) {
76 symbol_conf.cumulate_callchain = perf_config_bool(var, value);
77 return 0;
78 }
Namhyung Kim00c7e1f2013-01-22 18:09:46 +090079
80 return perf_default_config(var, value, cb);
81}
82
Namhyung Kim69bcb012013-10-30 09:40:34 +090083static void report__inc_stats(struct report *rep,
84 struct hist_entry *he __maybe_unused)
Namhyung Kim58c311d2014-04-22 09:47:25 +090085{
86 /*
Namhyung Kim69bcb012013-10-30 09:40:34 +090087 * We cannot access @he at this time. Just assume it's a new entry.
88 * It'll be fixed once we have a callback mechanism in hist_iter.
Namhyung Kim58c311d2014-04-22 09:47:25 +090089 */
Namhyung Kim69bcb012013-10-30 09:40:34 +090090 rep->nr_entries++;
Namhyung Kim58c311d2014-04-22 09:47:25 +090091}
92
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020093static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020094 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -020095 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030096 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020097 struct machine *machine)
Ingo Molnar75051722009-06-03 23:14:49 +020098{
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -030099 struct report *rep = container_of(tool, struct report, tool);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200100 struct addr_location al;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900101 struct hist_entry_iter iter = {
102 .hide_unresolved = rep->hide_unresolved,
103 };
Namhyung Kim27a0dcb2013-05-14 11:09:02 +0900104 int ret;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900105
Adrian Huntere44baa32013-08-08 14:32:25 +0300106 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
Namhyung Kima4210142013-12-20 14:11:12 +0900107 pr_debug("problem processing %d event, skipping it.\n",
108 event->header.type);
Ingo Molnar75051722009-06-03 23:14:49 +0200109 return -1;
110 }
111
Namhyung Kim2c86c7c2014-03-17 18:18:54 -0300112 if (rep->hide_unresolved && al.sym == NULL)
Arnaldo Carvalho de Meloec218fc2009-10-03 20:30:48 -0300113 return 0;
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -0300114
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200115 if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap))
Anton Blanchard5d67be92011-07-04 21:57:50 +1000116 return 0;
117
Namhyung Kim69bcb012013-10-30 09:40:34 +0900118 if (sort__mode == SORT_MODE__BRANCH)
119 iter.ops = &hist_iter_branch;
120 else if (rep->mem_mode)
121 iter.ops = &hist_iter_mem;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900122 else if (symbol_conf.cumulate_callchain)
123 iter.ops = &hist_iter_cumulative;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900124 else
125 iter.ops = &hist_iter_normal;
Arnaldo Carvalho de Meloec80fde2011-05-26 09:53:51 -0300126
Namhyung Kim69bcb012013-10-30 09:40:34 +0900127 if (al.map != NULL)
128 al.map->dso->hit = 1;
129
130 report__inc_stats(rep, NULL);
131
132 ret = hist_entry_iter__add(&iter, &al, evsel, sample, rep->max_stack);
133 if (ret < 0)
134 pr_debug("problem adding hist entry, skipping event\n");
135
Namhyung Kim27a0dcb2013-05-14 11:09:02 +0900136 return ret;
Ingo Molnar75051722009-06-03 23:14:49 +0200137}
138
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200139static int process_read_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200140 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300141 struct perf_sample *sample __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200142 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300143 struct machine *machine __maybe_unused)
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200144{
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300145 struct report *rep = container_of(tool, struct report, tool);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200146
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200147 if (rep->show_threads) {
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300148 const char *name = evsel ? perf_evsel__name(evsel) : "unknown";
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200149 perf_read_values_add_value(&rep->show_threads_values,
Brice Goglin8d513272009-08-07 13:55:24 +0200150 event->read.pid, event->read.tid,
151 event->read.id,
152 name,
153 event->read.value);
154 }
155
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200156 dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300157 evsel ? perf_evsel__name(evsel) : "FAIL",
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200158 event->read.value);
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200159
160 return 0;
161}
162
David Ahern300aa942012-06-11 13:48:41 -0600163/* For pipe mode, sample_type is not currently set */
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300164static int report__setup_sample_type(struct report *rep)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300165{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300166 struct perf_session *session = rep->session;
167 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
168 bool is_pipe = perf_data_file__is_pipe(session->file);
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200169
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200170 if (!is_pipe && !(sample_type & PERF_SAMPLE_CALLCHAIN)) {
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200171 if (sort__has_parent) {
Namhyung Kim3780f482012-05-29 13:22:57 +0900172 ui__error("Selected --sort parent, but no "
Arnaldo Carvalho de Melo00894ce2011-08-03 12:33:24 -0300173 "callchain data. Did you call "
174 "'perf record' without -g?\n");
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200175 return -EINVAL;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200176 }
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200177 if (symbol_conf.use_callchain) {
Namhyung Kim3780f482012-05-29 13:22:57 +0900178 ui__error("Selected -g but no callchain data. Did "
Arnaldo Carvalho de Melo00894ce2011-08-03 12:33:24 -0300179 "you call 'perf record' without -g?\n");
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200180 return -1;
181 }
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200182 } else if (!rep->dont_use_callchains &&
183 callchain_param.mode != CHAIN_NONE &&
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200184 !symbol_conf.use_callchain) {
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200185 symbol_conf.use_callchain = true;
Frederic Weisbecker16537f12011-01-14 04:52:00 +0100186 if (callchain_register_param(&callchain_param) < 0) {
Namhyung Kim3780f482012-05-29 13:22:57 +0900187 ui__error("Can't register callchain params.\n");
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200188 return -EINVAL;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200189 }
Ingo Molnard80d3382009-06-03 23:14:49 +0200190 }
191
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900192 if (symbol_conf.cumulate_callchain) {
193 /* Silently ignore if callchain is missing */
194 if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
195 symbol_conf.cumulate_callchain = false;
196 perf_hpp__cancel_cumulate();
197 }
198 }
199
Namhyung Kim55369fc2013-04-01 20:35:20 +0900200 if (sort__mode == SORT_MODE__BRANCH) {
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200201 if (!is_pipe &&
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300202 !(sample_type & PERF_SAMPLE_BRANCH_STACK)) {
Namhyung Kim3780f482012-05-29 13:22:57 +0900203 ui__error("Selected -b but no branch data. "
204 "Did you call perf record without -b?\n");
Roberto Agostino Vitillob50311d2012-02-09 23:21:03 +0100205 return -1;
206 }
207 }
208
Ingo Molnard80d3382009-06-03 23:14:49 +0200209 return 0;
210}
211
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300212static void sig_handler(int sig __maybe_unused)
Tom Zanussi46656ac2010-04-01 23:59:17 -0500213{
214 session_done = 1;
215}
216
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300217static size_t hists__fprintf_nr_sample_events(struct hists *hists, struct report *rep,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300218 const char *evname, FILE *fp)
219{
220 size_t ret;
221 char unit;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300222 unsigned long nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
223 u64 nr_events = hists->stats.total_period;
224 struct perf_evsel *evsel = hists_to_evsel(hists);
Namhyung Kim717e2632013-01-22 18:09:44 +0900225 char buf[512];
226 size_t size = sizeof(buf);
227
Namhyung Kimf2148332014-01-14 11:52:48 +0900228 if (symbol_conf.filter_relative) {
229 nr_samples = hists->stats.nr_non_filtered_samples;
230 nr_events = hists->stats.total_non_filtered_period;
231 }
232
Namhyung Kim759ff492013-03-05 14:53:26 +0900233 if (perf_evsel__is_group_event(evsel)) {
Namhyung Kim717e2632013-01-22 18:09:44 +0900234 struct perf_evsel *pos;
235
236 perf_evsel__group_desc(evsel, buf, size);
237 evname = buf;
238
239 for_each_group_member(pos, evsel) {
Namhyung Kimf2148332014-01-14 11:52:48 +0900240 if (symbol_conf.filter_relative) {
241 nr_samples += pos->hists.stats.nr_non_filtered_samples;
242 nr_events += pos->hists.stats.total_non_filtered_period;
243 } else {
244 nr_samples += pos->hists.stats.nr_events[PERF_RECORD_SAMPLE];
245 nr_events += pos->hists.stats.total_period;
246 }
Namhyung Kim717e2632013-01-22 18:09:44 +0900247 }
248 }
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300249
Ashay Ranecc686282012-04-05 21:01:01 -0500250 nr_samples = convert_unit(nr_samples, &unit);
251 ret = fprintf(fp, "# Samples: %lu%c", nr_samples, unit);
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300252 if (evname != NULL)
Ashay Ranecc686282012-04-05 21:01:01 -0500253 ret += fprintf(fp, " of event '%s'", evname);
254
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100255 if (rep->mem_mode) {
256 ret += fprintf(fp, "\n# Total weight : %" PRIu64, nr_events);
257 ret += fprintf(fp, "\n# Sort order : %s", sort_order);
258 } else
259 ret += fprintf(fp, "\n# Event count (approx.): %" PRIu64, nr_events);
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300260 return ret + fprintf(fp, "\n#\n");
261}
262
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300263static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300264 struct report *rep,
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300265 const char *help)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300266{
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300267 struct perf_evsel *pos;
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300268
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300269 evlist__for_each(evlist, pos) {
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300270 struct hists *hists = &pos->hists;
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300271 const char *evname = perf_evsel__name(pos);
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300272
Namhyung Kimfc24d7c2013-01-22 18:09:43 +0900273 if (symbol_conf.event_group &&
274 !perf_evsel__is_group_leader(pos))
275 continue;
276
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300277 hists__fprintf_nr_sample_events(hists, rep, evname, stdout);
Namhyung Kim064f1982013-05-14 11:09:04 +0900278 hists__fprintf(hists, true, 0, 0, rep->min_percent, stdout);
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300279 fprintf(stdout, "\n\n");
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300280 }
281
282 if (sort_order == default_sort_order &&
283 parent_pattern == default_parent_pattern) {
284 fprintf(stdout, "#\n# (%s)\n#\n", help);
285
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200286 if (rep->show_threads) {
287 bool style = !strcmp(rep->pretty_printing_style, "raw");
288 perf_read_values_display(stdout, &rep->show_threads_values,
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300289 style);
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200290 perf_read_values_destroy(&rep->show_threads_values);
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300291 }
292 }
293
294 return 0;
295}
296
Arnaldo Carvalho de Melofad29182014-01-08 10:10:00 -0300297static void report__warn_kptr_restrict(const struct report *rep)
298{
299 struct map *kernel_map = rep->session->machines.host.vmlinux_maps[MAP__FUNCTION];
300 struct kmap *kernel_kmap = map__kmap(kernel_map);
301
302 if (kernel_map == NULL ||
303 (kernel_map->dso->hit &&
304 (kernel_kmap->ref_reloc_sym == NULL ||
305 kernel_kmap->ref_reloc_sym->addr == 0))) {
306 const char *desc =
307 "As no suitable kallsyms nor vmlinux was found, kernel samples\n"
308 "can't be resolved.";
309
310 if (kernel_map) {
311 const struct dso *kdso = kernel_map->dso;
312 if (!RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION])) {
313 desc = "If some relocation was applied (e.g. "
314 "kexec) symbols may be misresolved.";
315 }
316 }
317
318 ui__warning(
319"Kernel address maps (/proc/{kallsyms,modules}) were restricted.\n\n"
320"Check /proc/sys/kernel/kptr_restrict before running 'perf record'.\n\n%s\n\n"
321"Samples in kernel modules can't be resolved as well.\n\n",
322 desc);
323 }
324}
325
Arnaldo Carvalho de Melo83629512014-01-08 12:22:07 -0300326static int report__gtk_browse_hists(struct report *rep, const char *help)
327{
328 int (*hist_browser)(struct perf_evlist *evlist, const char *help,
329 struct hist_browser_timer *timer, float min_pcnt);
330
331 hist_browser = dlsym(perf_gtk_handle, "perf_evlist__gtk_browse_hists");
332
333 if (hist_browser == NULL) {
334 ui__error("GTK browser not found!\n");
335 return -1;
336 }
337
338 return hist_browser(rep->session->evlist, help, NULL, rep->min_percent);
339}
340
341static int report__browse_hists(struct report *rep)
342{
343 int ret;
344 struct perf_session *session = rep->session;
345 struct perf_evlist *evlist = session->evlist;
346 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
347
348 switch (use_browser) {
349 case 1:
350 ret = perf_evlist__tui_browse_hists(evlist, help, NULL,
351 rep->min_percent,
352 &session->header.env);
353 /*
354 * Usually "ret" is the last pressed key, and we only
355 * care if the key notifies us to switch data file.
356 */
357 if (ret != K_SWITCH_INPUT_DATA)
358 ret = 0;
359 break;
360 case 2:
361 ret = report__gtk_browse_hists(rep, help);
362 break;
363 default:
364 ret = perf_evlist__tty_browse_hists(evlist, rep, help);
365 break;
366 }
367
368 return ret;
369}
370
Namhyung Kim58c311d2014-04-22 09:47:25 +0900371static void report__collapse_hists(struct report *rep)
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300372{
373 struct ui_progress prog;
374 struct perf_evsel *pos;
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300375
Namhyung Kim58c311d2014-04-22 09:47:25 +0900376 ui_progress__init(&prog, rep->nr_entries, "Merging related events...");
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300377
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300378 evlist__for_each(rep->session->evlist, pos) {
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300379 struct hists *hists = &pos->hists;
380
381 if (pos->idx == 0)
382 hists->symbol_filter_str = rep->symbol_filter_str;
383
384 hists__collapse_resort(hists, &prog);
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300385
386 /* Non-group events are considered as leader */
387 if (symbol_conf.event_group &&
388 !perf_evsel__is_group_leader(pos)) {
389 struct hists *leader_hists = &pos->leader->hists;
390
391 hists__match(leader_hists, hists);
392 hists__link(leader_hists, hists);
393 }
394 }
395
396 ui_progress__finish();
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300397}
398
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300399static int __cmd_report(struct report *rep)
Ingo Molnard80d3382009-06-03 23:14:49 +0200400{
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300401 int ret;
Stephane Eranian993ac882012-03-08 23:47:47 +0100402 struct perf_session *session = rep->session;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300403 struct perf_evsel *pos;
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200404 struct perf_data_file *file = session->file;
Ingo Molnard80d3382009-06-03 23:14:49 +0200405
Tom Zanussi46656ac2010-04-01 23:59:17 -0500406 signal(SIGINT, sig_handler);
407
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200408 if (rep->cpu_list) {
409 ret = perf_session__cpu_bitmap(session, rep->cpu_list,
410 rep->cpu_bitmap);
Anton Blanchard5d67be92011-07-04 21:57:50 +1000411 if (ret)
Jiri Olsad4ae0a62013-06-25 13:54:13 +0200412 return ret;
Anton Blanchard5d67be92011-07-04 21:57:50 +1000413 }
414
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200415 if (rep->show_threads)
416 perf_read_values_init(&rep->show_threads_values);
Brice Goglin8d513272009-08-07 13:55:24 +0200417
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300418 ret = report__setup_sample_type(rep);
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200419 if (ret)
Jiri Olsad4ae0a62013-06-25 13:54:13 +0200420 return ret;
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200421
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200422 ret = perf_session__process_events(session, &rep->tool);
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200423 if (ret)
Jiri Olsad4ae0a62013-06-25 13:54:13 +0200424 return ret;
Ingo Molnar97b07b62009-05-26 18:48:58 +0200425
Arnaldo Carvalho de Melofad29182014-01-08 10:10:00 -0300426 report__warn_kptr_restrict(rep);
Arnaldo Carvalho de Meloec80fde2011-05-26 09:53:51 -0300427
Namhyung Kim150e4652013-12-20 14:11:13 +0900428 if (use_browser == 0) {
429 if (verbose > 3)
430 perf_session__fprintf(session, stdout);
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -0300431
Namhyung Kim150e4652013-12-20 14:11:13 +0900432 if (verbose > 2)
433 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar16f762a2009-05-27 09:10:38 +0200434
Namhyung Kim150e4652013-12-20 14:11:13 +0900435 if (dump_trace) {
436 perf_session__fprintf_nr_events(session, stdout);
437 return 0;
438 }
Jiri Olsa71ad0f52012-08-07 15:20:46 +0200439 }
440
Namhyung Kim58c311d2014-04-22 09:47:25 +0900441 report__collapse_hists(rep);
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300442
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -0300443 if (session_done())
444 return 0;
445
Namhyung Kim58c311d2014-04-22 09:47:25 +0900446 if (rep->nr_entries == 0) {
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200447 ui__error("The %s file has no samples!\n", file->path);
Jiri Olsad4ae0a62013-06-25 13:54:13 +0200448 return 0;
Arnaldo Carvalho de Melo74cfc172011-02-17 14:40:46 -0200449 }
450
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300451 evlist__for_each(session->evlist, pos)
Namhyung Kim6e1f6012013-01-22 18:09:32 +0900452 hists__output_resort(&pos->hists);
453
Arnaldo Carvalho de Melo83629512014-01-08 12:22:07 -0300454 return report__browse_hists(rep);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300455}
456
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200457static int
Don Zickuscff6bb42014-04-07 14:55:24 -0400458report_parse_callchain_opt(const struct option *opt, const char *arg, int unset)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200459{
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300460 struct report *rep = (struct report *)opt->value;
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200461
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200462 /*
463 * --no-call-graph
464 */
465 if (unset) {
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200466 rep->dont_use_callchains = true;
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200467 return 0;
468 }
469
Don Zickuscff6bb42014-04-07 14:55:24 -0400470 return parse_callchain_report_opt(arg);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200471}
472
Greg Priceb21484f2012-12-06 21:48:05 -0800473int
474report_parse_ignore_callees_opt(const struct option *opt __maybe_unused,
475 const char *arg, int unset __maybe_unused)
476{
477 if (arg) {
478 int err = regcomp(&ignore_callees_regex, arg, REG_EXTENDED);
479 if (err) {
480 char buf[BUFSIZ];
481 regerror(err, &ignore_callees_regex, buf, sizeof(buf));
482 pr_err("Invalid --ignore-callees regex: %s\n%s", arg, buf);
483 return -1;
484 }
485 have_ignore_callees = 1;
486 }
487
488 return 0;
489}
490
Stephane Eranian993ac882012-03-08 23:47:47 +0100491static int
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300492parse_branch_mode(const struct option *opt __maybe_unused,
493 const char *str __maybe_unused, int unset)
Stephane Eranian993ac882012-03-08 23:47:47 +0100494{
Namhyung Kim55369fc2013-04-01 20:35:20 +0900495 int *branch_mode = opt->value;
496
497 *branch_mode = !unset;
Stephane Eranian993ac882012-03-08 23:47:47 +0100498 return 0;
499}
500
Namhyung Kim064f1982013-05-14 11:09:04 +0900501static int
502parse_percent_limit(const struct option *opt, const char *str,
503 int unset __maybe_unused)
504{
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300505 struct report *rep = opt->value;
Namhyung Kim064f1982013-05-14 11:09:04 +0900506
507 rep->min_percent = strtof(str, NULL);
508 return 0;
509}
510
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300511int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200512{
Stephane Eranian993ac882012-03-08 23:47:47 +0100513 struct perf_session *session;
Robert Richterefad1412011-12-07 10:02:54 +0100514 struct stat st;
Stephane Eranian993ac882012-03-08 23:47:47 +0100515 bool has_br_stack = false;
Namhyung Kim55369fc2013-04-01 20:35:20 +0900516 int branch_mode = -1;
Stephane Eranian993ac882012-03-08 23:47:47 +0100517 int ret = -1;
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200518 char callchain_default_opt[] = "fractal,0.5,callee";
519 const char * const report_usage[] = {
Namhyung Kimfb2bace2011-12-13 00:16:56 +0900520 "perf report [<options>]",
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200521 NULL
522 };
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300523 struct report report = {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200524 .tool = {
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200525 .sample = process_sample_event,
526 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200527 .mmap2 = perf_event__process_mmap2,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200528 .comm = perf_event__process_comm,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300529 .exit = perf_event__process_exit,
530 .fork = perf_event__process_fork,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200531 .lost = perf_event__process_lost,
532 .read = process_read_event,
533 .attr = perf_event__process_attr,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200534 .tracing_data = perf_event__process_tracing_data,
535 .build_id = perf_event__process_build_id,
536 .ordered_samples = true,
537 .ordering_requires_timestamps = true,
538 },
Waiman Long91e95612013-10-18 10:38:48 -0400539 .max_stack = PERF_MAX_STACK_DEPTH,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200540 .pretty_printing_style = "normal",
541 };
542 const struct option options[] = {
Feng Tang70cb4e92012-10-30 11:56:02 +0800543 OPT_STRING('i', "input", &input_name, "file",
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200544 "input file name"),
Ian Munsiec0555642010-04-13 18:37:33 +1000545 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Melo815e7772009-05-26 19:46:14 -0300546 "be more verbose (show symbol address, etc)"),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200547 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
548 "dump raw trace in ASCII"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200549 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
550 "file", "vmlinux pathname"),
David Ahernb226a5a72010-12-07 19:39:46 -0700551 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
552 "file", "kallsyms pathname"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200553 OPT_BOOLEAN('f', "force", &report.force, "don't complain, do it"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200554 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200555 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200556 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
Arnaldo Carvalho de Meloe3d7e182009-07-11 12:18:37 -0300557 "Show a column with the number of samples"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200558 OPT_BOOLEAN('T', "threads", &report.show_threads,
Brice Goglin8d513272009-08-07 13:55:24 +0200559 "Show per-thread event counters"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200560 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key",
Brice Goglin9f866692009-08-10 15:26:32 +0200561 "pretty printing style key: normal raw"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200562 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"),
Pekka Enbergc31a9452012-03-19 15:13:29 -0300563 OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200564 OPT_BOOLEAN(0, "stdio", &report.use_stdio,
565 "Use the stdio interface"),
Jiri Olsa5cfe2c82013-12-09 11:02:49 +0100566 OPT_BOOLEAN(0, "header", &report.header, "Show data header."),
567 OPT_BOOLEAN(0, "header-only", &report.header_only,
568 "Show only data header."),
Ingo Molnar63299f02009-05-28 10:52:00 +0200569 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
Namhyung Kima2ce0672014-03-04 09:06:42 +0900570 "sort by key(s): pid, comm, dso, symbol, parent, cpu, srcline, ..."
571 " Please refer the man page for the complete list."),
Namhyung Kima7d945b2014-03-04 10:46:34 +0900572 OPT_STRING('F', "fields", &field_order, "key[,keys...]",
573 "output field(s): overhead, period, sample plus all of sort keys"),
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800574 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
575 "Show sample percentage for different cpu modes"),
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200576 OPT_STRING('p', "parent", &parent_pattern, "regex",
577 "regex filter to identify parent, see: '--sort parent'"),
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200578 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
Ingo Molnarb8e6d822009-06-18 14:32:19 +0200579 "Only display entries with parent-match"),
Namhyung Kim6581f6e2011-12-13 00:16:50 +0900580 OPT_CALLBACK_DEFAULT('g', "call-graph", &report, "output_type,min_percent[,print_limit],call_order",
Andi Kleen99571ab2013-07-18 15:33:57 -0700581 "Display callchains using output_type (graph, flat, fractal, or none) , min percent threshold, optional print limit, callchain order, key (function or address). "
Don Zickuscff6bb42014-04-07 14:55:24 -0400582 "Default: fractal,0.5,callee,function", &report_parse_callchain_opt, callchain_default_opt),
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900583 OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain,
584 "Accumulate callchains of children and show total overhead as well"),
Waiman Long91e95612013-10-18 10:38:48 -0400585 OPT_INTEGER(0, "max-stack", &report.max_stack,
586 "Set the maximum stack depth when parsing the callchain, "
587 "anything beyond the specified depth will be ignored. "
588 "Default: " __stringify(PERF_MAX_STACK_DEPTH)),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200589 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain,
590 "alias for inverted call graph"),
Greg Priceb21484f2012-12-06 21:48:05 -0800591 OPT_CALLBACK(0, "ignore-callees", NULL, "regex",
592 "ignore callees of these functions in call graphs",
593 report_parse_ignore_callees_opt),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200594 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -0300595 "only consider symbols in these dsos"),
David Ahernc8e66722011-11-13 11:30:08 -0700596 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -0300597 "only consider symbols in these comms"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200598 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -0300599 "only consider these symbols"),
Namhyung Kimb14ffac2012-03-16 17:50:54 +0900600 OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter",
601 "only show symbols that (partially) match with this filter"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200602 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300603 "width[,width...]",
604 "don't try to adjust column width, use these fixed values"),
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200605 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300606 "separator for columns, no spaces will be added between "
607 "columns '.' is reserved."),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200608 OPT_BOOLEAN('U', "hide-unresolved", &report.hide_unresolved,
Arnaldo Carvalho de Melo71289be2009-12-28 22:48:34 -0200609 "Only display entries resolved to a symbol"),
David Ahernec5761e2010-12-09 13:27:07 -0700610 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
611 "Look for files with symbols relative to this directory"),
David Ahernc8e66722011-11-13 11:30:08 -0700612 OPT_STRING('C', "cpu", &report.cpu_list, "cpu",
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200613 "list of cpus to profile"),
614 OPT_BOOLEAN('I', "show-info", &report.show_full_info,
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200615 "Display extended information about perf.data file"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300616 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
617 "Interleave source code with assembly code (default)"),
618 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
619 "Display raw encoding of assembly instructions (default)"),
Andi Kleenf69b64f2011-09-15 14:31:41 -0700620 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
621 "Specify disassembler style (e.g. -M intel for intel syntax)"),
Arnaldo Carvalho de Melo3f2728b2011-10-05 16:10:06 -0300622 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period,
623 "Show a column with the sum of periods"),
Namhyung Kim01d14f12013-01-22 18:09:45 +0900624 OPT_BOOLEAN(0, "group", &symbol_conf.event_group,
625 "Show event group information together"),
Namhyung Kim55369fc2013-04-01 20:35:20 +0900626 OPT_CALLBACK_NOOPT('b', "branch-stack", &branch_mode, "",
Stephane Eranian993ac882012-03-08 23:47:47 +0100627 "use branch records for histogram filling", parse_branch_mode),
Maciek Borzecki7a4ec932012-09-04 12:32:30 +0200628 OPT_STRING(0, "objdump", &objdump_path, "path",
629 "objdump binary to use for disassembly and annotations"),
Namhyung Kim328ccda2013-03-25 18:18:18 +0900630 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
631 "Disable symbol demangling"),
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100632 OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"),
Namhyung Kim064f1982013-05-14 11:09:04 +0900633 OPT_CALLBACK(0, "percent-limit", &report, "percent",
634 "Don't show entries under that percent", parse_percent_limit),
Namhyung Kimf2148332014-01-14 11:52:48 +0900635 OPT_CALLBACK(0, "percentage", NULL, "relative|absolute",
Namhyung Kim33db4562014-02-07 12:06:07 +0900636 "how to display percentage of filtered entries", parse_filter_percentage),
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200637 OPT_END()
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200638 };
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200639 struct perf_data_file file = {
640 .mode = PERF_DATA_MODE_READ,
641 };
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200642
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300643 perf_config(report__config, &report);
Namhyung Kim00c7e1f2013-01-22 18:09:46 +0900644
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200645 argc = parse_options(argc, argv, options, report_usage, 0);
646
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200647 if (report.use_stdio)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300648 use_browser = 0;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200649 else if (report.use_tui)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300650 use_browser = 1;
Pekka Enbergc31a9452012-03-19 15:13:29 -0300651 else if (report.use_gtk)
652 use_browser = 2;
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300653
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200654 if (report.inverted_callchain)
Sam Liaod797fdc2011-06-07 23:49:46 +0800655 callchain_param.order = ORDER_CALLER;
656
Feng Tang70cb4e92012-10-30 11:56:02 +0800657 if (!input_name || !strlen(input_name)) {
Robert Richterefad1412011-12-07 10:02:54 +0100658 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
Feng Tang70cb4e92012-10-30 11:56:02 +0800659 input_name = "-";
Robert Richterefad1412011-12-07 10:02:54 +0100660 else
Feng Tang70cb4e92012-10-30 11:56:02 +0800661 input_name = "perf.data";
Robert Richterefad1412011-12-07 10:02:54 +0100662 }
Feng Tangad0de092013-02-03 14:38:21 +0800663
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200664 file.path = input_name;
665 file.force = report.force;
666
Feng Tangad0de092013-02-03 14:38:21 +0800667repeat:
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200668 session = perf_session__new(&file, false, &report.tool);
Stephane Eranian993ac882012-03-08 23:47:47 +0100669 if (session == NULL)
670 return -ENOMEM;
Robert Richterefad1412011-12-07 10:02:54 +0100671
Stephane Eranian993ac882012-03-08 23:47:47 +0100672 report.session = session;
673
674 has_br_stack = perf_header__has_feat(&session->header,
675 HEADER_BRANCH_STACK);
676
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900677 if (branch_mode == -1 && has_br_stack) {
Namhyung Kim55369fc2013-04-01 20:35:20 +0900678 sort__mode = SORT_MODE__BRANCH;
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900679 symbol_conf.cumulate_callchain = false;
680 }
Stephane Eranian993ac882012-03-08 23:47:47 +0100681
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100682 if (report.mem_mode) {
Namhyung Kim55369fc2013-04-01 20:35:20 +0900683 if (sort__mode == SORT_MODE__BRANCH) {
Namhyung Kima4210142013-12-20 14:11:12 +0900684 pr_err("branch and mem mode incompatible\n");
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100685 goto error;
686 }
Namhyung Kimafab87b2013-04-03 21:26:11 +0900687 sort__mode = SORT_MODE__MEMORY;
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900688 symbol_conf.cumulate_callchain = false;
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100689 }
Stephane Eraniana68c2c52012-03-08 23:47:48 +0100690
Namhyung Kim91aba0a2013-11-01 16:33:13 +0900691 if (setup_sorting() < 0) {
Namhyung Kima7d945b2014-03-04 10:46:34 +0900692 if (sort_order)
693 parse_options_usage(report_usage, options, "s", 1);
694 if (field_order)
695 parse_options_usage(sort_order ? NULL : report_usage,
696 options, "F", 1);
Namhyung Kim91aba0a2013-11-01 16:33:13 +0900697 goto error;
698 }
Namhyung Kim034a9262012-09-14 17:35:28 +0900699
Jiri Olsa5cfe2c82013-12-09 11:02:49 +0100700 /* Force tty output for header output. */
701 if (report.header || report.header_only)
702 use_browser = 0;
703
Namhyung Kim4bceffb2013-11-01 16:33:12 +0900704 if (strcmp(input_name, "-") != 0)
705 setup_browser(true);
Namhyung Kim22af9692014-04-16 11:04:51 +0900706 else
Namhyung Kim4bceffb2013-11-01 16:33:12 +0900707 use_browser = 0;
Namhyung Kim4bceffb2013-11-01 16:33:12 +0900708
Jiri Olsa5cfe2c82013-12-09 11:02:49 +0100709 if (report.header || report.header_only) {
710 perf_session__fprintf_info(session, stdout,
711 report.show_full_info);
712 if (report.header_only)
713 return 0;
714 } else if (use_browser == 0) {
715 fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n",
716 stdout);
717 }
718
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300719 /*
Arnaldo Carvalho de Melo6692c262013-03-28 11:34:10 -0300720 * Only in the TUI browser we are doing integrated annotation,
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300721 * so don't allocate extra space that won't be used in the stdio
722 * implementation.
723 */
Namhyung Kimb9ce0c92014-03-18 15:32:26 +0900724 if (ui__has_annotation()) {
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200725 symbol_conf.priv_size = sizeof(struct annotation);
Adrian Hunterb8681712013-08-08 14:32:22 +0300726 machines__set_symbol_filter(&session->machines,
727 symbol__annotate_init);
Arnaldo Carvalho de Melo80d50ca2010-08-05 19:28:27 -0300728 /*
729 * For searching by name on the "Browse map details".
730 * providing it only in verbose mode not to bloat too
731 * much struct symbol.
732 */
733 if (verbose) {
734 /*
735 * XXX: Need to provide a less kludgy way to ask for
736 * more space per symbol, the u32 is for the index on
737 * the ui browser.
738 * See symbol__browser_index.
739 */
740 symbol_conf.priv_size += sizeof(u32);
741 symbol_conf.sort_by_name = true;
742 }
743 }
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200744
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -0200745 if (symbol__init() < 0)
Stephane Eranian993ac882012-03-08 23:47:47 +0100746 goto error;
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200747
Namhyung Kim6db61272012-03-16 17:50:55 +0900748 if (argc) {
749 /*
750 * Special case: if there's an argument left then assume that
751 * it's a symbol filter:
752 */
753 if (argc > 1)
754 usage_with_options(report_usage, options);
755
756 report.symbol_filter_str = argv[0];
757 }
Ingo Molnaredc52de2009-06-04 16:24:37 +0200758
Namhyung Kim08e71542013-04-03 21:26:19 +0900759 sort__setup_elide(stdout);
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -0300760
Stephane Eranian993ac882012-03-08 23:47:47 +0100761 ret = __cmd_report(&report);
Feng Tangad0de092013-02-03 14:38:21 +0800762 if (ret == K_SWITCH_INPUT_DATA) {
763 perf_session__delete(session);
764 goto repeat;
765 } else
766 ret = 0;
767
Stephane Eranian993ac882012-03-08 23:47:47 +0100768error:
769 perf_session__delete(session);
770 return ret;
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200771}