blob: 1394cd8d96f7bb8d132e2a5cf892090690a19920 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002/*
3 * builtin-report.c
4 *
5 * Builtin report command: Analyze the perf.data input file,
6 * look up and read DSOs and symbol information and display
7 * a histogram of results, along various sorting keys.
8 */
Ingo Molnar16f762a2009-05-27 09:10:38 +02009#include "builtin.h"
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020010
Ingo Molnarbf9e1872009-06-02 23:37:05 +020011#include "util/util.h"
Taeung Song41840d22016-06-23 17:55:17 +090012#include "util/config.h"
Ingo Molnarbf9e1872009-06-02 23:37:05 +020013
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020014#include "util/annotate.h"
Ingo Molnar8fc03212009-06-04 15:19:47 +020015#include "util/color.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -030016#include <linux/list.h>
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -030017#include <linux/rbtree.h>
Arnaldo Carvalho de Meloa2928c42009-05-28 14:55:04 -030018#include "util/symbol.h"
Frederic Weisbeckerf55c5552009-06-26 16:28:01 +020019#include "util/callchain.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 Weisbecker8f288272009-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
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060030#include <subcmd/parse-options.h>
Namhyung Kim34b7b0f2016-01-09 19:16:29 +090031#include <subcmd/exec-cmd.h>
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020032#include "util/parse-events.h"
33
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020034#include "util/thread.h"
John Kacurdd68ada2009-09-24 18:02:49 +020035#include "util/sort.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020036#include "util/hist.h"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020037#include "util/data.h"
Irina Tirdea68e94f42012-10-16 02:33:38 +030038#include "arch/common.h"
David Ahern46690a82016-11-29 10:15:46 -070039#include "util/time-utils.h"
Adrian Hunter520a2eb2015-04-24 22:29:45 +030040#include "util/auxtrace.h"
Arnaldo Carvalho de Melo58db1d62017-04-19 16:05:56 -030041#include "util/units.h"
Jin Yao2d78b182017-07-18 20:13:14 +080042#include "util/branch.h"
Adrian Hunter520a2eb2015-04-24 22:29:45 +030043
Namhyung Kimfc672972013-09-13 15:27:43 +090044#include <dlfcn.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030045#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030046#include <inttypes.h>
Arnaldo Carvalho de Melo1eae20c2017-04-18 12:33:30 -030047#include <regex.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030048#include <signal.h>
Anton Blanchard5d67be92011-07-04 21:57:50 +100049#include <linux/bitmap.h>
Arnaldo Carvalho de Melo531d2412016-03-23 15:16:55 -030050#include <linux/stringify.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030051#include <sys/types.h>
52#include <sys/stat.h>
53#include <unistd.h>
Anton Blanchard5d67be92011-07-04 21:57:50 +100054
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -030055struct report {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020056 struct perf_tool tool;
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020057 struct perf_session *session;
Arnaldo Carvalho de Melo2059fc72015-11-12 16:50:13 -030058 bool use_tui, use_gtk, use_stdio;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -020059 bool show_full_info;
60 bool show_threads;
61 bool inverted_callchain;
Stephane Eranianf4f7e282013-01-24 16:10:36 +010062 bool mem_mode;
Jiri Olsa5cfe2c82013-12-09 11:02:49 +010063 bool header;
64 bool header_only;
Andi Kleen98df8582015-07-18 08:24:47 -070065 bool nonany_branch_mode;
Waiman Long91e95612013-10-18 10:38:48 -040066 int max_stack;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -020067 struct perf_read_values show_threads_values;
68 const char *pretty_printing_style;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -020069 const char *cpu_list;
Namhyung Kimb14ffac2012-03-16 17:50:54 +090070 const char *symbol_filter_str;
David Ahern46690a82016-11-29 10:15:46 -070071 const char *time_str;
72 struct perf_time_interval ptime;
Namhyung Kim064f1982013-05-14 11:09:04 +090073 float min_percent;
Namhyung Kim58c311d2014-04-22 09:47:25 +090074 u64 nr_entries;
Jiri Olsa94786b62014-06-05 11:00:20 +020075 u64 queue_size;
Kan Liang21394d92015-09-04 10:45:44 -040076 int socket_filter;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -020077 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jin Yao2d78b182017-07-18 20:13:14 +080078 struct branch_type_stat brtype_stat;
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -020079};
Anton Blanchard5d67be92011-07-04 21:57:50 +100080
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -030081static int report__config(const char *var, const char *value, void *cb)
Namhyung Kim00c7e1f2013-01-22 18:09:46 +090082{
Jiri Olsa94786b62014-06-05 11:00:20 +020083 struct report *rep = cb;
84
Namhyung Kim00c7e1f2013-01-22 18:09:46 +090085 if (!strcmp(var, "report.group")) {
86 symbol_conf.event_group = perf_config_bool(var, value);
87 return 0;
88 }
Namhyung Kimeec574e2013-05-14 11:09:06 +090089 if (!strcmp(var, "report.percent-limit")) {
Namhyung Kim2665b452016-01-28 00:40:50 +090090 double pcnt = strtof(value, NULL);
91
92 rep->min_percent = pcnt;
93 callchain_param.min_percent = pcnt;
Namhyung Kimeec574e2013-05-14 11:09:06 +090094 return 0;
95 }
Namhyung Kim8d8e6452013-01-22 18:09:46 +090096 if (!strcmp(var, "report.children")) {
97 symbol_conf.cumulate_callchain = perf_config_bool(var, value);
98 return 0;
99 }
Arnaldo Carvalho de Melo25ce4bb2017-06-27 11:44:58 -0300100 if (!strcmp(var, "report.queue-size"))
101 return perf_config_u64(&rep->queue_size, var, value);
102
Arnaldo Carvalho de Melofa1f4562016-08-12 20:41:01 -0300103 if (!strcmp(var, "report.sort_order")) {
104 default_sort_order = strdup(value);
105 return 0;
106 }
Namhyung Kim00c7e1f2013-01-22 18:09:46 +0900107
Wang Nanb8cbb342016-02-26 09:31:51 +0000108 return 0;
Namhyung Kim00c7e1f2013-01-22 18:09:46 +0900109}
110
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900111static int hist_iter__report_callback(struct hist_entry_iter *iter,
112 struct addr_location *al, bool single,
113 void *arg)
114{
115 int err = 0;
116 struct report *rep = arg;
117 struct hist_entry *he = iter->he;
118 struct perf_evsel *evsel = iter->evsel;
Taeung Songbab89f62017-07-20 16:28:53 -0300119 struct perf_sample *sample = iter->sample;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900120 struct mem_info *mi;
121 struct branch_info *bi;
122
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900123 if (!ui__has_annotation())
124 return 0;
125
Taeung Songbab89f62017-07-20 16:28:53 -0300126 hist__account_cycles(sample->branch_stack, al, sample,
Andi Kleen578499982015-07-18 08:24:49 -0700127 rep->nonany_branch_mode);
128
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900129 if (sort__mode == SORT_MODE__BRANCH) {
130 bi = he->branch_info;
Taeung Songbab89f62017-07-20 16:28:53 -0300131 err = addr_map_symbol__inc_samples(&bi->from, sample, evsel->idx);
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900132 if (err)
133 goto out;
134
Taeung Songbab89f62017-07-20 16:28:53 -0300135 err = addr_map_symbol__inc_samples(&bi->to, sample, evsel->idx);
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900136
137 } else if (rep->mem_mode) {
138 mi = he->mem_info;
Taeung Songbab89f62017-07-20 16:28:53 -0300139 err = addr_map_symbol__inc_samples(&mi->daddr, sample, evsel->idx);
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900140 if (err)
141 goto out;
142
Taeung Songbab89f62017-07-20 16:28:53 -0300143 err = hist_entry__inc_addr_samples(he, sample, evsel->idx, al->addr);
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900144
145 } else if (symbol_conf.cumulate_callchain) {
146 if (single)
Taeung Songbab89f62017-07-20 16:28:53 -0300147 err = hist_entry__inc_addr_samples(he, sample, evsel->idx,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900148 al->addr);
149 } else {
Taeung Songbab89f62017-07-20 16:28:53 -0300150 err = hist_entry__inc_addr_samples(he, sample, evsel->idx, al->addr);
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900151 }
152
153out:
154 return err;
Namhyung Kim58c311d2014-04-22 09:47:25 +0900155}
156
Jin Yao2d78b182017-07-18 20:13:14 +0800157static int hist_iter__branch_callback(struct hist_entry_iter *iter,
158 struct addr_location *al __maybe_unused,
159 bool single __maybe_unused,
160 void *arg)
161{
162 struct hist_entry *he = iter->he;
163 struct report *rep = arg;
164 struct branch_info *bi;
165
166 bi = he->branch_info;
167 branch_type_count(&rep->brtype_stat, &bi->flags,
168 bi->from.addr, bi->to.addr);
169
170 return 0;
171}
172
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200173static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200174 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200175 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300176 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200177 struct machine *machine)
Ingo Molnar75051722009-06-03 23:14:49 +0200178{
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300179 struct report *rep = container_of(tool, struct report, tool);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200180 struct addr_location al;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900181 struct hist_entry_iter iter = {
Namhyung Kim063bd932015-05-19 17:04:10 +0900182 .evsel = evsel,
183 .sample = sample,
Namhyung Kimb49a8fe2015-11-26 16:08:20 +0900184 .hide_unresolved = symbol_conf.hide_unresolved,
Namhyung Kim063bd932015-05-19 17:04:10 +0900185 .add_entry_cb = hist_iter__report_callback,
Namhyung Kim69bcb012013-10-30 09:40:34 +0900186 };
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300187 int ret = 0;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900188
David Ahern46690a82016-11-29 10:15:46 -0700189 if (perf_time__skip_sample(&rep->ptime, sample->time))
190 return 0;
191
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300192 if (machine__resolve(machine, &al, sample) < 0) {
Namhyung Kima4210142013-12-20 14:11:12 +0900193 pr_debug("problem processing %d event, skipping it.\n",
194 event->header.type);
Ingo Molnar75051722009-06-03 23:14:49 +0200195 return -1;
196 }
197
Namhyung Kimb49a8fe2015-11-26 16:08:20 +0900198 if (symbol_conf.hide_unresolved && al.sym == NULL)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300199 goto out_put;
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -0300200
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200201 if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300202 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +1000203
Adrian Hunterf86225d2015-09-25 16:15:42 +0300204 if (sort__mode == SORT_MODE__BRANCH) {
205 /*
206 * A non-synthesized event might not have a branch stack if
207 * branch stacks have been synthesized (using itrace options).
208 */
209 if (!sample->branch_stack)
210 goto out_put;
Jin Yao2d78b182017-07-18 20:13:14 +0800211
212 iter.add_entry_cb = hist_iter__branch_callback;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900213 iter.ops = &hist_iter_branch;
Adrian Hunterf86225d2015-09-25 16:15:42 +0300214 } else if (rep->mem_mode) {
Namhyung Kim69bcb012013-10-30 09:40:34 +0900215 iter.ops = &hist_iter_mem;
Adrian Hunterf86225d2015-09-25 16:15:42 +0300216 } else if (symbol_conf.cumulate_callchain) {
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900217 iter.ops = &hist_iter_cumulative;
Adrian Hunterf86225d2015-09-25 16:15:42 +0300218 } else {
Namhyung Kim69bcb012013-10-30 09:40:34 +0900219 iter.ops = &hist_iter_normal;
Adrian Hunterf86225d2015-09-25 16:15:42 +0300220 }
Arnaldo Carvalho de Meloec80fde2011-05-26 09:53:51 -0300221
Namhyung Kim69bcb012013-10-30 09:40:34 +0900222 if (al.map != NULL)
223 al.map->dso->hit = 1;
224
Namhyung Kim063bd932015-05-19 17:04:10 +0900225 ret = hist_entry_iter__add(&iter, &al, rep->max_stack, rep);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900226 if (ret < 0)
227 pr_debug("problem adding hist entry, skipping event\n");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300228out_put:
229 addr_location__put(&al);
Namhyung Kim27a0dcb2013-05-14 11:09:02 +0900230 return ret;
Ingo Molnar75051722009-06-03 23:14:49 +0200231}
232
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200233static int process_read_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200234 union perf_event *event,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300235 struct perf_sample *sample __maybe_unused,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200236 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300237 struct machine *machine __maybe_unused)
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200238{
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300239 struct report *rep = container_of(tool, struct report, tool);
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200240
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200241 if (rep->show_threads) {
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300242 const char *name = evsel ? perf_evsel__name(evsel) : "unknown";
Arnaldo Carvalho de Melo89973502016-10-14 18:23:11 -0300243 int err = perf_read_values_add_value(&rep->show_threads_values,
Brice Goglin8d513272009-08-07 13:55:24 +0200244 event->read.pid, event->read.tid,
Jiri Olsa99331832017-08-24 18:27:36 +0200245 evsel->idx,
Brice Goglin8d513272009-08-07 13:55:24 +0200246 name,
247 event->read.value);
Arnaldo Carvalho de Melo89973502016-10-14 18:23:11 -0300248
249 if (err)
250 return err;
Brice Goglin8d513272009-08-07 13:55:24 +0200251 }
252
Peter Zijlstrae9ea2fd2009-06-24 22:46:04 +0200253 return 0;
254}
255
David Ahern300aa942012-06-11 13:48:41 -0600256/* For pipe mode, sample_type is not currently set */
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300257static int report__setup_sample_type(struct report *rep)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300258{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300259 struct perf_session *session = rep->session;
260 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100261 bool is_pipe = perf_data__is_pipe(session->data);
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200262
Adrian Hunterd062ac12015-09-25 16:15:33 +0300263 if (session->itrace_synth_opts->callchain ||
264 (!is_pipe &&
265 perf_header__has_feat(&session->header, HEADER_AUXTRACE) &&
266 !session->itrace_synth_opts->set))
267 sample_type |= PERF_SAMPLE_CALLCHAIN;
268
Adrian Hunterc7eced62015-09-25 16:15:40 +0300269 if (session->itrace_synth_opts->last_branch)
270 sample_type |= PERF_SAMPLE_BRANCH_STACK;
271
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200272 if (!is_pipe && !(sample_type & PERF_SAMPLE_CALLCHAIN)) {
Jiri Olsade7e6a72016-05-03 13:54:43 +0200273 if (perf_hpp_list.parent) {
Namhyung Kim3780f482012-05-29 13:22:57 +0900274 ui__error("Selected --sort parent, but no "
Arnaldo Carvalho de Melo00894ce2011-08-03 12:33:24 -0300275 "callchain data. Did you call "
276 "'perf record' without -g?\n");
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200277 return -EINVAL;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200278 }
Jin Yaob49a8212017-05-08 18:43:02 +0800279 if (symbol_conf.use_callchain &&
280 !symbol_conf.show_branchflag_count) {
281 ui__error("Selected -g or --branch-history.\n"
282 "But no callchain or branch data.\n"
283 "Did you call 'perf record' without -g or -b?\n");
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200284 return -1;
285 }
Arnaldo Carvalho de Melo1cc83812016-04-18 11:54:31 -0300286 } else if (!callchain_param.enabled &&
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200287 callchain_param.mode != CHAIN_NONE &&
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200288 !symbol_conf.use_callchain) {
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200289 symbol_conf.use_callchain = true;
Frederic Weisbecker16537f12011-01-14 04:52:00 +0100290 if (callchain_register_param(&callchain_param) < 0) {
Namhyung Kim3780f482012-05-29 13:22:57 +0900291 ui__error("Can't register callchain params.\n");
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200292 return -EINVAL;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200293 }
Ingo Molnard80d3382009-06-03 23:14:49 +0200294 }
295
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900296 if (symbol_conf.cumulate_callchain) {
297 /* Silently ignore if callchain is missing */
298 if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
299 symbol_conf.cumulate_callchain = false;
300 perf_hpp__cancel_cumulate();
301 }
302 }
303
Namhyung Kim55369fc2013-04-01 20:35:20 +0900304 if (sort__mode == SORT_MODE__BRANCH) {
Jiri Olsacc9784bd2013-10-15 16:27:34 +0200305 if (!is_pipe &&
Arnaldo Carvalho de Melo7f3be652012-08-01 19:15:52 -0300306 !(sample_type & PERF_SAMPLE_BRANCH_STACK)) {
Namhyung Kim3780f482012-05-29 13:22:57 +0900307 ui__error("Selected -b but no branch data. "
308 "Did you call perf record without -b?\n");
Roberto Agostino Vitillob50311d2012-02-09 23:21:03 +0100309 return -1;
310 }
311 }
312
Namhyung Kim0cdccac2014-10-06 09:45:59 +0900313 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
314 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
315 (sample_type & PERF_SAMPLE_STACK_USER))
316 callchain_param.record_mode = CALLCHAIN_DWARF;
Kan Liangaad2b212015-01-05 13:23:04 -0500317 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
318 callchain_param.record_mode = CALLCHAIN_LBR;
Namhyung Kim0cdccac2014-10-06 09:45:59 +0900319 else
320 callchain_param.record_mode = CALLCHAIN_FP;
321 }
Andi Kleen98df8582015-07-18 08:24:47 -0700322
323 /* ??? handle more cases than just ANY? */
324 if (!(perf_evlist__combined_branch_type(session->evlist) &
325 PERF_SAMPLE_BRANCH_ANY))
326 rep->nonany_branch_mode = true;
327
Ingo Molnard80d3382009-06-03 23:14:49 +0200328 return 0;
329}
330
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300331static void sig_handler(int sig __maybe_unused)
Tom Zanussi46656ac2010-04-01 23:59:17 -0500332{
333 session_done = 1;
334}
335
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300336static size_t hists__fprintf_nr_sample_events(struct hists *hists, struct report *rep,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300337 const char *evname, FILE *fp)
338{
339 size_t ret;
340 char unit;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300341 unsigned long nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
342 u64 nr_events = hists->stats.total_period;
343 struct perf_evsel *evsel = hists_to_evsel(hists);
Namhyung Kim717e2632013-01-22 18:09:44 +0900344 char buf[512];
345 size_t size = sizeof(buf);
Kan Liang84734b02015-09-04 10:45:45 -0400346 int socked_id = hists->socket_filter;
Namhyung Kim717e2632013-01-22 18:09:44 +0900347
Namhyung Kim27fafab2017-02-17 17:17:39 +0900348 if (quiet)
349 return 0;
350
Namhyung Kimf2148332014-01-14 11:52:48 +0900351 if (symbol_conf.filter_relative) {
352 nr_samples = hists->stats.nr_non_filtered_samples;
353 nr_events = hists->stats.total_non_filtered_period;
354 }
355
Namhyung Kim759ff492013-03-05 14:53:26 +0900356 if (perf_evsel__is_group_event(evsel)) {
Namhyung Kim717e2632013-01-22 18:09:44 +0900357 struct perf_evsel *pos;
358
359 perf_evsel__group_desc(evsel, buf, size);
360 evname = buf;
361
362 for_each_group_member(pos, evsel) {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300363 const struct hists *pos_hists = evsel__hists(pos);
364
Namhyung Kimf2148332014-01-14 11:52:48 +0900365 if (symbol_conf.filter_relative) {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300366 nr_samples += pos_hists->stats.nr_non_filtered_samples;
367 nr_events += pos_hists->stats.total_non_filtered_period;
Namhyung Kimf2148332014-01-14 11:52:48 +0900368 } else {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300369 nr_samples += pos_hists->stats.nr_events[PERF_RECORD_SAMPLE];
370 nr_events += pos_hists->stats.total_period;
Namhyung Kimf2148332014-01-14 11:52:48 +0900371 }
Namhyung Kim717e2632013-01-22 18:09:44 +0900372 }
373 }
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300374
Ashay Ranecc6862802012-04-05 21:01:01 -0500375 nr_samples = convert_unit(nr_samples, &unit);
376 ret = fprintf(fp, "# Samples: %lu%c", nr_samples, unit);
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300377 if (evname != NULL)
Ashay Ranecc6862802012-04-05 21:01:01 -0500378 ret += fprintf(fp, " of event '%s'", evname);
379
Kan Liang9e207dd2015-08-11 06:30:49 -0400380 if (symbol_conf.show_ref_callgraph &&
381 strstr(evname, "call-graph=no")) {
382 ret += fprintf(fp, ", show reference callgraph");
383 }
384
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100385 if (rep->mem_mode) {
386 ret += fprintf(fp, "\n# Total weight : %" PRIu64, nr_events);
Yunlong Song228f14f2015-03-23 11:50:05 +0800387 ret += fprintf(fp, "\n# Sort order : %s", sort_order ? : default_mem_sort_order);
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100388 } else
389 ret += fprintf(fp, "\n# Event count (approx.): %" PRIu64, nr_events);
Kan Liang21394d92015-09-04 10:45:44 -0400390
Kan Liang84734b02015-09-04 10:45:45 -0400391 if (socked_id > -1)
392 ret += fprintf(fp, "\n# Processor Socket: %d", socked_id);
Kan Liang21394d92015-09-04 10:45:44 -0400393
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300394 return ret + fprintf(fp, "\n#\n");
395}
396
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300397static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300398 struct report *rep,
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300399 const char *help)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300400{
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300401 struct perf_evsel *pos;
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300402
Namhyung Kim27fafab2017-02-17 17:17:39 +0900403 if (!quiet) {
404 fprintf(stdout, "#\n# Total Lost Samples: %" PRIu64 "\n#\n",
405 evlist->stats.total_lost_samples);
406 }
407
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300408 evlist__for_each_entry(evlist, pos) {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300409 struct hists *hists = evsel__hists(pos);
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300410 const char *evname = perf_evsel__name(pos);
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300411
Namhyung Kimfc24d7c2013-01-22 18:09:43 +0900412 if (symbol_conf.event_group &&
413 !perf_evsel__is_group_leader(pos))
414 continue;
415
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300416 hists__fprintf_nr_sample_events(hists, rep, evname, stdout);
Namhyung Kim27fafab2017-02-17 17:17:39 +0900417 hists__fprintf(hists, !quiet, 0, 0, rep->min_percent, stdout,
Jin Yaob49a8212017-05-08 18:43:02 +0800418 symbol_conf.use_callchain ||
419 symbol_conf.show_branchflag_count);
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300420 fprintf(stdout, "\n\n");
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300421 }
422
Namhyung Kim8b53dbe2017-03-08 00:08:29 +0900423 if (!quiet)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300424 fprintf(stdout, "#\n# (%s)\n#\n", help);
425
Namhyung Kim021162c2015-05-11 22:44:39 +0900426 if (rep->show_threads) {
427 bool style = !strcmp(rep->pretty_printing_style, "raw");
428 perf_read_values_display(stdout, &rep->show_threads_values,
429 style);
430 perf_read_values_destroy(&rep->show_threads_values);
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300431 }
432
Jin Yao2d78b182017-07-18 20:13:14 +0800433 if (sort__mode == SORT_MODE__BRANCH)
434 branch_type_stat_display(stdout, &rep->brtype_stat);
435
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300436 return 0;
437}
438
Arnaldo Carvalho de Melofad29182014-01-08 10:10:00 -0300439static void report__warn_kptr_restrict(const struct report *rep)
440{
Arnaldo Carvalho de Meloa5e813c2015-09-30 11:54:04 -0300441 struct map *kernel_map = machine__kernel_map(&rep->session->machines.host);
Wang Nanf6fcc142015-04-08 10:59:32 +0000442 struct kmap *kernel_kmap = kernel_map ? map__kmap(kernel_map) : NULL;
Arnaldo Carvalho de Melofad29182014-01-08 10:10:00 -0300443
444 if (kernel_map == NULL ||
445 (kernel_map->dso->hit &&
446 (kernel_kmap->ref_reloc_sym == NULL ||
447 kernel_kmap->ref_reloc_sym->addr == 0))) {
448 const char *desc =
449 "As no suitable kallsyms nor vmlinux was found, kernel samples\n"
450 "can't be resolved.";
451
452 if (kernel_map) {
453 const struct dso *kdso = kernel_map->dso;
454 if (!RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION])) {
455 desc = "If some relocation was applied (e.g. "
456 "kexec) symbols may be misresolved.";
457 }
458 }
459
460 ui__warning(
461"Kernel address maps (/proc/{kallsyms,modules}) were restricted.\n\n"
462"Check /proc/sys/kernel/kptr_restrict before running 'perf record'.\n\n%s\n\n"
463"Samples in kernel modules can't be resolved as well.\n\n",
464 desc);
465 }
466}
467
Arnaldo Carvalho de Melo83629512014-01-08 12:22:07 -0300468static int report__gtk_browse_hists(struct report *rep, const char *help)
469{
470 int (*hist_browser)(struct perf_evlist *evlist, const char *help,
471 struct hist_browser_timer *timer, float min_pcnt);
472
473 hist_browser = dlsym(perf_gtk_handle, "perf_evlist__gtk_browse_hists");
474
475 if (hist_browser == NULL) {
476 ui__error("GTK browser not found!\n");
477 return -1;
478 }
479
480 return hist_browser(rep->session->evlist, help, NULL, rep->min_percent);
481}
482
483static int report__browse_hists(struct report *rep)
484{
485 int ret;
486 struct perf_session *session = rep->session;
487 struct perf_evlist *evlist = session->evlist;
Namhyung Kim34b7b0f2016-01-09 19:16:29 +0900488 const char *help = perf_tip(system_path(TIPDIR));
489
490 if (help == NULL) {
491 /* fallback for people who don't install perf ;-) */
492 help = perf_tip(DOCDIR);
493 if (help == NULL)
494 help = "Cannot load tips.txt file, please install perf!";
495 }
Arnaldo Carvalho de Melo83629512014-01-08 12:22:07 -0300496
497 switch (use_browser) {
498 case 1:
499 ret = perf_evlist__tui_browse_hists(evlist, help, NULL,
500 rep->min_percent,
501 &session->header.env);
502 /*
503 * Usually "ret" is the last pressed key, and we only
504 * care if the key notifies us to switch data file.
505 */
506 if (ret != K_SWITCH_INPUT_DATA)
507 ret = 0;
508 break;
509 case 2:
510 ret = report__gtk_browse_hists(rep, help);
511 break;
512 default:
513 ret = perf_evlist__tty_browse_hists(evlist, rep, help);
514 break;
515 }
516
517 return ret;
518}
519
Namhyung Kim5b2ea6f2016-02-16 23:08:26 +0900520static int report__collapse_hists(struct report *rep)
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300521{
522 struct ui_progress prog;
523 struct perf_evsel *pos;
Namhyung Kim5b2ea6f2016-02-16 23:08:26 +0900524 int ret = 0;
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300525
Namhyung Kim58c311d2014-04-22 09:47:25 +0900526 ui_progress__init(&prog, rep->nr_entries, "Merging related events...");
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300527
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300528 evlist__for_each_entry(rep->session->evlist, pos) {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300529 struct hists *hists = evsel__hists(pos);
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300530
531 if (pos->idx == 0)
532 hists->symbol_filter_str = rep->symbol_filter_str;
533
Kan Liang21394d92015-09-04 10:45:44 -0400534 hists->socket_filter = rep->socket_filter;
535
Namhyung Kim5b2ea6f2016-02-16 23:08:26 +0900536 ret = hists__collapse_resort(hists, &prog);
537 if (ret < 0)
538 break;
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300539
540 /* Non-group events are considered as leader */
541 if (symbol_conf.event_group &&
542 !perf_evsel__is_group_leader(pos)) {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300543 struct hists *leader_hists = evsel__hists(pos->leader);
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300544
545 hists__match(leader_hists, hists);
546 hists__link(leader_hists, hists);
547 }
548 }
549
550 ui_progress__finish();
Namhyung Kim5b2ea6f2016-02-16 23:08:26 +0900551 return ret;
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300552}
553
Namhyung Kim740b97f2014-12-22 13:44:10 +0900554static void report__output_resort(struct report *rep)
555{
556 struct ui_progress prog;
557 struct perf_evsel *pos;
558
559 ui_progress__init(&prog, rep->nr_entries, "Sorting events for output...");
560
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300561 evlist__for_each_entry(rep->session->evlist, pos)
Jiri Olsa452ce032016-01-18 10:24:00 +0100562 perf_evsel__output_resort(pos, &prog);
Namhyung Kim740b97f2014-12-22 13:44:10 +0900563
564 ui_progress__finish();
565}
566
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300567static int __cmd_report(struct report *rep)
Ingo Molnard80d3382009-06-03 23:14:49 +0200568{
Arnaldo Carvalho de Melof6d8b052014-01-08 14:45:24 -0300569 int ret;
Stephane Eranian993ac882012-03-08 23:47:47 +0100570 struct perf_session *session = rep->session;
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300571 struct perf_evsel *pos;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100572 struct perf_data *data = session->data;
Ingo Molnard80d3382009-06-03 23:14:49 +0200573
Tom Zanussi46656ac2010-04-01 23:59:17 -0500574 signal(SIGINT, sig_handler);
575
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200576 if (rep->cpu_list) {
577 ret = perf_session__cpu_bitmap(session, rep->cpu_list,
578 rep->cpu_bitmap);
Namhyung Kim25b16062015-11-28 02:32:37 +0900579 if (ret) {
580 ui__error("failed to set cpu bitmap\n");
Jiri Olsad4ae0a62013-06-25 13:54:13 +0200581 return ret;
Namhyung Kim25b16062015-11-28 02:32:37 +0900582 }
Adrian Hunter644e0842017-05-26 11:17:38 +0300583 session->itrace_synth_opts->cpu_bitmap = rep->cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +1000584 }
585
Arnaldo Carvalho de Melo89973502016-10-14 18:23:11 -0300586 if (rep->show_threads) {
587 ret = perf_read_values_init(&rep->show_threads_values);
588 if (ret)
589 return ret;
590 }
Brice Goglin8d513272009-08-07 13:55:24 +0200591
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300592 ret = report__setup_sample_type(rep);
Namhyung Kim25b16062015-11-28 02:32:37 +0900593 if (ret) {
594 /* report__setup_sample_type() already showed error message */
Jiri Olsad4ae0a62013-06-25 13:54:13 +0200595 return ret;
Namhyung Kim25b16062015-11-28 02:32:37 +0900596 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -0200597
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300598 ret = perf_session__process_events(session);
Namhyung Kim25b16062015-11-28 02:32:37 +0900599 if (ret) {
600 ui__error("failed to process sample\n");
Jiri Olsad4ae0a62013-06-25 13:54:13 +0200601 return ret;
Namhyung Kim25b16062015-11-28 02:32:37 +0900602 }
Ingo Molnar97b07b62009-05-26 18:48:58 +0200603
Arnaldo Carvalho de Melofad29182014-01-08 10:10:00 -0300604 report__warn_kptr_restrict(rep);
Arnaldo Carvalho de Meloec80fde2011-05-26 09:53:51 -0300605
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300606 evlist__for_each_entry(session->evlist, pos)
Namhyung Kim590cd342014-12-22 13:44:09 +0900607 rep->nr_entries += evsel__hists(pos)->nr_entries;
608
Namhyung Kim150e4652013-12-20 14:11:13 +0900609 if (use_browser == 0) {
610 if (verbose > 3)
611 perf_session__fprintf(session, stdout);
Arnaldo Carvalho de Melo9ac99542009-06-04 13:54:00 -0300612
Namhyung Kim150e4652013-12-20 14:11:13 +0900613 if (verbose > 2)
614 perf_session__fprintf_dsos(session, stdout);
Ingo Molnar16f762a2009-05-27 09:10:38 +0200615
Namhyung Kim150e4652013-12-20 14:11:13 +0900616 if (dump_trace) {
617 perf_session__fprintf_nr_events(session, stdout);
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -0300618 perf_evlist__fprintf_nr_events(session->evlist, stdout);
Namhyung Kim150e4652013-12-20 14:11:13 +0900619 return 0;
620 }
Jiri Olsa71ad0f52012-08-07 15:20:46 +0200621 }
622
Namhyung Kim5b2ea6f2016-02-16 23:08:26 +0900623 ret = report__collapse_hists(rep);
624 if (ret) {
625 ui__error("failed to process hist entry\n");
626 return ret;
627 }
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300628
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -0300629 if (session_done())
630 return 0;
631
Namhyung Kim740b97f2014-12-22 13:44:10 +0900632 /*
633 * recalculate number of entries after collapsing since it
634 * might be changed during the collapse phase.
635 */
636 rep->nr_entries = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300637 evlist__for_each_entry(session->evlist, pos)
Namhyung Kim740b97f2014-12-22 13:44:10 +0900638 rep->nr_entries += evsel__hists(pos)->nr_entries;
639
Namhyung Kim58c311d2014-04-22 09:47:25 +0900640 if (rep->nr_entries == 0) {
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100641 ui__error("The %s file has no samples!\n", data->file.path);
Jiri Olsad4ae0a62013-06-25 13:54:13 +0200642 return 0;
Arnaldo Carvalho de Melo74cfc172011-02-17 14:40:46 -0200643 }
644
Namhyung Kim740b97f2014-12-22 13:44:10 +0900645 report__output_resort(rep);
Namhyung Kim6e1f6012013-01-22 18:09:32 +0900646
Arnaldo Carvalho de Melo83629512014-01-08 12:22:07 -0300647 return report__browse_hists(rep);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300648}
649
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200650static int
Don Zickuscff6bb42014-04-07 14:55:24 -0400651report_parse_callchain_opt(const struct option *opt, const char *arg, int unset)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200652{
Arnaldo Carvalho de Melo1cc83812016-04-18 11:54:31 -0300653 struct callchain_param *callchain = opt->value;
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +0200654
Arnaldo Carvalho de Melo1cc83812016-04-18 11:54:31 -0300655 callchain->enabled = !unset;
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200656 /*
657 * --no-call-graph
658 */
659 if (unset) {
Arnaldo Carvalho de Melo1cc83812016-04-18 11:54:31 -0300660 symbol_conf.use_callchain = false;
661 callchain->mode = CHAIN_NONE;
Arnaldo Carvalho de Melob9a63b92010-01-05 11:54:45 -0200662 return 0;
663 }
664
Don Zickuscff6bb42014-04-07 14:55:24 -0400665 return parse_callchain_report_opt(arg);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200666}
667
Greg Priceb21484f2012-12-06 21:48:05 -0800668int
669report_parse_ignore_callees_opt(const struct option *opt __maybe_unused,
670 const char *arg, int unset __maybe_unused)
671{
672 if (arg) {
673 int err = regcomp(&ignore_callees_regex, arg, REG_EXTENDED);
674 if (err) {
675 char buf[BUFSIZ];
676 regerror(err, &ignore_callees_regex, buf, sizeof(buf));
677 pr_err("Invalid --ignore-callees regex: %s\n%s", arg, buf);
678 return -1;
679 }
680 have_ignore_callees = 1;
681 }
682
683 return 0;
684}
685
Stephane Eranian993ac882012-03-08 23:47:47 +0100686static int
Arnaldo Carvalho de Melo7e6a7992016-12-12 10:52:10 -0300687parse_branch_mode(const struct option *opt,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300688 const char *str __maybe_unused, int unset)
Stephane Eranian993ac882012-03-08 23:47:47 +0100689{
Namhyung Kim55369fc2013-04-01 20:35:20 +0900690 int *branch_mode = opt->value;
691
692 *branch_mode = !unset;
Stephane Eranian993ac882012-03-08 23:47:47 +0100693 return 0;
694}
695
Namhyung Kim064f1982013-05-14 11:09:04 +0900696static int
697parse_percent_limit(const struct option *opt, const char *str,
698 int unset __maybe_unused)
699{
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300700 struct report *rep = opt->value;
Namhyung Kim2665b452016-01-28 00:40:50 +0900701 double pcnt = strtof(str, NULL);
Namhyung Kim064f1982013-05-14 11:09:04 +0900702
Namhyung Kim2665b452016-01-28 00:40:50 +0900703 rep->min_percent = pcnt;
704 callchain_param.min_percent = pcnt;
Namhyung Kim064f1982013-05-14 11:09:04 +0900705 return 0;
706}
707
Namhyung Kimf2af0082015-11-09 14:45:41 +0900708#define CALLCHAIN_DEFAULT_OPT "graph,0.5,caller,function,percent"
Namhyung Kim76a26542015-10-22 23:28:32 +0900709
710const char report_callchain_help[] = "Display call graph (stack chain/backtrace):\n\n"
711 CALLCHAIN_REPORT_HELP
712 "\n\t\t\t\tDefault: " CALLCHAIN_DEFAULT_OPT;
Namhyung Kim21cf6282015-10-22 15:28:48 +0900713
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300714int cmd_report(int argc, const char **argv)
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200715{
Stephane Eranian993ac882012-03-08 23:47:47 +0100716 struct perf_session *session;
Adrian Hunter520a2eb2015-04-24 22:29:45 +0300717 struct itrace_synth_opts itrace_synth_opts = { .set = 0, };
Robert Richterefad1412011-12-07 10:02:54 +0100718 struct stat st;
Stephane Eranian993ac882012-03-08 23:47:47 +0100719 bool has_br_stack = false;
Namhyung Kim55369fc2013-04-01 20:35:20 +0900720 int branch_mode = -1;
Andi Kleenfa94c362014-11-12 18:05:22 -0800721 bool branch_call_mode = false;
Namhyung Kim76a26542015-10-22 23:28:32 +0900722 char callchain_default_opt[] = CALLCHAIN_DEFAULT_OPT;
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200723 const char * const report_usage[] = {
Namhyung Kimfb2bace2011-12-13 00:16:56 +0900724 "perf report [<options>]",
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200725 NULL
726 };
Arnaldo Carvalho de Melo28b21392013-12-19 14:53:53 -0300727 struct report report = {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200728 .tool = {
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200729 .sample = process_sample_event,
730 .mmap = perf_event__process_mmap,
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200731 .mmap2 = perf_event__process_mmap2,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200732 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +0530733 .namespaces = perf_event__process_namespaces,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300734 .exit = perf_event__process_exit,
735 .fork = perf_event__process_fork,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200736 .lost = perf_event__process_lost,
737 .read = process_read_event,
738 .attr = perf_event__process_attr,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200739 .tracing_data = perf_event__process_tracing_data,
740 .build_id = perf_event__process_build_id,
Adrian Hunter520a2eb2015-04-24 22:29:45 +0300741 .id_index = perf_event__process_id_index,
742 .auxtrace_info = perf_event__process_auxtrace_info,
743 .auxtrace = perf_event__process_auxtrace,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700744 .feature = perf_event__process_feature,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200745 .ordered_events = true,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200746 .ordering_requires_timestamps = true,
747 },
Arnaldo Carvalho de Melofe176082016-05-19 11:34:06 -0300748 .max_stack = PERF_MAX_STACK_DEPTH,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200749 .pretty_printing_style = "normal",
Kan Liang21394d92015-09-04 10:45:44 -0400750 .socket_filter = -1,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200751 };
752 const struct option options[] = {
Feng Tang70cb4e92012-10-30 11:56:02 +0800753 OPT_STRING('i', "input", &input_name, "file",
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200754 "input file name"),
Ian Munsiec0555642010-04-13 18:37:33 +1000755 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Melo815e7772009-05-26 19:46:14 -0300756 "be more verbose (show symbol address, etc)"),
Namhyung Kim27fafab2017-02-17 17:17:39 +0900757 OPT_BOOLEAN('q', "quiet", &quiet, "Do not show any message"),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200758 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
759 "dump raw trace in ASCII"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200760 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
761 "file", "vmlinux pathname"),
David Ahernb226a5a72010-12-07 19:39:46 -0700762 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
763 "file", "kallsyms pathname"),
Arnaldo Carvalho de Melo2059fc72015-11-12 16:50:13 -0300764 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Arnaldo Carvalho de Melob32d1332009-11-24 12:05:15 -0200765 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
Mike Galbraith42976482009-07-02 08:09:46 +0200766 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200767 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
Arnaldo Carvalho de Meloe3d7e182009-07-11 12:18:37 -0300768 "Show a column with the number of samples"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200769 OPT_BOOLEAN('T', "threads", &report.show_threads,
Brice Goglin8d513272009-08-07 13:55:24 +0200770 "Show per-thread event counters"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200771 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key",
Brice Goglin9f866692009-08-10 15:26:32 +0200772 "pretty printing style key: normal raw"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200773 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"),
Pekka Enbergc31a9452012-03-19 15:13:29 -0300774 OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200775 OPT_BOOLEAN(0, "stdio", &report.use_stdio,
776 "Use the stdio interface"),
Jiri Olsa5cfe2c82013-12-09 11:02:49 +0100777 OPT_BOOLEAN(0, "header", &report.header, "Show data header."),
778 OPT_BOOLEAN(0, "header-only", &report.header_only,
779 "Show only data header."),
Ingo Molnar63299f02009-05-28 10:52:00 +0200780 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
Namhyung Kima2ce0672014-03-04 09:06:42 +0900781 "sort by key(s): pid, comm, dso, symbol, parent, cpu, srcline, ..."
782 " Please refer the man page for the complete list."),
Namhyung Kima7d945b2014-03-04 10:46:34 +0900783 OPT_STRING('F', "fields", &field_order, "key[,keys...]",
784 "output field(s): overhead, period, sample plus all of sort keys"),
Namhyung Kimb272a592015-10-25 00:49:25 +0900785 OPT_BOOLEAN(0, "show-cpu-utilization", &symbol_conf.show_cpu_utilization,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800786 "Show sample percentage for different cpu modes"),
Namhyung Kimb272a592015-10-25 00:49:25 +0900787 OPT_BOOLEAN_FLAG(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
788 "Show sample percentage for different cpu modes", PARSE_OPT_HIDDEN),
Ingo Molnarb25bcf22009-06-18 07:01:03 +0200789 OPT_STRING('p', "parent", &parent_pattern, "regex",
790 "regex filter to identify parent, see: '--sort parent'"),
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200791 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
Ingo Molnarb8e6d822009-06-18 14:32:19 +0200792 "Only display entries with parent-match"),
Arnaldo Carvalho de Melo1cc83812016-04-18 11:54:31 -0300793 OPT_CALLBACK_DEFAULT('g', "call-graph", &callchain_param,
Namhyung Kimf2af0082015-11-09 14:45:41 +0900794 "print_type,threshold[,print_limit],order,sort_key[,branch],value",
Namhyung Kim21cf6282015-10-22 15:28:48 +0900795 report_callchain_help, &report_parse_callchain_opt,
796 callchain_default_opt),
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900797 OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain,
798 "Accumulate callchains of children and show total overhead as well"),
Waiman Long91e95612013-10-18 10:38:48 -0400799 OPT_INTEGER(0, "max-stack", &report.max_stack,
800 "Set the maximum stack depth when parsing the callchain, "
801 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -0300802 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200803 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain,
804 "alias for inverted call graph"),
Greg Priceb21484f2012-12-06 21:48:05 -0800805 OPT_CALLBACK(0, "ignore-callees", NULL, "regex",
806 "ignore callees of these functions in call graphs",
807 report_parse_ignore_callees_opt),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200808 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -0300809 "only consider symbols in these dsos"),
David Ahernc8e66722011-11-13 11:30:08 -0700810 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -0300811 "only consider symbols in these comms"),
David Aherne03eaa42015-03-24 09:52:41 -0600812 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
813 "only consider symbols in these pids"),
814 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
815 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200816 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -0300817 "only consider these symbols"),
Namhyung Kimb14ffac2012-03-16 17:50:54 +0900818 OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter",
819 "only show symbols that (partially) match with this filter"),
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200820 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300821 "width[,width...]",
822 "don't try to adjust column width, use these fixed values"),
Wang Nan0c8c2072015-03-13 12:51:54 +0000823 OPT_STRING_NOEMPTY('t', "field-separator", &symbol_conf.field_sep, "separator",
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300824 "separator for columns, no spaces will be added between "
825 "columns '.' is reserved."),
Namhyung Kimb49a8fe2015-11-26 16:08:20 +0900826 OPT_BOOLEAN('U', "hide-unresolved", &symbol_conf.hide_unresolved,
Arnaldo Carvalho de Melo71289be2009-12-28 22:48:34 -0200827 "Only display entries resolved to a symbol"),
He Kuanga7066702016-05-19 11:47:37 +0000828 OPT_CALLBACK(0, "symfs", NULL, "directory",
829 "Look for files with symbols relative to this directory",
830 symbol__config_symfs),
David Ahernc8e66722011-11-13 11:30:08 -0700831 OPT_STRING('C', "cpu", &report.cpu_list, "cpu",
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200832 "list of cpus to profile"),
833 OPT_BOOLEAN('I', "show-info", &report.show_full_info,
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200834 "Display extended information about perf.data file"),
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300835 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
836 "Interleave source code with assembly code (default)"),
837 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
838 "Display raw encoding of assembly instructions (default)"),
Andi Kleenf69b64f2011-09-15 14:31:41 -0700839 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
840 "Specify disassembler style (e.g. -M intel for intel syntax)"),
Arnaldo Carvalho de Melo3f2728b2011-10-05 16:10:06 -0300841 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period,
842 "Show a column with the sum of periods"),
Namhyung Kim01d14f12013-01-22 18:09:45 +0900843 OPT_BOOLEAN(0, "group", &symbol_conf.event_group,
844 "Show event group information together"),
Namhyung Kim55369fc2013-04-01 20:35:20 +0900845 OPT_CALLBACK_NOOPT('b', "branch-stack", &branch_mode, "",
Andi Kleenfa94c362014-11-12 18:05:22 -0800846 "use branch records for per branch histogram filling",
847 parse_branch_mode),
848 OPT_BOOLEAN(0, "branch-history", &branch_call_mode,
849 "add last branch records to call history"),
Maciek Borzecki7a4ec932012-09-04 12:32:30 +0200850 OPT_STRING(0, "objdump", &objdump_path, "path",
851 "objdump binary to use for disassembly and annotations"),
Namhyung Kim328ccda2013-03-25 18:18:18 +0900852 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
853 "Disable symbol demangling"),
Avi Kivity763122a2014-09-13 07:15:05 +0300854 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
855 "Enable kernel symbol demangling"),
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100856 OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"),
Namhyung Kim064f1982013-05-14 11:09:04 +0900857 OPT_CALLBACK(0, "percent-limit", &report, "percent",
858 "Don't show entries under that percent", parse_percent_limit),
Namhyung Kimf2148332014-01-14 11:52:48 +0900859 OPT_CALLBACK(0, "percentage", NULL, "relative|absolute",
Namhyung Kim33db4562014-02-07 12:06:07 +0900860 "how to display percentage of filtered entries", parse_filter_percentage),
Adrian Hunter520a2eb2015-04-24 22:29:45 +0300861 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
862 "Instruction Tracing options",
863 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -0700864 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
865 "Show full source file name path for source lines"),
Kan Liang9e207dd2015-08-11 06:30:49 -0400866 OPT_BOOLEAN(0, "show-ref-call-graph", &symbol_conf.show_ref_callgraph,
867 "Show callgraph from reference event"),
Kan Liang21394d92015-09-04 10:45:44 -0400868 OPT_INTEGER(0, "socket-filter", &report.socket_filter,
869 "only show processor socket that match with this filter"),
Namhyung Kim053a3982015-12-23 02:07:05 +0900870 OPT_BOOLEAN(0, "raw-trace", &symbol_conf.raw_trace,
871 "Show raw trace event output (do not use print fmt or plugins)"),
Namhyung Kim42514462016-02-25 00:13:48 +0900872 OPT_BOOLEAN(0, "hierarchy", &symbol_conf.report_hierarchy,
873 "Show entries in a hierarchy"),
Arnaldo Carvalho de Melo175b9682016-07-05 11:14:38 -0300874 OPT_CALLBACK_DEFAULT(0, "stdio-color", NULL, "mode",
875 "'always' (default), 'never' or 'auto' only applicable to --stdio mode",
876 stdio__config_color, "always"),
David Ahern46690a82016-11-29 10:15:46 -0700877 OPT_STRING(0, "time", &report.time_str, "str",
878 "Time span of interest (start,stop)"),
Jin Yaof3a60642017-03-26 04:34:27 +0800879 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
880 "Show inline function"),
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200881 OPT_END()
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200882 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100883 struct perf_data data = {
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200884 .mode = PERF_DATA_MODE_READ,
885 };
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -0300886 int ret = hists__init();
887
888 if (ret < 0)
889 return ret;
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200890
Arnaldo Carvalho de Meloecc4c562017-01-24 13:44:10 -0300891 ret = perf_config(report__config, &report);
892 if (ret)
893 return ret;
Namhyung Kim00c7e1f2013-01-22 18:09:46 +0900894
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200895 argc = parse_options(argc, argv, options, report_usage, 0);
Namhyung Kimb3f38fc2015-12-10 12:00:56 +0900896 if (argc) {
897 /*
898 * Special case: if there's an argument left then assume that
899 * it's a symbol filter:
900 */
901 if (argc > 1)
902 usage_with_options(report_usage, options);
903
904 report.symbol_filter_str = argv[0];
905 }
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200906
Namhyung Kim27fafab2017-02-17 17:17:39 +0900907 if (quiet)
908 perf_quiet_option();
909
Li Zhang36c8bb52015-06-19 16:57:33 +0800910 if (symbol_conf.vmlinux_name &&
911 access(symbol_conf.vmlinux_name, R_OK)) {
912 pr_err("Invalid file: %s\n", symbol_conf.vmlinux_name);
913 return -EINVAL;
914 }
915 if (symbol_conf.kallsyms_name &&
916 access(symbol_conf.kallsyms_name, R_OK)) {
917 pr_err("Invalid file: %s\n", symbol_conf.kallsyms_name);
918 return -EINVAL;
919 }
920
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200921 if (report.use_stdio)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300922 use_browser = 0;
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200923 else if (report.use_tui)
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300924 use_browser = 1;
Pekka Enbergc31a9452012-03-19 15:13:29 -0300925 else if (report.use_gtk)
926 use_browser = 2;
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300927
Arnaldo Carvalho de Melofa372aa2011-11-17 12:19:04 -0200928 if (report.inverted_callchain)
Sam Liaod797fdc2011-06-07 23:49:46 +0800929 callchain_param.order = ORDER_CALLER;
Namhyung Kim792aeaf2015-10-22 16:45:46 +0900930 if (symbol_conf.cumulate_callchain && !callchain_param.order_set)
931 callchain_param.order = ORDER_CALLER;
Sam Liaod797fdc2011-06-07 23:49:46 +0800932
Adrian Hunter188bb5e2015-09-25 16:15:46 +0300933 if (itrace_synth_opts.callchain &&
934 (int)itrace_synth_opts.callchain_sz > report.max_stack)
935 report.max_stack = itrace_synth_opts.callchain_sz;
936
Feng Tang70cb4e92012-10-30 11:56:02 +0800937 if (!input_name || !strlen(input_name)) {
Robert Richterefad1412011-12-07 10:02:54 +0100938 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
Feng Tang70cb4e92012-10-30 11:56:02 +0800939 input_name = "-";
Robert Richterefad1412011-12-07 10:02:54 +0100940 else
Feng Tang70cb4e92012-10-30 11:56:02 +0800941 input_name = "perf.data";
Robert Richterefad1412011-12-07 10:02:54 +0100942 }
Feng Tangad0de092013-02-03 14:38:21 +0800943
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100944 data.file.path = input_name;
945 data.force = symbol_conf.force;
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200946
Feng Tangad0de092013-02-03 14:38:21 +0800947repeat:
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100948 session = perf_session__new(&data, false, &report.tool);
Stephane Eranian993ac882012-03-08 23:47:47 +0100949 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +0900950 return -1;
Robert Richterefad1412011-12-07 10:02:54 +0100951
Jiri Olsa94786b62014-06-05 11:00:20 +0200952 if (report.queue_size) {
953 ordered_events__set_alloc_size(&session->ordered_events,
954 report.queue_size);
955 }
956
Adrian Hunter520a2eb2015-04-24 22:29:45 +0300957 session->itrace_synth_opts = &itrace_synth_opts;
958
Stephane Eranian993ac882012-03-08 23:47:47 +0100959 report.session = session;
960
961 has_br_stack = perf_header__has_feat(&session->header,
962 HEADER_BRANCH_STACK);
963
Adrian Hunterfb9fab62015-09-25 16:15:41 +0300964 if (itrace_synth_opts.last_branch)
965 has_br_stack = true;
966
Jin Yaof9a7be72016-10-31 09:19:50 +0800967 if (has_br_stack && branch_call_mode)
968 symbol_conf.show_branchflag_count = true;
969
Jin Yao2d78b182017-07-18 20:13:14 +0800970 memset(&report.brtype_stat, 0, sizeof(struct branch_type_stat));
971
Andi Kleenfa94c362014-11-12 18:05:22 -0800972 /*
973 * Branch mode is a tristate:
974 * -1 means default, so decide based on the file having branch data.
975 * 0/1 means the user chose a mode.
976 */
977 if (((branch_mode == -1 && has_br_stack) || branch_mode == 1) &&
He Kuangfefd2d92015-02-15 10:33:37 +0800978 !branch_call_mode) {
Namhyung Kim55369fc2013-04-01 20:35:20 +0900979 sort__mode = SORT_MODE__BRANCH;
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900980 symbol_conf.cumulate_callchain = false;
981 }
Andi Kleenfa94c362014-11-12 18:05:22 -0800982 if (branch_call_mode) {
Andi Kleen09a6a1b2014-11-17 17:58:54 -0800983 callchain_param.key = CCKEY_ADDRESS;
Andi Kleenfa94c362014-11-12 18:05:22 -0800984 callchain_param.branch_callstack = 1;
985 symbol_conf.use_callchain = true;
986 callchain_register_param(&callchain_param);
987 if (sort_order == NULL)
988 sort_order = "srcline,symbol,dso";
989 }
Stephane Eranian993ac882012-03-08 23:47:47 +0100990
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100991 if (report.mem_mode) {
Namhyung Kim55369fc2013-04-01 20:35:20 +0900992 if (sort__mode == SORT_MODE__BRANCH) {
Namhyung Kima4210142013-12-20 14:11:12 +0900993 pr_err("branch and mem mode incompatible\n");
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100994 goto error;
995 }
Namhyung Kimafab87b2013-04-03 21:26:11 +0900996 sort__mode = SORT_MODE__MEMORY;
Namhyung Kim793aaaa2013-10-30 17:05:55 +0900997 symbol_conf.cumulate_callchain = false;
Stephane Eranianf4f7e282013-01-24 16:10:36 +0100998 }
Stephane Eraniana68c2c52012-03-08 23:47:48 +0100999
Namhyung Kim42514462016-02-25 00:13:48 +09001000 if (symbol_conf.report_hierarchy) {
1001 /* disable incompatible options */
Namhyung Kim42514462016-02-25 00:13:48 +09001002 symbol_conf.cumulate_callchain = false;
1003
1004 if (field_order) {
1005 pr_err("Error: --hierarchy and --fields options cannot be used together\n");
1006 parse_options_usage(report_usage, options, "F", 1);
1007 parse_options_usage(NULL, options, "hierarchy", 0);
1008 goto error;
1009 }
1010
Jiri Olsa52225032016-05-03 13:54:42 +02001011 perf_hpp_list.need_collapse = true;
Namhyung Kim42514462016-02-25 00:13:48 +09001012 }
1013
Namhyung Kimb138f422015-05-10 00:19:43 +09001014 /* Force tty output for header output and per-thread stat. */
1015 if (report.header || report.header_only || report.show_threads)
Jiri Olsa5cfe2c82013-12-09 11:02:49 +01001016 use_browser = 0;
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07001017 if (report.header || report.header_only)
1018 report.tool.show_feat_hdr = SHOW_FEAT_HEADER;
1019 if (report.show_full_info)
1020 report.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsa5cfe2c82013-12-09 11:02:49 +01001021
Namhyung Kim4bceffb2013-11-01 16:33:12 +09001022 if (strcmp(input_name, "-") != 0)
1023 setup_browser(true);
Namhyung Kim22af9692014-04-16 11:04:51 +09001024 else
Namhyung Kim4bceffb2013-11-01 16:33:12 +09001025 use_browser = 0;
Namhyung Kim4bceffb2013-11-01 16:33:12 +09001026
Jiri Olsa98878042016-01-18 10:24:06 +01001027 if (setup_sorting(session->evlist) < 0) {
1028 if (sort_order)
1029 parse_options_usage(report_usage, options, "s", 1);
1030 if (field_order)
1031 parse_options_usage(sort_order ? NULL : report_usage,
1032 options, "F", 1);
1033 goto error;
1034 }
1035
Namhyung Kim27fafab2017-02-17 17:17:39 +09001036 if ((report.header || report.header_only) && !quiet) {
Jiri Olsa5cfe2c82013-12-09 11:02:49 +01001037 perf_session__fprintf_info(session, stdout,
1038 report.show_full_info);
Taeung Song07a716f2015-06-30 17:15:24 +09001039 if (report.header_only) {
1040 ret = 0;
1041 goto error;
1042 }
Namhyung Kim27fafab2017-02-17 17:17:39 +09001043 } else if (use_browser == 0 && !quiet) {
Jiri Olsa5cfe2c82013-12-09 11:02:49 +01001044 fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n",
1045 stdout);
1046 }
1047
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -03001048 /*
Arnaldo Carvalho de Melo6692c262013-03-28 11:34:10 -03001049 * Only in the TUI browser we are doing integrated annotation,
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -03001050 * so don't allocate extra space that won't be used in the stdio
1051 * implementation.
1052 */
Namhyung Kimb9ce0c92014-03-18 15:32:26 +09001053 if (ui__has_annotation()) {
Arnaldo Carvalho de Melob01141f2016-08-25 16:09:21 -03001054 ret = symbol__annotation_init();
1055 if (ret < 0)
1056 goto error;
Arnaldo Carvalho de Melo80d50ca2010-08-05 19:28:27 -03001057 /*
1058 * For searching by name on the "Browse map details".
1059 * providing it only in verbose mode not to bloat too
1060 * much struct symbol.
1061 */
Namhyung Kimbb963e12017-02-17 17:17:38 +09001062 if (verbose > 0) {
Arnaldo Carvalho de Melo80d50ca2010-08-05 19:28:27 -03001063 /*
1064 * XXX: Need to provide a less kludgy way to ask for
1065 * more space per symbol, the u32 is for the index on
1066 * the ui browser.
1067 * See symbol__browser_index.
1068 */
1069 symbol_conf.priv_size += sizeof(u32);
1070 symbol_conf.sort_by_name = true;
1071 }
1072 }
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -02001073
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001074 if (symbol__init(&session->header.env) < 0)
Stephane Eranian993ac882012-03-08 23:47:47 +01001075 goto error;
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001076
David Ahern46690a82016-11-29 10:15:46 -07001077 if (perf_time__parse_str(&report.ptime, report.time_str) != 0) {
1078 pr_err("Invalid time string\n");
1079 return -EINVAL;
1080 }
1081
Namhyung Kim08e71542013-04-03 21:26:19 +09001082 sort__setup_elide(stdout);
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -03001083
Stephane Eranian993ac882012-03-08 23:47:47 +01001084 ret = __cmd_report(&report);
Feng Tangad0de092013-02-03 14:38:21 +08001085 if (ret == K_SWITCH_INPUT_DATA) {
1086 perf_session__delete(session);
1087 goto repeat;
1088 } else
1089 ret = 0;
1090
Stephane Eranian993ac882012-03-08 23:47:47 +01001091error:
1092 perf_session__delete(session);
1093 return ret;
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001094}