blob: 021783ae2bfa97207f43c23e74a85f1be49f5f59 [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 Eraniand7e7a452013-02-06 15:46:02 +010071static void print_aggr_socket(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
79static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020080static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +100081static bool scale = true;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +020082static bool no_aggr = false;
Stephane Eraniand7e7a452013-02-06 15:46:02 +010083static bool aggr_socket = false;
Chris Wilson933da832009-10-04 01:35:01 +010084static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100085static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020086static int detailed_run = 0;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -020087static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +020088static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +020089static const char *csv_sep = NULL;
90static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +080091static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +020092static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +020093static const char *pre_cmd = NULL;
94static const char *post_cmd = NULL;
95static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +010096static unsigned int interval = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -050097static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +010098static struct timespec ref_time;
Stephane Eraniand7e7a452013-02-06 15:46:02 +010099static struct cpu_map *sock_map;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200100
Liming Wang60666c62009-12-31 16:05:50 +0800101static volatile int done = 0;
102
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200103struct perf_stat {
104 struct stats res_stats[3];
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200105};
106
Stephane Eranian13370a92013-01-29 12:47:44 +0100107static inline void diff_timespec(struct timespec *r, struct timespec *a,
108 struct timespec *b)
109{
110 r->tv_sec = a->tv_sec - b->tv_sec;
111 if (a->tv_nsec < b->tv_nsec) {
112 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
113 r->tv_sec--;
114 } else {
115 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
116 }
117}
118
119static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
120{
121 return (evsel->cpus && !target.cpu_list) ? evsel->cpus : evsel_list->cpus;
122}
123
124static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
125{
126 return perf_evsel__cpus(evsel)->nr;
127}
128
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500129static void perf_evsel__reset_stat_priv(struct perf_evsel *evsel)
130{
131 memset(evsel->priv, 0, sizeof(struct perf_stat));
132}
133
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200134static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200135{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200136 evsel->priv = zalloc(sizeof(struct perf_stat));
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200137 return evsel->priv == NULL ? -ENOMEM : 0;
138}
139
140static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
141{
142 free(evsel->priv);
143 evsel->priv = NULL;
144}
145
Stephane Eranian13370a92013-01-29 12:47:44 +0100146static int perf_evsel__alloc_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800147{
Stephane Eranian13370a92013-01-29 12:47:44 +0100148 void *addr;
149 size_t sz;
150
151 sz = sizeof(*evsel->counts) +
152 (perf_evsel__nr_cpus(evsel) * sizeof(struct perf_counts_values));
153
154 addr = zalloc(sz);
155 if (!addr)
156 return -ENOMEM;
157
158 evsel->prev_raw_counts = addr;
159
160 return 0;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800161}
162
Stephane Eranian13370a92013-01-29 12:47:44 +0100163static void perf_evsel__free_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800164{
Stephane Eranian13370a92013-01-29 12:47:44 +0100165 free(evsel->prev_raw_counts);
166 evsel->prev_raw_counts = NULL;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800167}
168
Robert Richter666e6d42012-04-05 18:26:27 +0200169static struct stats runtime_nsecs_stats[MAX_NR_CPUS];
170static struct stats runtime_cycles_stats[MAX_NR_CPUS];
171static struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
172static struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
173static struct stats runtime_branches_stats[MAX_NR_CPUS];
174static struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
175static struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
176static struct stats runtime_l1_icache_stats[MAX_NR_CPUS];
177static struct stats runtime_ll_cache_stats[MAX_NR_CPUS];
178static struct stats runtime_itlb_cache_stats[MAX_NR_CPUS];
179static struct stats runtime_dtlb_cache_stats[MAX_NR_CPUS];
180static struct stats walltime_nsecs_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200181
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500182static void reset_stats(void)
183{
184 memset(runtime_nsecs_stats, 0, sizeof(runtime_nsecs_stats));
185 memset(runtime_cycles_stats, 0, sizeof(runtime_cycles_stats));
186 memset(runtime_stalled_cycles_front_stats, 0, sizeof(runtime_stalled_cycles_front_stats));
187 memset(runtime_stalled_cycles_back_stats, 0, sizeof(runtime_stalled_cycles_back_stats));
188 memset(runtime_branches_stats, 0, sizeof(runtime_branches_stats));
189 memset(runtime_cacherefs_stats, 0, sizeof(runtime_cacherefs_stats));
190 memset(runtime_l1_dcache_stats, 0, sizeof(runtime_l1_dcache_stats));
191 memset(runtime_l1_icache_stats, 0, sizeof(runtime_l1_icache_stats));
192 memset(runtime_ll_cache_stats, 0, sizeof(runtime_ll_cache_stats));
193 memset(runtime_itlb_cache_stats, 0, sizeof(runtime_itlb_cache_stats));
194 memset(runtime_dtlb_cache_stats, 0, sizeof(runtime_dtlb_cache_stats));
195 memset(&walltime_nsecs_stats, 0, sizeof(walltime_nsecs_stats));
196}
197
Jiri Olsacac21422012-11-12 18:34:00 +0100198static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200199{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200200 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200201
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200202 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200203 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
204 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200205
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200206 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300207
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300208 if (perf_target__has_cpu(&target))
209 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200210
Arnaldo Carvalho de Melo07ac0022012-11-13 17:27:28 -0300211 if (!perf_target__has_task(&target) &&
Namhyung Kim823254e2012-11-29 15:38:30 +0900212 perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200213 attr->disabled = 1;
214 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200215 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300216
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300217 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200218}
219
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200220/*
221 * Does the counter have nsecs as a unit?
222 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200223static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200224{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200225 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
226 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200227 return 1;
228
229 return 0;
230}
231
232/*
Ingo Molnardcd99362011-04-27 04:36:37 +0200233 * Update various tracking values we maintain to print
234 * more semantic information such as miss/hit ratios,
235 * instruction rates, etc:
236 */
237static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
238{
239 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
240 update_stats(&runtime_nsecs_stats[0], count[0]);
241 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
242 update_stats(&runtime_cycles_stats[0], count[0]);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200243 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
244 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200245 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
Ingo Molnard3d1e862011-04-29 13:49:08 +0200246 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200247 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
248 update_stats(&runtime_branches_stats[0], count[0]);
249 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
250 update_stats(&runtime_cacherefs_stats[0], count[0]);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200251 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
252 update_stats(&runtime_l1_dcache_stats[0], count[0]);
Ingo Molnarc3305252011-05-19 14:01:42 +0200253 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1I))
254 update_stats(&runtime_l1_icache_stats[0], count[0]);
255 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_LL))
256 update_stats(&runtime_ll_cache_stats[0], count[0]);
257 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_DTLB))
258 update_stats(&runtime_dtlb_cache_stats[0], count[0]);
259 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_ITLB))
260 update_stats(&runtime_itlb_cache_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200261}
262
263/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200264 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200265 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200266 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200267static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200268{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200269 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200270 u64 *count = counter->counts->aggr.values;
271 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200272
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800273 if (__perf_evsel__read(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900274 thread_map__nr(evsel_list->threads), scale) < 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200275 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200276
277 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200278 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200279
280 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200281 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300282 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200283 }
284
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200285 /*
286 * Save the full runtime - to allow normalization during printout:
287 */
Ingo Molnardcd99362011-04-27 04:36:37 +0200288 update_shadow_stats(counter, count);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200289
290 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200291}
292
293/*
294 * Read out the results of a single counter:
295 * do not aggregate counts across CPUs in system-wide mode
296 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200297static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200298{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200299 u64 *count;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200300 int cpu;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200301
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800302 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200303 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
304 return -1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200305
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200306 count = counter->counts->cpu[cpu].values;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200307
Ingo Molnardcd99362011-04-27 04:36:37 +0200308 update_shadow_stats(counter, count);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200309 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200310
311 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200312}
313
Stephane Eranian13370a92013-01-29 12:47:44 +0100314static void print_interval(void)
315{
316 static int num_print_interval;
317 struct perf_evsel *counter;
318 struct perf_stat *ps;
319 struct timespec ts, rs;
320 char prefix[64];
321
322 if (no_aggr) {
323 list_for_each_entry(counter, &evsel_list->entries, node) {
324 ps = counter->priv;
325 memset(ps->res_stats, 0, sizeof(ps->res_stats));
326 read_counter(counter);
327 }
328 } else {
329 list_for_each_entry(counter, &evsel_list->entries, node) {
330 ps = counter->priv;
331 memset(ps->res_stats, 0, sizeof(ps->res_stats));
332 read_counter_aggr(counter);
333 }
334 }
335 clock_gettime(CLOCK_MONOTONIC, &ts);
336 diff_timespec(&rs, &ts, &ref_time);
337 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
338
339 if (num_print_interval == 0 && !csv_output) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100340 if (aggr_socket)
341 fprintf(output, "# time socket cpus counts events\n");
342 else if (no_aggr)
Stephane Eranian13370a92013-01-29 12:47:44 +0100343 fprintf(output, "# time CPU counts events\n");
344 else
345 fprintf(output, "# time counts events\n");
346 }
347
348 if (++num_print_interval == 25)
349 num_print_interval = 0;
350
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100351 if (aggr_socket)
352 print_aggr_socket(prefix);
353 else if (no_aggr) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100354 list_for_each_entry(counter, &evsel_list->entries, node)
355 print_counter(counter, prefix);
356 } else {
357 list_for_each_entry(counter, &evsel_list->entries, node)
358 print_counter_aggr(counter, prefix);
359 }
360}
361
Namhyung Kimacf28922013-03-11 16:43:18 +0900362static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200363{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300364 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200365 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100366 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100367 struct timespec ts;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200368 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300369 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200370
Stephane Eranian13370a92013-01-29 12:47:44 +0100371 if (interval) {
372 ts.tv_sec = interval / 1000;
373 ts.tv_nsec = (interval % 1000) * 1000000;
374 } else {
375 ts.tv_sec = 1;
376 ts.tv_nsec = 0;
377 }
378
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100379 if (aggr_socket
380 && cpu_map__build_socket_map(evsel_list->cpus, &sock_map)) {
381 perror("cannot build socket map");
382 return -1;
383 }
384
Liming Wang60666c62009-12-31 16:05:50 +0800385 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900386 if (perf_evlist__prepare_workload(evsel_list, &target, argv,
387 false, false) < 0) {
388 perror("failed to prepare workload");
389 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800390 }
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000391 }
392
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200393 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300394 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200395
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200396 list_for_each_entry(counter, &evsel_list->entries, node) {
Jiri Olsacac21422012-11-12 18:34:00 +0100397 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600398 /*
399 * PPC returns ENXIO for HW counters until 2.6.37
400 * (behavior changed with commit b0a873e).
401 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100402 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600403 errno == ENOENT || errno == EOPNOTSUPP ||
404 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600405 if (verbose)
406 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300407 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600408 counter->supported = false;
Ingo Molnarede70292011-04-28 08:48:42 +0200409 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600410 }
Ingo Molnarede70292011-04-28 08:48:42 +0200411
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300412 perf_evsel__open_strerror(counter, &target,
413 errno, msg, sizeof(msg));
414 ui__error("%s\n", msg);
415
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200416 if (child_pid != -1)
417 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600418
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200419 return -1;
420 }
David Ahern2cee77c2011-05-30 08:55:59 -0600421 counter->supported = true;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300422 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200423
Arnaldo Carvalho de Melo1491a632012-09-26 14:43:13 -0300424 if (perf_evlist__apply_filters(evsel_list)) {
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100425 error("failed to set filter with %d (%s)\n", errno,
426 strerror(errno));
427 return -1;
428 }
429
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200430 /*
431 * Enable counters and exec the command:
432 */
433 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100434 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200435
Liming Wang60666c62009-12-31 16:05:50 +0800436 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900437 perf_evlist__start_workload(evsel_list);
438
Stephane Eranian13370a92013-01-29 12:47:44 +0100439 if (interval) {
440 while (!waitpid(child_pid, &status, WNOHANG)) {
441 nanosleep(&ts, NULL);
442 print_interval();
443 }
444 }
Liming Wang60666c62009-12-31 16:05:50 +0800445 wait(&status);
Andi Kleen33e49ea2011-09-15 14:31:40 -0700446 if (WIFSIGNALED(status))
447 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800448 } else {
Stephane Eranian13370a92013-01-29 12:47:44 +0100449 while (!done) {
450 nanosleep(&ts, NULL);
451 if (interval)
452 print_interval();
453 }
Liming Wang60666c62009-12-31 16:05:50 +0800454 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200455
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200456 t1 = rdclock();
457
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200458 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200459
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200460 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200461 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200462 read_counter(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800463 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200464 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200465 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200466 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200467 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800468 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900469 thread_map__nr(evsel_list->threads));
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200470 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200471 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200472
Ingo Molnar42202dd2009-06-13 14:57:28 +0200473 return WEXITSTATUS(status);
474}
475
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200476static int run_perf_stat(int argc __maybe_unused, const char **argv)
477{
478 int ret;
479
480 if (pre_cmd) {
481 ret = system(pre_cmd);
482 if (ret)
483 return ret;
484 }
485
486 if (sync_run)
487 sync();
488
489 ret = __run_perf_stat(argc, argv);
490 if (ret)
491 return ret;
492
493 if (post_cmd) {
494 ret = system(post_cmd);
495 if (ret)
496 return ret;
497 }
498
499 return ret;
500}
501
Ingo Molnarf99844c2011-04-27 05:35:39 +0200502static void print_noise_pct(double total, double avg)
503{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800504 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200505
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700506 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200507 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600508 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200509 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200510}
511
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200512static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200513{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200514 struct perf_stat *ps;
515
Peter Zijlstra849abde2009-09-04 18:23:38 +0200516 if (run_count == 1)
517 return;
518
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200519 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200520 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200521}
522
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100523static void nsec_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200524{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200525 double msecs = avg / 1e6;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200526 char cpustr[16] = { '\0', };
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200527 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-25s";
Ingo Molnar42202dd2009-06-13 14:57:28 +0200528
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100529 if (aggr_socket)
530 sprintf(cpustr, "S%*d%s%*d%s",
531 csv_output ? 0 : -5,
532 cpu,
533 csv_sep,
534 csv_output ? 0 : 4,
535 nr,
536 csv_sep);
537 else if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200538 sprintf(cpustr, "CPU%*d%s",
539 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800540 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200541
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300542 fprintf(output, fmt, cpustr, msecs, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200543
Stephane Eranian023695d2011-02-14 11:20:01 +0200544 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200545 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200546
Stephane Eranian13370a92013-01-29 12:47:44 +0100547 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200548 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200549
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200550 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200551 fprintf(output, " # %8.3f CPUs utilized ",
552 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900553 else
554 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200555}
556
Namhyung Kim15e63922011-12-28 00:35:49 +0900557/* used for get_ratio_color() */
558enum grc_type {
559 GRC_STALLED_CYCLES_FE,
560 GRC_STALLED_CYCLES_BE,
561 GRC_CACHE_MISSES,
562 GRC_MAX_NR
563};
564
565static const char *get_ratio_color(enum grc_type type, double ratio)
566{
567 static const double grc_table[GRC_MAX_NR][3] = {
568 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
569 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
570 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
571 };
572 const char *color = PERF_COLOR_NORMAL;
573
574 if (ratio > grc_table[type][0])
575 color = PERF_COLOR_RED;
576 else if (ratio > grc_table[type][1])
577 color = PERF_COLOR_MAGENTA;
578 else if (ratio > grc_table[type][2])
579 color = PERF_COLOR_YELLOW;
580
581 return color;
582}
583
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300584static void print_stalled_cycles_frontend(int cpu,
585 struct perf_evsel *evsel
586 __maybe_unused, double avg)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200587{
588 double total, ratio = 0.0;
589 const char *color;
590
591 total = avg_stats(&runtime_cycles_stats[cpu]);
592
593 if (total)
594 ratio = avg / total * 100.0;
595
Namhyung Kim15e63922011-12-28 00:35:49 +0900596 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200597
Stephane Eranian4aa90152011-08-15 22:22:33 +0200598 fprintf(output, " # ");
599 color_fprintf(output, color, "%6.2f%%", ratio);
600 fprintf(output, " frontend cycles idle ");
Ingo Molnard3d1e862011-04-29 13:49:08 +0200601}
602
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300603static void print_stalled_cycles_backend(int cpu,
604 struct perf_evsel *evsel
605 __maybe_unused, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200606{
607 double total, ratio = 0.0;
608 const char *color;
609
610 total = avg_stats(&runtime_cycles_stats[cpu]);
611
612 if (total)
613 ratio = avg / total * 100.0;
614
Namhyung Kim15e63922011-12-28 00:35:49 +0900615 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200616
Stephane Eranian4aa90152011-08-15 22:22:33 +0200617 fprintf(output, " # ");
618 color_fprintf(output, color, "%6.2f%%", ratio);
619 fprintf(output, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200620}
621
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300622static void print_branch_misses(int cpu,
623 struct perf_evsel *evsel __maybe_unused,
624 double avg)
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200625{
626 double total, ratio = 0.0;
627 const char *color;
628
629 total = avg_stats(&runtime_branches_stats[cpu]);
630
631 if (total)
632 ratio = avg / total * 100.0;
633
Namhyung Kim15e63922011-12-28 00:35:49 +0900634 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200635
Stephane Eranian4aa90152011-08-15 22:22:33 +0200636 fprintf(output, " # ");
637 color_fprintf(output, color, "%6.2f%%", ratio);
638 fprintf(output, " of all branches ");
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200639}
640
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300641static void print_l1_dcache_misses(int cpu,
642 struct perf_evsel *evsel __maybe_unused,
643 double avg)
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200644{
645 double total, ratio = 0.0;
646 const char *color;
647
648 total = avg_stats(&runtime_l1_dcache_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_CACHE_MISSES, ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200654
Stephane Eranian4aa90152011-08-15 22:22:33 +0200655 fprintf(output, " # ");
656 color_fprintf(output, color, "%6.2f%%", ratio);
657 fprintf(output, " of all L1-dcache hits ");
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200658}
659
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300660static void print_l1_icache_misses(int cpu,
661 struct perf_evsel *evsel __maybe_unused,
662 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200663{
664 double total, ratio = 0.0;
665 const char *color;
666
667 total = avg_stats(&runtime_l1_icache_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_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200673
Stephane Eranian4aa90152011-08-15 22:22:33 +0200674 fprintf(output, " # ");
675 color_fprintf(output, color, "%6.2f%%", ratio);
676 fprintf(output, " of all L1-icache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200677}
678
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300679static void print_dtlb_cache_misses(int cpu,
680 struct perf_evsel *evsel __maybe_unused,
681 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200682{
683 double total, ratio = 0.0;
684 const char *color;
685
686 total = avg_stats(&runtime_dtlb_cache_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 Molnarc3305252011-05-19 14:01:42 +0200692
Stephane Eranian4aa90152011-08-15 22:22:33 +0200693 fprintf(output, " # ");
694 color_fprintf(output, color, "%6.2f%%", ratio);
695 fprintf(output, " of all dTLB cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200696}
697
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300698static void print_itlb_cache_misses(int cpu,
699 struct perf_evsel *evsel __maybe_unused,
700 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200701{
702 double total, ratio = 0.0;
703 const char *color;
704
705 total = avg_stats(&runtime_itlb_cache_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 Molnarc3305252011-05-19 14:01:42 +0200711
Stephane Eranian4aa90152011-08-15 22:22:33 +0200712 fprintf(output, " # ");
713 color_fprintf(output, color, "%6.2f%%", ratio);
714 fprintf(output, " of all iTLB cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200715}
716
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300717static void print_ll_cache_misses(int cpu,
718 struct perf_evsel *evsel __maybe_unused,
719 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200720{
721 double total, ratio = 0.0;
722 const char *color;
723
724 total = avg_stats(&runtime_ll_cache_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 Molnarc3305252011-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 LL-cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200734}
735
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100736static void abs_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200737{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200738 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200739 char cpustr[16] = { '\0', };
Stephane Eraniand7470b62010-12-01 18:49:05 +0200740 const char *fmt;
741
742 if (csv_output)
743 fmt = "%s%.0f%s%s";
744 else if (big_num)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200745 fmt = "%s%'18.0f%s%-25s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200746 else
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200747 fmt = "%s%18.0f%s%-25s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200748
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100749 if (aggr_socket)
750 sprintf(cpustr, "S%*d%s%*d%s",
751 csv_output ? 0 : -5,
752 cpu,
753 csv_sep,
754 csv_output ? 0 : 4,
755 nr,
756 csv_sep);
757 else if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200758 sprintf(cpustr, "CPU%*d%s",
759 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800760 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200761 else
762 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200763
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300764 fprintf(output, fmt, cpustr, avg, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200765
Stephane Eranian023695d2011-02-14 11:20:01 +0200766 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200767 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200768
Stephane Eranian13370a92013-01-29 12:47:44 +0100769 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200770 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200771
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200772 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200773 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200774 if (total)
775 ratio = avg / total;
776
Stephane Eranian4aa90152011-08-15 22:22:33 +0200777 fprintf(output, " # %5.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200778
Ingo Molnard3d1e862011-04-29 13:49:08 +0200779 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
780 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200781
782 if (total && avg) {
783 ratio = total / avg;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200784 fprintf(output, "\n # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200785 }
786
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200787 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200788 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200789 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200790 } else if (
791 evsel->attr.type == PERF_TYPE_HW_CACHE &&
792 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
793 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
794 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200795 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200796 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnarc3305252011-05-19 14:01:42 +0200797 } else if (
798 evsel->attr.type == PERF_TYPE_HW_CACHE &&
799 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
800 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
801 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
802 runtime_l1_icache_stats[cpu].n != 0) {
803 print_l1_icache_misses(cpu, evsel, avg);
804 } else if (
805 evsel->attr.type == PERF_TYPE_HW_CACHE &&
806 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
807 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
808 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
809 runtime_dtlb_cache_stats[cpu].n != 0) {
810 print_dtlb_cache_misses(cpu, evsel, avg);
811 } else if (
812 evsel->attr.type == PERF_TYPE_HW_CACHE &&
813 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
814 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
815 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
816 runtime_itlb_cache_stats[cpu].n != 0) {
817 print_itlb_cache_misses(cpu, evsel, avg);
818 } else if (
819 evsel->attr.type == PERF_TYPE_HW_CACHE &&
820 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
821 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
822 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
823 runtime_ll_cache_stats[cpu].n != 0) {
824 print_ll_cache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200825 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
826 runtime_cacherefs_stats[cpu].n != 0) {
827 total = avg_stats(&runtime_cacherefs_stats[cpu]);
828
829 if (total)
830 ratio = avg * 100 / total;
831
Stephane Eranian4aa90152011-08-15 22:22:33 +0200832 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200833
Ingo Molnard3d1e862011-04-29 13:49:08 +0200834 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
835 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200836 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200837 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200838 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
839 total = avg_stats(&runtime_nsecs_stats[cpu]);
840
841 if (total)
842 ratio = 1.0 * avg / total;
843
Stephane Eranian4aa90152011-08-15 22:22:33 +0200844 fprintf(output, " # %8.3f GHz ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200845 } else if (runtime_nsecs_stats[cpu].n != 0) {
Namhyung Kim5fde2522012-02-06 16:44:44 +0900846 char unit = 'M';
847
Ingo Molnar481f9882011-04-27 04:34:16 +0200848 total = avg_stats(&runtime_nsecs_stats[cpu]);
849
850 if (total)
851 ratio = 1000.0 * avg / total;
Namhyung Kim5fde2522012-02-06 16:44:44 +0900852 if (ratio < 0.001) {
853 ratio *= 1000;
854 unit = 'K';
855 }
Ingo Molnar481f9882011-04-27 04:34:16 +0200856
Namhyung Kim5fde2522012-02-06 16:44:44 +0900857 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200858 } else {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200859 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200860 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200861}
862
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100863static void print_aggr_socket(char *prefix)
864{
865 struct perf_evsel *counter;
866 u64 ena, run, val;
867 int cpu, s, s2, sock, nr;
868
869 if (!sock_map)
870 return;
871
872 for (s = 0; s < sock_map->nr; s++) {
873 sock = cpu_map__socket(sock_map, s);
874 list_for_each_entry(counter, &evsel_list->entries, node) {
875 val = ena = run = 0;
876 nr = 0;
877 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
878 s2 = cpu_map__get_socket(evsel_list->cpus, cpu);
879 if (s2 != sock)
880 continue;
881 val += counter->counts->cpu[cpu].val;
882 ena += counter->counts->cpu[cpu].ena;
883 run += counter->counts->cpu[cpu].run;
884 nr++;
885 }
886 if (prefix)
887 fprintf(output, "%s", prefix);
888
889 if (run == 0 || ena == 0) {
890 fprintf(output, "S%*d%s%*d%s%*s%s%*s",
891 csv_output ? 0 : -5,
892 s,
893 csv_sep,
894 csv_output ? 0 : 4,
895 nr,
896 csv_sep,
897 csv_output ? 0 : 18,
898 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
899 csv_sep,
900 csv_output ? 0 : -24,
901 perf_evsel__name(counter));
902 if (counter->cgrp)
903 fprintf(output, "%s%s",
904 csv_sep, counter->cgrp->name);
905
906 fputc('\n', output);
907 continue;
908 }
909
910 if (nsec_counter(counter))
911 nsec_printout(sock, nr, counter, val);
912 else
913 abs_printout(sock, nr, counter, val);
914
915 if (!csv_output) {
916 print_noise(counter, 1.0);
917
918 if (run != ena)
919 fprintf(output, " (%.2f%%)",
920 100.0 * run / ena);
921 }
922 fputc('\n', output);
923 }
924 }
925}
926
Ingo Molnar42202dd2009-06-13 14:57:28 +0200927/*
928 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200929 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200930 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100931static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200932{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200933 struct perf_stat *ps = counter->priv;
934 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200935 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200936
Stephane Eranian13370a92013-01-29 12:47:44 +0100937 if (prefix)
938 fprintf(output, "%s", prefix);
939
Ingo Molnar42202dd2009-06-13 14:57:28 +0200940 if (scaled == -1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200941 fprintf(output, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200942 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600943 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian023695d2011-02-14 11:20:01 +0200944 csv_sep,
945 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300946 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200947
948 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200949 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200950
Stephane Eranian4aa90152011-08-15 22:22:33 +0200951 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200952 return;
953 }
954
955 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100956 nsec_printout(-1, 0, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200957 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100958 abs_printout(-1, 0, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200959
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700960 print_noise(counter, avg);
961
Stephane Eraniand7470b62010-12-01 18:49:05 +0200962 if (csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200963 fputc('\n', output);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200964 return;
965 }
966
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200967 if (scaled) {
968 double avg_enabled, avg_running;
969
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200970 avg_enabled = avg_stats(&ps->res_stats[1]);
971 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200972
Stephane Eranian4aa90152011-08-15 22:22:33 +0200973 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200974 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200975 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200976}
977
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200978/*
979 * Print out the results of a single counter:
980 * does not use aggregated count in system-wide
981 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100982static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200983{
984 u64 ena, run, val;
985 int cpu;
986
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800987 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200988 val = counter->counts->cpu[cpu].val;
989 ena = counter->counts->cpu[cpu].ena;
990 run = counter->counts->cpu[cpu].run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100991
992 if (prefix)
993 fprintf(output, "%s", prefix);
994
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200995 if (run == 0 || ena == 0) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200996 fprintf(output, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200997 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800998 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200999 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -06001000 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
1001 csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +02001002 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001003 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001004
Stephane Eranian023695d2011-02-14 11:20:01 +02001005 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001006 fprintf(output, "%s%s",
1007 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +02001008
Stephane Eranian4aa90152011-08-15 22:22:33 +02001009 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001010 continue;
1011 }
1012
1013 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001014 nsec_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001015 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001016 abs_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001017
Stephane Eraniand7470b62010-12-01 18:49:05 +02001018 if (!csv_output) {
1019 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001020
Ingo Molnarc6264de2011-04-27 13:50:47 +02001021 if (run != ena)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001022 fprintf(output, " (%.2f%%)",
1023 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001024 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001025 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001026 }
1027}
1028
Ingo Molnar42202dd2009-06-13 14:57:28 +02001029static void print_stat(int argc, const char **argv)
1030{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001031 struct perf_evsel *counter;
1032 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001033
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001034 fflush(stdout);
1035
Stephane Eraniand7470b62010-12-01 18:49:05 +02001036 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001037 fprintf(output, "\n");
1038 fprintf(output, " Performance counter stats for ");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001039 if (!perf_target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001040 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001041 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001042 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +09001043 } else if (target.pid)
1044 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001045 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001046 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001047
Stephane Eranian4aa90152011-08-15 22:22:33 +02001048 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001049 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001050 fprintf(output, " (%d runs)", run_count);
1051 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001052 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001053
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001054 if (aggr_socket)
1055 print_aggr_socket(NULL);
1056 else if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001057 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001058 print_counter(counter, NULL);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001059 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001060 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001061 print_counter_aggr(counter, NULL);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001062 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001063
Stephane Eraniand7470b62010-12-01 18:49:05 +02001064 if (!csv_output) {
Ingo Molnarc3305252011-05-19 14:01:42 +02001065 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001066 fprintf(output, "\n");
1067 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001068 avg_stats(&walltime_nsecs_stats)/1e9);
1069 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001070 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +02001071 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
1072 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +02001073 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001074 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +02001075 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001076}
1077
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001078static volatile int signr = -1;
1079
Ingo Molnar52425192009-05-26 09:17:18 +02001080static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001081{
Stephane Eranian13370a92013-01-29 12:47:44 +01001082 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001083 done = 1;
1084
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001085 signr = signo;
1086}
1087
1088static void sig_atexit(void)
1089{
Chris Wilson933da832009-10-04 01:35:01 +01001090 if (child_pid != -1)
1091 kill(child_pid, SIGTERM);
1092
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001093 if (signr == -1)
1094 return;
1095
1096 signal(signr, SIG_DFL);
1097 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001098}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001099
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001100static int stat__set_big_num(const struct option *opt __maybe_unused,
1101 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001102{
1103 big_num_opt = unset ? 0 : 1;
1104 return 0;
1105}
1106
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001107/*
1108 * Add default attributes, if there were no attributes specified or
1109 * if -d/--detailed, -d -d or -d -d -d is used:
1110 */
1111static int add_default_attributes(void)
1112{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001113 struct perf_event_attr default_attrs[] = {
1114
1115 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1116 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1117 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1118 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1119
1120 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1121 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1122 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1123 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1124 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1125 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1126
1127};
1128
1129/*
1130 * Detailed stats (-d), covering the L1 and last level data caches:
1131 */
1132 struct perf_event_attr detailed_attrs[] = {
1133
1134 { .type = PERF_TYPE_HW_CACHE,
1135 .config =
1136 PERF_COUNT_HW_CACHE_L1D << 0 |
1137 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1138 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1139
1140 { .type = PERF_TYPE_HW_CACHE,
1141 .config =
1142 PERF_COUNT_HW_CACHE_L1D << 0 |
1143 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1144 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1145
1146 { .type = PERF_TYPE_HW_CACHE,
1147 .config =
1148 PERF_COUNT_HW_CACHE_LL << 0 |
1149 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1150 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1151
1152 { .type = PERF_TYPE_HW_CACHE,
1153 .config =
1154 PERF_COUNT_HW_CACHE_LL << 0 |
1155 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1156 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1157};
1158
1159/*
1160 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1161 */
1162 struct perf_event_attr very_detailed_attrs[] = {
1163
1164 { .type = PERF_TYPE_HW_CACHE,
1165 .config =
1166 PERF_COUNT_HW_CACHE_L1I << 0 |
1167 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1168 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1169
1170 { .type = PERF_TYPE_HW_CACHE,
1171 .config =
1172 PERF_COUNT_HW_CACHE_L1I << 0 |
1173 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1174 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1175
1176 { .type = PERF_TYPE_HW_CACHE,
1177 .config =
1178 PERF_COUNT_HW_CACHE_DTLB << 0 |
1179 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1180 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1181
1182 { .type = PERF_TYPE_HW_CACHE,
1183 .config =
1184 PERF_COUNT_HW_CACHE_DTLB << 0 |
1185 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1186 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1187
1188 { .type = PERF_TYPE_HW_CACHE,
1189 .config =
1190 PERF_COUNT_HW_CACHE_ITLB << 0 |
1191 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1192 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1193
1194 { .type = PERF_TYPE_HW_CACHE,
1195 .config =
1196 PERF_COUNT_HW_CACHE_ITLB << 0 |
1197 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1198 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1199
1200};
1201
1202/*
1203 * Very, very detailed stats (-d -d -d), adding prefetch events:
1204 */
1205 struct perf_event_attr very_very_detailed_attrs[] = {
1206
1207 { .type = PERF_TYPE_HW_CACHE,
1208 .config =
1209 PERF_COUNT_HW_CACHE_L1D << 0 |
1210 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1211 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1212
1213 { .type = PERF_TYPE_HW_CACHE,
1214 .config =
1215 PERF_COUNT_HW_CACHE_L1D << 0 |
1216 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1217 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1218};
1219
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001220 /* Set attrs if no event is selected and !null_run: */
1221 if (null_run)
1222 return 0;
1223
1224 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001225 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001226 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001227 }
1228
1229 /* Detailed events get appended to the event list: */
1230
1231 if (detailed_run < 1)
1232 return 0;
1233
1234 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001235 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001236 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001237
1238 if (detailed_run < 2)
1239 return 0;
1240
1241 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001242 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001243 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001244
1245 if (detailed_run < 3)
1246 return 0;
1247
1248 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001249 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001250}
1251
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001252int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001253{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001254 bool append_file = false;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001255 int output_fd = 0;
1256 const char *output_name = NULL;
1257 const struct option options[] = {
1258 OPT_CALLBACK('e', "event", &evsel_list, "event",
1259 "event selector. use 'perf list' to list available events",
1260 parse_events_option),
1261 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1262 "event filter", parse_filter),
1263 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1264 "child tasks do not inherit counters"),
1265 OPT_STRING('p', "pid", &target.pid, "pid",
1266 "stat events on existing process id"),
1267 OPT_STRING('t', "tid", &target.tid, "tid",
1268 "stat events on existing thread id"),
1269 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1270 "system-wide collection from all CPUs"),
1271 OPT_BOOLEAN('g', "group", &group,
1272 "put the counters into a counter group"),
1273 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1274 OPT_INCR('v', "verbose", &verbose,
1275 "be more verbose (show counter open errors, etc)"),
1276 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001277 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001278 OPT_BOOLEAN('n', "null", &null_run,
1279 "null run - dont start any counters"),
1280 OPT_INCR('d', "detailed", &detailed_run,
1281 "detailed run - start a lot of events"),
1282 OPT_BOOLEAN('S', "sync", &sync_run,
1283 "call sync() before starting a run"),
1284 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1285 "print large numbers with thousands\' separators",
1286 stat__set_big_num),
1287 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1288 "list of cpus to monitor in system-wide"),
1289 OPT_BOOLEAN('A', "no-aggr", &no_aggr, "disable CPU count aggregation"),
1290 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1291 "print counts with custom separator"),
1292 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1293 "monitor event in cgroup name only", parse_cgroups),
1294 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1295 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1296 OPT_INTEGER(0, "log-fd", &output_fd,
1297 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001298 OPT_STRING(0, "pre", &pre_cmd, "command",
1299 "command to run prior to the measured command"),
1300 OPT_STRING(0, "post", &post_cmd, "command",
1301 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001302 OPT_UINTEGER('I', "interval-print", &interval,
1303 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001304 OPT_BOOLEAN(0, "aggr-socket", &aggr_socket, "aggregate counts per processor socket"),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001305 OPT_END()
1306 };
1307 const char * const stat_usage[] = {
1308 "perf stat [<options>] [<command>]",
1309 NULL
1310 };
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001311 struct perf_evsel *pos;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001312 int status = -ENOMEM, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001313 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001314
Stephane Eranian5af52b52010-05-18 15:00:01 +02001315 setlocale(LC_ALL, "");
1316
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001317 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001318 if (evsel_list == NULL)
1319 return -ENOMEM;
1320
Anton Blancharda0541232009-07-22 23:04:12 +10001321 argc = parse_options(argc, argv, options, stat_usage,
1322 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001323
Stephane Eranian4aa90152011-08-15 22:22:33 +02001324 output = stderr;
1325 if (output_name && strcmp(output_name, "-"))
1326 output = NULL;
1327
Jim Cromie56f3bae2011-09-07 17:14:00 -06001328 if (output_name && output_fd) {
1329 fprintf(stderr, "cannot use both --output and --log-fd\n");
1330 usage_with_options(stat_usage, options);
1331 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001332
1333 if (output_fd < 0) {
1334 fprintf(stderr, "argument to --log-fd must be a > 0\n");
1335 usage_with_options(stat_usage, options);
1336 }
1337
Stephane Eranian4aa90152011-08-15 22:22:33 +02001338 if (!output) {
1339 struct timespec tm;
1340 mode = append_file ? "a" : "w";
1341
1342 output = fopen(output_name, mode);
1343 if (!output) {
1344 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001345 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001346 }
1347 clock_gettime(CLOCK_REALTIME, &tm);
1348 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001349 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001350 mode = append_file ? "a" : "w";
1351 output = fdopen(output_fd, mode);
1352 if (!output) {
1353 perror("Failed opening logfd");
1354 return -errno;
1355 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001356 }
1357
Jim Cromied4ffd042011-09-07 17:14:03 -06001358 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001359 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001360 if (!strcmp(csv_sep, "\\t"))
1361 csv_sep = "\t";
1362 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001363 csv_sep = DEFAULT_SEPARATOR;
1364
1365 /*
1366 * let the spreadsheet do the pretty-printing
1367 */
1368 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001369 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001370 if (big_num_opt == 1) {
1371 fprintf(stderr, "-B option not supported with -x\n");
1372 usage_with_options(stat_usage, options);
1373 } else /* Nope, so disable big number formatting */
1374 big_num = false;
1375 } else if (big_num_opt == 0) /* User passed --no-big-num */
1376 big_num = false;
1377
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001378 if (!argc && !perf_target__has_task(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001379 usage_with_options(stat_usage, options);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001380 if (run_count < 0) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001381 usage_with_options(stat_usage, options);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001382 } else if (run_count == 0) {
1383 forever = true;
1384 run_count = 1;
1385 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001386
Stephane Eranian023695d2011-02-14 11:20:01 +02001387 /* no_aggr, cgroup are for system-wide only */
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001388 if ((no_aggr || nr_cgroups) && !perf_target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001389 fprintf(stderr, "both cgroup and no-aggregation "
1390 "modes only available in system-wide mode\n");
1391
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001392 usage_with_options(stat_usage, options);
Stephane Eranian023695d2011-02-14 11:20:01 +02001393 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001394
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001395 if (aggr_socket) {
1396 if (!perf_target__has_cpu(&target)) {
1397 fprintf(stderr, "--aggr-socket only available in system-wide mode (-a)\n");
1398 usage_with_options(stat_usage, options);
1399 }
1400 no_aggr = true;
1401 }
1402
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001403 if (add_default_attributes())
1404 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001405
Namhyung Kim4bd0f2d2012-04-26 14:15:18 +09001406 perf_target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001407
Namhyung Kim77a6f012012-05-07 14:09:04 +09001408 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001409 if (perf_target__has_task(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001410 pr_err("Problems finding threads of monitor\n");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001411 if (perf_target__has_cpu(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001412 perror("failed to parse CPUs map");
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001413
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001414 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001415 return -1;
1416 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001417 if (interval && interval < 100) {
1418 pr_err("print interval must be >= 100ms\n");
1419 usage_with_options(stat_usage, options);
1420 return -1;
1421 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001422
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001423 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001424 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001425 perf_evsel__alloc_counts(pos, perf_evsel__nr_cpus(pos)) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001426 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001427 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001428 if (interval) {
1429 list_for_each_entry(pos, &evsel_list->entries, node) {
1430 if (perf_evsel__alloc_prev_raw_counts(pos) < 0)
1431 goto out_free_fd;
1432 }
1433 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001434
Ingo Molnar58d7e992009-05-15 11:03:23 +02001435 /*
1436 * We dont want to block the signals - that would cause
1437 * child tasks to inherit that and Ctrl-C would not work.
1438 * What we want is for Ctrl-C to work in the exec()-ed
1439 * task, but being ignored by perf stat itself:
1440 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001441 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001442 if (!forever)
1443 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001444 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001445 signal(SIGALRM, skip_signal);
1446 signal(SIGABRT, skip_signal);
1447
Ingo Molnar42202dd2009-06-13 14:57:28 +02001448 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001449 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001450 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001451 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1452 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001453
Ingo Molnar42202dd2009-06-13 14:57:28 +02001454 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001455 if (forever && status != -1) {
1456 print_stat(argc, argv);
1457 list_for_each_entry(pos, &evsel_list->entries, node) {
1458 perf_evsel__reset_stat_priv(pos);
1459 perf_evsel__reset_counts(pos, perf_evsel__nr_cpus(pos));
1460 }
1461 reset_stats();
1462 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001463 }
1464
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001465 if (!forever && status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001466 print_stat(argc, argv);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001467out_free_fd:
Stephane Eranian13370a92013-01-29 12:47:44 +01001468 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001469 perf_evsel__free_stat_priv(pos);
Namhyung Kim43f8e762013-01-25 10:44:44 +09001470 perf_evsel__free_counts(pos);
Stephane Eranian13370a92013-01-29 12:47:44 +01001471 perf_evsel__free_prev_raw_counts(pos);
1472 }
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001473 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001474out:
1475 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001476 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001477}