blob: ded34fc4df4fd9024620081bb673387a67928f67 [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
Stephane Eranian13370a92013-01-29 12:47:44 +010068static void print_stat(int argc, const char **argv);
69static void print_counter_aggr(struct perf_evsel *counter, char *prefix);
70static void print_counter(struct perf_evsel *counter, char *prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +010071static void print_aggr(char *prefix);
Stephane Eranian13370a92013-01-29 12:47:44 +010072
Robert Richter666e6d42012-04-05 18:26:27 +020073static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020074
Namhyung Kim77a6f012012-05-07 14:09:04 +090075static struct perf_target target = {
76 .uid = UINT_MAX,
77};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053078
Stephane Eranian86ee6e12013-02-14 13:57:27 +010079enum aggr_mode {
80 AGGR_NONE,
81 AGGR_GLOBAL,
82 AGGR_SOCKET,
83};
84
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053085static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020086static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +100087static bool scale = true;
Stephane Eranian86ee6e12013-02-14 13:57:27 +010088static enum aggr_mode aggr_mode = AGGR_GLOBAL;
Chris Wilson933da832009-10-04 01:35:01 +010089static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100090static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020091static int detailed_run = 0;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -020092static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +020093static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +020094static const char *csv_sep = NULL;
95static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +080096static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +020097static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +020098static const char *pre_cmd = NULL;
99static const char *post_cmd = NULL;
100static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100101static unsigned int interval = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500102static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100103static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100104static struct cpu_map *aggr_map;
105static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200106
Liming Wang60666c62009-12-31 16:05:50 +0800107static volatile int done = 0;
108
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200109struct perf_stat {
110 struct stats res_stats[3];
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200111};
112
Stephane Eranian13370a92013-01-29 12:47:44 +0100113static inline void diff_timespec(struct timespec *r, struct timespec *a,
114 struct timespec *b)
115{
116 r->tv_sec = a->tv_sec - b->tv_sec;
117 if (a->tv_nsec < b->tv_nsec) {
118 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
119 r->tv_sec--;
120 } else {
121 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
122 }
123}
124
125static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
126{
127 return (evsel->cpus && !target.cpu_list) ? evsel->cpus : evsel_list->cpus;
128}
129
130static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
131{
132 return perf_evsel__cpus(evsel)->nr;
133}
134
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500135static void perf_evsel__reset_stat_priv(struct perf_evsel *evsel)
136{
137 memset(evsel->priv, 0, sizeof(struct perf_stat));
138}
139
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200140static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200141{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200142 evsel->priv = zalloc(sizeof(struct perf_stat));
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200143 return evsel->priv == NULL ? -ENOMEM : 0;
144}
145
146static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
147{
148 free(evsel->priv);
149 evsel->priv = NULL;
150}
151
Stephane Eranian13370a92013-01-29 12:47:44 +0100152static int perf_evsel__alloc_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800153{
Stephane Eranian13370a92013-01-29 12:47:44 +0100154 void *addr;
155 size_t sz;
156
157 sz = sizeof(*evsel->counts) +
158 (perf_evsel__nr_cpus(evsel) * sizeof(struct perf_counts_values));
159
160 addr = zalloc(sz);
161 if (!addr)
162 return -ENOMEM;
163
164 evsel->prev_raw_counts = addr;
165
166 return 0;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800167}
168
Stephane Eranian13370a92013-01-29 12:47:44 +0100169static void perf_evsel__free_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800170{
Stephane Eranian13370a92013-01-29 12:47:44 +0100171 free(evsel->prev_raw_counts);
172 evsel->prev_raw_counts = NULL;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800173}
174
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300175static void perf_evlist__free_stats(struct perf_evlist *evlist)
176{
177 struct perf_evsel *evsel;
178
179 list_for_each_entry(evsel, &evlist->entries, node) {
180 perf_evsel__free_stat_priv(evsel);
181 perf_evsel__free_counts(evsel);
182 perf_evsel__free_prev_raw_counts(evsel);
183 }
184}
185
186static int perf_evlist__alloc_stats(struct perf_evlist *evlist, bool alloc_raw)
187{
188 struct perf_evsel *evsel;
189
190 list_for_each_entry(evsel, &evlist->entries, node) {
191 if (perf_evsel__alloc_stat_priv(evsel) < 0 ||
192 perf_evsel__alloc_counts(evsel, perf_evsel__nr_cpus(evsel)) < 0 ||
193 (alloc_raw && perf_evsel__alloc_prev_raw_counts(evsel) < 0))
194 goto out_free;
195 }
196
197 return 0;
198
199out_free:
200 perf_evlist__free_stats(evlist);
201 return -1;
202}
203
Robert Richter666e6d42012-04-05 18:26:27 +0200204static struct stats runtime_nsecs_stats[MAX_NR_CPUS];
205static struct stats runtime_cycles_stats[MAX_NR_CPUS];
206static struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
207static struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
208static struct stats runtime_branches_stats[MAX_NR_CPUS];
209static struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
210static struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
211static struct stats runtime_l1_icache_stats[MAX_NR_CPUS];
212static struct stats runtime_ll_cache_stats[MAX_NR_CPUS];
213static struct stats runtime_itlb_cache_stats[MAX_NR_CPUS];
214static struct stats runtime_dtlb_cache_stats[MAX_NR_CPUS];
215static struct stats walltime_nsecs_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200216
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300217static void perf_stat__reset_stats(struct perf_evlist *evlist)
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500218{
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300219 struct perf_evsel *evsel;
220
221 list_for_each_entry(evsel, &evlist->entries, node) {
222 perf_evsel__reset_stat_priv(evsel);
223 perf_evsel__reset_counts(evsel, perf_evsel__nr_cpus(evsel));
224 }
225
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500226 memset(runtime_nsecs_stats, 0, sizeof(runtime_nsecs_stats));
227 memset(runtime_cycles_stats, 0, sizeof(runtime_cycles_stats));
228 memset(runtime_stalled_cycles_front_stats, 0, sizeof(runtime_stalled_cycles_front_stats));
229 memset(runtime_stalled_cycles_back_stats, 0, sizeof(runtime_stalled_cycles_back_stats));
230 memset(runtime_branches_stats, 0, sizeof(runtime_branches_stats));
231 memset(runtime_cacherefs_stats, 0, sizeof(runtime_cacherefs_stats));
232 memset(runtime_l1_dcache_stats, 0, sizeof(runtime_l1_dcache_stats));
233 memset(runtime_l1_icache_stats, 0, sizeof(runtime_l1_icache_stats));
234 memset(runtime_ll_cache_stats, 0, sizeof(runtime_ll_cache_stats));
235 memset(runtime_itlb_cache_stats, 0, sizeof(runtime_itlb_cache_stats));
236 memset(runtime_dtlb_cache_stats, 0, sizeof(runtime_dtlb_cache_stats));
237 memset(&walltime_nsecs_stats, 0, sizeof(walltime_nsecs_stats));
238}
239
Jiri Olsacac21422012-11-12 18:34:00 +0100240static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200241{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200242 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200243
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200244 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200245 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
246 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200247
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200248 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300249
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300250 if (perf_target__has_cpu(&target))
251 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200252
Arnaldo Carvalho de Melo07ac0022012-11-13 17:27:28 -0300253 if (!perf_target__has_task(&target) &&
Namhyung Kim823254e2012-11-29 15:38:30 +0900254 perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200255 attr->disabled = 1;
256 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200257 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300258
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300259 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200260}
261
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200262/*
263 * Does the counter have nsecs as a unit?
264 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200265static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200266{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200267 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
268 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200269 return 1;
270
271 return 0;
272}
273
274/*
Ingo Molnardcd99362011-04-27 04:36:37 +0200275 * Update various tracking values we maintain to print
276 * more semantic information such as miss/hit ratios,
277 * instruction rates, etc:
278 */
279static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
280{
281 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
282 update_stats(&runtime_nsecs_stats[0], count[0]);
283 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
284 update_stats(&runtime_cycles_stats[0], count[0]);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200285 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
286 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200287 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
Ingo Molnard3d1e862011-04-29 13:49:08 +0200288 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200289 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
290 update_stats(&runtime_branches_stats[0], count[0]);
291 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
292 update_stats(&runtime_cacherefs_stats[0], count[0]);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200293 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
294 update_stats(&runtime_l1_dcache_stats[0], count[0]);
Ingo Molnarc33052572011-05-19 14:01:42 +0200295 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1I))
296 update_stats(&runtime_l1_icache_stats[0], count[0]);
297 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_LL))
298 update_stats(&runtime_ll_cache_stats[0], count[0]);
299 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_DTLB))
300 update_stats(&runtime_dtlb_cache_stats[0], count[0]);
301 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_ITLB))
302 update_stats(&runtime_itlb_cache_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200303}
304
305/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200306 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200307 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200308 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200309static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200310{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200311 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200312 u64 *count = counter->counts->aggr.values;
313 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200314
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800315 if (__perf_evsel__read(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900316 thread_map__nr(evsel_list->threads), scale) < 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200317 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200318
319 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200320 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200321
322 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200323 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300324 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200325 }
326
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200327 /*
328 * Save the full runtime - to allow normalization during printout:
329 */
Ingo Molnardcd99362011-04-27 04:36:37 +0200330 update_shadow_stats(counter, count);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200331
332 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200333}
334
335/*
336 * Read out the results of a single counter:
337 * do not aggregate counts across CPUs in system-wide mode
338 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200339static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200340{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200341 u64 *count;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200342 int cpu;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200343
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800344 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200345 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
346 return -1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200347
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200348 count = counter->counts->cpu[cpu].values;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200349
Ingo Molnardcd99362011-04-27 04:36:37 +0200350 update_shadow_stats(counter, count);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200351 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200352
353 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200354}
355
Stephane Eranian13370a92013-01-29 12:47:44 +0100356static void print_interval(void)
357{
358 static int num_print_interval;
359 struct perf_evsel *counter;
360 struct perf_stat *ps;
361 struct timespec ts, rs;
362 char prefix[64];
363
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100364 if (aggr_mode == AGGR_GLOBAL) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100365 list_for_each_entry(counter, &evsel_list->entries, node) {
366 ps = counter->priv;
367 memset(ps->res_stats, 0, sizeof(ps->res_stats));
368 read_counter_aggr(counter);
369 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100370 } else {
371 list_for_each_entry(counter, &evsel_list->entries, node) {
372 ps = counter->priv;
373 memset(ps->res_stats, 0, sizeof(ps->res_stats));
374 read_counter(counter);
375 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100376 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100377
Stephane Eranian13370a92013-01-29 12:47:44 +0100378 clock_gettime(CLOCK_MONOTONIC, &ts);
379 diff_timespec(&rs, &ts, &ref_time);
380 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
381
382 if (num_print_interval == 0 && !csv_output) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100383 switch (aggr_mode) {
384 case AGGR_SOCKET:
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100385 fprintf(output, "# time socket cpus counts events\n");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100386 break;
387 case AGGR_NONE:
Stephane Eranian13370a92013-01-29 12:47:44 +0100388 fprintf(output, "# time CPU counts events\n");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100389 break;
390 case AGGR_GLOBAL:
391 default:
Stephane Eranian13370a92013-01-29 12:47:44 +0100392 fprintf(output, "# time counts events\n");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100393 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100394 }
395
396 if (++num_print_interval == 25)
397 num_print_interval = 0;
398
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100399 switch (aggr_mode) {
400 case AGGR_SOCKET:
401 print_aggr(prefix);
402 break;
403 case AGGR_NONE:
Stephane Eranian13370a92013-01-29 12:47:44 +0100404 list_for_each_entry(counter, &evsel_list->entries, node)
405 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100406 break;
407 case AGGR_GLOBAL:
408 default:
Stephane Eranian13370a92013-01-29 12:47:44 +0100409 list_for_each_entry(counter, &evsel_list->entries, node)
410 print_counter_aggr(counter, prefix);
411 }
412}
413
Namhyung Kimacf28922013-03-11 16:43:18 +0900414static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200415{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300416 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200417 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100418 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100419 struct timespec ts;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200420 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300421 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200422
Stephane Eranian13370a92013-01-29 12:47:44 +0100423 if (interval) {
424 ts.tv_sec = interval / 1000;
425 ts.tv_nsec = (interval % 1000) * 1000000;
426 } else {
427 ts.tv_sec = 1;
428 ts.tv_nsec = 0;
429 }
430
Liming Wang60666c62009-12-31 16:05:50 +0800431 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900432 if (perf_evlist__prepare_workload(evsel_list, &target, argv,
433 false, false) < 0) {
434 perror("failed to prepare workload");
435 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800436 }
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000437 }
438
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200439 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300440 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200441
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200442 list_for_each_entry(counter, &evsel_list->entries, node) {
Jiri Olsacac21422012-11-12 18:34:00 +0100443 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600444 /*
445 * PPC returns ENXIO for HW counters until 2.6.37
446 * (behavior changed with commit b0a873e).
447 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100448 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600449 errno == ENOENT || errno == EOPNOTSUPP ||
450 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600451 if (verbose)
452 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300453 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600454 counter->supported = false;
Ingo Molnarede70292011-04-28 08:48:42 +0200455 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600456 }
Ingo Molnarede70292011-04-28 08:48:42 +0200457
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300458 perf_evsel__open_strerror(counter, &target,
459 errno, msg, sizeof(msg));
460 ui__error("%s\n", msg);
461
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200462 if (child_pid != -1)
463 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600464
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200465 return -1;
466 }
David Ahern2cee77c2011-05-30 08:55:59 -0600467 counter->supported = true;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300468 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200469
Arnaldo Carvalho de Melo1491a632012-09-26 14:43:13 -0300470 if (perf_evlist__apply_filters(evsel_list)) {
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100471 error("failed to set filter with %d (%s)\n", errno,
472 strerror(errno));
473 return -1;
474 }
475
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200476 /*
477 * Enable counters and exec the command:
478 */
479 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100480 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200481
Liming Wang60666c62009-12-31 16:05:50 +0800482 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900483 perf_evlist__start_workload(evsel_list);
484
Stephane Eranian13370a92013-01-29 12:47:44 +0100485 if (interval) {
486 while (!waitpid(child_pid, &status, WNOHANG)) {
487 nanosleep(&ts, NULL);
488 print_interval();
489 }
490 }
Liming Wang60666c62009-12-31 16:05:50 +0800491 wait(&status);
Andi Kleen33e49ea2011-09-15 14:31:40 -0700492 if (WIFSIGNALED(status))
493 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800494 } else {
Stephane Eranian13370a92013-01-29 12:47:44 +0100495 while (!done) {
496 nanosleep(&ts, NULL);
497 if (interval)
498 print_interval();
499 }
Liming Wang60666c62009-12-31 16:05:50 +0800500 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200501
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200502 t1 = rdclock();
503
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200504 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200505
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100506 if (aggr_mode == AGGR_GLOBAL) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200507 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200508 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800509 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900510 thread_map__nr(evsel_list->threads));
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200511 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100512 } else {
513 list_for_each_entry(counter, &evsel_list->entries, node) {
514 read_counter(counter);
515 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
516 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200517 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200518
Ingo Molnar42202dd2009-06-13 14:57:28 +0200519 return WEXITSTATUS(status);
520}
521
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200522static int run_perf_stat(int argc __maybe_unused, const char **argv)
523{
524 int ret;
525
526 if (pre_cmd) {
527 ret = system(pre_cmd);
528 if (ret)
529 return ret;
530 }
531
532 if (sync_run)
533 sync();
534
535 ret = __run_perf_stat(argc, argv);
536 if (ret)
537 return ret;
538
539 if (post_cmd) {
540 ret = system(post_cmd);
541 if (ret)
542 return ret;
543 }
544
545 return ret;
546}
547
Ingo Molnarf99844c2011-04-27 05:35:39 +0200548static void print_noise_pct(double total, double avg)
549{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800550 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200551
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700552 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200553 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600554 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200555 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200556}
557
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200558static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200559{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200560 struct perf_stat *ps;
561
Peter Zijlstra849abde2009-09-04 18:23:38 +0200562 if (run_count == 1)
563 return;
564
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200565 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200566 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200567}
568
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100569static void aggr_printout(struct perf_evsel *evsel, int cpu, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200570{
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100571 switch (aggr_mode) {
572 case AGGR_SOCKET:
573 fprintf(output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100574 csv_output ? 0 : -5,
575 cpu,
576 csv_sep,
577 csv_output ? 0 : 4,
578 nr,
579 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100580 break;
581 case AGGR_NONE:
582 fprintf(output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200583 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800584 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100585 break;
586 case AGGR_GLOBAL:
587 default:
588 break;
589 }
590}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200591
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100592static void nsec_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
593{
594 double msecs = avg / 1e6;
595 const char *fmt = csv_output ? "%.6f%s%s" : "%18.6f%s%-25s";
596
597 aggr_printout(evsel, cpu, nr);
598
599 fprintf(output, fmt, msecs, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200600
Stephane Eranian023695d2011-02-14 11:20:01 +0200601 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200602 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200603
Stephane Eranian13370a92013-01-29 12:47:44 +0100604 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200605 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200606
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200607 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200608 fprintf(output, " # %8.3f CPUs utilized ",
609 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900610 else
611 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200612}
613
Namhyung Kim15e63922011-12-28 00:35:49 +0900614/* used for get_ratio_color() */
615enum grc_type {
616 GRC_STALLED_CYCLES_FE,
617 GRC_STALLED_CYCLES_BE,
618 GRC_CACHE_MISSES,
619 GRC_MAX_NR
620};
621
622static const char *get_ratio_color(enum grc_type type, double ratio)
623{
624 static const double grc_table[GRC_MAX_NR][3] = {
625 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
626 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
627 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
628 };
629 const char *color = PERF_COLOR_NORMAL;
630
631 if (ratio > grc_table[type][0])
632 color = PERF_COLOR_RED;
633 else if (ratio > grc_table[type][1])
634 color = PERF_COLOR_MAGENTA;
635 else if (ratio > grc_table[type][2])
636 color = PERF_COLOR_YELLOW;
637
638 return color;
639}
640
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300641static void print_stalled_cycles_frontend(int cpu,
642 struct perf_evsel *evsel
643 __maybe_unused, double avg)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200644{
645 double total, ratio = 0.0;
646 const char *color;
647
648 total = avg_stats(&runtime_cycles_stats[cpu]);
649
650 if (total)
651 ratio = avg / total * 100.0;
652
Namhyung Kim15e63922011-12-28 00:35:49 +0900653 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200654
Stephane Eranian4aa90152011-08-15 22:22:33 +0200655 fprintf(output, " # ");
656 color_fprintf(output, color, "%6.2f%%", ratio);
657 fprintf(output, " frontend cycles idle ");
Ingo Molnard3d1e862011-04-29 13:49:08 +0200658}
659
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300660static void print_stalled_cycles_backend(int cpu,
661 struct perf_evsel *evsel
662 __maybe_unused, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200663{
664 double total, ratio = 0.0;
665 const char *color;
666
667 total = avg_stats(&runtime_cycles_stats[cpu]);
668
669 if (total)
670 ratio = avg / total * 100.0;
671
Namhyung Kim15e63922011-12-28 00:35:49 +0900672 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200673
Stephane Eranian4aa90152011-08-15 22:22:33 +0200674 fprintf(output, " # ");
675 color_fprintf(output, color, "%6.2f%%", ratio);
676 fprintf(output, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200677}
678
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300679static void print_branch_misses(int cpu,
680 struct perf_evsel *evsel __maybe_unused,
681 double avg)
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200682{
683 double total, ratio = 0.0;
684 const char *color;
685
686 total = avg_stats(&runtime_branches_stats[cpu]);
687
688 if (total)
689 ratio = avg / total * 100.0;
690
Namhyung Kim15e63922011-12-28 00:35:49 +0900691 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200692
Stephane Eranian4aa90152011-08-15 22:22:33 +0200693 fprintf(output, " # ");
694 color_fprintf(output, color, "%6.2f%%", ratio);
695 fprintf(output, " of all branches ");
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200696}
697
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300698static void print_l1_dcache_misses(int cpu,
699 struct perf_evsel *evsel __maybe_unused,
700 double avg)
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200701{
702 double total, ratio = 0.0;
703 const char *color;
704
705 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
706
707 if (total)
708 ratio = avg / total * 100.0;
709
Namhyung Kim15e63922011-12-28 00:35:49 +0900710 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200711
Stephane Eranian4aa90152011-08-15 22:22:33 +0200712 fprintf(output, " # ");
713 color_fprintf(output, color, "%6.2f%%", ratio);
714 fprintf(output, " of all L1-dcache hits ");
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200715}
716
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300717static void print_l1_icache_misses(int cpu,
718 struct perf_evsel *evsel __maybe_unused,
719 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200720{
721 double total, ratio = 0.0;
722 const char *color;
723
724 total = avg_stats(&runtime_l1_icache_stats[cpu]);
725
726 if (total)
727 ratio = avg / total * 100.0;
728
Namhyung Kim15e63922011-12-28 00:35:49 +0900729 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200730
Stephane Eranian4aa90152011-08-15 22:22:33 +0200731 fprintf(output, " # ");
732 color_fprintf(output, color, "%6.2f%%", ratio);
733 fprintf(output, " of all L1-icache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200734}
735
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300736static void print_dtlb_cache_misses(int cpu,
737 struct perf_evsel *evsel __maybe_unused,
738 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200739{
740 double total, ratio = 0.0;
741 const char *color;
742
743 total = avg_stats(&runtime_dtlb_cache_stats[cpu]);
744
745 if (total)
746 ratio = avg / total * 100.0;
747
Namhyung Kim15e63922011-12-28 00:35:49 +0900748 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200749
Stephane Eranian4aa90152011-08-15 22:22:33 +0200750 fprintf(output, " # ");
751 color_fprintf(output, color, "%6.2f%%", ratio);
752 fprintf(output, " of all dTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200753}
754
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300755static void print_itlb_cache_misses(int cpu,
756 struct perf_evsel *evsel __maybe_unused,
757 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200758{
759 double total, ratio = 0.0;
760 const char *color;
761
762 total = avg_stats(&runtime_itlb_cache_stats[cpu]);
763
764 if (total)
765 ratio = avg / total * 100.0;
766
Namhyung Kim15e63922011-12-28 00:35:49 +0900767 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200768
Stephane Eranian4aa90152011-08-15 22:22:33 +0200769 fprintf(output, " # ");
770 color_fprintf(output, color, "%6.2f%%", ratio);
771 fprintf(output, " of all iTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200772}
773
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300774static void print_ll_cache_misses(int cpu,
775 struct perf_evsel *evsel __maybe_unused,
776 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200777{
778 double total, ratio = 0.0;
779 const char *color;
780
781 total = avg_stats(&runtime_ll_cache_stats[cpu]);
782
783 if (total)
784 ratio = avg / total * 100.0;
785
Namhyung Kim15e63922011-12-28 00:35:49 +0900786 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200787
Stephane Eranian4aa90152011-08-15 22:22:33 +0200788 fprintf(output, " # ");
789 color_fprintf(output, color, "%6.2f%%", ratio);
790 fprintf(output, " of all LL-cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200791}
792
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100793static void abs_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200794{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200795 double total, ratio = 0.0;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200796 const char *fmt;
797
798 if (csv_output)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100799 fmt = "%.0f%s%s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200800 else if (big_num)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100801 fmt = "%'18.0f%s%-25s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200802 else
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100803 fmt = "%18.0f%s%-25s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200804
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100805 aggr_printout(evsel, cpu, nr);
806
807 if (aggr_mode == AGGR_GLOBAL)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200808 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200809
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100810 fprintf(output, fmt, avg, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200811
Stephane Eranian023695d2011-02-14 11:20:01 +0200812 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200813 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200814
Stephane Eranian13370a92013-01-29 12:47:44 +0100815 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200816 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200817
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200818 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200819 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200820 if (total)
821 ratio = avg / total;
822
Stephane Eranian4aa90152011-08-15 22:22:33 +0200823 fprintf(output, " # %5.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200824
Ingo Molnard3d1e862011-04-29 13:49:08 +0200825 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
826 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200827
828 if (total && avg) {
829 ratio = total / avg;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200830 fprintf(output, "\n # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200831 }
832
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200833 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200834 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200835 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200836 } else if (
837 evsel->attr.type == PERF_TYPE_HW_CACHE &&
838 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
839 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
840 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200841 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200842 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnarc33052572011-05-19 14:01:42 +0200843 } else if (
844 evsel->attr.type == PERF_TYPE_HW_CACHE &&
845 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
846 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
847 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
848 runtime_l1_icache_stats[cpu].n != 0) {
849 print_l1_icache_misses(cpu, evsel, avg);
850 } else if (
851 evsel->attr.type == PERF_TYPE_HW_CACHE &&
852 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
853 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
854 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
855 runtime_dtlb_cache_stats[cpu].n != 0) {
856 print_dtlb_cache_misses(cpu, evsel, avg);
857 } else if (
858 evsel->attr.type == PERF_TYPE_HW_CACHE &&
859 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
860 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
861 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
862 runtime_itlb_cache_stats[cpu].n != 0) {
863 print_itlb_cache_misses(cpu, evsel, avg);
864 } else if (
865 evsel->attr.type == PERF_TYPE_HW_CACHE &&
866 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
867 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
868 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
869 runtime_ll_cache_stats[cpu].n != 0) {
870 print_ll_cache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200871 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
872 runtime_cacherefs_stats[cpu].n != 0) {
873 total = avg_stats(&runtime_cacherefs_stats[cpu]);
874
875 if (total)
876 ratio = avg * 100 / total;
877
Stephane Eranian4aa90152011-08-15 22:22:33 +0200878 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200879
Ingo Molnard3d1e862011-04-29 13:49:08 +0200880 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
881 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200882 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200883 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200884 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
885 total = avg_stats(&runtime_nsecs_stats[cpu]);
886
887 if (total)
888 ratio = 1.0 * avg / total;
889
Stephane Eranian4aa90152011-08-15 22:22:33 +0200890 fprintf(output, " # %8.3f GHz ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200891 } else if (runtime_nsecs_stats[cpu].n != 0) {
Namhyung Kim5fde25232012-02-06 16:44:44 +0900892 char unit = 'M';
893
Ingo Molnar481f9882011-04-27 04:34:16 +0200894 total = avg_stats(&runtime_nsecs_stats[cpu]);
895
896 if (total)
897 ratio = 1000.0 * avg / total;
Namhyung Kim5fde25232012-02-06 16:44:44 +0900898 if (ratio < 0.001) {
899 ratio *= 1000;
900 unit = 'K';
901 }
Ingo Molnar481f9882011-04-27 04:34:16 +0200902
Namhyung Kim5fde25232012-02-06 16:44:44 +0900903 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200904 } else {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200905 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200906 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200907}
908
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100909static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100910{
911 struct perf_evsel *counter;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100912 int cpu, s, s2, id, nr;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100913 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100914
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100915 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100916 return;
917
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100918 for (s = 0; s < aggr_map->nr; s++) {
919 id = aggr_map->map[s];
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100920 list_for_each_entry(counter, &evsel_list->entries, node) {
921 val = ena = run = 0;
922 nr = 0;
923 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100924 s2 = aggr_get_id(evsel_list->cpus, cpu);
925 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100926 continue;
927 val += counter->counts->cpu[cpu].val;
928 ena += counter->counts->cpu[cpu].ena;
929 run += counter->counts->cpu[cpu].run;
930 nr++;
931 }
932 if (prefix)
933 fprintf(output, "%s", prefix);
934
935 if (run == 0 || ena == 0) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100936 aggr_printout(counter, cpu, nr);
937
938 fprintf(output, "%*s%s%*s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100939 csv_output ? 0 : 18,
940 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
941 csv_sep,
942 csv_output ? 0 : -24,
943 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100944
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100945 if (counter->cgrp)
946 fprintf(output, "%s%s",
947 csv_sep, counter->cgrp->name);
948
949 fputc('\n', output);
950 continue;
951 }
952
953 if (nsec_counter(counter))
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100954 nsec_printout(id, nr, counter, val);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100955 else
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100956 abs_printout(id, nr, counter, val);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100957
958 if (!csv_output) {
959 print_noise(counter, 1.0);
960
961 if (run != ena)
962 fprintf(output, " (%.2f%%)",
963 100.0 * run / ena);
964 }
965 fputc('\n', output);
966 }
967 }
968}
969
Ingo Molnar42202dd2009-06-13 14:57:28 +0200970/*
971 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200972 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200973 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100974static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200975{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200976 struct perf_stat *ps = counter->priv;
977 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200978 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200979
Stephane Eranian13370a92013-01-29 12:47:44 +0100980 if (prefix)
981 fprintf(output, "%s", prefix);
982
Ingo Molnar42202dd2009-06-13 14:57:28 +0200983 if (scaled == -1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200984 fprintf(output, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200985 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600986 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian023695d2011-02-14 11:20:01 +0200987 csv_sep,
988 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300989 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200990
991 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200992 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200993
Stephane Eranian4aa90152011-08-15 22:22:33 +0200994 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200995 return;
996 }
997
998 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100999 nsec_printout(-1, 0, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001000 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001001 abs_printout(-1, 0, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +02001002
Zhengyu He3ae9a34d2011-06-23 13:45:42 -07001003 print_noise(counter, avg);
1004
Stephane Eraniand7470b62010-12-01 18:49:05 +02001005 if (csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001006 fputc('\n', output);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001007 return;
1008 }
1009
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001010 if (scaled) {
1011 double avg_enabled, avg_running;
1012
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001013 avg_enabled = avg_stats(&ps->res_stats[1]);
1014 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001015
Stephane Eranian4aa90152011-08-15 22:22:33 +02001016 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001017 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001018 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +02001019}
1020
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001021/*
1022 * Print out the results of a single counter:
1023 * does not use aggregated count in system-wide
1024 */
Stephane Eranian13370a92013-01-29 12:47:44 +01001025static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001026{
1027 u64 ena, run, val;
1028 int cpu;
1029
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001030 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001031 val = counter->counts->cpu[cpu].val;
1032 ena = counter->counts->cpu[cpu].ena;
1033 run = counter->counts->cpu[cpu].run;
Stephane Eranian13370a92013-01-29 12:47:44 +01001034
1035 if (prefix)
1036 fprintf(output, "%s", prefix);
1037
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001038 if (run == 0 || ena == 0) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001039 fprintf(output, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001040 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001041 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +02001042 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -06001043 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
1044 csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +02001045 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001046 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001047
Stephane Eranian023695d2011-02-14 11:20:01 +02001048 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001049 fprintf(output, "%s%s",
1050 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +02001051
Stephane Eranian4aa90152011-08-15 22:22:33 +02001052 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001053 continue;
1054 }
1055
1056 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001057 nsec_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001058 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001059 abs_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001060
Stephane Eraniand7470b62010-12-01 18:49:05 +02001061 if (!csv_output) {
1062 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001063
Ingo Molnarc6264de2011-04-27 13:50:47 +02001064 if (run != ena)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001065 fprintf(output, " (%.2f%%)",
1066 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001067 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001068 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001069 }
1070}
1071
Ingo Molnar42202dd2009-06-13 14:57:28 +02001072static void print_stat(int argc, const char **argv)
1073{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001074 struct perf_evsel *counter;
1075 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001076
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001077 fflush(stdout);
1078
Stephane Eraniand7470b62010-12-01 18:49:05 +02001079 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001080 fprintf(output, "\n");
1081 fprintf(output, " Performance counter stats for ");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001082 if (!perf_target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001083 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001084 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001085 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +09001086 } else if (target.pid)
1087 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001088 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001089 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001090
Stephane Eranian4aa90152011-08-15 22:22:33 +02001091 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001092 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001093 fprintf(output, " (%d runs)", run_count);
1094 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001095 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001096
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001097 switch (aggr_mode) {
1098 case AGGR_SOCKET:
1099 print_aggr(NULL);
1100 break;
1101 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001102 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001103 print_counter_aggr(counter, NULL);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001104 break;
1105 case AGGR_NONE:
1106 list_for_each_entry(counter, &evsel_list->entries, node)
1107 print_counter(counter, NULL);
1108 break;
1109 default:
1110 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001111 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001112
Stephane Eraniand7470b62010-12-01 18:49:05 +02001113 if (!csv_output) {
Ingo Molnarc33052572011-05-19 14:01:42 +02001114 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001115 fprintf(output, "\n");
1116 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001117 avg_stats(&walltime_nsecs_stats)/1e9);
1118 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001119 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +02001120 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
1121 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +02001122 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001123 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +02001124 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001125}
1126
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001127static volatile int signr = -1;
1128
Ingo Molnar52425192009-05-26 09:17:18 +02001129static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001130{
Stephane Eranian13370a92013-01-29 12:47:44 +01001131 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001132 done = 1;
1133
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001134 signr = signo;
1135}
1136
1137static void sig_atexit(void)
1138{
Chris Wilson933da832009-10-04 01:35:01 +01001139 if (child_pid != -1)
1140 kill(child_pid, SIGTERM);
1141
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001142 if (signr == -1)
1143 return;
1144
1145 signal(signr, SIG_DFL);
1146 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001147}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001148
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001149static int stat__set_big_num(const struct option *opt __maybe_unused,
1150 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001151{
1152 big_num_opt = unset ? 0 : 1;
1153 return 0;
1154}
1155
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001156static int perf_stat_init_aggr_mode(void)
1157{
1158 switch (aggr_mode) {
1159 case AGGR_SOCKET:
1160 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1161 perror("cannot build socket map");
1162 return -1;
1163 }
1164 aggr_get_id = cpu_map__get_socket;
1165 break;
1166 case AGGR_NONE:
1167 case AGGR_GLOBAL:
1168 default:
1169 break;
1170 }
1171 return 0;
1172}
1173
1174
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001175/*
1176 * Add default attributes, if there were no attributes specified or
1177 * if -d/--detailed, -d -d or -d -d -d is used:
1178 */
1179static int add_default_attributes(void)
1180{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001181 struct perf_event_attr default_attrs[] = {
1182
1183 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1184 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1185 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1186 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1187
1188 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1189 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1190 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1191 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1192 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1193 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1194
1195};
1196
1197/*
1198 * Detailed stats (-d), covering the L1 and last level data caches:
1199 */
1200 struct perf_event_attr detailed_attrs[] = {
1201
1202 { .type = PERF_TYPE_HW_CACHE,
1203 .config =
1204 PERF_COUNT_HW_CACHE_L1D << 0 |
1205 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1206 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1207
1208 { .type = PERF_TYPE_HW_CACHE,
1209 .config =
1210 PERF_COUNT_HW_CACHE_L1D << 0 |
1211 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1212 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1213
1214 { .type = PERF_TYPE_HW_CACHE,
1215 .config =
1216 PERF_COUNT_HW_CACHE_LL << 0 |
1217 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1218 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1219
1220 { .type = PERF_TYPE_HW_CACHE,
1221 .config =
1222 PERF_COUNT_HW_CACHE_LL << 0 |
1223 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1224 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1225};
1226
1227/*
1228 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1229 */
1230 struct perf_event_attr very_detailed_attrs[] = {
1231
1232 { .type = PERF_TYPE_HW_CACHE,
1233 .config =
1234 PERF_COUNT_HW_CACHE_L1I << 0 |
1235 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1236 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1237
1238 { .type = PERF_TYPE_HW_CACHE,
1239 .config =
1240 PERF_COUNT_HW_CACHE_L1I << 0 |
1241 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1242 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1243
1244 { .type = PERF_TYPE_HW_CACHE,
1245 .config =
1246 PERF_COUNT_HW_CACHE_DTLB << 0 |
1247 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1248 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1249
1250 { .type = PERF_TYPE_HW_CACHE,
1251 .config =
1252 PERF_COUNT_HW_CACHE_DTLB << 0 |
1253 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1254 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1255
1256 { .type = PERF_TYPE_HW_CACHE,
1257 .config =
1258 PERF_COUNT_HW_CACHE_ITLB << 0 |
1259 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1260 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1261
1262 { .type = PERF_TYPE_HW_CACHE,
1263 .config =
1264 PERF_COUNT_HW_CACHE_ITLB << 0 |
1265 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1266 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1267
1268};
1269
1270/*
1271 * Very, very detailed stats (-d -d -d), adding prefetch events:
1272 */
1273 struct perf_event_attr very_very_detailed_attrs[] = {
1274
1275 { .type = PERF_TYPE_HW_CACHE,
1276 .config =
1277 PERF_COUNT_HW_CACHE_L1D << 0 |
1278 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1279 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1280
1281 { .type = PERF_TYPE_HW_CACHE,
1282 .config =
1283 PERF_COUNT_HW_CACHE_L1D << 0 |
1284 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1285 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1286};
1287
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001288 /* Set attrs if no event is selected and !null_run: */
1289 if (null_run)
1290 return 0;
1291
1292 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001293 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001294 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001295 }
1296
1297 /* Detailed events get appended to the event list: */
1298
1299 if (detailed_run < 1)
1300 return 0;
1301
1302 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001303 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001304 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001305
1306 if (detailed_run < 2)
1307 return 0;
1308
1309 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001310 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001311 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001312
1313 if (detailed_run < 3)
1314 return 0;
1315
1316 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001317 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001318}
1319
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001320int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001321{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001322 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001323 int output_fd = 0;
1324 const char *output_name = NULL;
1325 const struct option options[] = {
1326 OPT_CALLBACK('e', "event", &evsel_list, "event",
1327 "event selector. use 'perf list' to list available events",
1328 parse_events_option),
1329 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1330 "event filter", parse_filter),
1331 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1332 "child tasks do not inherit counters"),
1333 OPT_STRING('p', "pid", &target.pid, "pid",
1334 "stat events on existing process id"),
1335 OPT_STRING('t', "tid", &target.tid, "tid",
1336 "stat events on existing thread id"),
1337 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1338 "system-wide collection from all CPUs"),
1339 OPT_BOOLEAN('g', "group", &group,
1340 "put the counters into a counter group"),
1341 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1342 OPT_INCR('v', "verbose", &verbose,
1343 "be more verbose (show counter open errors, etc)"),
1344 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001345 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001346 OPT_BOOLEAN('n', "null", &null_run,
1347 "null run - dont start any counters"),
1348 OPT_INCR('d', "detailed", &detailed_run,
1349 "detailed run - start a lot of events"),
1350 OPT_BOOLEAN('S', "sync", &sync_run,
1351 "call sync() before starting a run"),
1352 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1353 "print large numbers with thousands\' separators",
1354 stat__set_big_num),
1355 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1356 "list of cpus to monitor in system-wide"),
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001357 OPT_SET_UINT('A', "no-aggr", &aggr_mode,
1358 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001359 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1360 "print counts with custom separator"),
1361 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1362 "monitor event in cgroup name only", parse_cgroups),
1363 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1364 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1365 OPT_INTEGER(0, "log-fd", &output_fd,
1366 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001367 OPT_STRING(0, "pre", &pre_cmd, "command",
1368 "command to run prior to the measured command"),
1369 OPT_STRING(0, "post", &post_cmd, "command",
1370 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001371 OPT_UINTEGER('I', "interval-print", &interval,
1372 "print counts at regular interval in ms (>= 100)"),
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001373 OPT_SET_UINT(0, "aggr-socket", &aggr_mode,
1374 "aggregate counts per processor socket", AGGR_SOCKET),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001375 OPT_END()
1376 };
1377 const char * const stat_usage[] = {
1378 "perf stat [<options>] [<command>]",
1379 NULL
1380 };
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001381 int status = -ENOMEM, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001382 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001383
Stephane Eranian5af52b52010-05-18 15:00:01 +02001384 setlocale(LC_ALL, "");
1385
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001386 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001387 if (evsel_list == NULL)
1388 return -ENOMEM;
1389
Anton Blancharda0541232009-07-22 23:04:12 +10001390 argc = parse_options(argc, argv, options, stat_usage,
1391 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001392
Stephane Eranian4aa90152011-08-15 22:22:33 +02001393 output = stderr;
1394 if (output_name && strcmp(output_name, "-"))
1395 output = NULL;
1396
Jim Cromie56f3bae2011-09-07 17:14:00 -06001397 if (output_name && output_fd) {
1398 fprintf(stderr, "cannot use both --output and --log-fd\n");
1399 usage_with_options(stat_usage, options);
1400 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001401
1402 if (output_fd < 0) {
1403 fprintf(stderr, "argument to --log-fd must be a > 0\n");
1404 usage_with_options(stat_usage, options);
1405 }
1406
Stephane Eranian4aa90152011-08-15 22:22:33 +02001407 if (!output) {
1408 struct timespec tm;
1409 mode = append_file ? "a" : "w";
1410
1411 output = fopen(output_name, mode);
1412 if (!output) {
1413 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001414 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001415 }
1416 clock_gettime(CLOCK_REALTIME, &tm);
1417 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001418 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001419 mode = append_file ? "a" : "w";
1420 output = fdopen(output_fd, mode);
1421 if (!output) {
1422 perror("Failed opening logfd");
1423 return -errno;
1424 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001425 }
1426
Jim Cromied4ffd042011-09-07 17:14:03 -06001427 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001428 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001429 if (!strcmp(csv_sep, "\\t"))
1430 csv_sep = "\t";
1431 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001432 csv_sep = DEFAULT_SEPARATOR;
1433
1434 /*
1435 * let the spreadsheet do the pretty-printing
1436 */
1437 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001438 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001439 if (big_num_opt == 1) {
1440 fprintf(stderr, "-B option not supported with -x\n");
1441 usage_with_options(stat_usage, options);
1442 } else /* Nope, so disable big number formatting */
1443 big_num = false;
1444 } else if (big_num_opt == 0) /* User passed --no-big-num */
1445 big_num = false;
1446
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001447 if (!argc && !perf_target__has_task(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001448 usage_with_options(stat_usage, options);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001449 if (run_count < 0) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001450 usage_with_options(stat_usage, options);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001451 } else if (run_count == 0) {
1452 forever = true;
1453 run_count = 1;
1454 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001455
Stephane Eranian023695d2011-02-14 11:20:01 +02001456 /* no_aggr, cgroup are for system-wide only */
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001457 if ((aggr_mode != AGGR_GLOBAL || nr_cgroups)
1458 && !perf_target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001459 fprintf(stderr, "both cgroup and no-aggregation "
1460 "modes only available in system-wide mode\n");
1461
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001462 usage_with_options(stat_usage, options);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001463 return -1;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001464 }
1465
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001466 if (add_default_attributes())
1467 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001468
Namhyung Kim4bd0f2d2012-04-26 14:15:18 +09001469 perf_target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001470
Namhyung Kim77a6f012012-05-07 14:09:04 +09001471 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001472 if (perf_target__has_task(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001473 pr_err("Problems finding threads of monitor\n");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001474 if (perf_target__has_cpu(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001475 perror("failed to parse CPUs map");
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001476
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001477 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001478 return -1;
1479 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001480 if (interval && interval < 100) {
1481 pr_err("print interval must be >= 100ms\n");
1482 usage_with_options(stat_usage, options);
1483 return -1;
1484 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001485
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001486 if (perf_evlist__alloc_stats(evsel_list, interval))
1487 goto out_free_maps;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001488
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001489 if (perf_stat_init_aggr_mode())
1490 goto out;
1491
Ingo Molnar58d7e992009-05-15 11:03:23 +02001492 /*
1493 * We dont want to block the signals - that would cause
1494 * child tasks to inherit that and Ctrl-C would not work.
1495 * What we want is for Ctrl-C to work in the exec()-ed
1496 * task, but being ignored by perf stat itself:
1497 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001498 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001499 if (!forever)
1500 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001501 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001502 signal(SIGALRM, skip_signal);
1503 signal(SIGABRT, skip_signal);
1504
Ingo Molnar42202dd2009-06-13 14:57:28 +02001505 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001506 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001507 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001508 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1509 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001510
Ingo Molnar42202dd2009-06-13 14:57:28 +02001511 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001512 if (forever && status != -1) {
1513 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001514 perf_stat__reset_stats(evsel_list);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001515 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001516 }
1517
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001518 if (!forever && status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001519 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001520
1521 perf_evlist__free_stats(evsel_list);
1522out_free_maps:
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001523 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001524out:
1525 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001526 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001527}