blob: aa706fca410e531ce3e3c728a4d28631a2f2394a [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
Stephane Eranian13370a92013-01-29 12:47:44 +010070static void print_stat(int argc, const char **argv);
71static void print_counter_aggr(struct perf_evsel *counter, char *prefix);
72static void print_counter(struct perf_evsel *counter, char *prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +010073static void print_aggr(char *prefix);
Stephane Eranian13370a92013-01-29 12:47:44 +010074
Andi Kleen4cabc3d2013-08-21 16:47:26 -070075/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020076static const char *transaction_attrs = {
77 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070078 "{"
79 "instructions,"
80 "cycles,"
81 "cpu/cycles-t/,"
82 "cpu/tx-start/,"
83 "cpu/el-start/,"
84 "cpu/cycles-ct/"
85 "}"
86};
87
88/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +020089static const char * transaction_limited_attrs = {
90 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070091 "{"
92 "instructions,"
93 "cycles,"
94 "cpu/cycles-t/,"
95 "cpu/tx-start/"
96 "}"
97};
98
Robert Richter666e6d42012-04-05 18:26:27 +020099static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200100
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300101static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900102 .uid = UINT_MAX,
103};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530104
105static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200106static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +1000107static bool scale = true;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100108static enum aggr_mode aggr_mode = AGGR_GLOBAL;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200109static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000110static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200111static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700112static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200113static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200114static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200115static const char *csv_sep = NULL;
116static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800117static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200118static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200119static const char *pre_cmd = NULL;
120static const char *post_cmd = NULL;
121static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100122static unsigned int interval = 0;
Andi Kleen41191682013-08-02 17:41:11 -0700123static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100124static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500125static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100126static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100127static struct cpu_map *aggr_map;
128static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200129
Liming Wang60666c62009-12-31 16:05:50 +0800130static volatile int done = 0;
131
Stephane Eranian13370a92013-01-29 12:47:44 +0100132static inline void diff_timespec(struct timespec *r, struct timespec *a,
133 struct timespec *b)
134{
135 r->tv_sec = a->tv_sec - b->tv_sec;
136 if (a->tv_nsec < b->tv_nsec) {
137 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
138 r->tv_sec--;
139 } else {
140 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
141 }
142}
143
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200144static void perf_stat__reset_stats(void)
145{
146 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200147 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200148}
149
Jiri Olsacac21422012-11-12 18:34:00 +0100150static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200151{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200152 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200153
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200154 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200155 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
156 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200157
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200158 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300159
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300160 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300161 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200162
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300163 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200164 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700165 if (!initial_delay)
166 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200167 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300168
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300169 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200170}
171
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200172/*
173 * Does the counter have nsecs as a unit?
174 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200175static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200176{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200177 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
178 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200179 return 1;
180
181 return 0;
182}
183
Jiri Olsa779d0b992014-11-21 10:31:14 +0100184static void zero_per_pkg(struct perf_evsel *counter)
185{
186 if (counter->per_pkg_mask)
187 memset(counter->per_pkg_mask, 0, MAX_NR_CPUS);
188}
189
190static int check_per_pkg(struct perf_evsel *counter, int cpu, bool *skip)
191{
192 unsigned long *mask = counter->per_pkg_mask;
193 struct cpu_map *cpus = perf_evsel__cpus(counter);
194 int s;
195
196 *skip = false;
197
198 if (!counter->per_pkg)
199 return 0;
200
201 if (cpu_map__empty(cpus))
202 return 0;
203
204 if (!mask) {
205 mask = zalloc(MAX_NR_CPUS);
206 if (!mask)
207 return -ENOMEM;
208
209 counter->per_pkg_mask = mask;
210 }
211
212 s = cpu_map__get_socket(cpus, cpu);
213 if (s < 0)
214 return -1;
215
216 *skip = test_and_set_bit(s, mask) == 1;
217 return 0;
218}
219
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200220static int
221process_counter_values(struct perf_evsel *evsel, int cpu, int thread,
222 struct perf_counts_values *count)
Jiri Olsa060c4f92014-11-21 10:31:08 +0100223{
Jiri Olsa1971f592014-11-21 10:31:10 +0100224 struct perf_counts_values *aggr = &evsel->counts->aggr;
Jiri Olsa779d0b992014-11-21 10:31:14 +0100225 static struct perf_counts_values zero;
226 bool skip = false;
227
228 if (check_per_pkg(evsel, cpu, &skip)) {
229 pr_err("failed to read per-pkg counter\n");
230 return -1;
231 }
232
233 if (skip)
234 count = &zero;
Jiri Olsa1971f592014-11-21 10:31:10 +0100235
Jiri Olsa060c4f92014-11-21 10:31:08 +0100236 switch (aggr_mode) {
237 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 Olsa060c4f92014-11-21 10:31:08 +0100242 perf_counts_values__scale(count, scale, NULL);
Andi Kleen56f0fd42015-03-11 08:28:01 -0700243 if (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;
248 if (scale) {
249 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 Olsa7ddb1b62015-06-26 11:29:22 +0200287 memset(ps->res_stats, 0, sizeof(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
296 if (aggr_mode != AGGR_GLOBAL)
297 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 Olsa1971f592014-11-21 10:31:10 +0100301 perf_counts_values__scale(aggr, scale, &counter->counts->scaled);
302
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) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200307 fprintf(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 Olsa106a94a2015-06-26 11:29:19 +0200348static void read_counters(bool close)
349{
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
359 if (close) {
360 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{
368 static int num_print_interval;
369 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100370 struct timespec ts, rs;
371 char prefix[64];
372
Jiri Olsa106a94a2015-06-26 11:29:19 +0200373 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100374
Stephane Eranian13370a92013-01-29 12:47:44 +0100375 clock_gettime(CLOCK_MONOTONIC, &ts);
376 diff_timespec(&rs, &ts, &ref_time);
377 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
378
379 if (num_print_interval == 0 && !csv_output) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100380 switch (aggr_mode) {
381 case AGGR_SOCKET:
Stephane Eranian410136f2013-11-12 17:58:49 +0100382 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100383 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100384 case AGGR_CORE:
Stephane Eranian410136f2013-11-12 17:58:49 +0100385 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
Stephane Eranian12c08a92013-02-14 13:57:29 +0100386 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100387 case AGGR_NONE:
Stephane Eranian410136f2013-11-12 17:58:49 +0100388 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100389 break;
390 case AGGR_GLOBAL:
391 default:
Stephane Eranian410136f2013-11-12 17:58:49 +0100392 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100393 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100394 }
395
396 if (++num_print_interval == 25)
397 num_print_interval = 0;
398
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100399 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100400 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100401 case AGGR_SOCKET:
402 print_aggr(prefix);
403 break;
404 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300405 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +0100406 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100407 break;
408 case AGGR_GLOBAL:
409 default:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300410 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +0100411 print_counter_aggr(counter, prefix);
412 }
Andi Kleen2bbf03f2013-08-02 17:41:12 -0700413
414 fflush(output);
Stephane Eranian13370a92013-01-29 12:47:44 +0100415}
416
Andi Kleen41191682013-08-02 17:41:11 -0700417static void handle_initial_delay(void)
418{
419 struct perf_evsel *counter;
420
421 if (initial_delay) {
422 const int ncpus = cpu_map__nr(evsel_list->cpus),
423 nthreads = thread_map__nr(evsel_list->threads);
424
425 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300426 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700427 perf_evsel__enable(counter, ncpus, nthreads);
428 }
429}
430
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300431static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300432
433/*
434 * perf_evlist__prepare_workload will send a SIGUSR1
435 * if the fork fails, since we asked by setting its
436 * want_signal to true.
437 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300438static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
439 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300440{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300441 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300442}
443
Namhyung Kimacf28922013-03-11 16:43:18 +0900444static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200445{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300446 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200447 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100448 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100449 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100450 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200451 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300452 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200453
Stephane Eranian13370a92013-01-29 12:47:44 +0100454 if (interval) {
455 ts.tv_sec = interval / 1000;
456 ts.tv_nsec = (interval % 1000) * 1000000;
457 } else {
458 ts.tv_sec = 1;
459 ts.tv_nsec = 0;
460 }
461
Liming Wang60666c62009-12-31 16:05:50 +0800462 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300463 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
464 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900465 perror("failed to prepare workload");
466 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800467 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900468 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000469 }
470
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200471 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300472 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200473
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300474 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100475 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600476 /*
477 * PPC returns ENXIO for HW counters until 2.6.37
478 * (behavior changed with commit b0a873e).
479 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100480 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600481 errno == ENOENT || errno == EOPNOTSUPP ||
482 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600483 if (verbose)
484 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300485 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600486 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400487
488 if ((counter->leader != counter) ||
489 !(counter->leader->nr_members > 1))
490 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600491 }
Ingo Molnarede70292011-04-28 08:48:42 +0200492
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300493 perf_evsel__open_strerror(counter, &target,
494 errno, msg, sizeof(msg));
495 ui__error("%s\n", msg);
496
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200497 if (child_pid != -1)
498 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600499
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200500 return -1;
501 }
David Ahern2cee77c2011-05-30 08:55:59 -0600502 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100503
504 l = strlen(counter->unit);
505 if (l > unit_width)
506 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300507 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200508
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300509 if (perf_evlist__apply_filters(evsel_list, &counter)) {
510 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
511 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000512 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100513 return -1;
514 }
515
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200516 /*
517 * Enable counters and exec the command:
518 */
519 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100520 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200521
Liming Wang60666c62009-12-31 16:05:50 +0800522 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900523 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700524 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900525
Stephane Eranian13370a92013-01-29 12:47:44 +0100526 if (interval) {
527 while (!waitpid(child_pid, &status, WNOHANG)) {
528 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200529 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100530 }
531 }
Liming Wang60666c62009-12-31 16:05:50 +0800532 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300533
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300534 if (workload_exec_errno) {
535 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
536 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300537 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300538 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300539
Andi Kleen33e49ea2011-09-15 14:31:40 -0700540 if (WIFSIGNALED(status))
541 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800542 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700543 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100544 while (!done) {
545 nanosleep(&ts, NULL);
546 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200547 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100548 }
Liming Wang60666c62009-12-31 16:05:50 +0800549 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200550
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200551 t1 = rdclock();
552
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200553 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200554
Jiri Olsa106a94a2015-06-26 11:29:19 +0200555 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200556
Ingo Molnar42202dd2009-06-13 14:57:28 +0200557 return WEXITSTATUS(status);
558}
559
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300560static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200561{
562 int ret;
563
564 if (pre_cmd) {
565 ret = system(pre_cmd);
566 if (ret)
567 return ret;
568 }
569
570 if (sync_run)
571 sync();
572
573 ret = __run_perf_stat(argc, argv);
574 if (ret)
575 return ret;
576
577 if (post_cmd) {
578 ret = system(post_cmd);
579 if (ret)
580 return ret;
581 }
582
583 return ret;
584}
585
Andi Kleend73515c2015-03-11 07:16:27 -0700586static void print_running(u64 run, u64 ena)
587{
588 if (csv_output) {
589 fprintf(output, "%s%" PRIu64 "%s%.2f",
590 csv_sep,
591 run,
592 csv_sep,
593 ena ? 100.0 * run / ena : 100.0);
594 } else if (run != ena) {
595 fprintf(output, " (%.2f%%)", 100.0 * run / ena);
596 }
597}
598
Ingo Molnarf99844c2011-04-27 05:35:39 +0200599static void print_noise_pct(double total, double avg)
600{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800601 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200602
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700603 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200604 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600605 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200606 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200607}
608
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200609static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200610{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200611 struct perf_stat *ps;
612
Peter Zijlstra849abde2009-09-04 18:23:38 +0200613 if (run_count == 1)
614 return;
615
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200616 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200617 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200618}
619
Stephane Eranian12c08a92013-02-14 13:57:29 +0100620static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200621{
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100622 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100623 case AGGR_CORE:
624 fprintf(output, "S%d-C%*d%s%*d%s",
625 cpu_map__id_to_socket(id),
626 csv_output ? 0 : -8,
627 cpu_map__id_to_cpu(id),
628 csv_sep,
629 csv_output ? 0 : 4,
630 nr,
631 csv_sep);
632 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100633 case AGGR_SOCKET:
634 fprintf(output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100635 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100636 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100637 csv_sep,
638 csv_output ? 0 : 4,
639 nr,
640 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100641 break;
642 case AGGR_NONE:
643 fprintf(output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200644 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100645 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100646 break;
647 case AGGR_GLOBAL:
648 default:
649 break;
650 }
651}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200652
Andi Kleenda88c7f2014-09-24 13:50:46 -0700653static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100654{
655 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100656 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600657 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100658
Stephane Eranian410136f2013-11-12 17:58:49 +0100659 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
660 fmt_n = csv_output ? "%s" : "%-25s";
661
Andi Kleenda88c7f2014-09-24 13:50:46 -0700662 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100663
David Ahern4bbe5a62013-09-28 14:28:00 -0600664 scnprintf(name, sizeof(name), "%s%s",
665 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100666
667 fprintf(output, fmt_v, msecs, csv_sep);
668
669 if (csv_output)
670 fprintf(output, "%s%s", evsel->unit, csv_sep);
671 else
672 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
673
674 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200675
Stephane Eranian023695d2011-02-14 11:20:01 +0200676 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200677 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200678
Stephane Eranian13370a92013-01-29 12:47:44 +0100679 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200680 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200681
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200682 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200683 fprintf(output, " # %8.3f CPUs utilized ",
684 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900685 else
686 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200687}
688
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200689static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
690{
691 double sc = evsel->scale;
692 const char *fmt;
693 int cpu = cpu_map__id_to_cpu(id);
694
695 if (csv_output) {
696 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
697 } else {
698 if (big_num)
699 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
700 else
701 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
702 }
703
704 aggr_printout(evsel, id, nr);
705
706 if (aggr_mode == AGGR_GLOBAL)
707 cpu = 0;
708
709 fprintf(output, fmt, avg, csv_sep);
710
711 if (evsel->unit)
712 fprintf(output, "%-*s%s",
713 csv_output ? 0 : unit_width,
714 evsel->unit, csv_sep);
715
716 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
717
718 if (evsel->cgrp)
719 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
720
721 if (csv_output || interval)
722 return;
723
Jiri Olsaf87027b2015-06-03 16:25:59 +0200724 perf_stat__print_shadow_stats(output, evsel, avg, cpu, aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200725}
726
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100727static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100728{
729 struct perf_evsel *counter;
Stephane Eranian582ec0822013-07-05 19:06:45 +0200730 int cpu, cpu2, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100731 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100732 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100733
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100734 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100735 return;
736
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100737 for (s = 0; s < aggr_map->nr; s++) {
738 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300739 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100740 val = ena = run = 0;
741 nr = 0;
742 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200743 cpu2 = perf_evsel__cpus(counter)->map[cpu];
744 s2 = aggr_get_id(evsel_list->cpus, cpu2);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100745 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100746 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200747 val += perf_counts(counter->counts, cpu, 0)->val;
748 ena += perf_counts(counter->counts, cpu, 0)->ena;
749 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100750 nr++;
751 }
752 if (prefix)
753 fprintf(output, "%s", prefix);
754
755 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200756 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100757
Stephane Eranian410136f2013-11-12 17:58:49 +0100758 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100759 csv_output ? 0 : 18,
760 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100761 csv_sep);
762
763 fprintf(output, "%-*s%s",
764 csv_output ? 0 : unit_width,
765 counter->unit, csv_sep);
766
767 fprintf(output, "%*s",
768 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100769 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100770
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100771 if (counter->cgrp)
772 fprintf(output, "%s%s",
773 csv_sep, counter->cgrp->name);
774
Andi Kleend73515c2015-03-11 07:16:27 -0700775 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100776 fputc('\n', output);
777 continue;
778 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100779 uval = val * counter->scale;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100780
781 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100782 nsec_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100783 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100784 abs_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100785
Andi Kleend73515c2015-03-11 07:16:27 -0700786 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100787 print_noise(counter, 1.0);
788
Andi Kleend73515c2015-03-11 07:16:27 -0700789 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100790 fputc('\n', output);
791 }
792 }
793}
794
Ingo Molnar42202dd2009-06-13 14:57:28 +0200795/*
796 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200797 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200798 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100799static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200800{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200801 struct perf_stat *ps = counter->priv;
802 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200803 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100804 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700805 double avg_enabled, avg_running;
806
807 avg_enabled = avg_stats(&ps->res_stats[1]);
808 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200809
Stephane Eranian13370a92013-01-29 12:47:44 +0100810 if (prefix)
811 fprintf(output, "%s", prefix);
812
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000813 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100814 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200815 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600816 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100817 csv_sep);
818 fprintf(output, "%-*s%s",
819 csv_output ? 0 : unit_width,
820 counter->unit, csv_sep);
821 fprintf(output, "%*s",
822 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300823 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200824
825 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200826 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200827
Andi Kleend73515c2015-03-11 07:16:27 -0700828 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200829 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200830 return;
831 }
832
Stephane Eranian410136f2013-11-12 17:58:49 +0100833 uval = avg * counter->scale;
834
Ingo Molnar42202dd2009-06-13 14:57:28 +0200835 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100836 nsec_printout(-1, 0, counter, uval);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200837 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100838 abs_printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200839
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700840 print_noise(counter, avg);
841
Andi Kleend73515c2015-03-11 07:16:27 -0700842 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200843 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200844}
845
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200846/*
847 * Print out the results of a single counter:
848 * does not use aggregated count in system-wide
849 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100850static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200851{
852 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100853 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200854 int cpu;
855
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800856 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200857 val = perf_counts(counter->counts, cpu, 0)->val;
858 ena = perf_counts(counter->counts, cpu, 0)->ena;
859 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100860
861 if (prefix)
862 fprintf(output, "%s", prefix);
863
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200864 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100865 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200866 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800867 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200868 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600869 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100870 csv_sep);
871
872 fprintf(output, "%-*s%s",
873 csv_output ? 0 : unit_width,
874 counter->unit, csv_sep);
875
876 fprintf(output, "%*s",
877 csv_output ? 0 : -25,
878 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200879
Stephane Eranian023695d2011-02-14 11:20:01 +0200880 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200881 fprintf(output, "%s%s",
882 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200883
Andi Kleend73515c2015-03-11 07:16:27 -0700884 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200885 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200886 continue;
887 }
888
Stephane Eranian410136f2013-11-12 17:58:49 +0100889 uval = val * counter->scale;
890
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200891 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100892 nsec_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200893 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100894 abs_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200895
Andi Kleend73515c2015-03-11 07:16:27 -0700896 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200897 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700898 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200899
Stephane Eranian4aa90152011-08-15 22:22:33 +0200900 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200901 }
902}
903
Ingo Molnar42202dd2009-06-13 14:57:28 +0200904static void print_stat(int argc, const char **argv)
905{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200906 struct perf_evsel *counter;
907 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200908
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200909 fflush(stdout);
910
Stephane Eraniand7470b62010-12-01 18:49:05 +0200911 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200912 fprintf(output, "\n");
913 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600914 if (target.system_wide)
915 fprintf(output, "\'system wide");
916 else if (target.cpu_list)
917 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300918 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200919 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200920 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200921 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900922 } else if (target.pid)
923 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200924 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900925 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200926
Stephane Eranian4aa90152011-08-15 22:22:33 +0200927 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200928 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200929 fprintf(output, " (%d runs)", run_count);
930 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200931 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200932
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100933 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100934 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100935 case AGGR_SOCKET:
936 print_aggr(NULL);
937 break;
938 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300939 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +0100940 print_counter_aggr(counter, NULL);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100941 break;
942 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300943 evlist__for_each(evsel_list, counter)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100944 print_counter(counter, NULL);
945 break;
946 default:
947 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200948 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200949
Stephane Eraniand7470b62010-12-01 18:49:05 +0200950 if (!csv_output) {
Ingo Molnarc33052572011-05-19 14:01:42 +0200951 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200952 fprintf(output, "\n");
953 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200954 avg_stats(&walltime_nsecs_stats)/1e9);
955 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200956 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +0200957 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
958 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200959 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200960 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200961 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200962}
963
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200964static volatile int signr = -1;
965
Ingo Molnar52425192009-05-26 09:17:18 +0200966static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200967{
Stephane Eranian13370a92013-01-29 12:47:44 +0100968 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +0800969 done = 1;
970
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200971 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200972 /*
973 * render child_pid harmless
974 * won't send SIGTERM to a random
975 * process in case of race condition
976 * and fast PID recycling
977 */
978 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200979}
980
981static void sig_atexit(void)
982{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200983 sigset_t set, oset;
984
985 /*
986 * avoid race condition with SIGCHLD handler
987 * in skip_signal() which is modifying child_pid
988 * goal is to avoid send SIGTERM to a random
989 * process
990 */
991 sigemptyset(&set);
992 sigaddset(&set, SIGCHLD);
993 sigprocmask(SIG_BLOCK, &set, &oset);
994
Chris Wilson933da832009-10-04 01:35:01 +0100995 if (child_pid != -1)
996 kill(child_pid, SIGTERM);
997
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200998 sigprocmask(SIG_SETMASK, &oset, NULL);
999
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001000 if (signr == -1)
1001 return;
1002
1003 signal(signr, SIG_DFL);
1004 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001005}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001006
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001007static int stat__set_big_num(const struct option *opt __maybe_unused,
1008 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001009{
1010 big_num_opt = unset ? 0 : 1;
1011 return 0;
1012}
1013
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001014static int perf_stat_init_aggr_mode(void)
1015{
1016 switch (aggr_mode) {
1017 case AGGR_SOCKET:
1018 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1019 perror("cannot build socket map");
1020 return -1;
1021 }
1022 aggr_get_id = cpu_map__get_socket;
1023 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001024 case AGGR_CORE:
1025 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1026 perror("cannot build core map");
1027 return -1;
1028 }
1029 aggr_get_id = cpu_map__get_core;
1030 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001031 case AGGR_NONE:
1032 case AGGR_GLOBAL:
1033 default:
1034 break;
1035 }
1036 return 0;
1037}
1038
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001039/*
1040 * Add default attributes, if there were no attributes specified or
1041 * if -d/--detailed, -d -d or -d -d -d is used:
1042 */
1043static int add_default_attributes(void)
1044{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001045 struct perf_event_attr default_attrs[] = {
1046
1047 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1048 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1049 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1050 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1051
1052 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1053 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1054 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1055 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1056 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1057 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1058
1059};
1060
1061/*
1062 * Detailed stats (-d), covering the L1 and last level data caches:
1063 */
1064 struct perf_event_attr detailed_attrs[] = {
1065
1066 { .type = PERF_TYPE_HW_CACHE,
1067 .config =
1068 PERF_COUNT_HW_CACHE_L1D << 0 |
1069 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1070 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1071
1072 { .type = PERF_TYPE_HW_CACHE,
1073 .config =
1074 PERF_COUNT_HW_CACHE_L1D << 0 |
1075 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1076 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1077
1078 { .type = PERF_TYPE_HW_CACHE,
1079 .config =
1080 PERF_COUNT_HW_CACHE_LL << 0 |
1081 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1082 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1083
1084 { .type = PERF_TYPE_HW_CACHE,
1085 .config =
1086 PERF_COUNT_HW_CACHE_LL << 0 |
1087 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1088 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1089};
1090
1091/*
1092 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1093 */
1094 struct perf_event_attr very_detailed_attrs[] = {
1095
1096 { .type = PERF_TYPE_HW_CACHE,
1097 .config =
1098 PERF_COUNT_HW_CACHE_L1I << 0 |
1099 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1100 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1101
1102 { .type = PERF_TYPE_HW_CACHE,
1103 .config =
1104 PERF_COUNT_HW_CACHE_L1I << 0 |
1105 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1106 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1107
1108 { .type = PERF_TYPE_HW_CACHE,
1109 .config =
1110 PERF_COUNT_HW_CACHE_DTLB << 0 |
1111 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1112 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1113
1114 { .type = PERF_TYPE_HW_CACHE,
1115 .config =
1116 PERF_COUNT_HW_CACHE_DTLB << 0 |
1117 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1118 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1119
1120 { .type = PERF_TYPE_HW_CACHE,
1121 .config =
1122 PERF_COUNT_HW_CACHE_ITLB << 0 |
1123 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1124 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1125
1126 { .type = PERF_TYPE_HW_CACHE,
1127 .config =
1128 PERF_COUNT_HW_CACHE_ITLB << 0 |
1129 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1130 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1131
1132};
1133
1134/*
1135 * Very, very detailed stats (-d -d -d), adding prefetch events:
1136 */
1137 struct perf_event_attr very_very_detailed_attrs[] = {
1138
1139 { .type = PERF_TYPE_HW_CACHE,
1140 .config =
1141 PERF_COUNT_HW_CACHE_L1D << 0 |
1142 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1143 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1144
1145 { .type = PERF_TYPE_HW_CACHE,
1146 .config =
1147 PERF_COUNT_HW_CACHE_L1D << 0 |
1148 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1149 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1150};
1151
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001152 /* Set attrs if no event is selected and !null_run: */
1153 if (null_run)
1154 return 0;
1155
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001156 if (transaction_run) {
1157 int err;
1158 if (pmu_have_event("cpu", "cycles-ct") &&
1159 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001160 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001161 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001162 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1163 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001164 fprintf(stderr, "Cannot set up transaction events\n");
1165 return -1;
1166 }
1167 return 0;
1168 }
1169
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001170 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001171 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001172 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001173 }
1174
1175 /* Detailed events get appended to the event list: */
1176
1177 if (detailed_run < 1)
1178 return 0;
1179
1180 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001181 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001182 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001183
1184 if (detailed_run < 2)
1185 return 0;
1186
1187 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001188 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001189 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001190
1191 if (detailed_run < 3)
1192 return 0;
1193
1194 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001195 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001196}
1197
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001198int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001199{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001200 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001201 int output_fd = 0;
1202 const char *output_name = NULL;
1203 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001204 OPT_BOOLEAN('T', "transaction", &transaction_run,
1205 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001206 OPT_CALLBACK('e', "event", &evsel_list, "event",
1207 "event selector. use 'perf list' to list available events",
1208 parse_events_option),
1209 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1210 "event filter", parse_filter),
1211 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1212 "child tasks do not inherit counters"),
1213 OPT_STRING('p', "pid", &target.pid, "pid",
1214 "stat events on existing process id"),
1215 OPT_STRING('t', "tid", &target.tid, "tid",
1216 "stat events on existing thread id"),
1217 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1218 "system-wide collection from all CPUs"),
1219 OPT_BOOLEAN('g', "group", &group,
1220 "put the counters into a counter group"),
1221 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1222 OPT_INCR('v', "verbose", &verbose,
1223 "be more verbose (show counter open errors, etc)"),
1224 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001225 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001226 OPT_BOOLEAN('n', "null", &null_run,
1227 "null run - dont start any counters"),
1228 OPT_INCR('d', "detailed", &detailed_run,
1229 "detailed run - start a lot of events"),
1230 OPT_BOOLEAN('S', "sync", &sync_run,
1231 "call sync() before starting a run"),
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001232 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001233 "print large numbers with thousands\' separators",
1234 stat__set_big_num),
1235 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1236 "list of cpus to monitor in system-wide"),
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001237 OPT_SET_UINT('A', "no-aggr", &aggr_mode,
1238 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001239 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1240 "print counts with custom separator"),
1241 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1242 "monitor event in cgroup name only", parse_cgroups),
1243 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1244 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1245 OPT_INTEGER(0, "log-fd", &output_fd,
1246 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001247 OPT_STRING(0, "pre", &pre_cmd, "command",
1248 "command to run prior to the measured command"),
1249 OPT_STRING(0, "post", &post_cmd, "command",
1250 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001251 OPT_UINTEGER('I', "interval-print", &interval,
1252 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand4304952013-02-14 13:57:28 +01001253 OPT_SET_UINT(0, "per-socket", &aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001254 "aggregate counts per processor socket", AGGR_SOCKET),
Stephane Eranian12c08a92013-02-14 13:57:29 +01001255 OPT_SET_UINT(0, "per-core", &aggr_mode,
1256 "aggregate counts per physical processor core", AGGR_CORE),
Andi Kleen41191682013-08-02 17:41:11 -07001257 OPT_UINTEGER('D', "delay", &initial_delay,
1258 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001259 OPT_END()
1260 };
1261 const char * const stat_usage[] = {
1262 "perf stat [<options>] [<command>]",
1263 NULL
1264 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001265 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001266 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001267
Stephane Eranian5af52b52010-05-18 15:00:01 +02001268 setlocale(LC_ALL, "");
1269
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001270 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001271 if (evsel_list == NULL)
1272 return -ENOMEM;
1273
Anton Blancharda0541232009-07-22 23:04:12 +10001274 argc = parse_options(argc, argv, options, stat_usage,
1275 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001276
Stephane Eranian4aa90152011-08-15 22:22:33 +02001277 output = stderr;
1278 if (output_name && strcmp(output_name, "-"))
1279 output = NULL;
1280
Jim Cromie56f3bae2011-09-07 17:14:00 -06001281 if (output_name && output_fd) {
1282 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001283 parse_options_usage(stat_usage, options, "o", 1);
1284 parse_options_usage(NULL, options, "log-fd", 0);
1285 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001286 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001287
1288 if (output_fd < 0) {
1289 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001290 parse_options_usage(stat_usage, options, "log-fd", 0);
1291 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001292 }
1293
Stephane Eranian4aa90152011-08-15 22:22:33 +02001294 if (!output) {
1295 struct timespec tm;
1296 mode = append_file ? "a" : "w";
1297
1298 output = fopen(output_name, mode);
1299 if (!output) {
1300 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001301 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001302 }
1303 clock_gettime(CLOCK_REALTIME, &tm);
1304 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001305 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001306 mode = append_file ? "a" : "w";
1307 output = fdopen(output_fd, mode);
1308 if (!output) {
1309 perror("Failed opening logfd");
1310 return -errno;
1311 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001312 }
1313
Jim Cromied4ffd042011-09-07 17:14:03 -06001314 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001315 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001316 if (!strcmp(csv_sep, "\\t"))
1317 csv_sep = "\t";
1318 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001319 csv_sep = DEFAULT_SEPARATOR;
1320
1321 /*
1322 * let the spreadsheet do the pretty-printing
1323 */
1324 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001325 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001326 if (big_num_opt == 1) {
1327 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001328 parse_options_usage(stat_usage, options, "B", 1);
1329 parse_options_usage(NULL, options, "x", 1);
1330 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001331 } else /* Nope, so disable big number formatting */
1332 big_num = false;
1333 } else if (big_num_opt == 0) /* User passed --no-big-num */
1334 big_num = false;
1335
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001336 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001337 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001338
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001339 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001340 pr_err("Run count must be a positive number\n");
1341 parse_options_usage(stat_usage, options, "r", 1);
1342 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001343 } else if (run_count == 0) {
1344 forever = true;
1345 run_count = 1;
1346 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001347
Stephane Eranian023695d2011-02-14 11:20:01 +02001348 /* no_aggr, cgroup are for system-wide only */
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001349 if ((aggr_mode != AGGR_GLOBAL || nr_cgroups) &&
1350 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001351 fprintf(stderr, "both cgroup and no-aggregation "
1352 "modes only available in system-wide mode\n");
1353
Namhyung Kimcc03c542013-11-01 16:33:15 +09001354 parse_options_usage(stat_usage, options, "G", 1);
1355 parse_options_usage(NULL, options, "A", 1);
1356 parse_options_usage(NULL, options, "a", 1);
1357 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001358 }
1359
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001360 if (add_default_attributes())
1361 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001362
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001363 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001364
Namhyung Kim77a6f012012-05-07 14:09:04 +09001365 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001366 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001367 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001368 parse_options_usage(stat_usage, options, "p", 1);
1369 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001370 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001371 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001372 parse_options_usage(stat_usage, options, "C", 1);
1373 parse_options_usage(NULL, options, "a", 1);
1374 }
1375 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001376 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001377 if (interval && interval < 100) {
1378 pr_err("print interval must be >= 100ms\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001379 parse_options_usage(stat_usage, options, "I", 1);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001380 goto out;
Stephane Eranian13370a92013-01-29 12:47:44 +01001381 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001382
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001383 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001384 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001385
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001386 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001387 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001388
Ingo Molnar58d7e992009-05-15 11:03:23 +02001389 /*
1390 * We dont want to block the signals - that would cause
1391 * child tasks to inherit that and Ctrl-C would not work.
1392 * What we want is for Ctrl-C to work in the exec()-ed
1393 * task, but being ignored by perf stat itself:
1394 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001395 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001396 if (!forever)
1397 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001398 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001399 signal(SIGALRM, skip_signal);
1400 signal(SIGABRT, skip_signal);
1401
Ingo Molnar42202dd2009-06-13 14:57:28 +02001402 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001403 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001404 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001405 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1406 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001407
Ingo Molnar42202dd2009-06-13 14:57:28 +02001408 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001409 if (forever && status != -1) {
1410 print_stat(argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001411 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001412 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001413 }
1414
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001415 if (!forever && status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001416 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001417
1418 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001419out:
1420 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001421 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001422}