blob: 602c3c96fa1e132519b728e4d729b31718e4e7a6 [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 Weisbecker8f288272009-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 Weisbecker8f288272009-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) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600380 if (errno == EINVAL || errno == ENOSYS || errno == ENOENT) {
381 if (verbose)
382 ui__warning("%s event is not supported by the kernel.\n",
383 event_name(counter));
Ingo Molnarede70292011-04-28 08:48:42 +0200384 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600385 }
Ingo Molnarede70292011-04-28 08:48:42 +0200386
387 if (errno == EPERM || errno == EACCES) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200388 error("You may not have permission to collect %sstats.\n"
389 "\t Consider tweaking"
390 " /proc/sys/kernel/perf_event_paranoid or running as root.",
391 system_wide ? "system-wide " : "");
392 } else {
393 error("open_counter returned with %d (%s). "
394 "/bin/dmesg may provide additional information.\n",
395 errno, strerror(errno));
396 }
397 if (child_pid != -1)
398 kill(child_pid, SIGTERM);
399 die("Not all events could be opened.\n");
400 return -1;
401 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300402 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200403
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100404 if (perf_evlist__set_filters(evsel_list)) {
405 error("failed to set filter with %d (%s)\n", errno,
406 strerror(errno));
407 return -1;
408 }
409
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200410 /*
411 * Enable counters and exec the command:
412 */
413 t0 = rdclock();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200414
Liming Wang60666c62009-12-31 16:05:50 +0800415 if (forks) {
416 close(go_pipe[1]);
417 wait(&status);
418 } else {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300419 while(!done) sleep(1);
Liming Wang60666c62009-12-31 16:05:50 +0800420 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200421
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200422 t1 = rdclock();
423
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200424 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200425
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200426 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200427 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200428 read_counter(counter);
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200429 perf_evsel__close_fd(counter, evsel_list->cpus->nr, 1);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200430 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200431 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200432 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200433 read_counter_aggr(counter);
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200434 perf_evsel__close_fd(counter, evsel_list->cpus->nr,
435 evsel_list->threads->nr);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200436 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200437 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200438
Ingo Molnar42202dd2009-06-13 14:57:28 +0200439 return WEXITSTATUS(status);
440}
441
Ingo Molnarf99844c2011-04-27 05:35:39 +0200442static void print_noise_pct(double total, double avg)
443{
444 double pct = 0.0;
445
446 if (avg)
447 pct = 100.0*total/avg;
448
449 fprintf(stderr, " ( +-%6.2f%% )", pct);
450}
451
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200452static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200453{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200454 struct perf_stat *ps;
455
Peter Zijlstra849abde2009-09-04 18:23:38 +0200456 if (run_count == 1)
457 return;
458
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200459 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200460 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200461}
462
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200463static void nsec_printout(int cpu, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200464{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200465 double msecs = avg / 1e6;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200466 char cpustr[16] = { '\0', };
467 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-24s";
Ingo Molnar42202dd2009-06-13 14:57:28 +0200468
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200469 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200470 sprintf(cpustr, "CPU%*d%s",
471 csv_output ? 0 : -4,
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200472 evsel_list->cpus->map[cpu], csv_sep);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200473
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200474 fprintf(stderr, fmt, cpustr, msecs, csv_sep, event_name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200475
Stephane Eranian023695d2011-02-14 11:20:01 +0200476 if (evsel->cgrp)
477 fprintf(stderr, "%s%s", csv_sep, evsel->cgrp->name);
478
Stephane Eraniand7470b62010-12-01 18:49:05 +0200479 if (csv_output)
480 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200481
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200482 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnar481f9882011-04-27 04:34:16 +0200483 fprintf(stderr, " # %8.3f CPUs utilized ", avg / avg_stats(&walltime_nsecs_stats));
Ingo Molnar42202dd2009-06-13 14:57:28 +0200484}
485
Ingo Molnard3d1e862011-04-29 13:49:08 +0200486static void print_stalled_cycles_frontend(int cpu, struct perf_evsel *evsel __used, double avg)
487{
488 double total, ratio = 0.0;
489 const char *color;
490
491 total = avg_stats(&runtime_cycles_stats[cpu]);
492
493 if (total)
494 ratio = avg / total * 100.0;
495
496 color = PERF_COLOR_NORMAL;
Ingo Molnar2b427e12011-04-29 14:16:18 +0200497 if (ratio > 50.0)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200498 color = PERF_COLOR_RED;
Ingo Molnar2b427e12011-04-29 14:16:18 +0200499 else if (ratio > 30.0)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200500 color = PERF_COLOR_MAGENTA;
Ingo Molnar2b427e12011-04-29 14:16:18 +0200501 else if (ratio > 10.0)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200502 color = PERF_COLOR_YELLOW;
503
Ingo Molnarfce3c782011-04-30 09:03:15 +0200504 fprintf(stderr, " # ");
505 color_fprintf(stderr, color, "%6.2f%%", ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200506 fprintf(stderr, " frontend cycles idle ");
507}
508
509static void print_stalled_cycles_backend(int cpu, struct perf_evsel *evsel __used, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200510{
511 double total, ratio = 0.0;
512 const char *color;
513
514 total = avg_stats(&runtime_cycles_stats[cpu]);
515
516 if (total)
517 ratio = avg / total * 100.0;
518
519 color = PERF_COLOR_NORMAL;
520 if (ratio > 75.0)
521 color = PERF_COLOR_RED;
522 else if (ratio > 50.0)
523 color = PERF_COLOR_MAGENTA;
Ingo Molnar2b427e12011-04-29 14:16:18 +0200524 else if (ratio > 20.0)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200525 color = PERF_COLOR_YELLOW;
526
Ingo Molnarfce3c782011-04-30 09:03:15 +0200527 fprintf(stderr, " # ");
528 color_fprintf(stderr, color, "%6.2f%%", ratio);
529 fprintf(stderr, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200530}
531
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200532static void print_branch_misses(int cpu, struct perf_evsel *evsel __used, double avg)
533{
534 double total, ratio = 0.0;
535 const char *color;
536
537 total = avg_stats(&runtime_branches_stats[cpu]);
538
539 if (total)
540 ratio = avg / total * 100.0;
541
542 color = PERF_COLOR_NORMAL;
543 if (ratio > 20.0)
544 color = PERF_COLOR_RED;
545 else if (ratio > 10.0)
546 color = PERF_COLOR_MAGENTA;
547 else if (ratio > 5.0)
548 color = PERF_COLOR_YELLOW;
549
Ingo Molnarfce3c782011-04-30 09:03:15 +0200550 fprintf(stderr, " # ");
551 color_fprintf(stderr, color, "%6.2f%%", ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200552 fprintf(stderr, " of all branches ");
553}
554
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200555static void print_l1_dcache_misses(int cpu, struct perf_evsel *evsel __used, double avg)
556{
557 double total, ratio = 0.0;
558 const char *color;
559
560 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
561
562 if (total)
563 ratio = avg / total * 100.0;
564
565 color = PERF_COLOR_NORMAL;
566 if (ratio > 20.0)
567 color = PERF_COLOR_RED;
568 else if (ratio > 10.0)
569 color = PERF_COLOR_MAGENTA;
570 else if (ratio > 5.0)
571 color = PERF_COLOR_YELLOW;
572
Ingo Molnarfce3c782011-04-30 09:03:15 +0200573 fprintf(stderr, " # ");
574 color_fprintf(stderr, color, "%6.2f%%", ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200575 fprintf(stderr, " of all L1-dcache hits ");
576}
577
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200578static void abs_printout(int cpu, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200579{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200580 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200581 char cpustr[16] = { '\0', };
Stephane Eraniand7470b62010-12-01 18:49:05 +0200582 const char *fmt;
583
584 if (csv_output)
585 fmt = "%s%.0f%s%s";
586 else if (big_num)
587 fmt = "%s%'18.0f%s%-24s";
588 else
589 fmt = "%s%18.0f%s%-24s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200590
591 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200592 sprintf(cpustr, "CPU%*d%s",
593 csv_output ? 0 : -4,
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200594 evsel_list->cpus->map[cpu], csv_sep);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200595 else
596 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200597
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200598 fprintf(stderr, fmt, cpustr, avg, csv_sep, event_name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200599
Stephane Eranian023695d2011-02-14 11:20:01 +0200600 if (evsel->cgrp)
601 fprintf(stderr, "%s%s", csv_sep, evsel->cgrp->name);
602
Stephane Eraniand7470b62010-12-01 18:49:05 +0200603 if (csv_output)
604 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200605
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200606 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200607 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200608
609 if (total)
610 ratio = avg / total;
611
Ingo Molnarfce3c782011-04-30 09:03:15 +0200612 fprintf(stderr, " # %5.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200613
Ingo Molnard3d1e862011-04-29 13:49:08 +0200614 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
615 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200616
617 if (total && avg) {
618 ratio = total / avg;
Ingo Molnarfce3c782011-04-30 09:03:15 +0200619 fprintf(stderr, "\n # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200620 }
621
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200622 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200623 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200624 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200625 } else if (
626 evsel->attr.type == PERF_TYPE_HW_CACHE &&
627 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
628 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
629 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200630 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200631 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200632 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
633 runtime_cacherefs_stats[cpu].n != 0) {
634 total = avg_stats(&runtime_cacherefs_stats[cpu]);
635
636 if (total)
637 ratio = avg * 100 / total;
638
Ingo Molnar481f9882011-04-27 04:34:16 +0200639 fprintf(stderr, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200640
Ingo Molnard3d1e862011-04-29 13:49:08 +0200641 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
642 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200643 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200644 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200645 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
646 total = avg_stats(&runtime_nsecs_stats[cpu]);
647
648 if (total)
649 ratio = 1.0 * avg / total;
650
651 fprintf(stderr, " # %8.3f GHz ", ratio);
652 } else if (runtime_nsecs_stats[cpu].n != 0) {
653 total = avg_stats(&runtime_nsecs_stats[cpu]);
654
655 if (total)
656 ratio = 1000.0 * avg / total;
657
658 fprintf(stderr, " # %8.3f M/sec ", ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200659 } else {
660 fprintf(stderr, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200661 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200662}
663
664/*
665 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200666 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200667 */
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200668static void print_counter_aggr(struct perf_evsel *counter)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200669{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200670 struct perf_stat *ps = counter->priv;
671 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200672 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200673
Ingo Molnar42202dd2009-06-13 14:57:28 +0200674 if (scaled == -1) {
Stephane Eranian023695d2011-02-14 11:20:01 +0200675 fprintf(stderr, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200676 csv_output ? 0 : 18,
Stephane Eranian023695d2011-02-14 11:20:01 +0200677 "<not counted>",
678 csv_sep,
679 csv_output ? 0 : -24,
680 event_name(counter));
681
682 if (counter->cgrp)
683 fprintf(stderr, "%s%s", csv_sep, counter->cgrp->name);
684
685 fputc('\n', stderr);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200686 return;
687 }
688
689 if (nsec_counter(counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200690 nsec_printout(-1, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200691 else
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200692 abs_printout(-1, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200693
Stephane Eraniand7470b62010-12-01 18:49:05 +0200694 if (csv_output) {
695 fputc('\n', stderr);
696 return;
697 }
698
Peter Zijlstra849abde2009-09-04 18:23:38 +0200699 print_noise(counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200700
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200701 if (scaled) {
702 double avg_enabled, avg_running;
703
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200704 avg_enabled = avg_stats(&ps->res_stats[1]);
705 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200706
Ingo Molnarc6264de2011-04-27 13:50:47 +0200707 fprintf(stderr, " (%.2f%%)", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200708 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200709 fprintf(stderr, "\n");
710}
711
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200712/*
713 * Print out the results of a single counter:
714 * does not use aggregated count in system-wide
715 */
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200716static void print_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200717{
718 u64 ena, run, val;
719 int cpu;
720
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200721 for (cpu = 0; cpu < evsel_list->cpus->nr; cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200722 val = counter->counts->cpu[cpu].val;
723 ena = counter->counts->cpu[cpu].ena;
724 run = counter->counts->cpu[cpu].run;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200725 if (run == 0 || ena == 0) {
Stephane Eranian023695d2011-02-14 11:20:01 +0200726 fprintf(stderr, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200727 csv_output ? 0 : -4,
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200728 evsel_list->cpus->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200729 csv_output ? 0 : 18,
730 "<not counted>", csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +0200731 csv_output ? 0 : -24,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200732 event_name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200733
Stephane Eranian023695d2011-02-14 11:20:01 +0200734 if (counter->cgrp)
735 fprintf(stderr, "%s%s", csv_sep, counter->cgrp->name);
736
737 fputc('\n', stderr);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200738 continue;
739 }
740
741 if (nsec_counter(counter))
742 nsec_printout(cpu, counter, val);
743 else
744 abs_printout(cpu, counter, val);
745
Stephane Eraniand7470b62010-12-01 18:49:05 +0200746 if (!csv_output) {
747 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200748
Ingo Molnarc6264de2011-04-27 13:50:47 +0200749 if (run != ena)
750 fprintf(stderr, " (%.2f%%)", 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200751 }
Stephane Eranian023695d2011-02-14 11:20:01 +0200752 fputc('\n', stderr);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200753 }
754}
755
Ingo Molnar42202dd2009-06-13 14:57:28 +0200756static void print_stat(int argc, const char **argv)
757{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200758 struct perf_evsel *counter;
759 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200760
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200761 fflush(stdout);
762
Stephane Eraniand7470b62010-12-01 18:49:05 +0200763 if (!csv_output) {
764 fprintf(stderr, "\n");
765 fprintf(stderr, " Performance counter stats for ");
766 if(target_pid == -1 && target_tid == -1) {
767 fprintf(stderr, "\'%s", argv[0]);
768 for (i = 1; i < argc; i++)
769 fprintf(stderr, " %s", argv[i]);
770 } else if (target_pid != -1)
771 fprintf(stderr, "process id \'%d", target_pid);
772 else
773 fprintf(stderr, "thread id \'%d", target_tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200774
Stephane Eraniand7470b62010-12-01 18:49:05 +0200775 fprintf(stderr, "\'");
776 if (run_count > 1)
777 fprintf(stderr, " (%d runs)", run_count);
778 fprintf(stderr, ":\n\n");
779 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200780
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200781 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200782 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200783 print_counter(counter);
784 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200785 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200786 print_counter_aggr(counter);
787 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200788
Stephane Eraniand7470b62010-12-01 18:49:05 +0200789 if (!csv_output) {
790 fprintf(stderr, "\n");
791 fprintf(stderr, " %18.9f seconds time elapsed",
792 avg_stats(&walltime_nsecs_stats)/1e9);
793 if (run_count > 1) {
Ingo Molnarf99844c2011-04-27 05:35:39 +0200794 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
795 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200796 }
797 fprintf(stderr, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200798 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200799}
800
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200801static volatile int signr = -1;
802
Ingo Molnar52425192009-05-26 09:17:18 +0200803static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200804{
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300805 if(child_pid == -1)
Liming Wang60666c62009-12-31 16:05:50 +0800806 done = 1;
807
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200808 signr = signo;
809}
810
811static void sig_atexit(void)
812{
Chris Wilson933da832009-10-04 01:35:01 +0100813 if (child_pid != -1)
814 kill(child_pid, SIGTERM);
815
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200816 if (signr == -1)
817 return;
818
819 signal(signr, SIG_DFL);
820 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200821}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200822
Ingo Molnar52425192009-05-26 09:17:18 +0200823static const char * const stat_usage[] = {
Liming Wang60666c62009-12-31 16:05:50 +0800824 "perf stat [<options>] [<command>]",
Ingo Molnar52425192009-05-26 09:17:18 +0200825 NULL
826};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200827
Stephane Eraniand7470b62010-12-01 18:49:05 +0200828static int stat__set_big_num(const struct option *opt __used,
829 const char *s __used, int unset)
830{
831 big_num_opt = unset ? 0 : 1;
832 return 0;
833}
834
Ingo Molnar52425192009-05-26 09:17:18 +0200835static const struct option options[] = {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200836 OPT_CALLBACK('e', "event", &evsel_list, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200837 "event selector. use 'perf list' to list available events",
838 parse_events),
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100839 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
840 "event filter", parse_filter),
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200841 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
842 "child tasks do not inherit counters"),
Ingo Molnar52425192009-05-26 09:17:18 +0200843 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300844 "stat events on existing process id"),
845 OPT_INTEGER('t', "tid", &target_tid,
846 "stat events on existing thread id"),
Ingo Molnar52425192009-05-26 09:17:18 +0200847 OPT_BOOLEAN('a', "all-cpus", &system_wide,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530848 "system-wide collection from all CPUs"),
Brice Goglinb26bc5a2009-08-07 10:18:39 +0200849 OPT_BOOLEAN('c', "scale", &scale,
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530850 "scale/normalize counters"),
Ian Munsiec0555642010-04-13 18:37:33 +1000851 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar743ee1f2009-06-07 17:06:46 +0200852 "be more verbose (show counter open errors, etc)"),
Ingo Molnar42202dd2009-06-13 14:57:28 +0200853 OPT_INTEGER('r', "repeat", &run_count,
854 "repeat command and print average + stddev (max: 100)"),
Ingo Molnar0cfb7a12009-06-27 06:10:30 +0200855 OPT_BOOLEAN('n', "null", &null_run,
856 "null run - dont start any counters"),
Ingo Molnarc6264de2011-04-27 13:50:47 +0200857 OPT_BOOLEAN('d', "detailed", &detailed_run,
858 "detailed run - start a lot of events"),
Ingo Molnarf9cef0a2011-04-28 18:17:11 +0200859 OPT_BOOLEAN('S', "sync", &sync_run,
860 "call sync() before starting a run"),
Stephane Eraniand7470b62010-12-01 18:49:05 +0200861 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
862 "print large numbers with thousands\' separators",
863 stat__set_big_num),
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200864 OPT_STRING('C', "cpu", &cpu_list, "cpu",
865 "list of cpus to monitor in system-wide"),
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200866 OPT_BOOLEAN('A', "no-aggr", &no_aggr,
867 "disable CPU count aggregation"),
Stephane Eraniand7470b62010-12-01 18:49:05 +0200868 OPT_STRING('x', "field-separator", &csv_sep, "separator",
869 "print counts with custom separator"),
Stephane Eranian023695d2011-02-14 11:20:01 +0200870 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
871 "monitor event in cgroup name only",
872 parse_cgroups),
Ingo Molnar52425192009-05-26 09:17:18 +0200873 OPT_END()
874};
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200875
Ingo Molnarf37a2912009-07-01 12:37:06 +0200876int cmd_stat(int argc, const char **argv, const char *prefix __used)
Ingo Molnar52425192009-05-26 09:17:18 +0200877{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200878 struct perf_evsel *pos;
879 int status = -ENOMEM;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200880
Stephane Eranian5af52b52010-05-18 15:00:01 +0200881 setlocale(LC_ALL, "");
882
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200883 evsel_list = perf_evlist__new(NULL, NULL);
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200884 if (evsel_list == NULL)
885 return -ENOMEM;
886
Anton Blancharda0541232009-07-22 23:04:12 +1000887 argc = parse_options(argc, argv, options, stat_usage,
888 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200889
890 if (csv_sep)
891 csv_output = true;
892 else
893 csv_sep = DEFAULT_SEPARATOR;
894
895 /*
896 * let the spreadsheet do the pretty-printing
897 */
898 if (csv_output) {
899 /* User explicitely passed -B? */
900 if (big_num_opt == 1) {
901 fprintf(stderr, "-B option not supported with -x\n");
902 usage_with_options(stat_usage, options);
903 } else /* Nope, so disable big number formatting */
904 big_num = false;
905 } else if (big_num_opt == 0) /* User passed --no-big-num */
906 big_num = false;
907
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300908 if (!argc && target_pid == -1 && target_tid == -1)
Ingo Molnar52425192009-05-26 09:17:18 +0200909 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200910 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200911 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200912
Stephane Eranian023695d2011-02-14 11:20:01 +0200913 /* no_aggr, cgroup are for system-wide only */
914 if ((no_aggr || nr_cgroups) && !system_wide) {
915 fprintf(stderr, "both cgroup and no-aggregation "
916 "modes only available in system-wide mode\n");
917
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200918 usage_with_options(stat_usage, options);
Stephane Eranian023695d2011-02-14 11:20:01 +0200919 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200920
Jaswinder Singh Rajputc3043562009-06-27 23:49:09 +0530921 /* Set attrs and nr_counters if no event is selected and !null_run */
Ingo Molnarc6264de2011-04-27 13:50:47 +0200922 if (detailed_run) {
923 size_t c;
924
925 for (c = 0; c < ARRAY_SIZE(detailed_attrs); ++c) {
926 pos = perf_evsel__new(&detailed_attrs[c], c);
927 if (pos == NULL)
928 goto out;
929 perf_evlist__add(evsel_list, pos);
930 }
931 }
932 /* Set attrs and nr_counters if no event is selected and !null_run */
933 if (!detailed_run && !null_run && !evsel_list->nr_entries) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200934 size_t c;
935
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200936 for (c = 0; c < ARRAY_SIZE(default_attrs); ++c) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200937 pos = perf_evsel__new(&default_attrs[c], c);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200938 if (pos == NULL)
939 goto out;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200940 perf_evlist__add(evsel_list, pos);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200941 }
Jaswinder Singh Rajputc3043562009-06-27 23:49:09 +0530942 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200943
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -0200944 if (target_pid != -1)
945 target_tid = target_pid;
946
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200947 evsel_list->threads = thread_map__new(target_pid, target_tid);
948 if (evsel_list->threads == NULL) {
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -0200949 pr_err("Problems finding threads of monitor\n");
950 usage_with_options(stat_usage, options);
951 }
952
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100953 if (system_wide)
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200954 evsel_list->cpus = cpu_map__new(cpu_list);
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100955 else
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200956 evsel_list->cpus = cpu_map__dummy_new();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200957
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200958 if (evsel_list->cpus == NULL) {
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200959 perror("failed to parse CPUs map");
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200960 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -0200961 return -1;
962 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200963
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200964 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200965 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200966 perf_evsel__alloc_counts(pos, evsel_list->cpus->nr) < 0 ||
967 perf_evsel__alloc_fd(pos, evsel_list->cpus->nr, evsel_list->threads->nr) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200968 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300969 }
970
Ingo Molnar58d7e992009-05-15 11:03:23 +0200971 /*
972 * We dont want to block the signals - that would cause
973 * child tasks to inherit that and Ctrl-C would not work.
974 * What we want is for Ctrl-C to work in the exec()-ed
975 * task, but being ignored by perf stat itself:
976 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200977 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +0200978 signal(SIGINT, skip_signal);
979 signal(SIGALRM, skip_signal);
980 signal(SIGABRT, skip_signal);
981
Ingo Molnar42202dd2009-06-13 14:57:28 +0200982 status = 0;
983 for (run_idx = 0; run_idx < run_count; run_idx++) {
984 if (run_count != 1 && verbose)
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530985 fprintf(stderr, "[ perf stat: executing run #%d ... ]\n", run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +0200986
987 if (sync_run)
988 sync();
989
Ingo Molnar42202dd2009-06-13 14:57:28 +0200990 status = run_perf_stat(argc, argv);
991 }
992
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300993 if (status != -1)
994 print_stat(argc, argv);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200995out_free_fd:
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200996 list_for_each_entry(pos, &evsel_list->entries, node)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200997 perf_evsel__free_stat_priv(pos);
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200998 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -0200999out:
1000 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001001 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001002}