blob: e3ea8b67703d1348339b86ed892e38657e5dac90 [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02009 $ perf stat ./hackbench 10
Ingo Molnarddcacfa2009-04-20 15:37:32 +020010
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020011 Time: 0.118
Ingo Molnarddcacfa2009-04-20 15:37:32 +020012
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020013 Performance counter stats for './hackbench 10':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020014
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020015 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
26
27 0.154822978 seconds time elapsed
Ingo Molnarddcacfa2009-04-20 15:37:32 +020028
Ingo Molnar52425192009-05-26 09:17:18 +020029 *
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020030 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
Ingo Molnar52425192009-05-26 09:17:18 +020031 *
32 * Improvements and fixes by:
33 *
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053039 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020040 *
41 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020042 */
43
Peter Zijlstra1a482f32009-05-23 18:28:58 +020044#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020045#include "builtin.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030046#include "util/cgroup.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020047#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020048#include "util/parse-options.h"
49#include "util/parse-events.h"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070050#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020051#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020052#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020053#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020054#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020055#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080056#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080057#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110058#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030059#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020060#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020061
Peter Zijlstra1f16c572012-10-23 13:40:14 +020062#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020063#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020064#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020065
Stephane Eraniand7470b62010-12-01 18:49:05 +020066#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060067#define CNTR_NOT_SUPPORTED "<not supported>"
68#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020069
Jiri Olsad4f63a42015-06-26 11:29:26 +020070static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010071
Andi Kleen4cabc3d2013-08-21 16:47:26 -070072/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020073static const char *transaction_attrs = {
74 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070075 "{"
76 "instructions,"
77 "cycles,"
78 "cpu/cycles-t/,"
79 "cpu/tx-start/,"
80 "cpu/el-start/,"
81 "cpu/cycles-ct/"
82 "}"
83};
84
85/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +020086static const char * transaction_limited_attrs = {
87 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070088 "{"
89 "instructions,"
90 "cycles,"
91 "cpu/cycles-t/,"
92 "cpu/tx-start/"
93 "}"
94};
95
Robert Richter666e6d42012-04-05 18:26:27 +020096static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020097
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -030098static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +090099 .uid = UINT_MAX,
100};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530101
102static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200103static bool no_inherit = false;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200104static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000105static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200106static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700107static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200108static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200109static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200110static const char *csv_sep = NULL;
111static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800112static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200113static const char *pre_cmd = NULL;
114static const char *post_cmd = NULL;
115static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100116static unsigned int interval = 0;
Andi Kleen41191682013-08-02 17:41:11 -0700117static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100118static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500119static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100120static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100121static struct cpu_map *aggr_map;
122static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200123
Liming Wang60666c62009-12-31 16:05:50 +0800124static volatile int done = 0;
125
Jiri Olsa421a50f2015-07-21 14:31:22 +0200126static struct perf_stat_config stat_config = {
127 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200128 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200129};
130
Stephane Eranian13370a92013-01-29 12:47:44 +0100131static inline void diff_timespec(struct timespec *r, struct timespec *a,
132 struct timespec *b)
133{
134 r->tv_sec = a->tv_sec - b->tv_sec;
135 if (a->tv_nsec < b->tv_nsec) {
136 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
137 r->tv_sec--;
138 } else {
139 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
140 }
141}
142
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200143static void perf_stat__reset_stats(void)
144{
145 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200146 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200147}
148
Jiri Olsacac21422012-11-12 18:34:00 +0100149static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200150{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200151 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200152
Jiri Olsa711a5722015-07-21 14:31:23 +0200153 if (stat_config.scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200154 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
155 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200156
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200157 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300158
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300159 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300160 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200161
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300162 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200163 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700164 if (!initial_delay)
165 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200166 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300167
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300168 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200169}
170
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200171/*
172 * Does the counter have nsecs as a unit?
173 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200174static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200175{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200176 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
177 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200178 return 1;
179
180 return 0;
181}
182
Jiri Olsa779d0b992014-11-21 10:31:14 +0100183static void zero_per_pkg(struct perf_evsel *counter)
184{
185 if (counter->per_pkg_mask)
186 memset(counter->per_pkg_mask, 0, MAX_NR_CPUS);
187}
188
189static int check_per_pkg(struct perf_evsel *counter, int cpu, bool *skip)
190{
191 unsigned long *mask = counter->per_pkg_mask;
192 struct cpu_map *cpus = perf_evsel__cpus(counter);
193 int s;
194
195 *skip = false;
196
197 if (!counter->per_pkg)
198 return 0;
199
200 if (cpu_map__empty(cpus))
201 return 0;
202
203 if (!mask) {
204 mask = zalloc(MAX_NR_CPUS);
205 if (!mask)
206 return -ENOMEM;
207
208 counter->per_pkg_mask = mask;
209 }
210
211 s = cpu_map__get_socket(cpus, cpu);
212 if (s < 0)
213 return -1;
214
215 *skip = test_and_set_bit(s, mask) == 1;
216 return 0;
217}
218
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200219static int
220process_counter_values(struct perf_evsel *evsel, int cpu, int thread,
221 struct perf_counts_values *count)
Jiri Olsa060c4f92014-11-21 10:31:08 +0100222{
Jiri Olsa1971f592014-11-21 10:31:10 +0100223 struct perf_counts_values *aggr = &evsel->counts->aggr;
Jiri Olsa779d0b992014-11-21 10:31:14 +0100224 static struct perf_counts_values zero;
225 bool skip = false;
226
227 if (check_per_pkg(evsel, cpu, &skip)) {
228 pr_err("failed to read per-pkg counter\n");
229 return -1;
230 }
231
232 if (skip)
233 count = &zero;
Jiri Olsa1971f592014-11-21 10:31:10 +0100234
Jiri Olsa421a50f2015-07-21 14:31:22 +0200235 switch (stat_config.aggr_mode) {
Jiri Olsa32b8af82015-06-26 11:29:27 +0200236 case AGGR_THREAD:
Jiri Olsa060c4f92014-11-21 10:31:08 +0100237 case AGGR_CORE:
238 case AGGR_SOCKET:
239 case AGGR_NONE:
Jiri Olsa6c0345b2014-11-21 10:31:15 +0100240 if (!evsel->snapshot)
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200241 perf_evsel__compute_deltas(evsel, cpu, thread, count);
Jiri Olsa711a5722015-07-21 14:31:23 +0200242 perf_counts_values__scale(count, stat_config.scale, NULL);
Jiri Olsa421a50f2015-07-21 14:31:22 +0200243 if (stat_config.aggr_mode == AGGR_NONE)
Jiri Olsaf87027b2015-06-03 16:25:59 +0200244 perf_stat__update_shadow_stats(evsel, count->values, cpu);
Jiri Olsa060c4f92014-11-21 10:31:08 +0100245 break;
246 case AGGR_GLOBAL:
Jiri Olsa1971f592014-11-21 10:31:10 +0100247 aggr->val += count->val;
Jiri Olsa711a5722015-07-21 14:31:23 +0200248 if (stat_config.scale) {
Jiri Olsa1971f592014-11-21 10:31:10 +0100249 aggr->ena += count->ena;
250 aggr->run += count->run;
251 }
Jiri Olsa060c4f92014-11-21 10:31:08 +0100252 default:
253 break;
254 }
255
256 return 0;
257}
258
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200259static int process_counter_maps(struct perf_evsel *counter)
260{
261 int nthreads = thread_map__nr(counter->threads);
262 int ncpus = perf_evsel__nr_cpus(counter);
263 int cpu, thread;
Jiri Olsa1971f592014-11-21 10:31:10 +0100264
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200265 if (counter->system_wide)
266 nthreads = 1;
267
268 for (thread = 0; thread < nthreads; thread++) {
269 for (cpu = 0; cpu < ncpus; cpu++) {
270 if (process_counter_values(counter, cpu, thread,
271 perf_counts(counter->counts, cpu, thread)))
272 return -1;
273 }
274 }
275
276 return 0;
277}
278
279static int process_counter(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200280{
Jiri Olsa1971f592014-11-21 10:31:10 +0100281 struct perf_counts_values *aggr = &counter->counts->aggr;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200282 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200283 u64 *count = counter->counts->aggr.values;
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200284 int i, ret;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200285
Jiri Olsa1971f592014-11-21 10:31:10 +0100286 aggr->val = aggr->ena = aggr->run = 0;
Jiri Olsa5835e222015-06-26 11:29:25 +0200287 init_stats(ps->res_stats);
Jiri Olsa1971f592014-11-21 10:31:10 +0100288
Jiri Olsa32ce0a42015-06-26 11:29:21 +0200289 if (counter->per_pkg)
290 zero_per_pkg(counter);
291
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200292 ret = process_counter_maps(counter);
293 if (ret)
294 return ret;
295
Jiri Olsa421a50f2015-07-21 14:31:22 +0200296 if (stat_config.aggr_mode != AGGR_GLOBAL)
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200297 return 0;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200298
Jiri Olsa6c0345b2014-11-21 10:31:15 +0100299 if (!counter->snapshot)
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200300 perf_evsel__compute_deltas(counter, -1, -1, aggr);
Jiri Olsa711a5722015-07-21 14:31:23 +0200301 perf_counts_values__scale(aggr, stat_config.scale, &counter->counts->scaled);
Jiri Olsa1971f592014-11-21 10:31:10 +0100302
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200303 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200304 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200305
306 if (verbose) {
Jiri Olsa58215222015-07-21 14:31:24 +0200307 fprintf(stat_config.output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300308 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200309 }
310
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200311 /*
312 * Save the full runtime - to allow normalization during printout:
313 */
Jiri Olsaf87027b2015-06-03 16:25:59 +0200314 perf_stat__update_shadow_stats(counter, count, 0);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200315
316 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200317}
318
319/*
320 * Read out the results of a single counter:
321 * do not aggregate counts across CPUs in system-wide mode
322 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200323static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200324{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100325 int nthreads = thread_map__nr(evsel_list->threads);
326 int ncpus = perf_evsel__nr_cpus(counter);
327 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200328
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000329 if (!counter->supported)
330 return -ENOENT;
331
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100332 if (counter->system_wide)
333 nthreads = 1;
334
335 for (thread = 0; thread < nthreads; thread++) {
336 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200337 struct perf_counts_values *count;
338
339 count = perf_counts(counter->counts, cpu, thread);
340 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100341 return -1;
342 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200343 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200344
345 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200346}
347
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200348static void read_counters(bool close_counters)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200349{
350 struct perf_evsel *counter;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200351
352 evlist__for_each(evsel_list, counter) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200353 if (read_counter(counter))
354 pr_warning("failed to read counter %s\n", counter->name);
355
356 if (process_counter(counter))
357 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200358
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200359 if (close_counters) {
Jiri Olsa106a94a2015-06-26 11:29:19 +0200360 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
361 thread_map__nr(evsel_list->threads));
362 }
363 }
364}
365
Jiri Olsaba411a92015-06-26 11:29:24 +0200366static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100367{
Stephane Eranian13370a92013-01-29 12:47:44 +0100368 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100369
Jiri Olsa106a94a2015-06-26 11:29:19 +0200370 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100371
Stephane Eranian13370a92013-01-29 12:47:44 +0100372 clock_gettime(CLOCK_MONOTONIC, &ts);
373 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100374
Jiri Olsad4f63a42015-06-26 11:29:26 +0200375 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100376}
377
Andi Kleen41191682013-08-02 17:41:11 -0700378static void handle_initial_delay(void)
379{
380 struct perf_evsel *counter;
381
382 if (initial_delay) {
383 const int ncpus = cpu_map__nr(evsel_list->cpus),
384 nthreads = thread_map__nr(evsel_list->threads);
385
386 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300387 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700388 perf_evsel__enable(counter, ncpus, nthreads);
389 }
390}
391
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300392static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300393
394/*
395 * perf_evlist__prepare_workload will send a SIGUSR1
396 * if the fork fails, since we asked by setting its
397 * want_signal to true.
398 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300399static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
400 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300401{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300402 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300403}
404
Namhyung Kimacf28922013-03-11 16:43:18 +0900405static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200406{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300407 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200408 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100409 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100410 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100411 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200412 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300413 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200414
Stephane Eranian13370a92013-01-29 12:47:44 +0100415 if (interval) {
416 ts.tv_sec = interval / 1000;
417 ts.tv_nsec = (interval % 1000) * 1000000;
418 } else {
419 ts.tv_sec = 1;
420 ts.tv_nsec = 0;
421 }
422
Liming Wang60666c62009-12-31 16:05:50 +0800423 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300424 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
425 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900426 perror("failed to prepare workload");
427 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800428 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900429 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000430 }
431
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200432 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300433 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200434
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300435 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100436 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600437 /*
438 * PPC returns ENXIO for HW counters until 2.6.37
439 * (behavior changed with commit b0a873e).
440 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100441 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600442 errno == ENOENT || errno == EOPNOTSUPP ||
443 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600444 if (verbose)
445 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300446 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600447 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400448
449 if ((counter->leader != counter) ||
450 !(counter->leader->nr_members > 1))
451 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600452 }
Ingo Molnarede70292011-04-28 08:48:42 +0200453
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300454 perf_evsel__open_strerror(counter, &target,
455 errno, msg, sizeof(msg));
456 ui__error("%s\n", msg);
457
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200458 if (child_pid != -1)
459 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600460
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200461 return -1;
462 }
David Ahern2cee77c2011-05-30 08:55:59 -0600463 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100464
465 l = strlen(counter->unit);
466 if (l > unit_width)
467 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300468 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200469
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300470 if (perf_evlist__apply_filters(evsel_list, &counter)) {
471 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
472 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000473 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100474 return -1;
475 }
476
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200477 /*
478 * Enable counters and exec the command:
479 */
480 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100481 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200482
Liming Wang60666c62009-12-31 16:05:50 +0800483 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900484 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700485 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900486
Stephane Eranian13370a92013-01-29 12:47:44 +0100487 if (interval) {
488 while (!waitpid(child_pid, &status, WNOHANG)) {
489 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200490 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100491 }
492 }
Liming Wang60666c62009-12-31 16:05:50 +0800493 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300494
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300495 if (workload_exec_errno) {
496 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
497 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300498 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300499 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300500
Andi Kleen33e49ea2011-09-15 14:31:40 -0700501 if (WIFSIGNALED(status))
502 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800503 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700504 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100505 while (!done) {
506 nanosleep(&ts, NULL);
507 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200508 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100509 }
Liming Wang60666c62009-12-31 16:05:50 +0800510 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200511
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200512 t1 = rdclock();
513
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200514 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200515
Jiri Olsa106a94a2015-06-26 11:29:19 +0200516 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200517
Ingo Molnar42202dd2009-06-13 14:57:28 +0200518 return WEXITSTATUS(status);
519}
520
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300521static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200522{
523 int ret;
524
525 if (pre_cmd) {
526 ret = system(pre_cmd);
527 if (ret)
528 return ret;
529 }
530
531 if (sync_run)
532 sync();
533
534 ret = __run_perf_stat(argc, argv);
535 if (ret)
536 return ret;
537
538 if (post_cmd) {
539 ret = system(post_cmd);
540 if (ret)
541 return ret;
542 }
543
544 return ret;
545}
546
Andi Kleend73515c2015-03-11 07:16:27 -0700547static void print_running(u64 run, u64 ena)
548{
549 if (csv_output) {
Jiri Olsa58215222015-07-21 14:31:24 +0200550 fprintf(stat_config.output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700551 csv_sep,
552 run,
553 csv_sep,
554 ena ? 100.0 * run / ena : 100.0);
555 } else if (run != ena) {
Jiri Olsa58215222015-07-21 14:31:24 +0200556 fprintf(stat_config.output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700557 }
558}
559
Ingo Molnarf99844c2011-04-27 05:35:39 +0200560static void print_noise_pct(double total, double avg)
561{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800562 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200563
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700564 if (csv_output)
Jiri Olsa58215222015-07-21 14:31:24 +0200565 fprintf(stat_config.output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600566 else if (pct)
Jiri Olsa58215222015-07-21 14:31:24 +0200567 fprintf(stat_config.output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200568}
569
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200570static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200571{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200572 struct perf_stat *ps;
573
Peter Zijlstra849abde2009-09-04 18:23:38 +0200574 if (run_count == 1)
575 return;
576
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200577 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200578 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200579}
580
Stephane Eranian12c08a92013-02-14 13:57:29 +0100581static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200582{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200583 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100584 case AGGR_CORE:
Jiri Olsa58215222015-07-21 14:31:24 +0200585 fprintf(stat_config.output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100586 cpu_map__id_to_socket(id),
587 csv_output ? 0 : -8,
588 cpu_map__id_to_cpu(id),
589 csv_sep,
590 csv_output ? 0 : 4,
591 nr,
592 csv_sep);
593 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100594 case AGGR_SOCKET:
Jiri Olsa58215222015-07-21 14:31:24 +0200595 fprintf(stat_config.output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100596 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100597 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100598 csv_sep,
599 csv_output ? 0 : 4,
600 nr,
601 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100602 break;
603 case AGGR_NONE:
Jiri Olsa58215222015-07-21 14:31:24 +0200604 fprintf(stat_config.output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200605 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100606 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100607 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200608 case AGGR_THREAD:
Jiri Olsa58215222015-07-21 14:31:24 +0200609 fprintf(stat_config.output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200610 csv_output ? 0 : 16,
611 thread_map__comm(evsel->threads, id),
612 csv_output ? 0 : -8,
613 thread_map__pid(evsel->threads, id),
614 csv_sep);
615 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100616 case AGGR_GLOBAL:
617 default:
618 break;
619 }
620}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200621
Andi Kleenda88c7f2014-09-24 13:50:46 -0700622static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100623{
Jiri Olsa58215222015-07-21 14:31:24 +0200624 FILE *output = stat_config.output;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100625 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100626 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600627 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100628
Stephane Eranian410136f2013-11-12 17:58:49 +0100629 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
630 fmt_n = csv_output ? "%s" : "%-25s";
631
Andi Kleenda88c7f2014-09-24 13:50:46 -0700632 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100633
David Ahern4bbe5a62013-09-28 14:28:00 -0600634 scnprintf(name, sizeof(name), "%s%s",
635 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100636
637 fprintf(output, fmt_v, msecs, csv_sep);
638
639 if (csv_output)
640 fprintf(output, "%s%s", evsel->unit, csv_sep);
641 else
642 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
643
644 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200645
Stephane Eranian023695d2011-02-14 11:20:01 +0200646 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200647 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200648
Stephane Eranian13370a92013-01-29 12:47:44 +0100649 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200650 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200651
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200652 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200653 fprintf(output, " # %8.3f CPUs utilized ",
654 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900655 else
656 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200657}
658
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200659static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
660{
Jiri Olsa58215222015-07-21 14:31:24 +0200661 FILE *output = stat_config.output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200662 double sc = evsel->scale;
663 const char *fmt;
664 int cpu = cpu_map__id_to_cpu(id);
665
666 if (csv_output) {
667 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
668 } else {
669 if (big_num)
670 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
671 else
672 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
673 }
674
675 aggr_printout(evsel, id, nr);
676
Jiri Olsa421a50f2015-07-21 14:31:22 +0200677 if (stat_config.aggr_mode == AGGR_GLOBAL)
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200678 cpu = 0;
679
680 fprintf(output, fmt, avg, csv_sep);
681
682 if (evsel->unit)
683 fprintf(output, "%-*s%s",
684 csv_output ? 0 : unit_width,
685 evsel->unit, csv_sep);
686
687 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
688
689 if (evsel->cgrp)
690 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
691
692 if (csv_output || interval)
693 return;
694
Jiri Olsa421a50f2015-07-21 14:31:22 +0200695 perf_stat__print_shadow_stats(output, evsel, avg, cpu,
696 stat_config.aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200697}
698
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100699static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100700{
Jiri Olsa58215222015-07-21 14:31:24 +0200701 FILE *output = stat_config.output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100702 struct perf_evsel *counter;
Stephane Eranian582ec0822013-07-05 19:06:45 +0200703 int cpu, cpu2, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100704 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100705 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100706
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100707 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100708 return;
709
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100710 for (s = 0; s < aggr_map->nr; s++) {
711 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300712 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100713 val = ena = run = 0;
714 nr = 0;
715 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200716 cpu2 = perf_evsel__cpus(counter)->map[cpu];
717 s2 = aggr_get_id(evsel_list->cpus, cpu2);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100718 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100719 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200720 val += perf_counts(counter->counts, cpu, 0)->val;
721 ena += perf_counts(counter->counts, cpu, 0)->ena;
722 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100723 nr++;
724 }
725 if (prefix)
726 fprintf(output, "%s", prefix);
727
728 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200729 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100730
Stephane Eranian410136f2013-11-12 17:58:49 +0100731 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100732 csv_output ? 0 : 18,
733 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100734 csv_sep);
735
736 fprintf(output, "%-*s%s",
737 csv_output ? 0 : unit_width,
738 counter->unit, csv_sep);
739
740 fprintf(output, "%*s",
741 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100742 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100743
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100744 if (counter->cgrp)
745 fprintf(output, "%s%s",
746 csv_sep, counter->cgrp->name);
747
Andi Kleend73515c2015-03-11 07:16:27 -0700748 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100749 fputc('\n', output);
750 continue;
751 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100752 uval = val * counter->scale;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100753
754 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100755 nsec_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100756 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100757 abs_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100758
Andi Kleend73515c2015-03-11 07:16:27 -0700759 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100760 print_noise(counter, 1.0);
761
Andi Kleend73515c2015-03-11 07:16:27 -0700762 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100763 fputc('\n', output);
764 }
765 }
766}
767
Jiri Olsa32b8af82015-06-26 11:29:27 +0200768static void print_aggr_thread(struct perf_evsel *counter, char *prefix)
769{
Jiri Olsa58215222015-07-21 14:31:24 +0200770 FILE *output = stat_config.output;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200771 int nthreads = thread_map__nr(counter->threads);
772 int ncpus = cpu_map__nr(counter->cpus);
773 int cpu, thread;
774 double uval;
775
776 for (thread = 0; thread < nthreads; thread++) {
777 u64 ena = 0, run = 0, val = 0;
778
779 for (cpu = 0; cpu < ncpus; cpu++) {
780 val += perf_counts(counter->counts, cpu, thread)->val;
781 ena += perf_counts(counter->counts, cpu, thread)->ena;
782 run += perf_counts(counter->counts, cpu, thread)->run;
783 }
784
785 if (prefix)
786 fprintf(output, "%s", prefix);
787
788 uval = val * counter->scale;
789
790 if (nsec_counter(counter))
791 nsec_printout(thread, 0, counter, uval);
792 else
793 abs_printout(thread, 0, counter, uval);
794
795 if (!csv_output)
796 print_noise(counter, 1.0);
797
798 print_running(run, ena);
799 fputc('\n', output);
800 }
801}
802
Ingo Molnar42202dd2009-06-13 14:57:28 +0200803/*
804 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200805 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200806 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100807static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200808{
Jiri Olsa58215222015-07-21 14:31:24 +0200809 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200810 struct perf_stat *ps = counter->priv;
811 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200812 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100813 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700814 double avg_enabled, avg_running;
815
816 avg_enabled = avg_stats(&ps->res_stats[1]);
817 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200818
Stephane Eranian13370a92013-01-29 12:47:44 +0100819 if (prefix)
820 fprintf(output, "%s", prefix);
821
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000822 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100823 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200824 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600825 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100826 csv_sep);
827 fprintf(output, "%-*s%s",
828 csv_output ? 0 : unit_width,
829 counter->unit, csv_sep);
830 fprintf(output, "%*s",
831 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300832 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200833
834 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200835 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200836
Andi Kleend73515c2015-03-11 07:16:27 -0700837 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200838 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200839 return;
840 }
841
Stephane Eranian410136f2013-11-12 17:58:49 +0100842 uval = avg * counter->scale;
843
Ingo Molnar42202dd2009-06-13 14:57:28 +0200844 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100845 nsec_printout(-1, 0, counter, uval);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200846 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100847 abs_printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200848
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700849 print_noise(counter, avg);
850
Andi Kleend73515c2015-03-11 07:16:27 -0700851 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200852 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200853}
854
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200855/*
856 * Print out the results of a single counter:
857 * does not use aggregated count in system-wide
858 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100859static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200860{
Jiri Olsa58215222015-07-21 14:31:24 +0200861 FILE *output = stat_config.output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200862 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100863 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200864 int cpu;
865
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800866 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200867 val = perf_counts(counter->counts, cpu, 0)->val;
868 ena = perf_counts(counter->counts, cpu, 0)->ena;
869 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100870
871 if (prefix)
872 fprintf(output, "%s", prefix);
873
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200874 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100875 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200876 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800877 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200878 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600879 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100880 csv_sep);
881
882 fprintf(output, "%-*s%s",
883 csv_output ? 0 : unit_width,
884 counter->unit, csv_sep);
885
886 fprintf(output, "%*s",
887 csv_output ? 0 : -25,
888 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200889
Stephane Eranian023695d2011-02-14 11:20:01 +0200890 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200891 fprintf(output, "%s%s",
892 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200893
Andi Kleend73515c2015-03-11 07:16:27 -0700894 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200895 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200896 continue;
897 }
898
Stephane Eranian410136f2013-11-12 17:58:49 +0100899 uval = val * counter->scale;
900
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200901 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100902 nsec_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200903 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100904 abs_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200905
Andi Kleend73515c2015-03-11 07:16:27 -0700906 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200907 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700908 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200909
Stephane Eranian4aa90152011-08-15 22:22:33 +0200910 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200911 }
912}
913
Jiri Olsad4f63a42015-06-26 11:29:26 +0200914static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200915{
Jiri Olsa58215222015-07-21 14:31:24 +0200916 FILE *output = stat_config.output;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200917 static int num_print_interval;
918
919 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
920
921 if (num_print_interval == 0 && !csv_output) {
Jiri Olsa421a50f2015-07-21 14:31:22 +0200922 switch (stat_config.aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +0200923 case AGGR_SOCKET:
924 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
925 break;
926 case AGGR_CORE:
927 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
928 break;
929 case AGGR_NONE:
930 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
931 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200932 case AGGR_THREAD:
933 fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit");
934 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200935 case AGGR_GLOBAL:
936 default:
937 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
938 }
939 }
940
941 if (++num_print_interval == 25)
942 num_print_interval = 0;
943}
944
945static void print_header(int argc, const char **argv)
946{
Jiri Olsa58215222015-07-21 14:31:24 +0200947 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200948 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200949
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200950 fflush(stdout);
951
Stephane Eraniand7470b62010-12-01 18:49:05 +0200952 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200953 fprintf(output, "\n");
954 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600955 if (target.system_wide)
956 fprintf(output, "\'system wide");
957 else if (target.cpu_list)
958 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300959 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200960 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200961 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200962 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900963 } else if (target.pid)
964 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200965 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900966 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200967
Stephane Eranian4aa90152011-08-15 22:22:33 +0200968 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200969 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200970 fprintf(output, " (%d runs)", run_count);
971 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200972 }
Jiri Olsad4f63a42015-06-26 11:29:26 +0200973}
974
975static void print_footer(void)
976{
Jiri Olsa58215222015-07-21 14:31:24 +0200977 FILE *output = stat_config.output;
978
Jiri Olsad4f63a42015-06-26 11:29:26 +0200979 if (!null_run)
980 fprintf(output, "\n");
981 fprintf(output, " %17.9f seconds time elapsed",
982 avg_stats(&walltime_nsecs_stats)/1e9);
983 if (run_count > 1) {
984 fprintf(output, " ");
985 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
986 avg_stats(&walltime_nsecs_stats));
987 }
988 fprintf(output, "\n\n");
989}
990
991static void print_counters(struct timespec *ts, int argc, const char **argv)
992{
993 struct perf_evsel *counter;
994 char buf[64], *prefix = NULL;
995
996 if (interval)
997 print_interval(prefix = buf, ts);
998 else
999 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001000
Jiri Olsa421a50f2015-07-21 14:31:22 +02001001 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +01001002 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001003 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +02001004 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001005 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +02001006 case AGGR_THREAD:
1007 evlist__for_each(evsel_list, counter)
1008 print_aggr_thread(counter, prefix);
1009 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001010 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001011 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001012 print_counter_aggr(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001013 break;
1014 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001015 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001016 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001017 break;
1018 default:
1019 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001020 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001021
Jiri Olsad4f63a42015-06-26 11:29:26 +02001022 if (!interval && !csv_output)
1023 print_footer();
1024
Jiri Olsa58215222015-07-21 14:31:24 +02001025 fflush(stat_config.output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001026}
1027
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001028static volatile int signr = -1;
1029
Ingo Molnar52425192009-05-26 09:17:18 +02001030static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001031{
Stephane Eranian13370a92013-01-29 12:47:44 +01001032 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001033 done = 1;
1034
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001035 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001036 /*
1037 * render child_pid harmless
1038 * won't send SIGTERM to a random
1039 * process in case of race condition
1040 * and fast PID recycling
1041 */
1042 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001043}
1044
1045static void sig_atexit(void)
1046{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001047 sigset_t set, oset;
1048
1049 /*
1050 * avoid race condition with SIGCHLD handler
1051 * in skip_signal() which is modifying child_pid
1052 * goal is to avoid send SIGTERM to a random
1053 * process
1054 */
1055 sigemptyset(&set);
1056 sigaddset(&set, SIGCHLD);
1057 sigprocmask(SIG_BLOCK, &set, &oset);
1058
Chris Wilson933da832009-10-04 01:35:01 +01001059 if (child_pid != -1)
1060 kill(child_pid, SIGTERM);
1061
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001062 sigprocmask(SIG_SETMASK, &oset, NULL);
1063
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001064 if (signr == -1)
1065 return;
1066
1067 signal(signr, SIG_DFL);
1068 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001069}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001070
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001071static int stat__set_big_num(const struct option *opt __maybe_unused,
1072 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001073{
1074 big_num_opt = unset ? 0 : 1;
1075 return 0;
1076}
1077
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001078static int perf_stat_init_aggr_mode(void)
1079{
Jiri Olsa421a50f2015-07-21 14:31:22 +02001080 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001081 case AGGR_SOCKET:
1082 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1083 perror("cannot build socket map");
1084 return -1;
1085 }
1086 aggr_get_id = cpu_map__get_socket;
1087 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001088 case AGGR_CORE:
1089 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1090 perror("cannot build core map");
1091 return -1;
1092 }
1093 aggr_get_id = cpu_map__get_core;
1094 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001095 case AGGR_NONE:
1096 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02001097 case AGGR_THREAD:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001098 default:
1099 break;
1100 }
1101 return 0;
1102}
1103
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001104/*
1105 * Add default attributes, if there were no attributes specified or
1106 * if -d/--detailed, -d -d or -d -d -d is used:
1107 */
1108static int add_default_attributes(void)
1109{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001110 struct perf_event_attr default_attrs[] = {
1111
1112 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1113 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1114 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1115 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1116
1117 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1118 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1119 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1120 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1121 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1122 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1123
1124};
1125
1126/*
1127 * Detailed stats (-d), covering the L1 and last level data caches:
1128 */
1129 struct perf_event_attr detailed_attrs[] = {
1130
1131 { .type = PERF_TYPE_HW_CACHE,
1132 .config =
1133 PERF_COUNT_HW_CACHE_L1D << 0 |
1134 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1135 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1136
1137 { .type = PERF_TYPE_HW_CACHE,
1138 .config =
1139 PERF_COUNT_HW_CACHE_L1D << 0 |
1140 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1141 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1142
1143 { .type = PERF_TYPE_HW_CACHE,
1144 .config =
1145 PERF_COUNT_HW_CACHE_LL << 0 |
1146 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1147 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1148
1149 { .type = PERF_TYPE_HW_CACHE,
1150 .config =
1151 PERF_COUNT_HW_CACHE_LL << 0 |
1152 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1153 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1154};
1155
1156/*
1157 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1158 */
1159 struct perf_event_attr very_detailed_attrs[] = {
1160
1161 { .type = PERF_TYPE_HW_CACHE,
1162 .config =
1163 PERF_COUNT_HW_CACHE_L1I << 0 |
1164 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1165 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1166
1167 { .type = PERF_TYPE_HW_CACHE,
1168 .config =
1169 PERF_COUNT_HW_CACHE_L1I << 0 |
1170 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1171 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1172
1173 { .type = PERF_TYPE_HW_CACHE,
1174 .config =
1175 PERF_COUNT_HW_CACHE_DTLB << 0 |
1176 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1177 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1178
1179 { .type = PERF_TYPE_HW_CACHE,
1180 .config =
1181 PERF_COUNT_HW_CACHE_DTLB << 0 |
1182 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1183 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1184
1185 { .type = PERF_TYPE_HW_CACHE,
1186 .config =
1187 PERF_COUNT_HW_CACHE_ITLB << 0 |
1188 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1189 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1190
1191 { .type = PERF_TYPE_HW_CACHE,
1192 .config =
1193 PERF_COUNT_HW_CACHE_ITLB << 0 |
1194 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1195 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1196
1197};
1198
1199/*
1200 * Very, very detailed stats (-d -d -d), adding prefetch events:
1201 */
1202 struct perf_event_attr very_very_detailed_attrs[] = {
1203
1204 { .type = PERF_TYPE_HW_CACHE,
1205 .config =
1206 PERF_COUNT_HW_CACHE_L1D << 0 |
1207 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1208 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1209
1210 { .type = PERF_TYPE_HW_CACHE,
1211 .config =
1212 PERF_COUNT_HW_CACHE_L1D << 0 |
1213 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1214 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1215};
1216
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001217 /* Set attrs if no event is selected and !null_run: */
1218 if (null_run)
1219 return 0;
1220
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001221 if (transaction_run) {
1222 int err;
1223 if (pmu_have_event("cpu", "cycles-ct") &&
1224 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001225 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001226 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001227 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1228 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001229 fprintf(stderr, "Cannot set up transaction events\n");
1230 return -1;
1231 }
1232 return 0;
1233 }
1234
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001235 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001236 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001237 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001238 }
1239
1240 /* Detailed events get appended to the event list: */
1241
1242 if (detailed_run < 1)
1243 return 0;
1244
1245 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001246 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001247 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001248
1249 if (detailed_run < 2)
1250 return 0;
1251
1252 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001253 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001254 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001255
1256 if (detailed_run < 3)
1257 return 0;
1258
1259 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001260 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001261}
1262
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001263int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001264{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001265 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001266 int output_fd = 0;
1267 const char *output_name = NULL;
1268 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001269 OPT_BOOLEAN('T', "transaction", &transaction_run,
1270 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001271 OPT_CALLBACK('e', "event", &evsel_list, "event",
1272 "event selector. use 'perf list' to list available events",
1273 parse_events_option),
1274 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1275 "event filter", parse_filter),
1276 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1277 "child tasks do not inherit counters"),
1278 OPT_STRING('p', "pid", &target.pid, "pid",
1279 "stat events on existing process id"),
1280 OPT_STRING('t', "tid", &target.tid, "tid",
1281 "stat events on existing thread id"),
1282 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1283 "system-wide collection from all CPUs"),
1284 OPT_BOOLEAN('g', "group", &group,
1285 "put the counters into a counter group"),
Jiri Olsa711a5722015-07-21 14:31:23 +02001286 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001287 OPT_INCR('v', "verbose", &verbose,
1288 "be more verbose (show counter open errors, etc)"),
1289 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001290 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001291 OPT_BOOLEAN('n', "null", &null_run,
1292 "null run - dont start any counters"),
1293 OPT_INCR('d', "detailed", &detailed_run,
1294 "detailed run - start a lot of events"),
1295 OPT_BOOLEAN('S', "sync", &sync_run,
1296 "call sync() before starting a run"),
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001297 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001298 "print large numbers with thousands\' separators",
1299 stat__set_big_num),
1300 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1301 "list of cpus to monitor in system-wide"),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001302 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001303 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001304 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1305 "print counts with custom separator"),
1306 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1307 "monitor event in cgroup name only", parse_cgroups),
1308 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1309 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1310 OPT_INTEGER(0, "log-fd", &output_fd,
1311 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001312 OPT_STRING(0, "pre", &pre_cmd, "command",
1313 "command to run prior to the measured command"),
1314 OPT_STRING(0, "post", &post_cmd, "command",
1315 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001316 OPT_UINTEGER('I', "interval-print", &interval,
1317 "print counts at regular interval in ms (>= 100)"),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001318 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001319 "aggregate counts per processor socket", AGGR_SOCKET),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001320 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
Stephane Eranian12c08a92013-02-14 13:57:29 +01001321 "aggregate counts per physical processor core", AGGR_CORE),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001322 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
Jiri Olsa32b8af82015-06-26 11:29:27 +02001323 "aggregate counts per thread", AGGR_THREAD),
Andi Kleen41191682013-08-02 17:41:11 -07001324 OPT_UINTEGER('D', "delay", &initial_delay,
1325 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001326 OPT_END()
1327 };
1328 const char * const stat_usage[] = {
1329 "perf stat [<options>] [<command>]",
1330 NULL
1331 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001332 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001333 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001334 FILE *output = stderr;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001335
Stephane Eranian5af52b52010-05-18 15:00:01 +02001336 setlocale(LC_ALL, "");
1337
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001338 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001339 if (evsel_list == NULL)
1340 return -ENOMEM;
1341
Anton Blancharda0541232009-07-22 23:04:12 +10001342 argc = parse_options(argc, argv, options, stat_usage,
1343 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001344
Stephane Eranian4aa90152011-08-15 22:22:33 +02001345 if (output_name && strcmp(output_name, "-"))
1346 output = NULL;
1347
Jim Cromie56f3bae2011-09-07 17:14:00 -06001348 if (output_name && output_fd) {
1349 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001350 parse_options_usage(stat_usage, options, "o", 1);
1351 parse_options_usage(NULL, options, "log-fd", 0);
1352 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001353 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001354
1355 if (output_fd < 0) {
1356 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001357 parse_options_usage(stat_usage, options, "log-fd", 0);
1358 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001359 }
1360
Stephane Eranian4aa90152011-08-15 22:22:33 +02001361 if (!output) {
1362 struct timespec tm;
1363 mode = append_file ? "a" : "w";
1364
1365 output = fopen(output_name, mode);
1366 if (!output) {
1367 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001368 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001369 }
1370 clock_gettime(CLOCK_REALTIME, &tm);
1371 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001372 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001373 mode = append_file ? "a" : "w";
1374 output = fdopen(output_fd, mode);
1375 if (!output) {
1376 perror("Failed opening logfd");
1377 return -errno;
1378 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001379 }
1380
Jiri Olsa58215222015-07-21 14:31:24 +02001381 stat_config.output = output;
1382
Jim Cromied4ffd042011-09-07 17:14:03 -06001383 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001384 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001385 if (!strcmp(csv_sep, "\\t"))
1386 csv_sep = "\t";
1387 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001388 csv_sep = DEFAULT_SEPARATOR;
1389
1390 /*
1391 * let the spreadsheet do the pretty-printing
1392 */
1393 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001394 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001395 if (big_num_opt == 1) {
1396 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001397 parse_options_usage(stat_usage, options, "B", 1);
1398 parse_options_usage(NULL, options, "x", 1);
1399 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001400 } else /* Nope, so disable big number formatting */
1401 big_num = false;
1402 } else if (big_num_opt == 0) /* User passed --no-big-num */
1403 big_num = false;
1404
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001405 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001406 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001407
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001408 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001409 pr_err("Run count must be a positive number\n");
1410 parse_options_usage(stat_usage, options, "r", 1);
1411 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001412 } else if (run_count == 0) {
1413 forever = true;
1414 run_count = 1;
1415 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001416
Jiri Olsa421a50f2015-07-21 14:31:22 +02001417 if ((stat_config.aggr_mode == AGGR_THREAD) && !target__has_task(&target)) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001418 fprintf(stderr, "The --per-thread option is only available "
1419 "when monitoring via -p -t options.\n");
1420 parse_options_usage(NULL, options, "p", 1);
1421 parse_options_usage(NULL, options, "t", 1);
1422 goto out;
1423 }
1424
1425 /*
1426 * no_aggr, cgroup are for system-wide only
1427 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1428 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001429 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1430 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001431 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001432 fprintf(stderr, "both cgroup and no-aggregation "
1433 "modes only available in system-wide mode\n");
1434
Namhyung Kimcc03c542013-11-01 16:33:15 +09001435 parse_options_usage(stat_usage, options, "G", 1);
1436 parse_options_usage(NULL, options, "A", 1);
1437 parse_options_usage(NULL, options, "a", 1);
1438 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001439 }
1440
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001441 if (add_default_attributes())
1442 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001443
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001444 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001445
Namhyung Kim77a6f012012-05-07 14:09:04 +09001446 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001447 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001448 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001449 parse_options_usage(stat_usage, options, "p", 1);
1450 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001451 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001452 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001453 parse_options_usage(stat_usage, options, "C", 1);
1454 parse_options_usage(NULL, options, "a", 1);
1455 }
1456 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001457 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001458
1459 /*
1460 * Initialize thread_map with comm names,
1461 * so we could print it out on output.
1462 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001463 if (stat_config.aggr_mode == AGGR_THREAD)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001464 thread_map__read_comms(evsel_list->threads);
1465
Stephane Eranian13370a92013-01-29 12:47:44 +01001466 if (interval && interval < 100) {
1467 pr_err("print interval must be >= 100ms\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001468 parse_options_usage(stat_usage, options, "I", 1);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001469 goto out;
Stephane Eranian13370a92013-01-29 12:47:44 +01001470 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001471
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001472 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001473 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001474
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001475 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001476 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001477
Ingo Molnar58d7e992009-05-15 11:03:23 +02001478 /*
1479 * We dont want to block the signals - that would cause
1480 * child tasks to inherit that and Ctrl-C would not work.
1481 * What we want is for Ctrl-C to work in the exec()-ed
1482 * task, but being ignored by perf stat itself:
1483 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001484 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001485 if (!forever)
1486 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001487 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001488 signal(SIGALRM, skip_signal);
1489 signal(SIGABRT, skip_signal);
1490
Ingo Molnar42202dd2009-06-13 14:57:28 +02001491 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001492 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001493 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001494 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1495 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001496
Ingo Molnar42202dd2009-06-13 14:57:28 +02001497 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001498 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001499 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001500 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001501 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001502 }
1503
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001504 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001505 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001506
1507 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001508out:
1509 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001510 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001511}