blob: 74ac92baa2bdfd52a0fc954e164ef7e09a224a1d [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 Olsa254ecbc2015-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 Olsa779d0b92014-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 Olsa779d0b92014-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;
287
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200288 ret = process_counter_maps(counter);
289 if (ret)
290 return ret;
291
292 if (aggr_mode != AGGR_GLOBAL)
293 return 0;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200294
Jiri Olsa6c0345b2014-11-21 10:31:15 +0100295 if (!counter->snapshot)
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200296 perf_evsel__compute_deltas(counter, -1, -1, aggr);
Jiri Olsa1971f592014-11-21 10:31:10 +0100297 perf_counts_values__scale(aggr, scale, &counter->counts->scaled);
298
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200299 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200300 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200301
302 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200303 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300304 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200305 }
306
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200307 /*
308 * Save the full runtime - to allow normalization during printout:
309 */
Jiri Olsaf87027b2015-06-03 16:25:59 +0200310 perf_stat__update_shadow_stats(counter, count, 0);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200311
312 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200313}
314
315/*
316 * Read out the results of a single counter:
317 * do not aggregate counts across CPUs in system-wide mode
318 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200319static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200320{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100321 int nthreads = thread_map__nr(evsel_list->threads);
322 int ncpus = perf_evsel__nr_cpus(counter);
323 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200324
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000325 if (!counter->supported)
326 return -ENOENT;
327
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100328 if (counter->system_wide)
329 nthreads = 1;
330
Jiri Olsa779d0b92014-11-21 10:31:14 +0100331 if (counter->per_pkg)
332 zero_per_pkg(counter);
333
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100334 for (thread = 0; thread < nthreads; thread++) {
335 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200336 struct perf_counts_values *count;
337
338 count = perf_counts(counter->counts, cpu, thread);
339 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100340 return -1;
341 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200342 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200343
344 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200345}
346
Jiri Olsa106a94a2015-06-26 11:29:19 +0200347static void read_counters(bool close)
348{
349 struct perf_evsel *counter;
350 struct perf_stat *ps;
351
352 evlist__for_each(evsel_list, counter) {
353 ps = counter->priv;
354 memset(ps->res_stats, 0, sizeof(ps->res_stats));
355
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200356 if (read_counter(counter))
357 pr_warning("failed to read counter %s\n", counter->name);
358
359 if (process_counter(counter))
360 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200361
362 if (close) {
363 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
364 thread_map__nr(evsel_list->threads));
365 }
366 }
367}
368
Stephane Eranian13370a92013-01-29 12:47:44 +0100369static void print_interval(void)
370{
371 static int num_print_interval;
372 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100373 struct timespec ts, rs;
374 char prefix[64];
375
Jiri Olsa106a94a2015-06-26 11:29:19 +0200376 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100377
Stephane Eranian13370a92013-01-29 12:47:44 +0100378 clock_gettime(CLOCK_MONOTONIC, &ts);
379 diff_timespec(&rs, &ts, &ref_time);
380 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
381
382 if (num_print_interval == 0 && !csv_output) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100383 switch (aggr_mode) {
384 case AGGR_SOCKET:
Stephane Eranian410136f2013-11-12 17:58:49 +0100385 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100386 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100387 case AGGR_CORE:
Stephane Eranian410136f2013-11-12 17:58:49 +0100388 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
Stephane Eranian12c08a92013-02-14 13:57:29 +0100389 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100390 case AGGR_NONE:
Stephane Eranian410136f2013-11-12 17:58:49 +0100391 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100392 break;
393 case AGGR_GLOBAL:
394 default:
Stephane Eranian410136f2013-11-12 17:58:49 +0100395 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100396 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100397 }
398
399 if (++num_print_interval == 25)
400 num_print_interval = 0;
401
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100402 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100403 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100404 case AGGR_SOCKET:
405 print_aggr(prefix);
406 break;
407 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300408 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +0100409 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100410 break;
411 case AGGR_GLOBAL:
412 default:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300413 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +0100414 print_counter_aggr(counter, prefix);
415 }
Andi Kleen2bbf03f2013-08-02 17:41:12 -0700416
417 fflush(output);
Stephane Eranian13370a92013-01-29 12:47:44 +0100418}
419
Andi Kleen41191682013-08-02 17:41:11 -0700420static void handle_initial_delay(void)
421{
422 struct perf_evsel *counter;
423
424 if (initial_delay) {
425 const int ncpus = cpu_map__nr(evsel_list->cpus),
426 nthreads = thread_map__nr(evsel_list->threads);
427
428 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300429 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700430 perf_evsel__enable(counter, ncpus, nthreads);
431 }
432}
433
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300434static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300435
436/*
437 * perf_evlist__prepare_workload will send a SIGUSR1
438 * if the fork fails, since we asked by setting its
439 * want_signal to true.
440 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300441static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
442 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300443{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300444 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300445}
446
Namhyung Kimacf28922013-03-11 16:43:18 +0900447static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200448{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300449 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200450 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100451 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100452 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100453 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200454 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300455 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200456
Stephane Eranian13370a92013-01-29 12:47:44 +0100457 if (interval) {
458 ts.tv_sec = interval / 1000;
459 ts.tv_nsec = (interval % 1000) * 1000000;
460 } else {
461 ts.tv_sec = 1;
462 ts.tv_nsec = 0;
463 }
464
Liming Wang60666c62009-12-31 16:05:50 +0800465 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300466 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
467 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900468 perror("failed to prepare workload");
469 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800470 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900471 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000472 }
473
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200474 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300475 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200476
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300477 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100478 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600479 /*
480 * PPC returns ENXIO for HW counters until 2.6.37
481 * (behavior changed with commit b0a873e).
482 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100483 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600484 errno == ENOENT || errno == EOPNOTSUPP ||
485 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600486 if (verbose)
487 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300488 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600489 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400490
491 if ((counter->leader != counter) ||
492 !(counter->leader->nr_members > 1))
493 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600494 }
Ingo Molnarede70292011-04-28 08:48:42 +0200495
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300496 perf_evsel__open_strerror(counter, &target,
497 errno, msg, sizeof(msg));
498 ui__error("%s\n", msg);
499
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200500 if (child_pid != -1)
501 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600502
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200503 return -1;
504 }
David Ahern2cee77c2011-05-30 08:55:59 -0600505 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100506
507 l = strlen(counter->unit);
508 if (l > unit_width)
509 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300510 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200511
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300512 if (perf_evlist__apply_filters(evsel_list, &counter)) {
513 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
514 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000515 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100516 return -1;
517 }
518
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200519 /*
520 * Enable counters and exec the command:
521 */
522 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100523 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200524
Liming Wang60666c62009-12-31 16:05:50 +0800525 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900526 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700527 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900528
Stephane Eranian13370a92013-01-29 12:47:44 +0100529 if (interval) {
530 while (!waitpid(child_pid, &status, WNOHANG)) {
531 nanosleep(&ts, NULL);
532 print_interval();
533 }
534 }
Liming Wang60666c62009-12-31 16:05:50 +0800535 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300536
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300537 if (workload_exec_errno) {
538 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
539 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300540 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300541 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300542
Andi Kleen33e49ea2011-09-15 14:31:40 -0700543 if (WIFSIGNALED(status))
544 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800545 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700546 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100547 while (!done) {
548 nanosleep(&ts, NULL);
549 if (interval)
550 print_interval();
551 }
Liming Wang60666c62009-12-31 16:05:50 +0800552 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200553
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200554 t1 = rdclock();
555
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200556 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200557
Jiri Olsa106a94a2015-06-26 11:29:19 +0200558 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200559
Ingo Molnar42202dd2009-06-13 14:57:28 +0200560 return WEXITSTATUS(status);
561}
562
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300563static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200564{
565 int ret;
566
567 if (pre_cmd) {
568 ret = system(pre_cmd);
569 if (ret)
570 return ret;
571 }
572
573 if (sync_run)
574 sync();
575
576 ret = __run_perf_stat(argc, argv);
577 if (ret)
578 return ret;
579
580 if (post_cmd) {
581 ret = system(post_cmd);
582 if (ret)
583 return ret;
584 }
585
586 return ret;
587}
588
Andi Kleend73515c2015-03-11 07:16:27 -0700589static void print_running(u64 run, u64 ena)
590{
591 if (csv_output) {
592 fprintf(output, "%s%" PRIu64 "%s%.2f",
593 csv_sep,
594 run,
595 csv_sep,
596 ena ? 100.0 * run / ena : 100.0);
597 } else if (run != ena) {
598 fprintf(output, " (%.2f%%)", 100.0 * run / ena);
599 }
600}
601
Ingo Molnarf99844c2011-04-27 05:35:39 +0200602static void print_noise_pct(double total, double avg)
603{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800604 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200605
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700606 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200607 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600608 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200609 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200610}
611
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200612static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200613{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200614 struct perf_stat *ps;
615
Peter Zijlstra849abde2009-09-04 18:23:38 +0200616 if (run_count == 1)
617 return;
618
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200619 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200620 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200621}
622
Stephane Eranian12c08a92013-02-14 13:57:29 +0100623static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200624{
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100625 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100626 case AGGR_CORE:
627 fprintf(output, "S%d-C%*d%s%*d%s",
628 cpu_map__id_to_socket(id),
629 csv_output ? 0 : -8,
630 cpu_map__id_to_cpu(id),
631 csv_sep,
632 csv_output ? 0 : 4,
633 nr,
634 csv_sep);
635 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100636 case AGGR_SOCKET:
637 fprintf(output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100638 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100639 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100640 csv_sep,
641 csv_output ? 0 : 4,
642 nr,
643 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100644 break;
645 case AGGR_NONE:
646 fprintf(output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200647 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100648 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100649 break;
650 case AGGR_GLOBAL:
651 default:
652 break;
653 }
654}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200655
Andi Kleenda88c7f2014-09-24 13:50:46 -0700656static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100657{
658 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100659 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600660 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100661
Stephane Eranian410136f2013-11-12 17:58:49 +0100662 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
663 fmt_n = csv_output ? "%s" : "%-25s";
664
Andi Kleenda88c7f2014-09-24 13:50:46 -0700665 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100666
David Ahern4bbe5a62013-09-28 14:28:00 -0600667 scnprintf(name, sizeof(name), "%s%s",
668 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100669
670 fprintf(output, fmt_v, msecs, csv_sep);
671
672 if (csv_output)
673 fprintf(output, "%s%s", evsel->unit, csv_sep);
674 else
675 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
676
677 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200678
Stephane Eranian023695d2011-02-14 11:20:01 +0200679 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200680 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200681
Stephane Eranian13370a92013-01-29 12:47:44 +0100682 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200683 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200684
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200685 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200686 fprintf(output, " # %8.3f CPUs utilized ",
687 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900688 else
689 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200690}
691
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200692static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
693{
694 double sc = evsel->scale;
695 const char *fmt;
696 int cpu = cpu_map__id_to_cpu(id);
697
698 if (csv_output) {
699 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
700 } else {
701 if (big_num)
702 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
703 else
704 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
705 }
706
707 aggr_printout(evsel, id, nr);
708
709 if (aggr_mode == AGGR_GLOBAL)
710 cpu = 0;
711
712 fprintf(output, fmt, avg, csv_sep);
713
714 if (evsel->unit)
715 fprintf(output, "%-*s%s",
716 csv_output ? 0 : unit_width,
717 evsel->unit, csv_sep);
718
719 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
720
721 if (evsel->cgrp)
722 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
723
724 if (csv_output || interval)
725 return;
726
Jiri Olsaf87027b2015-06-03 16:25:59 +0200727 perf_stat__print_shadow_stats(output, evsel, avg, cpu, aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200728}
729
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100730static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100731{
732 struct perf_evsel *counter;
Stephane Eranian582ec0822013-07-05 19:06:45 +0200733 int cpu, cpu2, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100734 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100735 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100736
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100737 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100738 return;
739
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100740 for (s = 0; s < aggr_map->nr; s++) {
741 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300742 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100743 val = ena = run = 0;
744 nr = 0;
745 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200746 cpu2 = perf_evsel__cpus(counter)->map[cpu];
747 s2 = aggr_get_id(evsel_list->cpus, cpu2);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100748 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100749 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200750 val += perf_counts(counter->counts, cpu, 0)->val;
751 ena += perf_counts(counter->counts, cpu, 0)->ena;
752 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100753 nr++;
754 }
755 if (prefix)
756 fprintf(output, "%s", prefix);
757
758 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200759 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100760
Stephane Eranian410136f2013-11-12 17:58:49 +0100761 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100762 csv_output ? 0 : 18,
763 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100764 csv_sep);
765
766 fprintf(output, "%-*s%s",
767 csv_output ? 0 : unit_width,
768 counter->unit, csv_sep);
769
770 fprintf(output, "%*s",
771 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100772 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100773
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100774 if (counter->cgrp)
775 fprintf(output, "%s%s",
776 csv_sep, counter->cgrp->name);
777
Andi Kleend73515c2015-03-11 07:16:27 -0700778 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100779 fputc('\n', output);
780 continue;
781 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100782 uval = val * counter->scale;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100783
784 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100785 nsec_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100786 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100787 abs_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100788
Andi Kleend73515c2015-03-11 07:16:27 -0700789 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100790 print_noise(counter, 1.0);
791
Andi Kleend73515c2015-03-11 07:16:27 -0700792 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100793 fputc('\n', output);
794 }
795 }
796}
797
Ingo Molnar42202dd2009-06-13 14:57:28 +0200798/*
799 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200800 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200801 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100802static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200803{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200804 struct perf_stat *ps = counter->priv;
805 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200806 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100807 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700808 double avg_enabled, avg_running;
809
810 avg_enabled = avg_stats(&ps->res_stats[1]);
811 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200812
Stephane Eranian13370a92013-01-29 12:47:44 +0100813 if (prefix)
814 fprintf(output, "%s", prefix);
815
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000816 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100817 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200818 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600819 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100820 csv_sep);
821 fprintf(output, "%-*s%s",
822 csv_output ? 0 : unit_width,
823 counter->unit, csv_sep);
824 fprintf(output, "%*s",
825 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300826 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200827
828 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200829 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200830
Andi Kleend73515c2015-03-11 07:16:27 -0700831 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200832 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200833 return;
834 }
835
Stephane Eranian410136f2013-11-12 17:58:49 +0100836 uval = avg * counter->scale;
837
Ingo Molnar42202dd2009-06-13 14:57:28 +0200838 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100839 nsec_printout(-1, 0, counter, uval);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200840 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100841 abs_printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200842
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700843 print_noise(counter, avg);
844
Andi Kleend73515c2015-03-11 07:16:27 -0700845 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200846 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200847}
848
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200849/*
850 * Print out the results of a single counter:
851 * does not use aggregated count in system-wide
852 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100853static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200854{
855 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100856 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200857 int cpu;
858
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800859 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200860 val = perf_counts(counter->counts, cpu, 0)->val;
861 ena = perf_counts(counter->counts, cpu, 0)->ena;
862 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100863
864 if (prefix)
865 fprintf(output, "%s", prefix);
866
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200867 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100868 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200869 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800870 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200871 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600872 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100873 csv_sep);
874
875 fprintf(output, "%-*s%s",
876 csv_output ? 0 : unit_width,
877 counter->unit, csv_sep);
878
879 fprintf(output, "%*s",
880 csv_output ? 0 : -25,
881 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200882
Stephane Eranian023695d2011-02-14 11:20:01 +0200883 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200884 fprintf(output, "%s%s",
885 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200886
Andi Kleend73515c2015-03-11 07:16:27 -0700887 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200888 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200889 continue;
890 }
891
Stephane Eranian410136f2013-11-12 17:58:49 +0100892 uval = val * counter->scale;
893
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200894 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100895 nsec_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200896 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100897 abs_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200898
Andi Kleend73515c2015-03-11 07:16:27 -0700899 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200900 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700901 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200902
Stephane Eranian4aa90152011-08-15 22:22:33 +0200903 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200904 }
905}
906
Ingo Molnar42202dd2009-06-13 14:57:28 +0200907static void print_stat(int argc, const char **argv)
908{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200909 struct perf_evsel *counter;
910 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200911
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200912 fflush(stdout);
913
Stephane Eraniand7470b62010-12-01 18:49:05 +0200914 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200915 fprintf(output, "\n");
916 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600917 if (target.system_wide)
918 fprintf(output, "\'system wide");
919 else if (target.cpu_list)
920 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300921 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200922 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200923 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200924 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900925 } else if (target.pid)
926 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200927 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900928 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200929
Stephane Eranian4aa90152011-08-15 22:22:33 +0200930 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200931 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200932 fprintf(output, " (%d runs)", run_count);
933 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200934 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200935
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100936 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100937 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100938 case AGGR_SOCKET:
939 print_aggr(NULL);
940 break;
941 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300942 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +0100943 print_counter_aggr(counter, NULL);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100944 break;
945 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300946 evlist__for_each(evsel_list, counter)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100947 print_counter(counter, NULL);
948 break;
949 default:
950 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200951 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200952
Stephane Eraniand7470b62010-12-01 18:49:05 +0200953 if (!csv_output) {
Ingo Molnarc3305252011-05-19 14:01:42 +0200954 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200955 fprintf(output, "\n");
956 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200957 avg_stats(&walltime_nsecs_stats)/1e9);
958 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200959 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +0200960 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
961 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200962 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200963 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200964 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200965}
966
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200967static volatile int signr = -1;
968
Ingo Molnar52425192009-05-26 09:17:18 +0200969static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200970{
Stephane Eranian13370a92013-01-29 12:47:44 +0100971 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +0800972 done = 1;
973
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200974 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200975 /*
976 * render child_pid harmless
977 * won't send SIGTERM to a random
978 * process in case of race condition
979 * and fast PID recycling
980 */
981 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200982}
983
984static void sig_atexit(void)
985{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200986 sigset_t set, oset;
987
988 /*
989 * avoid race condition with SIGCHLD handler
990 * in skip_signal() which is modifying child_pid
991 * goal is to avoid send SIGTERM to a random
992 * process
993 */
994 sigemptyset(&set);
995 sigaddset(&set, SIGCHLD);
996 sigprocmask(SIG_BLOCK, &set, &oset);
997
Chris Wilson933da832009-10-04 01:35:01 +0100998 if (child_pid != -1)
999 kill(child_pid, SIGTERM);
1000
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001001 sigprocmask(SIG_SETMASK, &oset, NULL);
1002
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001003 if (signr == -1)
1004 return;
1005
1006 signal(signr, SIG_DFL);
1007 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001008}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001009
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001010static int stat__set_big_num(const struct option *opt __maybe_unused,
1011 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001012{
1013 big_num_opt = unset ? 0 : 1;
1014 return 0;
1015}
1016
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001017static int perf_stat_init_aggr_mode(void)
1018{
1019 switch (aggr_mode) {
1020 case AGGR_SOCKET:
1021 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1022 perror("cannot build socket map");
1023 return -1;
1024 }
1025 aggr_get_id = cpu_map__get_socket;
1026 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001027 case AGGR_CORE:
1028 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1029 perror("cannot build core map");
1030 return -1;
1031 }
1032 aggr_get_id = cpu_map__get_core;
1033 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001034 case AGGR_NONE:
1035 case AGGR_GLOBAL:
1036 default:
1037 break;
1038 }
1039 return 0;
1040}
1041
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001042/*
1043 * Add default attributes, if there were no attributes specified or
1044 * if -d/--detailed, -d -d or -d -d -d is used:
1045 */
1046static int add_default_attributes(void)
1047{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001048 struct perf_event_attr default_attrs[] = {
1049
1050 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1051 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1052 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1053 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1054
1055 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1056 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1057 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1058 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1059 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1060 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1061
1062};
1063
1064/*
1065 * Detailed stats (-d), covering the L1 and last level data caches:
1066 */
1067 struct perf_event_attr detailed_attrs[] = {
1068
1069 { .type = PERF_TYPE_HW_CACHE,
1070 .config =
1071 PERF_COUNT_HW_CACHE_L1D << 0 |
1072 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1073 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1074
1075 { .type = PERF_TYPE_HW_CACHE,
1076 .config =
1077 PERF_COUNT_HW_CACHE_L1D << 0 |
1078 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1079 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1080
1081 { .type = PERF_TYPE_HW_CACHE,
1082 .config =
1083 PERF_COUNT_HW_CACHE_LL << 0 |
1084 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1085 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1086
1087 { .type = PERF_TYPE_HW_CACHE,
1088 .config =
1089 PERF_COUNT_HW_CACHE_LL << 0 |
1090 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1091 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1092};
1093
1094/*
1095 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1096 */
1097 struct perf_event_attr very_detailed_attrs[] = {
1098
1099 { .type = PERF_TYPE_HW_CACHE,
1100 .config =
1101 PERF_COUNT_HW_CACHE_L1I << 0 |
1102 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1103 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1104
1105 { .type = PERF_TYPE_HW_CACHE,
1106 .config =
1107 PERF_COUNT_HW_CACHE_L1I << 0 |
1108 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1109 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1110
1111 { .type = PERF_TYPE_HW_CACHE,
1112 .config =
1113 PERF_COUNT_HW_CACHE_DTLB << 0 |
1114 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1115 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1116
1117 { .type = PERF_TYPE_HW_CACHE,
1118 .config =
1119 PERF_COUNT_HW_CACHE_DTLB << 0 |
1120 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1121 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1122
1123 { .type = PERF_TYPE_HW_CACHE,
1124 .config =
1125 PERF_COUNT_HW_CACHE_ITLB << 0 |
1126 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1127 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1128
1129 { .type = PERF_TYPE_HW_CACHE,
1130 .config =
1131 PERF_COUNT_HW_CACHE_ITLB << 0 |
1132 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1133 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1134
1135};
1136
1137/*
1138 * Very, very detailed stats (-d -d -d), adding prefetch events:
1139 */
1140 struct perf_event_attr very_very_detailed_attrs[] = {
1141
1142 { .type = PERF_TYPE_HW_CACHE,
1143 .config =
1144 PERF_COUNT_HW_CACHE_L1D << 0 |
1145 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1146 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1147
1148 { .type = PERF_TYPE_HW_CACHE,
1149 .config =
1150 PERF_COUNT_HW_CACHE_L1D << 0 |
1151 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1152 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1153};
1154
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001155 /* Set attrs if no event is selected and !null_run: */
1156 if (null_run)
1157 return 0;
1158
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001159 if (transaction_run) {
1160 int err;
1161 if (pmu_have_event("cpu", "cycles-ct") &&
1162 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001163 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001164 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001165 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1166 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001167 fprintf(stderr, "Cannot set up transaction events\n");
1168 return -1;
1169 }
1170 return 0;
1171 }
1172
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001173 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001174 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001175 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001176 }
1177
1178 /* Detailed events get appended to the event list: */
1179
1180 if (detailed_run < 1)
1181 return 0;
1182
1183 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001184 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001185 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001186
1187 if (detailed_run < 2)
1188 return 0;
1189
1190 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001191 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001192 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001193
1194 if (detailed_run < 3)
1195 return 0;
1196
1197 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001198 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001199}
1200
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001201int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001202{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001203 bool append_file = false;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001204 int output_fd = 0;
1205 const char *output_name = NULL;
1206 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001207 OPT_BOOLEAN('T', "transaction", &transaction_run,
1208 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001209 OPT_CALLBACK('e', "event", &evsel_list, "event",
1210 "event selector. use 'perf list' to list available events",
1211 parse_events_option),
1212 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1213 "event filter", parse_filter),
1214 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1215 "child tasks do not inherit counters"),
1216 OPT_STRING('p', "pid", &target.pid, "pid",
1217 "stat events on existing process id"),
1218 OPT_STRING('t', "tid", &target.tid, "tid",
1219 "stat events on existing thread id"),
1220 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1221 "system-wide collection from all CPUs"),
1222 OPT_BOOLEAN('g', "group", &group,
1223 "put the counters into a counter group"),
1224 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1225 OPT_INCR('v', "verbose", &verbose,
1226 "be more verbose (show counter open errors, etc)"),
1227 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001228 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001229 OPT_BOOLEAN('n', "null", &null_run,
1230 "null run - dont start any counters"),
1231 OPT_INCR('d', "detailed", &detailed_run,
1232 "detailed run - start a lot of events"),
1233 OPT_BOOLEAN('S', "sync", &sync_run,
1234 "call sync() before starting a run"),
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001235 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001236 "print large numbers with thousands\' separators",
1237 stat__set_big_num),
1238 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1239 "list of cpus to monitor in system-wide"),
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001240 OPT_SET_UINT('A', "no-aggr", &aggr_mode,
1241 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001242 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1243 "print counts with custom separator"),
1244 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1245 "monitor event in cgroup name only", parse_cgroups),
1246 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1247 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1248 OPT_INTEGER(0, "log-fd", &output_fd,
1249 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001250 OPT_STRING(0, "pre", &pre_cmd, "command",
1251 "command to run prior to the measured command"),
1252 OPT_STRING(0, "post", &post_cmd, "command",
1253 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001254 OPT_UINTEGER('I', "interval-print", &interval,
1255 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand4304952013-02-14 13:57:28 +01001256 OPT_SET_UINT(0, "per-socket", &aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001257 "aggregate counts per processor socket", AGGR_SOCKET),
Stephane Eranian12c08a92013-02-14 13:57:29 +01001258 OPT_SET_UINT(0, "per-core", &aggr_mode,
1259 "aggregate counts per physical processor core", AGGR_CORE),
Andi Kleen41191682013-08-02 17:41:11 -07001260 OPT_UINTEGER('D', "delay", &initial_delay,
1261 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001262 OPT_END()
1263 };
1264 const char * const stat_usage[] = {
1265 "perf stat [<options>] [<command>]",
1266 NULL
1267 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001268 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001269 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001270
Stephane Eranian5af52b52010-05-18 15:00:01 +02001271 setlocale(LC_ALL, "");
1272
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001273 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001274 if (evsel_list == NULL)
1275 return -ENOMEM;
1276
Anton Blancharda0541232009-07-22 23:04:12 +10001277 argc = parse_options(argc, argv, options, stat_usage,
1278 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001279
Stephane Eranian4aa90152011-08-15 22:22:33 +02001280 output = stderr;
1281 if (output_name && strcmp(output_name, "-"))
1282 output = NULL;
1283
Jim Cromie56f3bae2011-09-07 17:14:00 -06001284 if (output_name && output_fd) {
1285 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001286 parse_options_usage(stat_usage, options, "o", 1);
1287 parse_options_usage(NULL, options, "log-fd", 0);
1288 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001289 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001290
1291 if (output_fd < 0) {
1292 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001293 parse_options_usage(stat_usage, options, "log-fd", 0);
1294 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001295 }
1296
Stephane Eranian4aa90152011-08-15 22:22:33 +02001297 if (!output) {
1298 struct timespec tm;
1299 mode = append_file ? "a" : "w";
1300
1301 output = fopen(output_name, mode);
1302 if (!output) {
1303 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001304 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001305 }
1306 clock_gettime(CLOCK_REALTIME, &tm);
1307 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001308 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001309 mode = append_file ? "a" : "w";
1310 output = fdopen(output_fd, mode);
1311 if (!output) {
1312 perror("Failed opening logfd");
1313 return -errno;
1314 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001315 }
1316
Jim Cromied4ffd042011-09-07 17:14:03 -06001317 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001318 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001319 if (!strcmp(csv_sep, "\\t"))
1320 csv_sep = "\t";
1321 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001322 csv_sep = DEFAULT_SEPARATOR;
1323
1324 /*
1325 * let the spreadsheet do the pretty-printing
1326 */
1327 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001328 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001329 if (big_num_opt == 1) {
1330 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001331 parse_options_usage(stat_usage, options, "B", 1);
1332 parse_options_usage(NULL, options, "x", 1);
1333 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001334 } else /* Nope, so disable big number formatting */
1335 big_num = false;
1336 } else if (big_num_opt == 0) /* User passed --no-big-num */
1337 big_num = false;
1338
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001339 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001340 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001341
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001342 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001343 pr_err("Run count must be a positive number\n");
1344 parse_options_usage(stat_usage, options, "r", 1);
1345 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001346 } else if (run_count == 0) {
1347 forever = true;
1348 run_count = 1;
1349 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001350
Stephane Eranian023695d2011-02-14 11:20:01 +02001351 /* no_aggr, cgroup are for system-wide only */
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001352 if ((aggr_mode != AGGR_GLOBAL || nr_cgroups) &&
1353 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001354 fprintf(stderr, "both cgroup and no-aggregation "
1355 "modes only available in system-wide mode\n");
1356
Namhyung Kimcc03c542013-11-01 16:33:15 +09001357 parse_options_usage(stat_usage, options, "G", 1);
1358 parse_options_usage(NULL, options, "A", 1);
1359 parse_options_usage(NULL, options, "a", 1);
1360 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001361 }
1362
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001363 if (add_default_attributes())
1364 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001365
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001366 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001367
Namhyung Kim77a6f012012-05-07 14:09:04 +09001368 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001369 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001370 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001371 parse_options_usage(stat_usage, options, "p", 1);
1372 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001373 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001374 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001375 parse_options_usage(stat_usage, options, "C", 1);
1376 parse_options_usage(NULL, options, "a", 1);
1377 }
1378 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001379 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001380 if (interval && interval < 100) {
1381 pr_err("print interval must be >= 100ms\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001382 parse_options_usage(stat_usage, options, "I", 1);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001383 goto out;
Stephane Eranian13370a92013-01-29 12:47:44 +01001384 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001385
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001386 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001387 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001388
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001389 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001390 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001391
Ingo Molnar58d7e992009-05-15 11:03:23 +02001392 /*
1393 * We dont want to block the signals - that would cause
1394 * child tasks to inherit that and Ctrl-C would not work.
1395 * What we want is for Ctrl-C to work in the exec()-ed
1396 * task, but being ignored by perf stat itself:
1397 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001398 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001399 if (!forever)
1400 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001401 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001402 signal(SIGALRM, skip_signal);
1403 signal(SIGABRT, skip_signal);
1404
Ingo Molnar42202dd2009-06-13 14:57:28 +02001405 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001406 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001407 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001408 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1409 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001410
Ingo Molnar42202dd2009-06-13 14:57:28 +02001411 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001412 if (forever && status != -1) {
1413 print_stat(argc, argv);
Jiri Olsa254ecbc2015-06-26 11:29:13 +02001414 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001415 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001416 }
1417
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001418 if (!forever && status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001419 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001420
1421 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001422out:
1423 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001424 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001425}