blob: 6888960ef8b81183d8d6cf36649b578b47c3dd4f [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02009 $ perf stat ./hackbench 10
Ingo Molnarddcacfa2009-04-20 15:37:32 +020010
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020011 Time: 0.118
Ingo Molnarddcacfa2009-04-20 15:37:32 +020012
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020013 Performance counter stats for './hackbench 10':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020014
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020015 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
26
27 0.154822978 seconds time elapsed
Ingo Molnarddcacfa2009-04-20 15:37:32 +020028
Ingo Molnar52425192009-05-26 09:17:18 +020029 *
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020030 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
Ingo Molnar52425192009-05-26 09:17:18 +020031 *
32 * Improvements and fixes by:
33 *
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053039 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020040 *
41 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020042 */
43
Peter Zijlstra1a482f32009-05-23 18:28:58 +020044#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020045#include "builtin.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020046#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020047#include "util/parse-options.h"
48#include "util/parse-events.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020049#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020050#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020051#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020052#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020053#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080054#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080055#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110056#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030057#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020058#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020059
Peter Zijlstra1f16c572012-10-23 13:40:14 +020060#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020061#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020062#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020063
Stephane Eraniand7470b62010-12-01 18:49:05 +020064#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060065#define CNTR_NOT_SUPPORTED "<not supported>"
66#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020067
Robert Richter666e6d42012-04-05 18:26:27 +020068static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020069
Namhyung Kim77a6f012012-05-07 14:09:04 +090070static struct perf_target target = {
71 .uid = UINT_MAX,
72};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053073
74static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020075static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +100076static bool scale = true;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +020077static bool no_aggr = false;
Chris Wilson933da832009-10-04 01:35:01 +010078static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100079static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020080static int detailed_run = 0;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -020081static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +020082static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +020083static const char *csv_sep = NULL;
84static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +080085static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +020086static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +020087static const char *pre_cmd = NULL;
88static const char *post_cmd = NULL;
89static bool sync_run = false;
Stephane Eranian5af52b52010-05-18 15:00:01 +020090
Liming Wang60666c62009-12-31 16:05:50 +080091static volatile int done = 0;
92
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020093struct perf_stat {
94 struct stats res_stats[3];
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020095};
96
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -020097static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020098{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -020099 evsel->priv = zalloc(sizeof(struct perf_stat));
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200100 return evsel->priv == NULL ? -ENOMEM : 0;
101}
102
103static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
104{
105 free(evsel->priv);
106 evsel->priv = NULL;
107}
108
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800109static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
110{
111 return (evsel->cpus && !target.cpu_list) ? evsel->cpus : evsel_list->cpus;
112}
113
114static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
115{
116 return perf_evsel__cpus(evsel)->nr;
117}
118
Robert Richter666e6d42012-04-05 18:26:27 +0200119static struct stats runtime_nsecs_stats[MAX_NR_CPUS];
120static struct stats runtime_cycles_stats[MAX_NR_CPUS];
121static struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
122static struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
123static struct stats runtime_branches_stats[MAX_NR_CPUS];
124static struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
125static struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
126static struct stats runtime_l1_icache_stats[MAX_NR_CPUS];
127static struct stats runtime_ll_cache_stats[MAX_NR_CPUS];
128static struct stats runtime_itlb_cache_stats[MAX_NR_CPUS];
129static struct stats runtime_dtlb_cache_stats[MAX_NR_CPUS];
130static struct stats walltime_nsecs_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200131
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200132static int create_perf_stat_counter(struct perf_evsel *evsel,
133 struct perf_evsel *first)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200134{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200135 struct perf_event_attr *attr = &evsel->attr;
Stephane Eranian5622c072012-04-27 14:45:38 +0200136 bool exclude_guest_missing = false;
137 int ret;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200138
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200139 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200140 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
141 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200142
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200143 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300144
Stephane Eranian5622c072012-04-27 14:45:38 +0200145retry:
146 if (exclude_guest_missing)
147 evsel->attr.exclude_guest = evsel->attr.exclude_host = 0;
148
Arnaldo Carvalho de Melo16ee6572012-05-18 13:13:33 -0300149 if (perf_target__has_cpu(&target)) {
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800150 ret = perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200151 if (ret)
152 goto check_ret;
153 return 0;
154 }
155
Namhyung Kimaa22dd42012-05-16 18:45:47 +0900156 if (!perf_target__has_task(&target) && (!group || evsel == first)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200157 attr->disabled = 1;
158 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200159 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300160
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200161 ret = perf_evsel__open_per_thread(evsel, evsel_list->threads);
Stephane Eranian5622c072012-04-27 14:45:38 +0200162 if (!ret)
163 return 0;
164 /* fall through */
165check_ret:
166 if (ret && errno == EINVAL) {
167 if (!exclude_guest_missing &&
168 (evsel->attr.exclude_guest || evsel->attr.exclude_host)) {
169 pr_debug("Old kernel, cannot exclude "
170 "guest or host samples.\n");
171 exclude_guest_missing = true;
172 goto retry;
173 }
174 }
175 return ret;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200176}
177
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200178/*
179 * Does the counter have nsecs as a unit?
180 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200181static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200182{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200183 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
184 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200185 return 1;
186
187 return 0;
188}
189
190/*
Ingo Molnardcd99362011-04-27 04:36:37 +0200191 * Update various tracking values we maintain to print
192 * more semantic information such as miss/hit ratios,
193 * instruction rates, etc:
194 */
195static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
196{
197 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
198 update_stats(&runtime_nsecs_stats[0], count[0]);
199 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
200 update_stats(&runtime_cycles_stats[0], count[0]);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200201 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
202 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200203 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
Ingo Molnard3d1e862011-04-29 13:49:08 +0200204 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200205 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
206 update_stats(&runtime_branches_stats[0], count[0]);
207 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
208 update_stats(&runtime_cacherefs_stats[0], count[0]);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200209 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
210 update_stats(&runtime_l1_dcache_stats[0], count[0]);
Ingo Molnarc33052572011-05-19 14:01:42 +0200211 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1I))
212 update_stats(&runtime_l1_icache_stats[0], count[0]);
213 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_LL))
214 update_stats(&runtime_ll_cache_stats[0], count[0]);
215 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_DTLB))
216 update_stats(&runtime_dtlb_cache_stats[0], count[0]);
217 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_ITLB))
218 update_stats(&runtime_itlb_cache_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200219}
220
221/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200222 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200223 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200224 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200225static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200226{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200227 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200228 u64 *count = counter->counts->aggr.values;
229 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200230
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800231 if (__perf_evsel__read(counter, perf_evsel__nr_cpus(counter),
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200232 evsel_list->threads->nr, scale) < 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200233 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200234
235 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200236 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200237
238 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200239 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300240 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200241 }
242
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200243 /*
244 * Save the full runtime - to allow normalization during printout:
245 */
Ingo Molnardcd99362011-04-27 04:36:37 +0200246 update_shadow_stats(counter, count);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200247
248 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200249}
250
251/*
252 * Read out the results of a single counter:
253 * do not aggregate counts across CPUs in system-wide mode
254 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200255static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200256{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200257 u64 *count;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200258 int cpu;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200259
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800260 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200261 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
262 return -1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200263
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200264 count = counter->counts->cpu[cpu].values;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200265
Ingo Molnardcd99362011-04-27 04:36:37 +0200266 update_shadow_stats(counter, count);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200267 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200268
269 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200270}
271
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200272static int __run_perf_stat(int argc __maybe_unused, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200273{
274 unsigned long long t0, t1;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200275 struct perf_evsel *counter, *first;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200276 int status = 0;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000277 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300278 const bool forks = (argc > 0);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000279 char buf;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200280
Liming Wang60666c62009-12-31 16:05:50 +0800281 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000282 perror("failed to create pipes");
David Ahernfceda7f2012-08-26 12:24:44 -0600283 return -1;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000284 }
285
Liming Wang60666c62009-12-31 16:05:50 +0800286 if (forks) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300287 if ((child_pid = fork()) < 0)
Liming Wang60666c62009-12-31 16:05:50 +0800288 perror("failed to fork");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000289
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300290 if (!child_pid) {
Liming Wang60666c62009-12-31 16:05:50 +0800291 close(child_ready_pipe[0]);
292 close(go_pipe[1]);
293 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
294
295 /*
296 * Do a dummy execvp to get the PLT entry resolved,
297 * so we avoid the resolver overhead on the real
298 * execvp call.
299 */
300 execvp("", (char **)argv);
301
302 /*
303 * Tell the parent we're ready to go
304 */
305 close(child_ready_pipe[1]);
306
307 /*
308 * Wait until the parent tells us to go.
309 */
310 if (read(go_pipe[0], &buf, 1) == -1)
311 perror("unable to read pipe");
312
313 execvp(argv[0], (char **)argv);
314
315 perror(argv[0]);
316 exit(-1);
317 }
318
Namhyung Kimd67356e2012-05-07 14:09:03 +0900319 if (perf_target__none(&target))
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200320 evsel_list->threads->map[0] = child_pid;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300321
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000322 /*
Liming Wang60666c62009-12-31 16:05:50 +0800323 * Wait for the child to be ready to exec.
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000324 */
325 close(child_ready_pipe[1]);
Liming Wang60666c62009-12-31 16:05:50 +0800326 close(go_pipe[0]);
327 if (read(child_ready_pipe[0], &buf, 1) == -1)
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200328 perror("unable to read pipe");
Liming Wang60666c62009-12-31 16:05:50 +0800329 close(child_ready_pipe[0]);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000330 }
331
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200332 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300333 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200334
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300335 first = perf_evlist__first(evsel_list);
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200336
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200337 list_for_each_entry(counter, &evsel_list->entries, node) {
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200338 if (create_perf_stat_counter(counter, first) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600339 /*
340 * PPC returns ENXIO for HW counters until 2.6.37
341 * (behavior changed with commit b0a873e).
342 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100343 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600344 errno == ENOENT || errno == EOPNOTSUPP ||
345 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600346 if (verbose)
347 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300348 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600349 counter->supported = false;
Ingo Molnarede70292011-04-28 08:48:42 +0200350 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600351 }
Ingo Molnarede70292011-04-28 08:48:42 +0200352
353 if (errno == EPERM || errno == EACCES) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200354 error("You may not have permission to collect %sstats.\n"
355 "\t Consider tweaking"
356 " /proc/sys/kernel/perf_event_paranoid or running as root.",
Namhyung Kim20f946b2012-04-26 14:15:16 +0900357 target.system_wide ? "system-wide " : "");
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200358 } else {
359 error("open_counter returned with %d (%s). "
360 "/bin/dmesg may provide additional information.\n",
361 errno, strerror(errno));
362 }
363 if (child_pid != -1)
364 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600365
366 pr_err("Not all events could be opened.\n");
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200367 return -1;
368 }
David Ahern2cee77c2011-05-30 08:55:59 -0600369 counter->supported = true;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300370 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200371
Arnaldo Carvalho de Melo1491a632012-09-26 14:43:13 -0300372 if (perf_evlist__apply_filters(evsel_list)) {
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100373 error("failed to set filter with %d (%s)\n", errno,
374 strerror(errno));
375 return -1;
376 }
377
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200378 /*
379 * Enable counters and exec the command:
380 */
381 t0 = rdclock();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200382
Liming Wang60666c62009-12-31 16:05:50 +0800383 if (forks) {
384 close(go_pipe[1]);
385 wait(&status);
Andi Kleen33e49ea2011-09-15 14:31:40 -0700386 if (WIFSIGNALED(status))
387 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800388 } else {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300389 while(!done) sleep(1);
Liming Wang60666c62009-12-31 16:05:50 +0800390 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200391
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200392 t1 = rdclock();
393
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200394 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200395
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200396 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200397 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200398 read_counter(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800399 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200400 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200401 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200402 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200403 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800404 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200405 evsel_list->threads->nr);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200406 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200407 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200408
Ingo Molnar42202dd2009-06-13 14:57:28 +0200409 return WEXITSTATUS(status);
410}
411
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200412static int run_perf_stat(int argc __maybe_unused, const char **argv)
413{
414 int ret;
415
416 if (pre_cmd) {
417 ret = system(pre_cmd);
418 if (ret)
419 return ret;
420 }
421
422 if (sync_run)
423 sync();
424
425 ret = __run_perf_stat(argc, argv);
426 if (ret)
427 return ret;
428
429 if (post_cmd) {
430 ret = system(post_cmd);
431 if (ret)
432 return ret;
433 }
434
435 return ret;
436}
437
Ingo Molnarf99844c2011-04-27 05:35:39 +0200438static void print_noise_pct(double total, double avg)
439{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800440 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200441
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700442 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200443 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600444 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200445 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200446}
447
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200448static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200449{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200450 struct perf_stat *ps;
451
Peter Zijlstra849abde2009-09-04 18:23:38 +0200452 if (run_count == 1)
453 return;
454
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200455 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200456 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200457}
458
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200459static void nsec_printout(int cpu, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200460{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200461 double msecs = avg / 1e6;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200462 char cpustr[16] = { '\0', };
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200463 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-25s";
Ingo Molnar42202dd2009-06-13 14:57:28 +0200464
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200465 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200466 sprintf(cpustr, "CPU%*d%s",
467 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800468 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200469
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300470 fprintf(output, fmt, cpustr, msecs, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200471
Stephane Eranian023695d2011-02-14 11:20:01 +0200472 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200473 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200474
Stephane Eraniand7470b62010-12-01 18:49:05 +0200475 if (csv_output)
476 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200477
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200478 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200479 fprintf(output, " # %8.3f CPUs utilized ",
480 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900481 else
482 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200483}
484
Namhyung Kim15e63922011-12-28 00:35:49 +0900485/* used for get_ratio_color() */
486enum grc_type {
487 GRC_STALLED_CYCLES_FE,
488 GRC_STALLED_CYCLES_BE,
489 GRC_CACHE_MISSES,
490 GRC_MAX_NR
491};
492
493static const char *get_ratio_color(enum grc_type type, double ratio)
494{
495 static const double grc_table[GRC_MAX_NR][3] = {
496 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
497 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
498 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
499 };
500 const char *color = PERF_COLOR_NORMAL;
501
502 if (ratio > grc_table[type][0])
503 color = PERF_COLOR_RED;
504 else if (ratio > grc_table[type][1])
505 color = PERF_COLOR_MAGENTA;
506 else if (ratio > grc_table[type][2])
507 color = PERF_COLOR_YELLOW;
508
509 return color;
510}
511
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300512static void print_stalled_cycles_frontend(int cpu,
513 struct perf_evsel *evsel
514 __maybe_unused, double avg)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200515{
516 double total, ratio = 0.0;
517 const char *color;
518
519 total = avg_stats(&runtime_cycles_stats[cpu]);
520
521 if (total)
522 ratio = avg / total * 100.0;
523
Namhyung Kim15e63922011-12-28 00:35:49 +0900524 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200525
Stephane Eranian4aa90152011-08-15 22:22:33 +0200526 fprintf(output, " # ");
527 color_fprintf(output, color, "%6.2f%%", ratio);
528 fprintf(output, " frontend cycles idle ");
Ingo Molnard3d1e862011-04-29 13:49:08 +0200529}
530
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300531static void print_stalled_cycles_backend(int cpu,
532 struct perf_evsel *evsel
533 __maybe_unused, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200534{
535 double total, ratio = 0.0;
536 const char *color;
537
538 total = avg_stats(&runtime_cycles_stats[cpu]);
539
540 if (total)
541 ratio = avg / total * 100.0;
542
Namhyung Kim15e63922011-12-28 00:35:49 +0900543 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200544
Stephane Eranian4aa90152011-08-15 22:22:33 +0200545 fprintf(output, " # ");
546 color_fprintf(output, color, "%6.2f%%", ratio);
547 fprintf(output, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200548}
549
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300550static void print_branch_misses(int cpu,
551 struct perf_evsel *evsel __maybe_unused,
552 double avg)
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200553{
554 double total, ratio = 0.0;
555 const char *color;
556
557 total = avg_stats(&runtime_branches_stats[cpu]);
558
559 if (total)
560 ratio = avg / total * 100.0;
561
Namhyung Kim15e63922011-12-28 00:35:49 +0900562 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200563
Stephane Eranian4aa90152011-08-15 22:22:33 +0200564 fprintf(output, " # ");
565 color_fprintf(output, color, "%6.2f%%", ratio);
566 fprintf(output, " of all branches ");
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200567}
568
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300569static void print_l1_dcache_misses(int cpu,
570 struct perf_evsel *evsel __maybe_unused,
571 double avg)
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200572{
573 double total, ratio = 0.0;
574 const char *color;
575
576 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
577
578 if (total)
579 ratio = avg / total * 100.0;
580
Namhyung Kim15e63922011-12-28 00:35:49 +0900581 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200582
Stephane Eranian4aa90152011-08-15 22:22:33 +0200583 fprintf(output, " # ");
584 color_fprintf(output, color, "%6.2f%%", ratio);
585 fprintf(output, " of all L1-dcache hits ");
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200586}
587
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300588static void print_l1_icache_misses(int cpu,
589 struct perf_evsel *evsel __maybe_unused,
590 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200591{
592 double total, ratio = 0.0;
593 const char *color;
594
595 total = avg_stats(&runtime_l1_icache_stats[cpu]);
596
597 if (total)
598 ratio = avg / total * 100.0;
599
Namhyung Kim15e63922011-12-28 00:35:49 +0900600 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200601
Stephane Eranian4aa90152011-08-15 22:22:33 +0200602 fprintf(output, " # ");
603 color_fprintf(output, color, "%6.2f%%", ratio);
604 fprintf(output, " of all L1-icache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200605}
606
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300607static void print_dtlb_cache_misses(int cpu,
608 struct perf_evsel *evsel __maybe_unused,
609 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200610{
611 double total, ratio = 0.0;
612 const char *color;
613
614 total = avg_stats(&runtime_dtlb_cache_stats[cpu]);
615
616 if (total)
617 ratio = avg / total * 100.0;
618
Namhyung Kim15e63922011-12-28 00:35:49 +0900619 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200620
Stephane Eranian4aa90152011-08-15 22:22:33 +0200621 fprintf(output, " # ");
622 color_fprintf(output, color, "%6.2f%%", ratio);
623 fprintf(output, " of all dTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200624}
625
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300626static void print_itlb_cache_misses(int cpu,
627 struct perf_evsel *evsel __maybe_unused,
628 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200629{
630 double total, ratio = 0.0;
631 const char *color;
632
633 total = avg_stats(&runtime_itlb_cache_stats[cpu]);
634
635 if (total)
636 ratio = avg / total * 100.0;
637
Namhyung Kim15e63922011-12-28 00:35:49 +0900638 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200639
Stephane Eranian4aa90152011-08-15 22:22:33 +0200640 fprintf(output, " # ");
641 color_fprintf(output, color, "%6.2f%%", ratio);
642 fprintf(output, " of all iTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200643}
644
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300645static void print_ll_cache_misses(int cpu,
646 struct perf_evsel *evsel __maybe_unused,
647 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200648{
649 double total, ratio = 0.0;
650 const char *color;
651
652 total = avg_stats(&runtime_ll_cache_stats[cpu]);
653
654 if (total)
655 ratio = avg / total * 100.0;
656
Namhyung Kim15e63922011-12-28 00:35:49 +0900657 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200658
Stephane Eranian4aa90152011-08-15 22:22:33 +0200659 fprintf(output, " # ");
660 color_fprintf(output, color, "%6.2f%%", ratio);
661 fprintf(output, " of all LL-cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200662}
663
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200664static void abs_printout(int cpu, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200665{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200666 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200667 char cpustr[16] = { '\0', };
Stephane Eraniand7470b62010-12-01 18:49:05 +0200668 const char *fmt;
669
670 if (csv_output)
671 fmt = "%s%.0f%s%s";
672 else if (big_num)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200673 fmt = "%s%'18.0f%s%-25s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200674 else
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200675 fmt = "%s%18.0f%s%-25s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200676
677 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200678 sprintf(cpustr, "CPU%*d%s",
679 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800680 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200681 else
682 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200683
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300684 fprintf(output, fmt, cpustr, avg, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200685
Stephane Eranian023695d2011-02-14 11:20:01 +0200686 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200687 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200688
Stephane Eraniand7470b62010-12-01 18:49:05 +0200689 if (csv_output)
690 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200691
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200692 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200693 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200694
695 if (total)
696 ratio = avg / total;
697
Stephane Eranian4aa90152011-08-15 22:22:33 +0200698 fprintf(output, " # %5.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200699
Ingo Molnard3d1e862011-04-29 13:49:08 +0200700 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
701 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200702
703 if (total && avg) {
704 ratio = total / avg;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200705 fprintf(output, "\n # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200706 }
707
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200708 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200709 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200710 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200711 } else if (
712 evsel->attr.type == PERF_TYPE_HW_CACHE &&
713 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
714 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
715 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200716 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200717 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnarc33052572011-05-19 14:01:42 +0200718 } else if (
719 evsel->attr.type == PERF_TYPE_HW_CACHE &&
720 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
721 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
722 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
723 runtime_l1_icache_stats[cpu].n != 0) {
724 print_l1_icache_misses(cpu, evsel, avg);
725 } else if (
726 evsel->attr.type == PERF_TYPE_HW_CACHE &&
727 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
728 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
729 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
730 runtime_dtlb_cache_stats[cpu].n != 0) {
731 print_dtlb_cache_misses(cpu, evsel, avg);
732 } else if (
733 evsel->attr.type == PERF_TYPE_HW_CACHE &&
734 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
735 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
736 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
737 runtime_itlb_cache_stats[cpu].n != 0) {
738 print_itlb_cache_misses(cpu, evsel, avg);
739 } else if (
740 evsel->attr.type == PERF_TYPE_HW_CACHE &&
741 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
742 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
743 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
744 runtime_ll_cache_stats[cpu].n != 0) {
745 print_ll_cache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200746 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
747 runtime_cacherefs_stats[cpu].n != 0) {
748 total = avg_stats(&runtime_cacherefs_stats[cpu]);
749
750 if (total)
751 ratio = avg * 100 / total;
752
Stephane Eranian4aa90152011-08-15 22:22:33 +0200753 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200754
Ingo Molnard3d1e862011-04-29 13:49:08 +0200755 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
756 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200757 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200758 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200759 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
760 total = avg_stats(&runtime_nsecs_stats[cpu]);
761
762 if (total)
763 ratio = 1.0 * avg / total;
764
Stephane Eranian4aa90152011-08-15 22:22:33 +0200765 fprintf(output, " # %8.3f GHz ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200766 } else if (runtime_nsecs_stats[cpu].n != 0) {
Namhyung Kim5fde25232012-02-06 16:44:44 +0900767 char unit = 'M';
768
Ingo Molnar481f9882011-04-27 04:34:16 +0200769 total = avg_stats(&runtime_nsecs_stats[cpu]);
770
771 if (total)
772 ratio = 1000.0 * avg / total;
Namhyung Kim5fde25232012-02-06 16:44:44 +0900773 if (ratio < 0.001) {
774 ratio *= 1000;
775 unit = 'K';
776 }
Ingo Molnar481f9882011-04-27 04:34:16 +0200777
Namhyung Kim5fde25232012-02-06 16:44:44 +0900778 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200779 } else {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200780 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200781 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200782}
783
784/*
785 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200786 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200787 */
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200788static void print_counter_aggr(struct perf_evsel *counter)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200789{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200790 struct perf_stat *ps = counter->priv;
791 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200792 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200793
Ingo Molnar42202dd2009-06-13 14:57:28 +0200794 if (scaled == -1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200795 fprintf(output, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200796 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600797 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian023695d2011-02-14 11:20:01 +0200798 csv_sep,
799 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300800 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200801
802 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200803 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200804
Stephane Eranian4aa90152011-08-15 22:22:33 +0200805 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200806 return;
807 }
808
809 if (nsec_counter(counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200810 nsec_printout(-1, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200811 else
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200812 abs_printout(-1, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200813
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700814 print_noise(counter, avg);
815
Stephane Eraniand7470b62010-12-01 18:49:05 +0200816 if (csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200817 fputc('\n', output);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200818 return;
819 }
820
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200821 if (scaled) {
822 double avg_enabled, avg_running;
823
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200824 avg_enabled = avg_stats(&ps->res_stats[1]);
825 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200826
Stephane Eranian4aa90152011-08-15 22:22:33 +0200827 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200828 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200829 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200830}
831
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200832/*
833 * Print out the results of a single counter:
834 * does not use aggregated count in system-wide
835 */
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200836static void print_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200837{
838 u64 ena, run, val;
839 int cpu;
840
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800841 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200842 val = counter->counts->cpu[cpu].val;
843 ena = counter->counts->cpu[cpu].ena;
844 run = counter->counts->cpu[cpu].run;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200845 if (run == 0 || ena == 0) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200846 fprintf(output, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200847 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800848 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200849 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600850 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
851 csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +0200852 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300853 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200854
Stephane Eranian023695d2011-02-14 11:20:01 +0200855 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200856 fprintf(output, "%s%s",
857 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200858
Stephane Eranian4aa90152011-08-15 22:22:33 +0200859 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200860 continue;
861 }
862
863 if (nsec_counter(counter))
864 nsec_printout(cpu, counter, val);
865 else
866 abs_printout(cpu, counter, val);
867
Stephane Eraniand7470b62010-12-01 18:49:05 +0200868 if (!csv_output) {
869 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200870
Ingo Molnarc6264de2011-04-27 13:50:47 +0200871 if (run != ena)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200872 fprintf(output, " (%.2f%%)",
873 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200874 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200875 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200876 }
877}
878
Ingo Molnar42202dd2009-06-13 14:57:28 +0200879static void print_stat(int argc, const char **argv)
880{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200881 struct perf_evsel *counter;
882 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200883
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200884 fflush(stdout);
885
Stephane Eraniand7470b62010-12-01 18:49:05 +0200886 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200887 fprintf(output, "\n");
888 fprintf(output, " Performance counter stats for ");
Namhyung Kimaa22dd42012-05-16 18:45:47 +0900889 if (!perf_target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200890 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200891 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200892 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900893 } else if (target.pid)
894 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200895 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900896 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200897
Stephane Eranian4aa90152011-08-15 22:22:33 +0200898 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200899 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200900 fprintf(output, " (%d runs)", run_count);
901 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200902 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200903
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200904 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200905 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200906 print_counter(counter);
907 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200908 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200909 print_counter_aggr(counter);
910 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200911
Stephane Eraniand7470b62010-12-01 18:49:05 +0200912 if (!csv_output) {
Ingo Molnarc33052572011-05-19 14:01:42 +0200913 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200914 fprintf(output, "\n");
915 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200916 avg_stats(&walltime_nsecs_stats)/1e9);
917 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200918 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +0200919 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
920 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200921 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200922 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200923 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200924}
925
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200926static volatile int signr = -1;
927
Ingo Molnar52425192009-05-26 09:17:18 +0200928static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200929{
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300930 if(child_pid == -1)
Liming Wang60666c62009-12-31 16:05:50 +0800931 done = 1;
932
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200933 signr = signo;
934}
935
936static void sig_atexit(void)
937{
Chris Wilson933da832009-10-04 01:35:01 +0100938 if (child_pid != -1)
939 kill(child_pid, SIGTERM);
940
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200941 if (signr == -1)
942 return;
943
944 signal(signr, SIG_DFL);
945 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200946}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200947
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300948static int stat__set_big_num(const struct option *opt __maybe_unused,
949 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200950{
951 big_num_opt = unset ? 0 : 1;
952 return 0;
953}
954
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200955/*
956 * Add default attributes, if there were no attributes specified or
957 * if -d/--detailed, -d -d or -d -d -d is used:
958 */
959static int add_default_attributes(void)
960{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -0300961 struct perf_event_attr default_attrs[] = {
962
963 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
964 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
965 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
966 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
967
968 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
969 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
970 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
971 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
972 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
973 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
974
975};
976
977/*
978 * Detailed stats (-d), covering the L1 and last level data caches:
979 */
980 struct perf_event_attr detailed_attrs[] = {
981
982 { .type = PERF_TYPE_HW_CACHE,
983 .config =
984 PERF_COUNT_HW_CACHE_L1D << 0 |
985 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
986 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
987
988 { .type = PERF_TYPE_HW_CACHE,
989 .config =
990 PERF_COUNT_HW_CACHE_L1D << 0 |
991 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
992 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
993
994 { .type = PERF_TYPE_HW_CACHE,
995 .config =
996 PERF_COUNT_HW_CACHE_LL << 0 |
997 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
998 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
999
1000 { .type = PERF_TYPE_HW_CACHE,
1001 .config =
1002 PERF_COUNT_HW_CACHE_LL << 0 |
1003 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1004 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1005};
1006
1007/*
1008 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1009 */
1010 struct perf_event_attr very_detailed_attrs[] = {
1011
1012 { .type = PERF_TYPE_HW_CACHE,
1013 .config =
1014 PERF_COUNT_HW_CACHE_L1I << 0 |
1015 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1016 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1017
1018 { .type = PERF_TYPE_HW_CACHE,
1019 .config =
1020 PERF_COUNT_HW_CACHE_L1I << 0 |
1021 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1022 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1023
1024 { .type = PERF_TYPE_HW_CACHE,
1025 .config =
1026 PERF_COUNT_HW_CACHE_DTLB << 0 |
1027 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1028 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1029
1030 { .type = PERF_TYPE_HW_CACHE,
1031 .config =
1032 PERF_COUNT_HW_CACHE_DTLB << 0 |
1033 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1034 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1035
1036 { .type = PERF_TYPE_HW_CACHE,
1037 .config =
1038 PERF_COUNT_HW_CACHE_ITLB << 0 |
1039 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1040 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1041
1042 { .type = PERF_TYPE_HW_CACHE,
1043 .config =
1044 PERF_COUNT_HW_CACHE_ITLB << 0 |
1045 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1046 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1047
1048};
1049
1050/*
1051 * Very, very detailed stats (-d -d -d), adding prefetch events:
1052 */
1053 struct perf_event_attr very_very_detailed_attrs[] = {
1054
1055 { .type = PERF_TYPE_HW_CACHE,
1056 .config =
1057 PERF_COUNT_HW_CACHE_L1D << 0 |
1058 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1059 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1060
1061 { .type = PERF_TYPE_HW_CACHE,
1062 .config =
1063 PERF_COUNT_HW_CACHE_L1D << 0 |
1064 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1065 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1066};
1067
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001068 /* Set attrs if no event is selected and !null_run: */
1069 if (null_run)
1070 return 0;
1071
1072 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001073 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001074 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001075 }
1076
1077 /* Detailed events get appended to the event list: */
1078
1079 if (detailed_run < 1)
1080 return 0;
1081
1082 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001083 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001084 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001085
1086 if (detailed_run < 2)
1087 return 0;
1088
1089 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001090 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001091 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001092
1093 if (detailed_run < 3)
1094 return 0;
1095
1096 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001097 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001098}
1099
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001100int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001101{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001102 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001103 int output_fd = 0;
1104 const char *output_name = NULL;
1105 const struct option options[] = {
1106 OPT_CALLBACK('e', "event", &evsel_list, "event",
1107 "event selector. use 'perf list' to list available events",
1108 parse_events_option),
1109 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1110 "event filter", parse_filter),
1111 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1112 "child tasks do not inherit counters"),
1113 OPT_STRING('p', "pid", &target.pid, "pid",
1114 "stat events on existing process id"),
1115 OPT_STRING('t', "tid", &target.tid, "tid",
1116 "stat events on existing thread id"),
1117 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1118 "system-wide collection from all CPUs"),
1119 OPT_BOOLEAN('g', "group", &group,
1120 "put the counters into a counter group"),
1121 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1122 OPT_INCR('v', "verbose", &verbose,
1123 "be more verbose (show counter open errors, etc)"),
1124 OPT_INTEGER('r', "repeat", &run_count,
1125 "repeat command and print average + stddev (max: 100)"),
1126 OPT_BOOLEAN('n', "null", &null_run,
1127 "null run - dont start any counters"),
1128 OPT_INCR('d', "detailed", &detailed_run,
1129 "detailed run - start a lot of events"),
1130 OPT_BOOLEAN('S', "sync", &sync_run,
1131 "call sync() before starting a run"),
1132 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1133 "print large numbers with thousands\' separators",
1134 stat__set_big_num),
1135 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1136 "list of cpus to monitor in system-wide"),
1137 OPT_BOOLEAN('A', "no-aggr", &no_aggr, "disable CPU count aggregation"),
1138 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1139 "print counts with custom separator"),
1140 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1141 "monitor event in cgroup name only", parse_cgroups),
1142 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1143 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1144 OPT_INTEGER(0, "log-fd", &output_fd,
1145 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001146 OPT_STRING(0, "pre", &pre_cmd, "command",
1147 "command to run prior to the measured command"),
1148 OPT_STRING(0, "post", &post_cmd, "command",
1149 "command to run after to the measured command"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001150 OPT_END()
1151 };
1152 const char * const stat_usage[] = {
1153 "perf stat [<options>] [<command>]",
1154 NULL
1155 };
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001156 struct perf_evsel *pos;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001157 int status = -ENOMEM, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001158 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001159
Stephane Eranian5af52b52010-05-18 15:00:01 +02001160 setlocale(LC_ALL, "");
1161
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001162 evsel_list = perf_evlist__new(NULL, NULL);
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001163 if (evsel_list == NULL)
1164 return -ENOMEM;
1165
Anton Blancharda0541232009-07-22 23:04:12 +10001166 argc = parse_options(argc, argv, options, stat_usage,
1167 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001168
Stephane Eranian4aa90152011-08-15 22:22:33 +02001169 output = stderr;
1170 if (output_name && strcmp(output_name, "-"))
1171 output = NULL;
1172
Jim Cromie56f3bae2011-09-07 17:14:00 -06001173 if (output_name && output_fd) {
1174 fprintf(stderr, "cannot use both --output and --log-fd\n");
1175 usage_with_options(stat_usage, options);
1176 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001177
1178 if (output_fd < 0) {
1179 fprintf(stderr, "argument to --log-fd must be a > 0\n");
1180 usage_with_options(stat_usage, options);
1181 }
1182
Stephane Eranian4aa90152011-08-15 22:22:33 +02001183 if (!output) {
1184 struct timespec tm;
1185 mode = append_file ? "a" : "w";
1186
1187 output = fopen(output_name, mode);
1188 if (!output) {
1189 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001190 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001191 }
1192 clock_gettime(CLOCK_REALTIME, &tm);
1193 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001194 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001195 mode = append_file ? "a" : "w";
1196 output = fdopen(output_fd, mode);
1197 if (!output) {
1198 perror("Failed opening logfd");
1199 return -errno;
1200 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001201 }
1202
Jim Cromied4ffd042011-09-07 17:14:03 -06001203 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001204 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001205 if (!strcmp(csv_sep, "\\t"))
1206 csv_sep = "\t";
1207 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001208 csv_sep = DEFAULT_SEPARATOR;
1209
1210 /*
1211 * let the spreadsheet do the pretty-printing
1212 */
1213 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001214 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001215 if (big_num_opt == 1) {
1216 fprintf(stderr, "-B option not supported with -x\n");
1217 usage_with_options(stat_usage, options);
1218 } else /* Nope, so disable big number formatting */
1219 big_num = false;
1220 } else if (big_num_opt == 0) /* User passed --no-big-num */
1221 big_num = false;
1222
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001223 if (!argc && !perf_target__has_task(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001224 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +02001225 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001226 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001227
Stephane Eranian023695d2011-02-14 11:20:01 +02001228 /* no_aggr, cgroup are for system-wide only */
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001229 if ((no_aggr || nr_cgroups) && !perf_target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001230 fprintf(stderr, "both cgroup and no-aggregation "
1231 "modes only available in system-wide mode\n");
1232
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001233 usage_with_options(stat_usage, options);
Stephane Eranian023695d2011-02-14 11:20:01 +02001234 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001235
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001236 if (add_default_attributes())
1237 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001238
Namhyung Kim4bd0f2d2012-04-26 14:15:18 +09001239 perf_target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001240
Namhyung Kim77a6f012012-05-07 14:09:04 +09001241 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001242 if (perf_target__has_task(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001243 pr_err("Problems finding threads of monitor\n");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001244 if (perf_target__has_cpu(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001245 perror("failed to parse CPUs map");
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001246
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001247 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001248 return -1;
1249 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001250
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001251 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001252 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001253 perf_evsel__alloc_counts(pos, perf_evsel__nr_cpus(pos)) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001254 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001255 }
1256
Ingo Molnar58d7e992009-05-15 11:03:23 +02001257 /*
1258 * We dont want to block the signals - that would cause
1259 * child tasks to inherit that and Ctrl-C would not work.
1260 * What we want is for Ctrl-C to work in the exec()-ed
1261 * task, but being ignored by perf stat itself:
1262 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001263 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001264 signal(SIGINT, skip_signal);
1265 signal(SIGALRM, skip_signal);
1266 signal(SIGABRT, skip_signal);
1267
Ingo Molnar42202dd2009-06-13 14:57:28 +02001268 status = 0;
1269 for (run_idx = 0; run_idx < run_count; run_idx++) {
1270 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001271 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1272 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001273
Ingo Molnar42202dd2009-06-13 14:57:28 +02001274 status = run_perf_stat(argc, argv);
1275 }
1276
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001277 if (status != -1)
1278 print_stat(argc, argv);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001279out_free_fd:
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001280 list_for_each_entry(pos, &evsel_list->entries, node)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001281 perf_evsel__free_stat_priv(pos);
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001282 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001283out:
1284 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001285 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001286}