blob: 1c2ac148a7d523e3de32daa06ce984375945b19f [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
Jiri Olsacac21422012-11-12 18:34:00 +0100132static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200133{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200134 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200135
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200136 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200137 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
138 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200139
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200140 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300141
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300142 if (perf_target__has_cpu(&target))
143 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200144
Arnaldo Carvalho de Melo07ac0022012-11-13 17:27:28 -0300145 if (!perf_target__has_task(&target) &&
Namhyung Kim823254e2012-11-29 15:38:30 +0900146 perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200147 attr->disabled = 1;
148 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200149 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300150
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300151 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200152}
153
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200154/*
155 * Does the counter have nsecs as a unit?
156 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200157static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200158{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200159 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
160 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200161 return 1;
162
163 return 0;
164}
165
166/*
Ingo Molnardcd99362011-04-27 04:36:37 +0200167 * Update various tracking values we maintain to print
168 * more semantic information such as miss/hit ratios,
169 * instruction rates, etc:
170 */
171static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
172{
173 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
174 update_stats(&runtime_nsecs_stats[0], count[0]);
175 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
176 update_stats(&runtime_cycles_stats[0], count[0]);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200177 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
178 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200179 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
Ingo Molnard3d1e862011-04-29 13:49:08 +0200180 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200181 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
182 update_stats(&runtime_branches_stats[0], count[0]);
183 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
184 update_stats(&runtime_cacherefs_stats[0], count[0]);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200185 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
186 update_stats(&runtime_l1_dcache_stats[0], count[0]);
Ingo Molnarc33052572011-05-19 14:01:42 +0200187 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1I))
188 update_stats(&runtime_l1_icache_stats[0], count[0]);
189 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_LL))
190 update_stats(&runtime_ll_cache_stats[0], count[0]);
191 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_DTLB))
192 update_stats(&runtime_dtlb_cache_stats[0], count[0]);
193 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_ITLB))
194 update_stats(&runtime_itlb_cache_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200195}
196
197/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200198 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200199 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200200 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200201static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200202{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200203 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200204 u64 *count = counter->counts->aggr.values;
205 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200206
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800207 if (__perf_evsel__read(counter, perf_evsel__nr_cpus(counter),
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200208 evsel_list->threads->nr, scale) < 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200209 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200210
211 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200212 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200213
214 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200215 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300216 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200217 }
218
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200219 /*
220 * Save the full runtime - to allow normalization during printout:
221 */
Ingo Molnardcd99362011-04-27 04:36:37 +0200222 update_shadow_stats(counter, count);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200223
224 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200225}
226
227/*
228 * Read out the results of a single counter:
229 * do not aggregate counts across CPUs in system-wide mode
230 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200231static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200232{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200233 u64 *count;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200234 int cpu;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200235
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800236 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200237 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
238 return -1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200239
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200240 count = counter->counts->cpu[cpu].values;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200241
Ingo Molnardcd99362011-04-27 04:36:37 +0200242 update_shadow_stats(counter, count);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200243 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200244
245 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200246}
247
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200248static int __run_perf_stat(int argc __maybe_unused, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200249{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300250 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200251 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100252 struct perf_evsel *counter;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200253 int status = 0;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000254 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300255 const bool forks = (argc > 0);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000256 char buf;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200257
Liming Wang60666c62009-12-31 16:05:50 +0800258 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000259 perror("failed to create pipes");
David Ahernfceda7f2012-08-26 12:24:44 -0600260 return -1;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000261 }
262
Liming Wang60666c62009-12-31 16:05:50 +0800263 if (forks) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300264 if ((child_pid = fork()) < 0)
Liming Wang60666c62009-12-31 16:05:50 +0800265 perror("failed to fork");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000266
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300267 if (!child_pid) {
Liming Wang60666c62009-12-31 16:05:50 +0800268 close(child_ready_pipe[0]);
269 close(go_pipe[1]);
270 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
271
272 /*
273 * Do a dummy execvp to get the PLT entry resolved,
274 * so we avoid the resolver overhead on the real
275 * execvp call.
276 */
277 execvp("", (char **)argv);
278
279 /*
280 * Tell the parent we're ready to go
281 */
282 close(child_ready_pipe[1]);
283
284 /*
285 * Wait until the parent tells us to go.
286 */
287 if (read(go_pipe[0], &buf, 1) == -1)
288 perror("unable to read pipe");
289
290 execvp(argv[0], (char **)argv);
291
292 perror(argv[0]);
293 exit(-1);
294 }
295
Namhyung Kimd67356e2012-05-07 14:09:03 +0900296 if (perf_target__none(&target))
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200297 evsel_list->threads->map[0] = child_pid;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300298
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000299 /*
Liming Wang60666c62009-12-31 16:05:50 +0800300 * Wait for the child to be ready to exec.
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000301 */
302 close(child_ready_pipe[1]);
Liming Wang60666c62009-12-31 16:05:50 +0800303 close(go_pipe[0]);
304 if (read(child_ready_pipe[0], &buf, 1) == -1)
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200305 perror("unable to read pipe");
Liming Wang60666c62009-12-31 16:05:50 +0800306 close(child_ready_pipe[0]);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000307 }
308
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200309 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300310 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200311
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200312 list_for_each_entry(counter, &evsel_list->entries, node) {
Jiri Olsacac21422012-11-12 18:34:00 +0100313 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600314 /*
315 * PPC returns ENXIO for HW counters until 2.6.37
316 * (behavior changed with commit b0a873e).
317 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100318 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600319 errno == ENOENT || errno == EOPNOTSUPP ||
320 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600321 if (verbose)
322 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300323 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600324 counter->supported = false;
Ingo Molnarede70292011-04-28 08:48:42 +0200325 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600326 }
Ingo Molnarede70292011-04-28 08:48:42 +0200327
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300328 perf_evsel__open_strerror(counter, &target,
329 errno, msg, sizeof(msg));
330 ui__error("%s\n", msg);
331
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200332 if (child_pid != -1)
333 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600334
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200335 return -1;
336 }
David Ahern2cee77c2011-05-30 08:55:59 -0600337 counter->supported = true;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300338 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200339
Arnaldo Carvalho de Melo1491a632012-09-26 14:43:13 -0300340 if (perf_evlist__apply_filters(evsel_list)) {
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100341 error("failed to set filter with %d (%s)\n", errno,
342 strerror(errno));
343 return -1;
344 }
345
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200346 /*
347 * Enable counters and exec the command:
348 */
349 t0 = rdclock();
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200350
Liming Wang60666c62009-12-31 16:05:50 +0800351 if (forks) {
352 close(go_pipe[1]);
353 wait(&status);
Andi Kleen33e49ea2011-09-15 14:31:40 -0700354 if (WIFSIGNALED(status))
355 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800356 } else {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300357 while(!done) sleep(1);
Liming Wang60666c62009-12-31 16:05:50 +0800358 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200359
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200360 t1 = rdclock();
361
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200362 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200363
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200364 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200365 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200366 read_counter(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800367 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200368 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200369 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200370 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200371 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800372 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200373 evsel_list->threads->nr);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200374 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200375 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200376
Ingo Molnar42202dd2009-06-13 14:57:28 +0200377 return WEXITSTATUS(status);
378}
379
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200380static int run_perf_stat(int argc __maybe_unused, const char **argv)
381{
382 int ret;
383
384 if (pre_cmd) {
385 ret = system(pre_cmd);
386 if (ret)
387 return ret;
388 }
389
390 if (sync_run)
391 sync();
392
393 ret = __run_perf_stat(argc, argv);
394 if (ret)
395 return ret;
396
397 if (post_cmd) {
398 ret = system(post_cmd);
399 if (ret)
400 return ret;
401 }
402
403 return ret;
404}
405
Ingo Molnarf99844c2011-04-27 05:35:39 +0200406static void print_noise_pct(double total, double avg)
407{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800408 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200409
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700410 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200411 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600412 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200413 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200414}
415
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200416static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200417{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200418 struct perf_stat *ps;
419
Peter Zijlstra849abde2009-09-04 18:23:38 +0200420 if (run_count == 1)
421 return;
422
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200423 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200424 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200425}
426
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200427static void nsec_printout(int cpu, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200428{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200429 double msecs = avg / 1e6;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200430 char cpustr[16] = { '\0', };
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200431 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-25s";
Ingo Molnar42202dd2009-06-13 14:57:28 +0200432
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200433 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200434 sprintf(cpustr, "CPU%*d%s",
435 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800436 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200437
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300438 fprintf(output, fmt, cpustr, msecs, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200439
Stephane Eranian023695d2011-02-14 11:20:01 +0200440 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200441 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200442
Stephane Eraniand7470b62010-12-01 18:49:05 +0200443 if (csv_output)
444 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200445
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200446 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200447 fprintf(output, " # %8.3f CPUs utilized ",
448 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900449 else
450 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200451}
452
Namhyung Kim15e63922011-12-28 00:35:49 +0900453/* used for get_ratio_color() */
454enum grc_type {
455 GRC_STALLED_CYCLES_FE,
456 GRC_STALLED_CYCLES_BE,
457 GRC_CACHE_MISSES,
458 GRC_MAX_NR
459};
460
461static const char *get_ratio_color(enum grc_type type, double ratio)
462{
463 static const double grc_table[GRC_MAX_NR][3] = {
464 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
465 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
466 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
467 };
468 const char *color = PERF_COLOR_NORMAL;
469
470 if (ratio > grc_table[type][0])
471 color = PERF_COLOR_RED;
472 else if (ratio > grc_table[type][1])
473 color = PERF_COLOR_MAGENTA;
474 else if (ratio > grc_table[type][2])
475 color = PERF_COLOR_YELLOW;
476
477 return color;
478}
479
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300480static void print_stalled_cycles_frontend(int cpu,
481 struct perf_evsel *evsel
482 __maybe_unused, double avg)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200483{
484 double total, ratio = 0.0;
485 const char *color;
486
487 total = avg_stats(&runtime_cycles_stats[cpu]);
488
489 if (total)
490 ratio = avg / total * 100.0;
491
Namhyung Kim15e63922011-12-28 00:35:49 +0900492 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200493
Stephane Eranian4aa90152011-08-15 22:22:33 +0200494 fprintf(output, " # ");
495 color_fprintf(output, color, "%6.2f%%", ratio);
496 fprintf(output, " frontend cycles idle ");
Ingo Molnard3d1e862011-04-29 13:49:08 +0200497}
498
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300499static void print_stalled_cycles_backend(int cpu,
500 struct perf_evsel *evsel
501 __maybe_unused, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200502{
503 double total, ratio = 0.0;
504 const char *color;
505
506 total = avg_stats(&runtime_cycles_stats[cpu]);
507
508 if (total)
509 ratio = avg / total * 100.0;
510
Namhyung Kim15e63922011-12-28 00:35:49 +0900511 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200512
Stephane Eranian4aa90152011-08-15 22:22:33 +0200513 fprintf(output, " # ");
514 color_fprintf(output, color, "%6.2f%%", ratio);
515 fprintf(output, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200516}
517
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300518static void print_branch_misses(int cpu,
519 struct perf_evsel *evsel __maybe_unused,
520 double avg)
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200521{
522 double total, ratio = 0.0;
523 const char *color;
524
525 total = avg_stats(&runtime_branches_stats[cpu]);
526
527 if (total)
528 ratio = avg / total * 100.0;
529
Namhyung Kim15e63922011-12-28 00:35:49 +0900530 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200531
Stephane Eranian4aa90152011-08-15 22:22:33 +0200532 fprintf(output, " # ");
533 color_fprintf(output, color, "%6.2f%%", ratio);
534 fprintf(output, " of all branches ");
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200535}
536
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300537static void print_l1_dcache_misses(int cpu,
538 struct perf_evsel *evsel __maybe_unused,
539 double avg)
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200540{
541 double total, ratio = 0.0;
542 const char *color;
543
544 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
545
546 if (total)
547 ratio = avg / total * 100.0;
548
Namhyung Kim15e63922011-12-28 00:35:49 +0900549 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200550
Stephane Eranian4aa90152011-08-15 22:22:33 +0200551 fprintf(output, " # ");
552 color_fprintf(output, color, "%6.2f%%", ratio);
553 fprintf(output, " of all L1-dcache hits ");
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200554}
555
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300556static void print_l1_icache_misses(int cpu,
557 struct perf_evsel *evsel __maybe_unused,
558 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200559{
560 double total, ratio = 0.0;
561 const char *color;
562
563 total = avg_stats(&runtime_l1_icache_stats[cpu]);
564
565 if (total)
566 ratio = avg / total * 100.0;
567
Namhyung Kim15e63922011-12-28 00:35:49 +0900568 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200569
Stephane Eranian4aa90152011-08-15 22:22:33 +0200570 fprintf(output, " # ");
571 color_fprintf(output, color, "%6.2f%%", ratio);
572 fprintf(output, " of all L1-icache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200573}
574
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300575static void print_dtlb_cache_misses(int cpu,
576 struct perf_evsel *evsel __maybe_unused,
577 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200578{
579 double total, ratio = 0.0;
580 const char *color;
581
582 total = avg_stats(&runtime_dtlb_cache_stats[cpu]);
583
584 if (total)
585 ratio = avg / total * 100.0;
586
Namhyung Kim15e63922011-12-28 00:35:49 +0900587 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200588
Stephane Eranian4aa90152011-08-15 22:22:33 +0200589 fprintf(output, " # ");
590 color_fprintf(output, color, "%6.2f%%", ratio);
591 fprintf(output, " of all dTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200592}
593
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300594static void print_itlb_cache_misses(int cpu,
595 struct perf_evsel *evsel __maybe_unused,
596 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200597{
598 double total, ratio = 0.0;
599 const char *color;
600
601 total = avg_stats(&runtime_itlb_cache_stats[cpu]);
602
603 if (total)
604 ratio = avg / total * 100.0;
605
Namhyung Kim15e63922011-12-28 00:35:49 +0900606 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200607
Stephane Eranian4aa90152011-08-15 22:22:33 +0200608 fprintf(output, " # ");
609 color_fprintf(output, color, "%6.2f%%", ratio);
610 fprintf(output, " of all iTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200611}
612
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300613static void print_ll_cache_misses(int cpu,
614 struct perf_evsel *evsel __maybe_unused,
615 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200616{
617 double total, ratio = 0.0;
618 const char *color;
619
620 total = avg_stats(&runtime_ll_cache_stats[cpu]);
621
622 if (total)
623 ratio = avg / total * 100.0;
624
Namhyung Kim15e63922011-12-28 00:35:49 +0900625 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200626
Stephane Eranian4aa90152011-08-15 22:22:33 +0200627 fprintf(output, " # ");
628 color_fprintf(output, color, "%6.2f%%", ratio);
629 fprintf(output, " of all LL-cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200630}
631
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200632static void abs_printout(int cpu, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200633{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200634 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200635 char cpustr[16] = { '\0', };
Stephane Eraniand7470b62010-12-01 18:49:05 +0200636 const char *fmt;
637
638 if (csv_output)
639 fmt = "%s%.0f%s%s";
640 else if (big_num)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200641 fmt = "%s%'18.0f%s%-25s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200642 else
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200643 fmt = "%s%18.0f%s%-25s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200644
645 if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200646 sprintf(cpustr, "CPU%*d%s",
647 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800648 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200649 else
650 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200651
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300652 fprintf(output, fmt, cpustr, avg, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200653
Stephane Eranian023695d2011-02-14 11:20:01 +0200654 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200655 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200656
Stephane Eraniand7470b62010-12-01 18:49:05 +0200657 if (csv_output)
658 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200659
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200660 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200661 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200662
663 if (total)
664 ratio = avg / total;
665
Stephane Eranian4aa90152011-08-15 22:22:33 +0200666 fprintf(output, " # %5.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200667
Ingo Molnard3d1e862011-04-29 13:49:08 +0200668 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
669 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200670
671 if (total && avg) {
672 ratio = total / avg;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200673 fprintf(output, "\n # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200674 }
675
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200676 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200677 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200678 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200679 } else if (
680 evsel->attr.type == PERF_TYPE_HW_CACHE &&
681 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
682 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
683 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200684 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200685 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnarc33052572011-05-19 14:01:42 +0200686 } else if (
687 evsel->attr.type == PERF_TYPE_HW_CACHE &&
688 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
689 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
690 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
691 runtime_l1_icache_stats[cpu].n != 0) {
692 print_l1_icache_misses(cpu, evsel, avg);
693 } else if (
694 evsel->attr.type == PERF_TYPE_HW_CACHE &&
695 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
696 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
697 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
698 runtime_dtlb_cache_stats[cpu].n != 0) {
699 print_dtlb_cache_misses(cpu, evsel, avg);
700 } else if (
701 evsel->attr.type == PERF_TYPE_HW_CACHE &&
702 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
703 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
704 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
705 runtime_itlb_cache_stats[cpu].n != 0) {
706 print_itlb_cache_misses(cpu, evsel, avg);
707 } else if (
708 evsel->attr.type == PERF_TYPE_HW_CACHE &&
709 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
710 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
711 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
712 runtime_ll_cache_stats[cpu].n != 0) {
713 print_ll_cache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200714 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
715 runtime_cacherefs_stats[cpu].n != 0) {
716 total = avg_stats(&runtime_cacherefs_stats[cpu]);
717
718 if (total)
719 ratio = avg * 100 / total;
720
Stephane Eranian4aa90152011-08-15 22:22:33 +0200721 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200722
Ingo Molnard3d1e862011-04-29 13:49:08 +0200723 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
724 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200725 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200726 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200727 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
728 total = avg_stats(&runtime_nsecs_stats[cpu]);
729
730 if (total)
731 ratio = 1.0 * avg / total;
732
Stephane Eranian4aa90152011-08-15 22:22:33 +0200733 fprintf(output, " # %8.3f GHz ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200734 } else if (runtime_nsecs_stats[cpu].n != 0) {
Namhyung Kim5fde25232012-02-06 16:44:44 +0900735 char unit = 'M';
736
Ingo Molnar481f9882011-04-27 04:34:16 +0200737 total = avg_stats(&runtime_nsecs_stats[cpu]);
738
739 if (total)
740 ratio = 1000.0 * avg / total;
Namhyung Kim5fde25232012-02-06 16:44:44 +0900741 if (ratio < 0.001) {
742 ratio *= 1000;
743 unit = 'K';
744 }
Ingo Molnar481f9882011-04-27 04:34:16 +0200745
Namhyung Kim5fde25232012-02-06 16:44:44 +0900746 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200747 } else {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200748 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200749 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200750}
751
752/*
753 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200754 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200755 */
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200756static void print_counter_aggr(struct perf_evsel *counter)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200757{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200758 struct perf_stat *ps = counter->priv;
759 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200760 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200761
Ingo Molnar42202dd2009-06-13 14:57:28 +0200762 if (scaled == -1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200763 fprintf(output, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200764 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600765 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian023695d2011-02-14 11:20:01 +0200766 csv_sep,
767 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300768 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200769
770 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200771 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200772
Stephane Eranian4aa90152011-08-15 22:22:33 +0200773 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200774 return;
775 }
776
777 if (nsec_counter(counter))
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200778 nsec_printout(-1, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200779 else
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200780 abs_printout(-1, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200781
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700782 print_noise(counter, avg);
783
Stephane Eraniand7470b62010-12-01 18:49:05 +0200784 if (csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200785 fputc('\n', output);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200786 return;
787 }
788
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200789 if (scaled) {
790 double avg_enabled, avg_running;
791
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200792 avg_enabled = avg_stats(&ps->res_stats[1]);
793 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200794
Stephane Eranian4aa90152011-08-15 22:22:33 +0200795 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200796 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200797 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200798}
799
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200800/*
801 * Print out the results of a single counter:
802 * does not use aggregated count in system-wide
803 */
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200804static void print_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200805{
806 u64 ena, run, val;
807 int cpu;
808
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800809 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200810 val = counter->counts->cpu[cpu].val;
811 ena = counter->counts->cpu[cpu].ena;
812 run = counter->counts->cpu[cpu].run;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200813 if (run == 0 || ena == 0) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200814 fprintf(output, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200815 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800816 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200817 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600818 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
819 csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +0200820 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300821 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200822
Stephane Eranian023695d2011-02-14 11:20:01 +0200823 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200824 fprintf(output, "%s%s",
825 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200826
Stephane Eranian4aa90152011-08-15 22:22:33 +0200827 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200828 continue;
829 }
830
831 if (nsec_counter(counter))
832 nsec_printout(cpu, counter, val);
833 else
834 abs_printout(cpu, counter, val);
835
Stephane Eraniand7470b62010-12-01 18:49:05 +0200836 if (!csv_output) {
837 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200838
Ingo Molnarc6264de2011-04-27 13:50:47 +0200839 if (run != ena)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200840 fprintf(output, " (%.2f%%)",
841 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200842 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200843 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200844 }
845}
846
Ingo Molnar42202dd2009-06-13 14:57:28 +0200847static void print_stat(int argc, const char **argv)
848{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200849 struct perf_evsel *counter;
850 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200851
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200852 fflush(stdout);
853
Stephane Eraniand7470b62010-12-01 18:49:05 +0200854 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200855 fprintf(output, "\n");
856 fprintf(output, " Performance counter stats for ");
Namhyung Kimaa22dd42012-05-16 18:45:47 +0900857 if (!perf_target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200858 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200859 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200860 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900861 } else if (target.pid)
862 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200863 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900864 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200865
Stephane Eranian4aa90152011-08-15 22:22:33 +0200866 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200867 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200868 fprintf(output, " (%d runs)", run_count);
869 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200870 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200871
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200872 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200873 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200874 print_counter(counter);
875 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200876 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200877 print_counter_aggr(counter);
878 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200879
Stephane Eraniand7470b62010-12-01 18:49:05 +0200880 if (!csv_output) {
Ingo Molnarc33052572011-05-19 14:01:42 +0200881 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200882 fprintf(output, "\n");
883 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200884 avg_stats(&walltime_nsecs_stats)/1e9);
885 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200886 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +0200887 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
888 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200889 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200890 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +0200891 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200892}
893
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200894static volatile int signr = -1;
895
Ingo Molnar52425192009-05-26 09:17:18 +0200896static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200897{
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300898 if(child_pid == -1)
Liming Wang60666c62009-12-31 16:05:50 +0800899 done = 1;
900
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200901 signr = signo;
902}
903
904static void sig_atexit(void)
905{
Chris Wilson933da832009-10-04 01:35:01 +0100906 if (child_pid != -1)
907 kill(child_pid, SIGTERM);
908
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200909 if (signr == -1)
910 return;
911
912 signal(signr, SIG_DFL);
913 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200914}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200915
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300916static int stat__set_big_num(const struct option *opt __maybe_unused,
917 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200918{
919 big_num_opt = unset ? 0 : 1;
920 return 0;
921}
922
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200923/*
924 * Add default attributes, if there were no attributes specified or
925 * if -d/--detailed, -d -d or -d -d -d is used:
926 */
927static int add_default_attributes(void)
928{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -0300929 struct perf_event_attr default_attrs[] = {
930
931 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
932 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
933 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
934 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
935
936 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
937 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
938 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
939 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
940 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
941 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
942
943};
944
945/*
946 * Detailed stats (-d), covering the L1 and last level data caches:
947 */
948 struct perf_event_attr detailed_attrs[] = {
949
950 { .type = PERF_TYPE_HW_CACHE,
951 .config =
952 PERF_COUNT_HW_CACHE_L1D << 0 |
953 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
954 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
955
956 { .type = PERF_TYPE_HW_CACHE,
957 .config =
958 PERF_COUNT_HW_CACHE_L1D << 0 |
959 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
960 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
961
962 { .type = PERF_TYPE_HW_CACHE,
963 .config =
964 PERF_COUNT_HW_CACHE_LL << 0 |
965 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
966 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
967
968 { .type = PERF_TYPE_HW_CACHE,
969 .config =
970 PERF_COUNT_HW_CACHE_LL << 0 |
971 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
972 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
973};
974
975/*
976 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
977 */
978 struct perf_event_attr very_detailed_attrs[] = {
979
980 { .type = PERF_TYPE_HW_CACHE,
981 .config =
982 PERF_COUNT_HW_CACHE_L1I << 0 |
983 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
984 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
985
986 { .type = PERF_TYPE_HW_CACHE,
987 .config =
988 PERF_COUNT_HW_CACHE_L1I << 0 |
989 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
990 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
991
992 { .type = PERF_TYPE_HW_CACHE,
993 .config =
994 PERF_COUNT_HW_CACHE_DTLB << 0 |
995 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
996 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
997
998 { .type = PERF_TYPE_HW_CACHE,
999 .config =
1000 PERF_COUNT_HW_CACHE_DTLB << 0 |
1001 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1002 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1003
1004 { .type = PERF_TYPE_HW_CACHE,
1005 .config =
1006 PERF_COUNT_HW_CACHE_ITLB << 0 |
1007 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1008 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1009
1010 { .type = PERF_TYPE_HW_CACHE,
1011 .config =
1012 PERF_COUNT_HW_CACHE_ITLB << 0 |
1013 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1014 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1015
1016};
1017
1018/*
1019 * Very, very detailed stats (-d -d -d), adding prefetch events:
1020 */
1021 struct perf_event_attr very_very_detailed_attrs[] = {
1022
1023 { .type = PERF_TYPE_HW_CACHE,
1024 .config =
1025 PERF_COUNT_HW_CACHE_L1D << 0 |
1026 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1027 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1028
1029 { .type = PERF_TYPE_HW_CACHE,
1030 .config =
1031 PERF_COUNT_HW_CACHE_L1D << 0 |
1032 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1033 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1034};
1035
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001036 /* Set attrs if no event is selected and !null_run: */
1037 if (null_run)
1038 return 0;
1039
1040 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001041 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001042 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001043 }
1044
1045 /* Detailed events get appended to the event list: */
1046
1047 if (detailed_run < 1)
1048 return 0;
1049
1050 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001051 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001052 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001053
1054 if (detailed_run < 2)
1055 return 0;
1056
1057 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001058 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001059 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001060
1061 if (detailed_run < 3)
1062 return 0;
1063
1064 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001065 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001066}
1067
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001068int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001069{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001070 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001071 int output_fd = 0;
1072 const char *output_name = NULL;
1073 const struct option options[] = {
1074 OPT_CALLBACK('e', "event", &evsel_list, "event",
1075 "event selector. use 'perf list' to list available events",
1076 parse_events_option),
1077 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1078 "event filter", parse_filter),
1079 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1080 "child tasks do not inherit counters"),
1081 OPT_STRING('p', "pid", &target.pid, "pid",
1082 "stat events on existing process id"),
1083 OPT_STRING('t', "tid", &target.tid, "tid",
1084 "stat events on existing thread id"),
1085 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1086 "system-wide collection from all CPUs"),
1087 OPT_BOOLEAN('g', "group", &group,
1088 "put the counters into a counter group"),
1089 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1090 OPT_INCR('v', "verbose", &verbose,
1091 "be more verbose (show counter open errors, etc)"),
1092 OPT_INTEGER('r', "repeat", &run_count,
1093 "repeat command and print average + stddev (max: 100)"),
1094 OPT_BOOLEAN('n', "null", &null_run,
1095 "null run - dont start any counters"),
1096 OPT_INCR('d', "detailed", &detailed_run,
1097 "detailed run - start a lot of events"),
1098 OPT_BOOLEAN('S', "sync", &sync_run,
1099 "call sync() before starting a run"),
1100 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1101 "print large numbers with thousands\' separators",
1102 stat__set_big_num),
1103 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1104 "list of cpus to monitor in system-wide"),
1105 OPT_BOOLEAN('A', "no-aggr", &no_aggr, "disable CPU count aggregation"),
1106 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1107 "print counts with custom separator"),
1108 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1109 "monitor event in cgroup name only", parse_cgroups),
1110 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1111 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1112 OPT_INTEGER(0, "log-fd", &output_fd,
1113 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001114 OPT_STRING(0, "pre", &pre_cmd, "command",
1115 "command to run prior to the measured command"),
1116 OPT_STRING(0, "post", &post_cmd, "command",
1117 "command to run after to the measured command"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001118 OPT_END()
1119 };
1120 const char * const stat_usage[] = {
1121 "perf stat [<options>] [<command>]",
1122 NULL
1123 };
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001124 struct perf_evsel *pos;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001125 int status = -ENOMEM, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001126 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001127
Stephane Eranian5af52b52010-05-18 15:00:01 +02001128 setlocale(LC_ALL, "");
1129
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001130 evsel_list = perf_evlist__new(NULL, NULL);
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001131 if (evsel_list == NULL)
1132 return -ENOMEM;
1133
Anton Blancharda0541232009-07-22 23:04:12 +10001134 argc = parse_options(argc, argv, options, stat_usage,
1135 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001136
Stephane Eranian4aa90152011-08-15 22:22:33 +02001137 output = stderr;
1138 if (output_name && strcmp(output_name, "-"))
1139 output = NULL;
1140
Jim Cromie56f3bae2011-09-07 17:14:00 -06001141 if (output_name && output_fd) {
1142 fprintf(stderr, "cannot use both --output and --log-fd\n");
1143 usage_with_options(stat_usage, options);
1144 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001145
1146 if (output_fd < 0) {
1147 fprintf(stderr, "argument to --log-fd must be a > 0\n");
1148 usage_with_options(stat_usage, options);
1149 }
1150
Stephane Eranian4aa90152011-08-15 22:22:33 +02001151 if (!output) {
1152 struct timespec tm;
1153 mode = append_file ? "a" : "w";
1154
1155 output = fopen(output_name, mode);
1156 if (!output) {
1157 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001158 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001159 }
1160 clock_gettime(CLOCK_REALTIME, &tm);
1161 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001162 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001163 mode = append_file ? "a" : "w";
1164 output = fdopen(output_fd, mode);
1165 if (!output) {
1166 perror("Failed opening logfd");
1167 return -errno;
1168 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001169 }
1170
Jim Cromied4ffd042011-09-07 17:14:03 -06001171 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001172 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001173 if (!strcmp(csv_sep, "\\t"))
1174 csv_sep = "\t";
1175 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001176 csv_sep = DEFAULT_SEPARATOR;
1177
1178 /*
1179 * let the spreadsheet do the pretty-printing
1180 */
1181 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001182 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001183 if (big_num_opt == 1) {
1184 fprintf(stderr, "-B option not supported with -x\n");
1185 usage_with_options(stat_usage, options);
1186 } else /* Nope, so disable big number formatting */
1187 big_num = false;
1188 } else if (big_num_opt == 0) /* User passed --no-big-num */
1189 big_num = false;
1190
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001191 if (!argc && !perf_target__has_task(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001192 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +02001193 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001194 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001195
Stephane Eranian023695d2011-02-14 11:20:01 +02001196 /* no_aggr, cgroup are for system-wide only */
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001197 if ((no_aggr || nr_cgroups) && !perf_target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001198 fprintf(stderr, "both cgroup and no-aggregation "
1199 "modes only available in system-wide mode\n");
1200
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001201 usage_with_options(stat_usage, options);
Stephane Eranian023695d2011-02-14 11:20:01 +02001202 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001203
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001204 if (add_default_attributes())
1205 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001206
Namhyung Kim4bd0f2d2012-04-26 14:15:18 +09001207 perf_target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001208
Namhyung Kim77a6f012012-05-07 14:09:04 +09001209 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001210 if (perf_target__has_task(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001211 pr_err("Problems finding threads of monitor\n");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001212 if (perf_target__has_cpu(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001213 perror("failed to parse CPUs map");
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001214
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001215 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001216 return -1;
1217 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001218
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001219 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001220 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001221 perf_evsel__alloc_counts(pos, perf_evsel__nr_cpus(pos)) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001222 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001223 }
1224
Ingo Molnar58d7e992009-05-15 11:03:23 +02001225 /*
1226 * We dont want to block the signals - that would cause
1227 * child tasks to inherit that and Ctrl-C would not work.
1228 * What we want is for Ctrl-C to work in the exec()-ed
1229 * task, but being ignored by perf stat itself:
1230 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001231 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001232 signal(SIGINT, skip_signal);
1233 signal(SIGALRM, skip_signal);
1234 signal(SIGABRT, skip_signal);
1235
Ingo Molnar42202dd2009-06-13 14:57:28 +02001236 status = 0;
1237 for (run_idx = 0; run_idx < run_count; run_idx++) {
1238 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001239 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1240 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001241
Ingo Molnar42202dd2009-06-13 14:57:28 +02001242 status = run_perf_stat(argc, argv);
1243 }
1244
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001245 if (status != -1)
1246 print_stat(argc, argv);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001247out_free_fd:
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001248 list_for_each_entry(pos, &evsel_list->entries, node)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001249 perf_evsel__free_stat_priv(pos);
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001250 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001251out:
1252 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001253 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001254}