blob: ef355fc0e870c15eac2e7d295b2046b7cc283caa [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02009 $ perf stat ./hackbench 10
Ingo Molnarddcacfa2009-04-20 15:37:32 +020010
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020011 Time: 0.118
Ingo Molnarddcacfa2009-04-20 15:37:32 +020012
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020013 Performance counter stats for './hackbench 10':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020014
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020015 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
26
27 0.154822978 seconds time elapsed
Ingo Molnarddcacfa2009-04-20 15:37:32 +020028
Ingo Molnar52425192009-05-26 09:17:18 +020029 *
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020030 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
Ingo Molnar52425192009-05-26 09:17:18 +020031 *
32 * Improvements and fixes by:
33 *
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053039 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020040 *
41 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020042 */
43
Peter Zijlstra1a482f32009-05-23 18:28:58 +020044#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020045#include "builtin.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030046#include "util/cgroup.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020047#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020048#include "util/parse-options.h"
49#include "util/parse-events.h"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070050#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020051#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020052#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020053#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020054#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020055#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080056#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080057#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110058#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030059#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020060#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020061
Peter Zijlstra1f16c572012-10-23 13:40:14 +020062#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020063#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020064#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020065
Stephane Eraniand7470b62010-12-01 18:49:05 +020066#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060067#define CNTR_NOT_SUPPORTED "<not supported>"
68#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020069
Jiri Olsad4f63a42015-06-26 11:29:26 +020070static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010071
Andi Kleen4cabc3d2013-08-21 16:47:26 -070072/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020073static const char *transaction_attrs = {
74 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070075 "{"
76 "instructions,"
77 "cycles,"
78 "cpu/cycles-t/,"
79 "cpu/tx-start/,"
80 "cpu/el-start/,"
81 "cpu/cycles-ct/"
82 "}"
83};
84
85/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +020086static const char * transaction_limited_attrs = {
87 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070088 "{"
89 "instructions,"
90 "cycles,"
91 "cpu/cycles-t/,"
92 "cpu/tx-start/"
93 "}"
94};
95
Robert Richter666e6d42012-04-05 18:26:27 +020096static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020097
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -030098static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +090099 .uid = UINT_MAX,
100};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530101
102static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200103static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +1000104static bool scale = true;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100105static enum aggr_mode aggr_mode = AGGR_GLOBAL;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200106static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000107static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200108static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700109static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200110static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200111static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200112static const char *csv_sep = NULL;
113static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800114static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200115static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200116static const char *pre_cmd = NULL;
117static const char *post_cmd = NULL;
118static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100119static unsigned int interval = 0;
Andi Kleen41191682013-08-02 17:41:11 -0700120static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100121static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500122static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100123static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100124static struct cpu_map *aggr_map;
125static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200126
Liming Wang60666c62009-12-31 16:05:50 +0800127static volatile int done = 0;
128
Stephane Eranian13370a92013-01-29 12:47:44 +0100129static inline void diff_timespec(struct timespec *r, struct timespec *a,
130 struct timespec *b)
131{
132 r->tv_sec = a->tv_sec - b->tv_sec;
133 if (a->tv_nsec < b->tv_nsec) {
134 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
135 r->tv_sec--;
136 } else {
137 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
138 }
139}
140
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200141static void perf_stat__reset_stats(void)
142{
143 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200144 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200145}
146
Jiri Olsacac21422012-11-12 18:34:00 +0100147static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200148{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200149 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200150
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200151 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200152 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
153 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200154
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200155 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300156
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300157 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300158 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200159
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300160 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200161 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700162 if (!initial_delay)
163 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200164 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300165
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300166 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200167}
168
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200169/*
170 * Does the counter have nsecs as a unit?
171 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200172static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200173{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200174 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
175 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200176 return 1;
177
178 return 0;
179}
180
Jiri Olsa779d0b992014-11-21 10:31:14 +0100181static void zero_per_pkg(struct perf_evsel *counter)
182{
183 if (counter->per_pkg_mask)
184 memset(counter->per_pkg_mask, 0, MAX_NR_CPUS);
185}
186
187static int check_per_pkg(struct perf_evsel *counter, int cpu, bool *skip)
188{
189 unsigned long *mask = counter->per_pkg_mask;
190 struct cpu_map *cpus = perf_evsel__cpus(counter);
191 int s;
192
193 *skip = false;
194
195 if (!counter->per_pkg)
196 return 0;
197
198 if (cpu_map__empty(cpus))
199 return 0;
200
201 if (!mask) {
202 mask = zalloc(MAX_NR_CPUS);
203 if (!mask)
204 return -ENOMEM;
205
206 counter->per_pkg_mask = mask;
207 }
208
209 s = cpu_map__get_socket(cpus, cpu);
210 if (s < 0)
211 return -1;
212
213 *skip = test_and_set_bit(s, mask) == 1;
214 return 0;
215}
216
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200217static int
218process_counter_values(struct perf_evsel *evsel, int cpu, int thread,
219 struct perf_counts_values *count)
Jiri Olsa060c4f92014-11-21 10:31:08 +0100220{
Jiri Olsa1971f592014-11-21 10:31:10 +0100221 struct perf_counts_values *aggr = &evsel->counts->aggr;
Jiri Olsa779d0b992014-11-21 10:31:14 +0100222 static struct perf_counts_values zero;
223 bool skip = false;
224
225 if (check_per_pkg(evsel, cpu, &skip)) {
226 pr_err("failed to read per-pkg counter\n");
227 return -1;
228 }
229
230 if (skip)
231 count = &zero;
Jiri Olsa1971f592014-11-21 10:31:10 +0100232
Jiri Olsa060c4f92014-11-21 10:31:08 +0100233 switch (aggr_mode) {
Jiri Olsa32b8af82015-06-26 11:29:27 +0200234 case AGGR_THREAD:
Jiri Olsa060c4f92014-11-21 10:31:08 +0100235 case AGGR_CORE:
236 case AGGR_SOCKET:
237 case AGGR_NONE:
Jiri Olsa6c0345b2014-11-21 10:31:15 +0100238 if (!evsel->snapshot)
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200239 perf_evsel__compute_deltas(evsel, cpu, thread, count);
Jiri Olsa060c4f92014-11-21 10:31:08 +0100240 perf_counts_values__scale(count, scale, NULL);
Andi Kleen56f0fd42015-03-11 08:28:01 -0700241 if (aggr_mode == AGGR_NONE)
Jiri Olsaf87027b2015-06-03 16:25:59 +0200242 perf_stat__update_shadow_stats(evsel, count->values, cpu);
Jiri Olsa060c4f92014-11-21 10:31:08 +0100243 break;
244 case AGGR_GLOBAL:
Jiri Olsa1971f592014-11-21 10:31:10 +0100245 aggr->val += count->val;
246 if (scale) {
247 aggr->ena += count->ena;
248 aggr->run += count->run;
249 }
Jiri Olsa060c4f92014-11-21 10:31:08 +0100250 default:
251 break;
252 }
253
254 return 0;
255}
256
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200257static int process_counter_maps(struct perf_evsel *counter)
258{
259 int nthreads = thread_map__nr(counter->threads);
260 int ncpus = perf_evsel__nr_cpus(counter);
261 int cpu, thread;
Jiri Olsa1971f592014-11-21 10:31:10 +0100262
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200263 if (counter->system_wide)
264 nthreads = 1;
265
266 for (thread = 0; thread < nthreads; thread++) {
267 for (cpu = 0; cpu < ncpus; cpu++) {
268 if (process_counter_values(counter, cpu, thread,
269 perf_counts(counter->counts, cpu, thread)))
270 return -1;
271 }
272 }
273
274 return 0;
275}
276
277static int process_counter(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200278{
Jiri Olsa1971f592014-11-21 10:31:10 +0100279 struct perf_counts_values *aggr = &counter->counts->aggr;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200280 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200281 u64 *count = counter->counts->aggr.values;
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200282 int i, ret;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200283
Jiri Olsa1971f592014-11-21 10:31:10 +0100284 aggr->val = aggr->ena = aggr->run = 0;
Jiri Olsa5835e222015-06-26 11:29:25 +0200285 init_stats(ps->res_stats);
Jiri Olsa1971f592014-11-21 10:31:10 +0100286
Jiri Olsa32ce0a42015-06-26 11:29:21 +0200287 if (counter->per_pkg)
288 zero_per_pkg(counter);
289
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200290 ret = process_counter_maps(counter);
291 if (ret)
292 return ret;
293
294 if (aggr_mode != AGGR_GLOBAL)
295 return 0;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200296
Jiri Olsa6c0345b2014-11-21 10:31:15 +0100297 if (!counter->snapshot)
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200298 perf_evsel__compute_deltas(counter, -1, -1, aggr);
Jiri Olsa1971f592014-11-21 10:31:10 +0100299 perf_counts_values__scale(aggr, scale, &counter->counts->scaled);
300
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200301 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200302 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200303
304 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200305 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300306 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200307 }
308
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200309 /*
310 * Save the full runtime - to allow normalization during printout:
311 */
Jiri Olsaf87027b2015-06-03 16:25:59 +0200312 perf_stat__update_shadow_stats(counter, count, 0);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200313
314 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200315}
316
317/*
318 * Read out the results of a single counter:
319 * do not aggregate counts across CPUs in system-wide mode
320 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200321static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200322{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100323 int nthreads = thread_map__nr(evsel_list->threads);
324 int ncpus = perf_evsel__nr_cpus(counter);
325 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200326
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000327 if (!counter->supported)
328 return -ENOENT;
329
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100330 if (counter->system_wide)
331 nthreads = 1;
332
333 for (thread = 0; thread < nthreads; thread++) {
334 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200335 struct perf_counts_values *count;
336
337 count = perf_counts(counter->counts, cpu, thread);
338 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100339 return -1;
340 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200341 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200342
343 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200344}
345
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200346static void read_counters(bool close_counters)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200347{
348 struct perf_evsel *counter;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200349
350 evlist__for_each(evsel_list, counter) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200351 if (read_counter(counter))
352 pr_warning("failed to read counter %s\n", counter->name);
353
354 if (process_counter(counter))
355 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200356
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200357 if (close_counters) {
Jiri Olsa106a94a2015-06-26 11:29:19 +0200358 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
359 thread_map__nr(evsel_list->threads));
360 }
361 }
362}
363
Jiri Olsaba411a92015-06-26 11:29:24 +0200364static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100365{
Stephane Eranian13370a92013-01-29 12:47:44 +0100366 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100367
Jiri Olsa106a94a2015-06-26 11:29:19 +0200368 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100369
Stephane Eranian13370a92013-01-29 12:47:44 +0100370 clock_gettime(CLOCK_MONOTONIC, &ts);
371 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100372
Jiri Olsad4f63a42015-06-26 11:29:26 +0200373 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100374}
375
Andi Kleen41191682013-08-02 17:41:11 -0700376static void handle_initial_delay(void)
377{
378 struct perf_evsel *counter;
379
380 if (initial_delay) {
381 const int ncpus = cpu_map__nr(evsel_list->cpus),
382 nthreads = thread_map__nr(evsel_list->threads);
383
384 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300385 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700386 perf_evsel__enable(counter, ncpus, nthreads);
387 }
388}
389
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300390static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300391
392/*
393 * perf_evlist__prepare_workload will send a SIGUSR1
394 * if the fork fails, since we asked by setting its
395 * want_signal to true.
396 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300397static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
398 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300399{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300400 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300401}
402
Namhyung Kimacf28922013-03-11 16:43:18 +0900403static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200404{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300405 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200406 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100407 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100408 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100409 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200410 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300411 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200412
Stephane Eranian13370a92013-01-29 12:47:44 +0100413 if (interval) {
414 ts.tv_sec = interval / 1000;
415 ts.tv_nsec = (interval % 1000) * 1000000;
416 } else {
417 ts.tv_sec = 1;
418 ts.tv_nsec = 0;
419 }
420
Liming Wang60666c62009-12-31 16:05:50 +0800421 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300422 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
423 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900424 perror("failed to prepare workload");
425 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800426 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900427 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000428 }
429
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200430 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300431 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200432
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300433 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100434 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600435 /*
436 * PPC returns ENXIO for HW counters until 2.6.37
437 * (behavior changed with commit b0a873e).
438 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100439 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600440 errno == ENOENT || errno == EOPNOTSUPP ||
441 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600442 if (verbose)
443 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300444 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600445 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400446
447 if ((counter->leader != counter) ||
448 !(counter->leader->nr_members > 1))
449 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600450 }
Ingo Molnarede70292011-04-28 08:48:42 +0200451
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300452 perf_evsel__open_strerror(counter, &target,
453 errno, msg, sizeof(msg));
454 ui__error("%s\n", msg);
455
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200456 if (child_pid != -1)
457 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600458
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200459 return -1;
460 }
David Ahern2cee77c2011-05-30 08:55:59 -0600461 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100462
463 l = strlen(counter->unit);
464 if (l > unit_width)
465 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300466 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200467
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300468 if (perf_evlist__apply_filters(evsel_list, &counter)) {
469 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
470 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000471 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100472 return -1;
473 }
474
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200475 /*
476 * Enable counters and exec the command:
477 */
478 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100479 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200480
Liming Wang60666c62009-12-31 16:05:50 +0800481 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900482 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700483 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900484
Stephane Eranian13370a92013-01-29 12:47:44 +0100485 if (interval) {
486 while (!waitpid(child_pid, &status, WNOHANG)) {
487 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200488 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100489 }
490 }
Liming Wang60666c62009-12-31 16:05:50 +0800491 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300492
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300493 if (workload_exec_errno) {
494 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
495 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300496 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300497 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300498
Andi Kleen33e49ea2011-09-15 14:31:40 -0700499 if (WIFSIGNALED(status))
500 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800501 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700502 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100503 while (!done) {
504 nanosleep(&ts, NULL);
505 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200506 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100507 }
Liming Wang60666c62009-12-31 16:05:50 +0800508 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200509
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200510 t1 = rdclock();
511
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200512 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200513
Jiri Olsa106a94a2015-06-26 11:29:19 +0200514 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200515
Ingo Molnar42202dd2009-06-13 14:57:28 +0200516 return WEXITSTATUS(status);
517}
518
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300519static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200520{
521 int ret;
522
523 if (pre_cmd) {
524 ret = system(pre_cmd);
525 if (ret)
526 return ret;
527 }
528
529 if (sync_run)
530 sync();
531
532 ret = __run_perf_stat(argc, argv);
533 if (ret)
534 return ret;
535
536 if (post_cmd) {
537 ret = system(post_cmd);
538 if (ret)
539 return ret;
540 }
541
542 return ret;
543}
544
Andi Kleend73515c2015-03-11 07:16:27 -0700545static void print_running(u64 run, u64 ena)
546{
547 if (csv_output) {
548 fprintf(output, "%s%" PRIu64 "%s%.2f",
549 csv_sep,
550 run,
551 csv_sep,
552 ena ? 100.0 * run / ena : 100.0);
553 } else if (run != ena) {
554 fprintf(output, " (%.2f%%)", 100.0 * run / ena);
555 }
556}
557
Ingo Molnarf99844c2011-04-27 05:35:39 +0200558static void print_noise_pct(double total, double avg)
559{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800560 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200561
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700562 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200563 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600564 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200565 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200566}
567
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200568static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200569{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200570 struct perf_stat *ps;
571
Peter Zijlstra849abde2009-09-04 18:23:38 +0200572 if (run_count == 1)
573 return;
574
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200575 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200576 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200577}
578
Stephane Eranian12c08a92013-02-14 13:57:29 +0100579static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200580{
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100581 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100582 case AGGR_CORE:
583 fprintf(output, "S%d-C%*d%s%*d%s",
584 cpu_map__id_to_socket(id),
585 csv_output ? 0 : -8,
586 cpu_map__id_to_cpu(id),
587 csv_sep,
588 csv_output ? 0 : 4,
589 nr,
590 csv_sep);
591 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100592 case AGGR_SOCKET:
593 fprintf(output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100594 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100595 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100596 csv_sep,
597 csv_output ? 0 : 4,
598 nr,
599 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100600 break;
601 case AGGR_NONE:
602 fprintf(output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200603 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100604 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100605 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200606 case AGGR_THREAD:
607 fprintf(output, "%*s-%*d%s",
608 csv_output ? 0 : 16,
609 thread_map__comm(evsel->threads, id),
610 csv_output ? 0 : -8,
611 thread_map__pid(evsel->threads, id),
612 csv_sep);
613 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100614 case AGGR_GLOBAL:
615 default:
616 break;
617 }
618}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200619
Andi Kleenda88c7f2014-09-24 13:50:46 -0700620static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100621{
622 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100623 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600624 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100625
Stephane Eranian410136f2013-11-12 17:58:49 +0100626 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
627 fmt_n = csv_output ? "%s" : "%-25s";
628
Andi Kleenda88c7f2014-09-24 13:50:46 -0700629 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100630
David Ahern4bbe5a62013-09-28 14:28:00 -0600631 scnprintf(name, sizeof(name), "%s%s",
632 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100633
634 fprintf(output, fmt_v, msecs, csv_sep);
635
636 if (csv_output)
637 fprintf(output, "%s%s", evsel->unit, csv_sep);
638 else
639 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
640
641 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200642
Stephane Eranian023695d2011-02-14 11:20:01 +0200643 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200644 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200645
Stephane Eranian13370a92013-01-29 12:47:44 +0100646 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200647 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200648
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200649 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200650 fprintf(output, " # %8.3f CPUs utilized ",
651 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900652 else
653 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200654}
655
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200656static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
657{
658 double sc = evsel->scale;
659 const char *fmt;
660 int cpu = cpu_map__id_to_cpu(id);
661
662 if (csv_output) {
663 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
664 } else {
665 if (big_num)
666 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
667 else
668 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
669 }
670
671 aggr_printout(evsel, id, nr);
672
673 if (aggr_mode == AGGR_GLOBAL)
674 cpu = 0;
675
676 fprintf(output, fmt, avg, csv_sep);
677
678 if (evsel->unit)
679 fprintf(output, "%-*s%s",
680 csv_output ? 0 : unit_width,
681 evsel->unit, csv_sep);
682
683 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
684
685 if (evsel->cgrp)
686 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
687
688 if (csv_output || interval)
689 return;
690
Jiri Olsaf87027b2015-06-03 16:25:59 +0200691 perf_stat__print_shadow_stats(output, evsel, avg, cpu, aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200692}
693
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100694static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100695{
696 struct perf_evsel *counter;
Kan Liang601083c2015-07-02 03:08:43 -0400697 int cpu, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100698 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100699 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100700
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100701 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100702 return;
703
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100704 for (s = 0; s < aggr_map->nr; s++) {
705 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300706 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100707 val = ena = run = 0;
708 nr = 0;
709 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Kan Liang601083c2015-07-02 03:08:43 -0400710 s2 = aggr_get_id(perf_evsel__cpus(counter), cpu);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100711 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100712 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200713 val += perf_counts(counter->counts, cpu, 0)->val;
714 ena += perf_counts(counter->counts, cpu, 0)->ena;
715 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100716 nr++;
717 }
718 if (prefix)
719 fprintf(output, "%s", prefix);
720
721 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200722 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100723
Stephane Eranian410136f2013-11-12 17:58:49 +0100724 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100725 csv_output ? 0 : 18,
726 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100727 csv_sep);
728
729 fprintf(output, "%-*s%s",
730 csv_output ? 0 : unit_width,
731 counter->unit, csv_sep);
732
733 fprintf(output, "%*s",
734 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100735 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100736
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100737 if (counter->cgrp)
738 fprintf(output, "%s%s",
739 csv_sep, counter->cgrp->name);
740
Andi Kleend73515c2015-03-11 07:16:27 -0700741 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100742 fputc('\n', output);
743 continue;
744 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100745 uval = val * counter->scale;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100746
747 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100748 nsec_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100749 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100750 abs_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100751
Andi Kleend73515c2015-03-11 07:16:27 -0700752 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100753 print_noise(counter, 1.0);
754
Andi Kleend73515c2015-03-11 07:16:27 -0700755 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100756 fputc('\n', output);
757 }
758 }
759}
760
Jiri Olsa32b8af82015-06-26 11:29:27 +0200761static void print_aggr_thread(struct perf_evsel *counter, char *prefix)
762{
763 int nthreads = thread_map__nr(counter->threads);
764 int ncpus = cpu_map__nr(counter->cpus);
765 int cpu, thread;
766 double uval;
767
768 for (thread = 0; thread < nthreads; thread++) {
769 u64 ena = 0, run = 0, val = 0;
770
771 for (cpu = 0; cpu < ncpus; cpu++) {
772 val += perf_counts(counter->counts, cpu, thread)->val;
773 ena += perf_counts(counter->counts, cpu, thread)->ena;
774 run += perf_counts(counter->counts, cpu, thread)->run;
775 }
776
777 if (prefix)
778 fprintf(output, "%s", prefix);
779
780 uval = val * counter->scale;
781
782 if (nsec_counter(counter))
783 nsec_printout(thread, 0, counter, uval);
784 else
785 abs_printout(thread, 0, counter, uval);
786
787 if (!csv_output)
788 print_noise(counter, 1.0);
789
790 print_running(run, ena);
791 fputc('\n', output);
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
Jiri Olsad4f63a42015-06-26 11:29:26 +0200904static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200905{
Jiri Olsad4f63a42015-06-26 11:29:26 +0200906 static int num_print_interval;
907
908 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
909
910 if (num_print_interval == 0 && !csv_output) {
911 switch (aggr_mode) {
912 case AGGR_SOCKET:
913 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
914 break;
915 case AGGR_CORE:
916 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
917 break;
918 case AGGR_NONE:
919 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
920 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200921 case AGGR_THREAD:
922 fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit");
923 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200924 case AGGR_GLOBAL:
925 default:
926 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
927 }
928 }
929
930 if (++num_print_interval == 25)
931 num_print_interval = 0;
932}
933
934static void print_header(int argc, const char **argv)
935{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200936 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200937
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200938 fflush(stdout);
939
Stephane Eraniand7470b62010-12-01 18:49:05 +0200940 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200941 fprintf(output, "\n");
942 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600943 if (target.system_wide)
944 fprintf(output, "\'system wide");
945 else if (target.cpu_list)
946 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300947 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200948 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200949 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200950 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900951 } else if (target.pid)
952 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200953 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900954 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200955
Stephane Eranian4aa90152011-08-15 22:22:33 +0200956 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200957 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200958 fprintf(output, " (%d runs)", run_count);
959 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200960 }
Jiri Olsad4f63a42015-06-26 11:29:26 +0200961}
962
963static void print_footer(void)
964{
965 if (!null_run)
966 fprintf(output, "\n");
967 fprintf(output, " %17.9f seconds time elapsed",
968 avg_stats(&walltime_nsecs_stats)/1e9);
969 if (run_count > 1) {
970 fprintf(output, " ");
971 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
972 avg_stats(&walltime_nsecs_stats));
973 }
974 fprintf(output, "\n\n");
975}
976
977static void print_counters(struct timespec *ts, int argc, const char **argv)
978{
979 struct perf_evsel *counter;
980 char buf[64], *prefix = NULL;
981
982 if (interval)
983 print_interval(prefix = buf, ts);
984 else
985 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200986
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100987 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100988 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100989 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +0200990 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100991 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200992 case AGGR_THREAD:
993 evlist__for_each(evsel_list, counter)
994 print_aggr_thread(counter, prefix);
995 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100996 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300997 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200998 print_counter_aggr(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100999 break;
1000 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001001 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001002 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001003 break;
1004 default:
1005 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001006 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001007
Jiri Olsad4f63a42015-06-26 11:29:26 +02001008 if (!interval && !csv_output)
1009 print_footer();
1010
1011 fflush(output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001012}
1013
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001014static volatile int signr = -1;
1015
Ingo Molnar52425192009-05-26 09:17:18 +02001016static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001017{
Stephane Eranian13370a92013-01-29 12:47:44 +01001018 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001019 done = 1;
1020
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001021 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001022 /*
1023 * render child_pid harmless
1024 * won't send SIGTERM to a random
1025 * process in case of race condition
1026 * and fast PID recycling
1027 */
1028 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001029}
1030
1031static void sig_atexit(void)
1032{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001033 sigset_t set, oset;
1034
1035 /*
1036 * avoid race condition with SIGCHLD handler
1037 * in skip_signal() which is modifying child_pid
1038 * goal is to avoid send SIGTERM to a random
1039 * process
1040 */
1041 sigemptyset(&set);
1042 sigaddset(&set, SIGCHLD);
1043 sigprocmask(SIG_BLOCK, &set, &oset);
1044
Chris Wilson933da832009-10-04 01:35:01 +01001045 if (child_pid != -1)
1046 kill(child_pid, SIGTERM);
1047
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001048 sigprocmask(SIG_SETMASK, &oset, NULL);
1049
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001050 if (signr == -1)
1051 return;
1052
1053 signal(signr, SIG_DFL);
1054 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001055}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001056
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001057static int stat__set_big_num(const struct option *opt __maybe_unused,
1058 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001059{
1060 big_num_opt = unset ? 0 : 1;
1061 return 0;
1062}
1063
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001064static int perf_stat_init_aggr_mode(void)
1065{
1066 switch (aggr_mode) {
1067 case AGGR_SOCKET:
1068 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1069 perror("cannot build socket map");
1070 return -1;
1071 }
1072 aggr_get_id = cpu_map__get_socket;
1073 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001074 case AGGR_CORE:
1075 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1076 perror("cannot build core map");
1077 return -1;
1078 }
1079 aggr_get_id = cpu_map__get_core;
1080 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001081 case AGGR_NONE:
1082 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02001083 case AGGR_THREAD:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001084 default:
1085 break;
1086 }
1087 return 0;
1088}
1089
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001090/*
1091 * Add default attributes, if there were no attributes specified or
1092 * if -d/--detailed, -d -d or -d -d -d is used:
1093 */
1094static int add_default_attributes(void)
1095{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001096 struct perf_event_attr default_attrs[] = {
1097
1098 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1099 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1100 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1101 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1102
1103 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1104 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1105 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1106 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1107 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1108 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1109
1110};
1111
1112/*
1113 * Detailed stats (-d), covering the L1 and last level data caches:
1114 */
1115 struct perf_event_attr detailed_attrs[] = {
1116
1117 { .type = PERF_TYPE_HW_CACHE,
1118 .config =
1119 PERF_COUNT_HW_CACHE_L1D << 0 |
1120 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1121 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1122
1123 { .type = PERF_TYPE_HW_CACHE,
1124 .config =
1125 PERF_COUNT_HW_CACHE_L1D << 0 |
1126 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1127 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1128
1129 { .type = PERF_TYPE_HW_CACHE,
1130 .config =
1131 PERF_COUNT_HW_CACHE_LL << 0 |
1132 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1133 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1134
1135 { .type = PERF_TYPE_HW_CACHE,
1136 .config =
1137 PERF_COUNT_HW_CACHE_LL << 0 |
1138 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1139 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1140};
1141
1142/*
1143 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1144 */
1145 struct perf_event_attr very_detailed_attrs[] = {
1146
1147 { .type = PERF_TYPE_HW_CACHE,
1148 .config =
1149 PERF_COUNT_HW_CACHE_L1I << 0 |
1150 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1151 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1152
1153 { .type = PERF_TYPE_HW_CACHE,
1154 .config =
1155 PERF_COUNT_HW_CACHE_L1I << 0 |
1156 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1157 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1158
1159 { .type = PERF_TYPE_HW_CACHE,
1160 .config =
1161 PERF_COUNT_HW_CACHE_DTLB << 0 |
1162 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1163 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1164
1165 { .type = PERF_TYPE_HW_CACHE,
1166 .config =
1167 PERF_COUNT_HW_CACHE_DTLB << 0 |
1168 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1169 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1170
1171 { .type = PERF_TYPE_HW_CACHE,
1172 .config =
1173 PERF_COUNT_HW_CACHE_ITLB << 0 |
1174 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1175 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1176
1177 { .type = PERF_TYPE_HW_CACHE,
1178 .config =
1179 PERF_COUNT_HW_CACHE_ITLB << 0 |
1180 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1181 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1182
1183};
1184
1185/*
1186 * Very, very detailed stats (-d -d -d), adding prefetch events:
1187 */
1188 struct perf_event_attr very_very_detailed_attrs[] = {
1189
1190 { .type = PERF_TYPE_HW_CACHE,
1191 .config =
1192 PERF_COUNT_HW_CACHE_L1D << 0 |
1193 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1194 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1195
1196 { .type = PERF_TYPE_HW_CACHE,
1197 .config =
1198 PERF_COUNT_HW_CACHE_L1D << 0 |
1199 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1200 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1201};
1202
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001203 /* Set attrs if no event is selected and !null_run: */
1204 if (null_run)
1205 return 0;
1206
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001207 if (transaction_run) {
1208 int err;
1209 if (pmu_have_event("cpu", "cycles-ct") &&
1210 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001211 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001212 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001213 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1214 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001215 fprintf(stderr, "Cannot set up transaction events\n");
1216 return -1;
1217 }
1218 return 0;
1219 }
1220
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001221 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001222 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001223 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001224 }
1225
1226 /* Detailed events get appended to the event list: */
1227
1228 if (detailed_run < 1)
1229 return 0;
1230
1231 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001232 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001233 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001234
1235 if (detailed_run < 2)
1236 return 0;
1237
1238 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001239 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001240 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001241
1242 if (detailed_run < 3)
1243 return 0;
1244
1245 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001246 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001247}
1248
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001249int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001250{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001251 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001252 int output_fd = 0;
1253 const char *output_name = NULL;
1254 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001255 OPT_BOOLEAN('T', "transaction", &transaction_run,
1256 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001257 OPT_CALLBACK('e', "event", &evsel_list, "event",
1258 "event selector. use 'perf list' to list available events",
1259 parse_events_option),
1260 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1261 "event filter", parse_filter),
1262 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1263 "child tasks do not inherit counters"),
1264 OPT_STRING('p', "pid", &target.pid, "pid",
1265 "stat events on existing process id"),
1266 OPT_STRING('t', "tid", &target.tid, "tid",
1267 "stat events on existing thread id"),
1268 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1269 "system-wide collection from all CPUs"),
1270 OPT_BOOLEAN('g', "group", &group,
1271 "put the counters into a counter group"),
1272 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1273 OPT_INCR('v', "verbose", &verbose,
1274 "be more verbose (show counter open errors, etc)"),
1275 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001276 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001277 OPT_BOOLEAN('n', "null", &null_run,
1278 "null run - dont start any counters"),
1279 OPT_INCR('d', "detailed", &detailed_run,
1280 "detailed run - start a lot of events"),
1281 OPT_BOOLEAN('S', "sync", &sync_run,
1282 "call sync() before starting a run"),
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001283 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001284 "print large numbers with thousands\' separators",
1285 stat__set_big_num),
1286 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1287 "list of cpus to monitor in system-wide"),
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001288 OPT_SET_UINT('A', "no-aggr", &aggr_mode,
1289 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001290 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1291 "print counts with custom separator"),
1292 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1293 "monitor event in cgroup name only", parse_cgroups),
1294 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1295 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1296 OPT_INTEGER(0, "log-fd", &output_fd,
1297 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001298 OPT_STRING(0, "pre", &pre_cmd, "command",
1299 "command to run prior to the measured command"),
1300 OPT_STRING(0, "post", &post_cmd, "command",
1301 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001302 OPT_UINTEGER('I', "interval-print", &interval,
1303 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand4304952013-02-14 13:57:28 +01001304 OPT_SET_UINT(0, "per-socket", &aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001305 "aggregate counts per processor socket", AGGR_SOCKET),
Stephane Eranian12c08a92013-02-14 13:57:29 +01001306 OPT_SET_UINT(0, "per-core", &aggr_mode,
1307 "aggregate counts per physical processor core", AGGR_CORE),
Jiri Olsa32b8af82015-06-26 11:29:27 +02001308 OPT_SET_UINT(0, "per-thread", &aggr_mode,
1309 "aggregate counts per thread", AGGR_THREAD),
Andi Kleen41191682013-08-02 17:41:11 -07001310 OPT_UINTEGER('D', "delay", &initial_delay,
1311 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001312 OPT_END()
1313 };
1314 const char * const stat_usage[] = {
1315 "perf stat [<options>] [<command>]",
1316 NULL
1317 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001318 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001319 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001320
Stephane Eranian5af52b52010-05-18 15:00:01 +02001321 setlocale(LC_ALL, "");
1322
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001323 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001324 if (evsel_list == NULL)
1325 return -ENOMEM;
1326
Anton Blancharda0541232009-07-22 23:04:12 +10001327 argc = parse_options(argc, argv, options, stat_usage,
1328 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001329
Stephane Eranian4aa90152011-08-15 22:22:33 +02001330 output = stderr;
1331 if (output_name && strcmp(output_name, "-"))
1332 output = NULL;
1333
Jim Cromie56f3bae2011-09-07 17:14:00 -06001334 if (output_name && output_fd) {
1335 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001336 parse_options_usage(stat_usage, options, "o", 1);
1337 parse_options_usage(NULL, options, "log-fd", 0);
1338 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001339 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001340
1341 if (output_fd < 0) {
1342 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001343 parse_options_usage(stat_usage, options, "log-fd", 0);
1344 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001345 }
1346
Stephane Eranian4aa90152011-08-15 22:22:33 +02001347 if (!output) {
1348 struct timespec tm;
1349 mode = append_file ? "a" : "w";
1350
1351 output = fopen(output_name, mode);
1352 if (!output) {
1353 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001354 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001355 }
1356 clock_gettime(CLOCK_REALTIME, &tm);
1357 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001358 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001359 mode = append_file ? "a" : "w";
1360 output = fdopen(output_fd, mode);
1361 if (!output) {
1362 perror("Failed opening logfd");
1363 return -errno;
1364 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001365 }
1366
Jim Cromied4ffd042011-09-07 17:14:03 -06001367 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001368 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001369 if (!strcmp(csv_sep, "\\t"))
1370 csv_sep = "\t";
1371 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001372 csv_sep = DEFAULT_SEPARATOR;
1373
1374 /*
1375 * let the spreadsheet do the pretty-printing
1376 */
1377 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001378 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001379 if (big_num_opt == 1) {
1380 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001381 parse_options_usage(stat_usage, options, "B", 1);
1382 parse_options_usage(NULL, options, "x", 1);
1383 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001384 } else /* Nope, so disable big number formatting */
1385 big_num = false;
1386 } else if (big_num_opt == 0) /* User passed --no-big-num */
1387 big_num = false;
1388
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001389 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001390 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001391
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001392 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001393 pr_err("Run count must be a positive number\n");
1394 parse_options_usage(stat_usage, options, "r", 1);
1395 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001396 } else if (run_count == 0) {
1397 forever = true;
1398 run_count = 1;
1399 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001400
Jiri Olsa32b8af82015-06-26 11:29:27 +02001401 if ((aggr_mode == AGGR_THREAD) && !target__has_task(&target)) {
1402 fprintf(stderr, "The --per-thread option is only available "
1403 "when monitoring via -p -t options.\n");
1404 parse_options_usage(NULL, options, "p", 1);
1405 parse_options_usage(NULL, options, "t", 1);
1406 goto out;
1407 }
1408
1409 /*
1410 * no_aggr, cgroup are for system-wide only
1411 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1412 */
1413 if (((aggr_mode != AGGR_GLOBAL && aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001414 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001415 fprintf(stderr, "both cgroup and no-aggregation "
1416 "modes only available in system-wide mode\n");
1417
Namhyung Kimcc03c542013-11-01 16:33:15 +09001418 parse_options_usage(stat_usage, options, "G", 1);
1419 parse_options_usage(NULL, options, "A", 1);
1420 parse_options_usage(NULL, options, "a", 1);
1421 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001422 }
1423
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001424 if (add_default_attributes())
1425 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001426
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001427 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001428
Namhyung Kim77a6f012012-05-07 14:09:04 +09001429 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001430 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001431 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001432 parse_options_usage(stat_usage, options, "p", 1);
1433 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001434 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001435 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001436 parse_options_usage(stat_usage, options, "C", 1);
1437 parse_options_usage(NULL, options, "a", 1);
1438 }
1439 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001440 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001441
1442 /*
1443 * Initialize thread_map with comm names,
1444 * so we could print it out on output.
1445 */
1446 if (aggr_mode == AGGR_THREAD)
1447 thread_map__read_comms(evsel_list->threads);
1448
Stephane Eranian13370a92013-01-29 12:47:44 +01001449 if (interval && interval < 100) {
1450 pr_err("print interval must be >= 100ms\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001451 parse_options_usage(stat_usage, options, "I", 1);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001452 goto out;
Stephane Eranian13370a92013-01-29 12:47:44 +01001453 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001454
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001455 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001456 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001457
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001458 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001459 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001460
Ingo Molnar58d7e992009-05-15 11:03:23 +02001461 /*
1462 * We dont want to block the signals - that would cause
1463 * child tasks to inherit that and Ctrl-C would not work.
1464 * What we want is for Ctrl-C to work in the exec()-ed
1465 * task, but being ignored by perf stat itself:
1466 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001467 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001468 if (!forever)
1469 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001470 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001471 signal(SIGALRM, skip_signal);
1472 signal(SIGABRT, skip_signal);
1473
Ingo Molnar42202dd2009-06-13 14:57:28 +02001474 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001475 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001476 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001477 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1478 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001479
Ingo Molnar42202dd2009-06-13 14:57:28 +02001480 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001481 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001482 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001483 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001484 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001485 }
1486
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001487 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001488 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001489
1490 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001491out:
1492 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001493 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001494}