blob: 2492a0efa4d8019291c5d67666490020cab2d741 [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 Molnarbf9e1872009-06-02 23:37:05 +02009 $ perf stat ~/hackbench 10
10 Time: 0.104
Ingo Molnarddcacfa2009-04-20 15:37:32 +020011
Ingo Molnarbf9e1872009-06-02 23:37:05 +020012 Performance counter stats for '/home/mingo/hackbench':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020013
Ingo Molnarbf9e1872009-06-02 23:37:05 +020014 1255.538611 task clock ticks # 10.143 CPU utilization factor
15 54011 context switches # 0.043 M/sec
16 385 CPU migrations # 0.000 M/sec
17 17755 pagefaults # 0.014 M/sec
18 3808323185 CPU cycles # 3033.219 M/sec
19 1575111190 instructions # 1254.530 M/sec
20 17367895 cache references # 13.833 M/sec
21 7674421 cache misses # 6.112 M/sec
Ingo Molnarddcacfa2009-04-20 15:37:32 +020022
Ingo Molnarbf9e1872009-06-02 23:37:05 +020023 Wall-clock time elapsed: 123.786620 msecs
Ingo Molnarddcacfa2009-04-20 15:37:32 +020024
Ingo Molnar52425192009-05-26 09:17:18 +020025 *
26 * Copyright (C) 2008, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
27 *
28 * Improvements and fixes by:
29 *
30 * Arjan van de Ven <arjan@linux.intel.com>
31 * Yanmin Zhang <yanmin.zhang@intel.com>
32 * Wu Fengguang <fengguang.wu@intel.com>
33 * Mike Galbraith <efault@gmx.de>
34 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053035 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020036 *
37 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020038 */
39
Peter Zijlstra1a482f32009-05-23 18:28:58 +020040#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020041#include "builtin.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020042#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020043#include "util/parse-options.h"
44#include "util/parse-events.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020045#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020046#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020047#include "util/evsel.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020048#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020049#include "util/color.h"
Liming Wang60666c62009-12-31 16:05:50 +080050#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110051#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030052#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020053#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020054
Ingo Molnarddcacfa2009-04-20 15:37:32 +020055#include <sys/prctl.h>
Ingo Molnar42202dd2009-06-13 14:57:28 +020056#include <math.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020057#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020058
Stephane Eraniand7470b62010-12-01 18:49:05 +020059#define DEFAULT_SEPARATOR " "
60
Ingo Molnarcdd6c482009-09-21 12:02:48 +020061static struct perf_event_attr default_attrs[] = {
Ingo Molnara21ca2c2009-06-06 09:58:57 +020062
Ingo Molnar56aab462009-10-19 13:27:08 +020063 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
64 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
65 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
66 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
Ingo Molnara21ca2c2009-06-06 09:58:57 +020067
Ingo Molnar56aab462009-10-19 13:27:08 +020068 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Ingo Molnar129c04c2011-04-29 14:41:28 +020069 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
70 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Ingo Molnar56aab462009-10-19 13:27:08 +020071 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
Ingo Molnar56aab462009-10-19 13:27:08 +020072 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
73 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +020074
Ingo Molnara21ca2c2009-06-06 09:58:57 +020075};
76
Ingo Molnarc6264de2011-04-27 13:50:47 +020077/*
78 * Detailed stats:
79 */
80static struct perf_event_attr detailed_attrs[] = {
81
82 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
83 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
84 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
85 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
86
87 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Ingo Molnar129c04c2011-04-29 14:41:28 +020088 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
89 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Ingo Molnarc6264de2011-04-27 13:50:47 +020090 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
91 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
92 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
93
94 { .type = PERF_TYPE_HW_CACHE,
95 .config =
96 PERF_COUNT_HW_CACHE_L1D << 0 |
97 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
98 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
99
100 { .type = PERF_TYPE_HW_CACHE,
101 .config =
102 PERF_COUNT_HW_CACHE_L1D << 0 |
103 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
104 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
105
106 { .type = PERF_TYPE_HW_CACHE,
107 .config =
108 PERF_COUNT_HW_CACHE_LL << 0 |
109 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
110 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
111
112 { .type = PERF_TYPE_HW_CACHE,
113 .config =
114 PERF_COUNT_HW_CACHE_LL << 0 |
115 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
116 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
117};
118
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200119struct perf_evlist *evsel_list;
120
Ian Munsiec0555642010-04-13 18:37:33 +1000121static bool system_wide = false;
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530122static int run_idx = 0;
123
124static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200125static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +1000126static bool scale = true;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200127static bool no_aggr = false;
Chris Wilson933da832009-10-04 01:35:01 +0100128static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300129static pid_t target_tid = -1;
Chris Wilson933da832009-10-04 01:35:01 +0100130static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000131static bool null_run = false;
Ingo Molnarc6264de2011-04-27 13:50:47 +0200132static bool detailed_run = false;
Ingo Molnarf9cef0a2011-04-28 18:17:11 +0200133static bool sync_run = false;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200134static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200135static int big_num_opt = -1;
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200136static const char *cpu_list;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200137static const char *csv_sep = NULL;
138static bool csv_output = false;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200139
Liming Wang60666c62009-12-31 16:05:50 +0800140static volatile int done = 0;
141
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200142struct stats
143{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200144 double n, mean, M2;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200145};
Ingo Molnar42202dd2009-06-13 14:57:28 +0200146
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200147struct perf_stat {
148 struct stats res_stats[3];
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200149};
150
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200151static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200152{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200153 evsel->priv = zalloc(sizeof(struct perf_stat));
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200154 return evsel->priv == NULL ? -ENOMEM : 0;
155}
156
157static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
158{
159 free(evsel->priv);
160 evsel->priv = NULL;
161}
162
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200163static void update_stats(struct stats *stats, u64 val)
164{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200165 double delta;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200166
Peter Zijlstra8a026312009-09-04 17:26:26 +0200167 stats->n++;
168 delta = val - stats->mean;
169 stats->mean += delta / stats->n;
170 stats->M2 += delta*(val - stats->mean);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200171}
172
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200173static double avg_stats(struct stats *stats)
174{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200175 return stats->mean;
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200176}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200177
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200178/*
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200179 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
180 *
Peter Zijlstra8a026312009-09-04 17:26:26 +0200181 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
182 * s^2 = -------------------------------
183 * n - 1
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200184 *
185 * http://en.wikipedia.org/wiki/Stddev
186 *
187 * The std dev of the mean is related to the std dev by:
188 *
189 * s
190 * s_mean = -------
191 * sqrt(n)
192 *
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200193 */
194static double stddev_stats(struct stats *stats)
195{
Peter Zijlstra8a026312009-09-04 17:26:26 +0200196 double variance = stats->M2 / (stats->n - 1);
197 double variance_mean = variance / stats->n;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200198
Peter Zijlstra63d40de2009-09-04 17:03:13 +0200199 return sqrt(variance_mean);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200200}
Ingo Molnar42202dd2009-06-13 14:57:28 +0200201
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200202struct stats runtime_nsecs_stats[MAX_NR_CPUS];
203struct stats runtime_cycles_stats[MAX_NR_CPUS];
Ingo Molnard3d1e862011-04-29 13:49:08 +0200204struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
205struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200206struct stats runtime_branches_stats[MAX_NR_CPUS];
Ingo Molnard58f4c82011-04-27 03:42:18 +0200207struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200208struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200209struct stats walltime_nsecs_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200210
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200211static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200212{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200213 struct perf_event_attr *attr = &evsel->attr;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200214
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200215 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200216 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
217 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200218
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200219 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300220
221 if (system_wide)
222 return perf_evsel__open_per_cpu(evsel, evsel_list->cpus, false);
223
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200224 if (target_pid == -1 && target_tid == -1) {
225 attr->disabled = 1;
226 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200227 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300228
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300229 return perf_evsel__open_per_thread(evsel, evsel_list->threads, false);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200230}
231
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200232/*
233 * Does the counter have nsecs as a unit?
234 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200235static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200236{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200237 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
238 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200239 return 1;
240
241 return 0;
242}
243
244/*
Ingo Molnardcd99362011-04-27 04:36:37 +0200245 * Update various tracking values we maintain to print
246 * more semantic information such as miss/hit ratios,
247 * instruction rates, etc:
248 */
249static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
250{
251 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
252 update_stats(&runtime_nsecs_stats[0], count[0]);
253 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
254 update_stats(&runtime_cycles_stats[0], count[0]);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200255 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
256 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200257 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
Ingo Molnard3d1e862011-04-29 13:49:08 +0200258 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200259 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
260 update_stats(&runtime_branches_stats[0], count[0]);
261 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
262 update_stats(&runtime_cacherefs_stats[0], count[0]);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200263 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
264 update_stats(&runtime_l1_dcache_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200265}
266
267/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200268 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200269 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200270 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200271static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200272{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200273 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200274 u64 *count = counter->counts->aggr.values;
275 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200276
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200277 if (__perf_evsel__read(counter, evsel_list->cpus->nr,
278 evsel_list->threads->nr, scale) < 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200279 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200280
281 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200282 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200283
284 if (verbose) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200285 fprintf(stderr, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
286 event_name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200287 }
288
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200289 /*
290 * Save the full runtime - to allow normalization during printout:
291 */
Ingo Molnardcd99362011-04-27 04:36:37 +0200292 update_shadow_stats(counter, count);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200293
294 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200295}
296
297/*
298 * Read out the results of a single counter:
299 * do not aggregate counts across CPUs in system-wide mode
300 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200301static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200302{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200303 u64 *count;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200304 int cpu;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200305
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200306 for (cpu = 0; cpu < evsel_list->cpus->nr; cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200307 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
308 return -1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200309
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200310 count = counter->counts->cpu[cpu].values;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200311
Ingo Molnardcd99362011-04-27 04:36:37 +0200312 update_shadow_stats(counter, count);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200313 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200314
315 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200316}
317
Ingo Molnarf37a2912009-07-01 12:37:06 +0200318static int run_perf_stat(int argc __used, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200319{
320 unsigned long long t0, t1;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200321 struct perf_evsel *counter;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200322 int status = 0;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000323 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300324 const bool forks = (argc > 0);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000325 char buf;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200326
Liming Wang60666c62009-12-31 16:05:50 +0800327 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000328 perror("failed to create pipes");
329 exit(1);
330 }
331
Liming Wang60666c62009-12-31 16:05:50 +0800332 if (forks) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300333 if ((child_pid = fork()) < 0)
Liming Wang60666c62009-12-31 16:05:50 +0800334 perror("failed to fork");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000335
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300336 if (!child_pid) {
Liming Wang60666c62009-12-31 16:05:50 +0800337 close(child_ready_pipe[0]);
338 close(go_pipe[1]);
339 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
340
341 /*
342 * Do a dummy execvp to get the PLT entry resolved,
343 * so we avoid the resolver overhead on the real
344 * execvp call.
345 */
346 execvp("", (char **)argv);
347
348 /*
349 * Tell the parent we're ready to go
350 */
351 close(child_ready_pipe[1]);
352
353 /*
354 * Wait until the parent tells us to go.
355 */
356 if (read(go_pipe[0], &buf, 1) == -1)
357 perror("unable to read pipe");
358
359 execvp(argv[0], (char **)argv);
360
361 perror(argv[0]);
362 exit(-1);
363 }
364
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300365 if (target_tid == -1 && target_pid == -1 && !system_wide)
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200366 evsel_list->threads->map[0] = child_pid;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300367
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000368 /*
Liming Wang60666c62009-12-31 16:05:50 +0800369 * Wait for the child to be ready to exec.
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000370 */
371 close(child_ready_pipe[1]);
Liming Wang60666c62009-12-31 16:05:50 +0800372 close(go_pipe[0]);
373 if (read(child_ready_pipe[0], &buf, 1) == -1)
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200374 perror("unable to read pipe");
Liming Wang60666c62009-12-31 16:05:50 +0800375 close(child_ready_pipe[0]);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000376 }
377
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200378 list_for_each_entry(counter, &evsel_list->entries, node) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200379 if (create_perf_stat_counter(counter) < 0) {
Ingo Molnarede70292011-04-28 08:48:42 +0200380 if (errno == EINVAL || errno == ENOSYS)
381 continue;
382
383 if (errno == EPERM || errno == EACCES) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200384 error("You may not have permission to collect %sstats.\n"
385 "\t Consider tweaking"
386 " /proc/sys/kernel/perf_event_paranoid or running as root.",
387 system_wide ? "system-wide " : "");
David Ahern5a3446b2011-01-09 11:21:12 -0700388 } else if (errno == ENOENT) {
389 error("%s event is not supported. ", event_name(counter));
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200390 } else {
391 error("open_counter returned with %d (%s). "
392 "/bin/dmesg may provide additional information.\n",
393 errno, strerror(errno));
394 }
395 if (child_pid != -1)
396 kill(child_pid, SIGTERM);
397 die("Not all events could be opened.\n");
398 return -1;
399 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300400 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200401
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100402 if (perf_evlist__set_filters(evsel_list)) {
403 error("failed to set filter with %d (%s)\n", errno,
404 strerror(errno));
405 return -1;
406 }
407
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200408 /*
409 * Enable counters and exec the command:
410 */
411 t0 = rdclock();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200412
Liming Wang60666c62009-12-31 16:05:50 +0800413 if (forks) {
414 close(go_pipe[1]);
415 wait(&status);
416 } else {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300417 while(!done) sleep(1);
Liming Wang60666c62009-12-31 16:05:50 +0800418 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200419
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200420 t1 = rdclock();
421
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200422 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200423
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200424 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200425 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200426 read_counter(counter);
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200427 perf_evsel__close_fd(counter, evsel_list->cpus->nr, 1);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200428 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200429 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200430 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200431 read_counter_aggr(counter);
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200432 perf_evsel__close_fd(counter, evsel_list->cpus->nr,
433 evsel_list->threads->nr);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200434 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200435 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200436
Ingo Molnar42202dd2009-06-13 14:57:28 +0200437 return WEXITSTATUS(status);
438}
439
Ingo Molnarf99844c2011-04-27 05:35:39 +0200440static void print_noise_pct(double total, double avg)
441{
442 double pct = 0.0;
443
444 if (avg)
445 pct = 100.0*total/avg;
446
447 fprintf(stderr, " ( +-%6.2f%% )", pct);
448}
449
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200450static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200451{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200452 struct perf_stat *ps;
453
Peter Zijlstra849abde2009-09-04 18:23:38 +0200454 if (run_count == 1)
455 return;
456
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200457 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200458 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200459}
460
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200461static void nsec_printout(int cpu, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200462{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200463 double msecs = avg / 1e6;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200464 char cpustr[16] = { '\0', };
465 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-24s";
Ingo Molnar42202dd2009-06-13 14:57:28 +0200466
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200467 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200468 sprintf(cpustr, "CPU%*d%s",
469 csv_output ? 0 : -4,
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200470 evsel_list->cpus->map[cpu], csv_sep);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200471
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200472 fprintf(stderr, fmt, cpustr, msecs, csv_sep, event_name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200473
Stephane Eranian023695d2011-02-14 11:20:01 +0200474 if (evsel->cgrp)
475 fprintf(stderr, "%s%s", csv_sep, evsel->cgrp->name);
476
Stephane Eraniand7470b62010-12-01 18:49:05 +0200477 if (csv_output)
478 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200479
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200480 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnar481f9882011-04-27 04:34:16 +0200481 fprintf(stderr, " # %8.3f CPUs utilized ", avg / avg_stats(&walltime_nsecs_stats));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200482}
483
Ingo Molnard3d1e862011-04-29 13:49:08 +0200484static void print_stalled_cycles_frontend(int cpu, struct perf_evsel *evsel __used, double avg)
485{
486 double total, ratio = 0.0;
487 const char *color;
488
489 total = avg_stats(&runtime_cycles_stats[cpu]);
490
491 if (total)
492 ratio = avg / total * 100.0;
493
494 color = PERF_COLOR_NORMAL;
Ingo Molnar2b427e12011-04-29 14:16:18 +0200495 if (ratio > 50.0)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200496 color = PERF_COLOR_RED;
Ingo Molnar2b427e12011-04-29 14:16:18 +0200497 else if (ratio > 30.0)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200498 color = PERF_COLOR_MAGENTA;
Ingo Molnar2b427e12011-04-29 14:16:18 +0200499 else if (ratio > 10.0)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200500 color = PERF_COLOR_YELLOW;
501
502 fprintf(stderr, " # ");
503 color_fprintf(stderr, color, "%5.2f%%", ratio);
504 fprintf(stderr, " frontend cycles idle ");
505}
506
507static void print_stalled_cycles_backend(int cpu, struct perf_evsel *evsel __used, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200508{
509 double total, ratio = 0.0;
510 const char *color;
511
512 total = avg_stats(&runtime_cycles_stats[cpu]);
513
514 if (total)
515 ratio = avg / total * 100.0;
516
517 color = PERF_COLOR_NORMAL;
518 if (ratio > 75.0)
519 color = PERF_COLOR_RED;
520 else if (ratio > 50.0)
521 color = PERF_COLOR_MAGENTA;
Ingo Molnar2b427e12011-04-29 14:16:18 +0200522 else if (ratio > 20.0)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200523 color = PERF_COLOR_YELLOW;
524
525 fprintf(stderr, " # ");
526 color_fprintf(stderr, color, "%5.2f%%", ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200527 fprintf(stderr, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200528}
529
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200530static void print_branch_misses(int cpu, struct perf_evsel *evsel __used, double avg)
531{
532 double total, ratio = 0.0;
533 const char *color;
534
535 total = avg_stats(&runtime_branches_stats[cpu]);
536
537 if (total)
538 ratio = avg / total * 100.0;
539
540 color = PERF_COLOR_NORMAL;
541 if (ratio > 20.0)
542 color = PERF_COLOR_RED;
543 else if (ratio > 10.0)
544 color = PERF_COLOR_MAGENTA;
545 else if (ratio > 5.0)
546 color = PERF_COLOR_YELLOW;
547
548 fprintf(stderr, " # ");
549 color_fprintf(stderr, color, "%5.2f%%", ratio);
550 fprintf(stderr, " of all branches ");
551}
552
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200553static void print_l1_dcache_misses(int cpu, struct perf_evsel *evsel __used, double avg)
554{
555 double total, ratio = 0.0;
556 const char *color;
557
558 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
559
560 if (total)
561 ratio = avg / total * 100.0;
562
563 color = PERF_COLOR_NORMAL;
564 if (ratio > 20.0)
565 color = PERF_COLOR_RED;
566 else if (ratio > 10.0)
567 color = PERF_COLOR_MAGENTA;
568 else if (ratio > 5.0)
569 color = PERF_COLOR_YELLOW;
570
571 fprintf(stderr, " # ");
572 color_fprintf(stderr, color, "%5.2f%%", ratio);
573 fprintf(stderr, " of all L1-dcache hits ");
574}
575
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200576static void abs_printout(int cpu, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200577{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200578 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200579 char cpustr[16] = { '\0', };
Stephane Eraniand7470b62010-12-01 18:49:05 +0200580 const char *fmt;
581
582 if (csv_output)
583 fmt = "%s%.0f%s%s";
584 else if (big_num)
585 fmt = "%s%'18.0f%s%-24s";
586 else
587 fmt = "%s%18.0f%s%-24s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200588
589 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200590 sprintf(cpustr, "CPU%*d%s",
591 csv_output ? 0 : -4,
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200592 evsel_list->cpus->map[cpu], csv_sep);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200593 else
594 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200595
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200596 fprintf(stderr, fmt, cpustr, avg, csv_sep, event_name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200597
Stephane Eranian023695d2011-02-14 11:20:01 +0200598 if (evsel->cgrp)
599 fprintf(stderr, "%s%s", csv_sep, evsel->cgrp->name);
600
Stephane Eraniand7470b62010-12-01 18:49:05 +0200601 if (csv_output)
602 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200603
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200604 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200605 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200606
607 if (total)
608 ratio = avg / total;
609
Ingo Molnar9ceb1c32011-04-28 02:57:53 +0200610 fprintf(stderr, " # %4.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200611
Ingo Molnard3d1e862011-04-29 13:49:08 +0200612 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
613 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200614
615 if (total && avg) {
616 ratio = total / avg;
617 fprintf(stderr, "\n # %4.2f stalled cycles per insn", ratio);
618 }
619
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200620 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200621 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200622 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200623 } else if (
624 evsel->attr.type == PERF_TYPE_HW_CACHE &&
625 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
626 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
627 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200628 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200629 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200630 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
631 runtime_cacherefs_stats[cpu].n != 0) {
632 total = avg_stats(&runtime_cacherefs_stats[cpu]);
633
634 if (total)
635 ratio = avg * 100 / total;
636
Ingo Molnar481f9882011-04-27 04:34:16 +0200637 fprintf(stderr, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200638
Ingo Molnard3d1e862011-04-29 13:49:08 +0200639 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
640 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200641 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200642 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200643 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
644 total = avg_stats(&runtime_nsecs_stats[cpu]);
645
646 if (total)
647 ratio = 1.0 * avg / total;
648
649 fprintf(stderr, " # %8.3f GHz ", ratio);
650 } else if (runtime_nsecs_stats[cpu].n != 0) {
651 total = avg_stats(&runtime_nsecs_stats[cpu]);
652
653 if (total)
654 ratio = 1000.0 * avg / total;
655
656 fprintf(stderr, " # %8.3f M/sec ", ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200657 } else {
658 fprintf(stderr, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200659 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200660}
661
662/*
663 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200664 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200665 */
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200666static void print_counter_aggr(struct perf_evsel *counter)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200667{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200668 struct perf_stat *ps = counter->priv;
669 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200670 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200671
Ingo Molnar42202dd2009-06-13 14:57:28 +0200672 if (scaled == -1) {
Stephane Eranian023695d2011-02-14 11:20:01 +0200673 fprintf(stderr, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200674 csv_output ? 0 : 18,
Stephane Eranian023695d2011-02-14 11:20:01 +0200675 "<not counted>",
676 csv_sep,
677 csv_output ? 0 : -24,
678 event_name(counter));
679
680 if (counter->cgrp)
681 fprintf(stderr, "%s%s", csv_sep, counter->cgrp->name);
682
683 fputc('\n', stderr);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200684 return;
685 }
686
687 if (nsec_counter(counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200688 nsec_printout(-1, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200689 else
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200690 abs_printout(-1, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200691
Stephane Eraniand7470b62010-12-01 18:49:05 +0200692 if (csv_output) {
693 fputc('\n', stderr);
694 return;
695 }
696
Peter Zijlstra849abde2009-09-04 18:23:38 +0200697 print_noise(counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200698
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200699 if (scaled) {
700 double avg_enabled, avg_running;
701
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200702 avg_enabled = avg_stats(&ps->res_stats[1]);
703 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200704
Ingo Molnarc6264de2011-04-27 13:50:47 +0200705 fprintf(stderr, " (%.2f%%)", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200706 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200707 fprintf(stderr, "\n");
708}
709
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200710/*
711 * Print out the results of a single counter:
712 * does not use aggregated count in system-wide
713 */
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200714static void print_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200715{
716 u64 ena, run, val;
717 int cpu;
718
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200719 for (cpu = 0; cpu < evsel_list->cpus->nr; cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200720 val = counter->counts->cpu[cpu].val;
721 ena = counter->counts->cpu[cpu].ena;
722 run = counter->counts->cpu[cpu].run;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200723 if (run == 0 || ena == 0) {
Stephane Eranian023695d2011-02-14 11:20:01 +0200724 fprintf(stderr, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200725 csv_output ? 0 : -4,
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200726 evsel_list->cpus->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200727 csv_output ? 0 : 18,
728 "<not counted>", csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +0200729 csv_output ? 0 : -24,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200730 event_name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200731
Stephane Eranian023695d2011-02-14 11:20:01 +0200732 if (counter->cgrp)
733 fprintf(stderr, "%s%s", csv_sep, counter->cgrp->name);
734
735 fputc('\n', stderr);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200736 continue;
737 }
738
739 if (nsec_counter(counter))
740 nsec_printout(cpu, counter, val);
741 else
742 abs_printout(cpu, counter, val);
743
Stephane Eraniand7470b62010-12-01 18:49:05 +0200744 if (!csv_output) {
745 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200746
Ingo Molnarc6264de2011-04-27 13:50:47 +0200747 if (run != ena)
748 fprintf(stderr, " (%.2f%%)", 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200749 }
Stephane Eranian023695d2011-02-14 11:20:01 +0200750 fputc('\n', stderr);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200751 }
752}
753
Ingo Molnar42202dd2009-06-13 14:57:28 +0200754static void print_stat(int argc, const char **argv)
755{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200756 struct perf_evsel *counter;
757 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200758
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200759 fflush(stdout);
760
Stephane Eraniand7470b62010-12-01 18:49:05 +0200761 if (!csv_output) {
762 fprintf(stderr, "\n");
763 fprintf(stderr, " Performance counter stats for ");
764 if(target_pid == -1 && target_tid == -1) {
765 fprintf(stderr, "\'%s", argv[0]);
766 for (i = 1; i < argc; i++)
767 fprintf(stderr, " %s", argv[i]);
768 } else if (target_pid != -1)
769 fprintf(stderr, "process id \'%d", target_pid);
770 else
771 fprintf(stderr, "thread id \'%d", target_tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200772
Stephane Eraniand7470b62010-12-01 18:49:05 +0200773 fprintf(stderr, "\'");
774 if (run_count > 1)
775 fprintf(stderr, " (%d runs)", run_count);
776 fprintf(stderr, ":\n\n");
777 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200778
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200779 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200780 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200781 print_counter(counter);
782 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200783 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200784 print_counter_aggr(counter);
785 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200786
Stephane Eraniand7470b62010-12-01 18:49:05 +0200787 if (!csv_output) {
788 fprintf(stderr, "\n");
789 fprintf(stderr, " %18.9f seconds time elapsed",
790 avg_stats(&walltime_nsecs_stats)/1e9);
791 if (run_count > 1) {
Ingo Molnarf99844c2011-04-27 05:35:39 +0200792 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
793 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200794 }
795 fprintf(stderr, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200796 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200797}
798
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200799static volatile int signr = -1;
800
Ingo Molnar52425192009-05-26 09:17:18 +0200801static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200802{
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300803 if(child_pid == -1)
Liming Wang60666c62009-12-31 16:05:50 +0800804 done = 1;
805
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200806 signr = signo;
807}
808
809static void sig_atexit(void)
810{
Chris Wilson933da832009-10-04 01:35:01 +0100811 if (child_pid != -1)
812 kill(child_pid, SIGTERM);
813
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200814 if (signr == -1)
815 return;
816
817 signal(signr, SIG_DFL);
818 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200819}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200820
Ingo Molnar52425192009-05-26 09:17:18 +0200821static const char * const stat_usage[] = {
Liming Wang60666c62009-12-31 16:05:50 +0800822 "perf stat [<options>] [<command>]",
Ingo Molnar52425192009-05-26 09:17:18 +0200823 NULL
824};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200825
Stephane Eraniand7470b62010-12-01 18:49:05 +0200826static int stat__set_big_num(const struct option *opt __used,
827 const char *s __used, int unset)
828{
829 big_num_opt = unset ? 0 : 1;
830 return 0;
831}
832
Ingo Molnar52425192009-05-26 09:17:18 +0200833static const struct option options[] = {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200834 OPT_CALLBACK('e', "event", &evsel_list, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200835 "event selector. use 'perf list' to list available events",
836 parse_events),
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100837 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
838 "event filter", parse_filter),
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200839 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
840 "child tasks do not inherit counters"),
Ingo Molnar52425192009-05-26 09:17:18 +0200841 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300842 "stat events on existing process id"),
843 OPT_INTEGER('t', "tid", &target_tid,
844 "stat events on existing thread id"),
Ingo Molnar52425192009-05-26 09:17:18 +0200845 OPT_BOOLEAN('a', "all-cpus", &system_wide,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530846 "system-wide collection from all CPUs"),
Brice Goglinb26bc5a2009-08-07 10:18:39 +0200847 OPT_BOOLEAN('c', "scale", &scale,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530848 "scale/normalize counters"),
Ian Munsiec0555642010-04-13 18:37:33 +1000849 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200850 "be more verbose (show counter open errors, etc)"),
Ingo Molnar42202dd2009-06-13 14:57:28 +0200851 OPT_INTEGER('r', "repeat", &run_count,
852 "repeat command and print average + stddev (max: 100)"),
Ingo Molnar0cfb7a12009-06-27 06:10:30 +0200853 OPT_BOOLEAN('n', "null", &null_run,
854 "null run - dont start any counters"),
Ingo Molnarc6264de2011-04-27 13:50:47 +0200855 OPT_BOOLEAN('d', "detailed", &detailed_run,
856 "detailed run - start a lot of events"),
Ingo Molnarf9cef0a2011-04-28 18:17:11 +0200857 OPT_BOOLEAN('S', "sync", &sync_run,
858 "call sync() before starting a run"),
Stephane Eraniand7470b62010-12-01 18:49:05 +0200859 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
860 "print large numbers with thousands\' separators",
861 stat__set_big_num),
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200862 OPT_STRING('C', "cpu", &cpu_list, "cpu",
863 "list of cpus to monitor in system-wide"),
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200864 OPT_BOOLEAN('A', "no-aggr", &no_aggr,
865 "disable CPU count aggregation"),
Stephane Eraniand7470b62010-12-01 18:49:05 +0200866 OPT_STRING('x', "field-separator", &csv_sep, "separator",
867 "print counts with custom separator"),
Stephane Eranian023695d2011-02-14 11:20:01 +0200868 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
869 "monitor event in cgroup name only",
870 parse_cgroups),
Ingo Molnar52425192009-05-26 09:17:18 +0200871 OPT_END()
872};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200873
Ingo Molnarf37a2912009-07-01 12:37:06 +0200874int cmd_stat(int argc, const char **argv, const char *prefix __used)
Ingo Molnar52425192009-05-26 09:17:18 +0200875{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200876 struct perf_evsel *pos;
877 int status = -ENOMEM;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200878
Stephane Eranian5af52b52010-05-18 15:00:01 +0200879 setlocale(LC_ALL, "");
880
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200881 evsel_list = perf_evlist__new(NULL, NULL);
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200882 if (evsel_list == NULL)
883 return -ENOMEM;
884
Anton Blancharda0541232009-07-22 23:04:12 +1000885 argc = parse_options(argc, argv, options, stat_usage,
886 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200887
888 if (csv_sep)
889 csv_output = true;
890 else
891 csv_sep = DEFAULT_SEPARATOR;
892
893 /*
894 * let the spreadsheet do the pretty-printing
895 */
896 if (csv_output) {
897 /* User explicitely passed -B? */
898 if (big_num_opt == 1) {
899 fprintf(stderr, "-B option not supported with -x\n");
900 usage_with_options(stat_usage, options);
901 } else /* Nope, so disable big number formatting */
902 big_num = false;
903 } else if (big_num_opt == 0) /* User passed --no-big-num */
904 big_num = false;
905
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300906 if (!argc && target_pid == -1 && target_tid == -1)
Ingo Molnar52425192009-05-26 09:17:18 +0200907 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200908 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200909 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200910
Stephane Eranian023695d2011-02-14 11:20:01 +0200911 /* no_aggr, cgroup are for system-wide only */
912 if ((no_aggr || nr_cgroups) && !system_wide) {
913 fprintf(stderr, "both cgroup and no-aggregation "
914 "modes only available in system-wide mode\n");
915
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200916 usage_with_options(stat_usage, options);
Stephane Eranian023695d2011-02-14 11:20:01 +0200917 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200918
Jaswinder Singh Rajputc3043562009-06-27 23:49:09 +0530919 /* Set attrs and nr_counters if no event is selected and !null_run */
Ingo Molnarc6264de2011-04-27 13:50:47 +0200920 if (detailed_run) {
921 size_t c;
922
923 for (c = 0; c < ARRAY_SIZE(detailed_attrs); ++c) {
924 pos = perf_evsel__new(&detailed_attrs[c], c);
925 if (pos == NULL)
926 goto out;
927 perf_evlist__add(evsel_list, pos);
928 }
929 }
930 /* Set attrs and nr_counters if no event is selected and !null_run */
931 if (!detailed_run && !null_run && !evsel_list->nr_entries) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200932 size_t c;
933
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200934 for (c = 0; c < ARRAY_SIZE(default_attrs); ++c) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200935 pos = perf_evsel__new(&default_attrs[c], c);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200936 if (pos == NULL)
937 goto out;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200938 perf_evlist__add(evsel_list, pos);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200939 }
Jaswinder Singh Rajputc3043562009-06-27 23:49:09 +0530940 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200941
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -0200942 if (target_pid != -1)
943 target_tid = target_pid;
944
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200945 evsel_list->threads = thread_map__new(target_pid, target_tid);
946 if (evsel_list->threads == NULL) {
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -0200947 pr_err("Problems finding threads of monitor\n");
948 usage_with_options(stat_usage, options);
949 }
950
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100951 if (system_wide)
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200952 evsel_list->cpus = cpu_map__new(cpu_list);
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100953 else
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200954 evsel_list->cpus = cpu_map__dummy_new();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200955
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200956 if (evsel_list->cpus == NULL) {
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200957 perror("failed to parse CPUs map");
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200958 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200959 return -1;
960 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200961
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200962 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200963 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200964 perf_evsel__alloc_counts(pos, evsel_list->cpus->nr) < 0 ||
965 perf_evsel__alloc_fd(pos, evsel_list->cpus->nr, evsel_list->threads->nr) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200966 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300967 }
968
Ingo Molnar58d7e992009-05-15 11:03:23 +0200969 /*
970 * We dont want to block the signals - that would cause
971 * child tasks to inherit that and Ctrl-C would not work.
972 * What we want is for Ctrl-C to work in the exec()-ed
973 * task, but being ignored by perf stat itself:
974 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200975 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200976 signal(SIGINT, skip_signal);
977 signal(SIGALRM, skip_signal);
978 signal(SIGABRT, skip_signal);
979
Ingo Molnar42202dd2009-06-13 14:57:28 +0200980 status = 0;
981 for (run_idx = 0; run_idx < run_count; run_idx++) {
982 if (run_count != 1 && verbose)
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530983 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +0200984
985 if (sync_run)
986 sync();
987
Ingo Molnar42202dd2009-06-13 14:57:28 +0200988 status = run_perf_stat(argc, argv);
989 }
990
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300991 if (status != -1)
992 print_stat(argc, argv);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200993out_free_fd:
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200994 list_for_each_entry(pos, &evsel_list->entries, node)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200995 perf_evsel__free_stat_priv(pos);
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200996 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -0200997out:
998 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200999 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001000}