blob: 5098f144b92defd53e94f9f24184e3ade0672928 [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 Weisbecker8f28827a2009-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 Weisbecker8f28827a2009-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,
Stephane Eranian12c08a92013-02-14 13:57:29 +010083 AGGR_CORE,
Stephane Eranian86ee6e12013-02-14 13:57:27 +010084};
85
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053086static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020087static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +100088static bool scale = true;
Stephane Eranian86ee6e12013-02-14 13:57:27 +010089static enum aggr_mode aggr_mode = AGGR_GLOBAL;
Stephane Eraniand07f0b12013-06-04 17:44:26 +020090static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100091static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020092static int detailed_run = 0;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -020093static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +020094static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +020095static const char *csv_sep = NULL;
96static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +080097static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +020098static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +020099static const char *pre_cmd = NULL;
100static const char *post_cmd = NULL;
101static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100102static unsigned int interval = 0;
Andi Kleen41191682013-08-02 17:41:11 -0700103static unsigned int initial_delay = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500104static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100105static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100106static struct cpu_map *aggr_map;
107static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200108
Liming Wang60666c62009-12-31 16:05:50 +0800109static volatile int done = 0;
110
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200111struct perf_stat {
112 struct stats res_stats[3];
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200113};
114
Stephane Eranian13370a92013-01-29 12:47:44 +0100115static inline void diff_timespec(struct timespec *r, struct timespec *a,
116 struct timespec *b)
117{
118 r->tv_sec = a->tv_sec - b->tv_sec;
119 if (a->tv_nsec < b->tv_nsec) {
120 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
121 r->tv_sec--;
122 } else {
123 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
124 }
125}
126
127static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
128{
129 return (evsel->cpus && !target.cpu_list) ? evsel->cpus : evsel_list->cpus;
130}
131
132static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
133{
134 return perf_evsel__cpus(evsel)->nr;
135}
136
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500137static void perf_evsel__reset_stat_priv(struct perf_evsel *evsel)
138{
139 memset(evsel->priv, 0, sizeof(struct perf_stat));
140}
141
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200142static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200143{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200144 evsel->priv = zalloc(sizeof(struct perf_stat));
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200145 return evsel->priv == NULL ? -ENOMEM : 0;
146}
147
148static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
149{
150 free(evsel->priv);
151 evsel->priv = NULL;
152}
153
Stephane Eranian13370a92013-01-29 12:47:44 +0100154static int perf_evsel__alloc_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800155{
Stephane Eranian13370a92013-01-29 12:47:44 +0100156 void *addr;
157 size_t sz;
158
159 sz = sizeof(*evsel->counts) +
160 (perf_evsel__nr_cpus(evsel) * sizeof(struct perf_counts_values));
161
162 addr = zalloc(sz);
163 if (!addr)
164 return -ENOMEM;
165
166 evsel->prev_raw_counts = addr;
167
168 return 0;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800169}
170
Stephane Eranian13370a92013-01-29 12:47:44 +0100171static void perf_evsel__free_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800172{
Stephane Eranian13370a92013-01-29 12:47:44 +0100173 free(evsel->prev_raw_counts);
174 evsel->prev_raw_counts = NULL;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800175}
176
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300177static void perf_evlist__free_stats(struct perf_evlist *evlist)
178{
179 struct perf_evsel *evsel;
180
181 list_for_each_entry(evsel, &evlist->entries, node) {
182 perf_evsel__free_stat_priv(evsel);
183 perf_evsel__free_counts(evsel);
184 perf_evsel__free_prev_raw_counts(evsel);
185 }
186}
187
188static int perf_evlist__alloc_stats(struct perf_evlist *evlist, bool alloc_raw)
189{
190 struct perf_evsel *evsel;
191
192 list_for_each_entry(evsel, &evlist->entries, node) {
193 if (perf_evsel__alloc_stat_priv(evsel) < 0 ||
194 perf_evsel__alloc_counts(evsel, perf_evsel__nr_cpus(evsel)) < 0 ||
195 (alloc_raw && perf_evsel__alloc_prev_raw_counts(evsel) < 0))
196 goto out_free;
197 }
198
199 return 0;
200
201out_free:
202 perf_evlist__free_stats(evlist);
203 return -1;
204}
205
Robert Richter666e6d42012-04-05 18:26:27 +0200206static struct stats runtime_nsecs_stats[MAX_NR_CPUS];
207static struct stats runtime_cycles_stats[MAX_NR_CPUS];
208static struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
209static struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
210static struct stats runtime_branches_stats[MAX_NR_CPUS];
211static struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
212static struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
213static struct stats runtime_l1_icache_stats[MAX_NR_CPUS];
214static struct stats runtime_ll_cache_stats[MAX_NR_CPUS];
215static struct stats runtime_itlb_cache_stats[MAX_NR_CPUS];
216static struct stats runtime_dtlb_cache_stats[MAX_NR_CPUS];
217static struct stats walltime_nsecs_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200218
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300219static void perf_stat__reset_stats(struct perf_evlist *evlist)
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500220{
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300221 struct perf_evsel *evsel;
222
223 list_for_each_entry(evsel, &evlist->entries, node) {
224 perf_evsel__reset_stat_priv(evsel);
225 perf_evsel__reset_counts(evsel, perf_evsel__nr_cpus(evsel));
226 }
227
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500228 memset(runtime_nsecs_stats, 0, sizeof(runtime_nsecs_stats));
229 memset(runtime_cycles_stats, 0, sizeof(runtime_cycles_stats));
230 memset(runtime_stalled_cycles_front_stats, 0, sizeof(runtime_stalled_cycles_front_stats));
231 memset(runtime_stalled_cycles_back_stats, 0, sizeof(runtime_stalled_cycles_back_stats));
232 memset(runtime_branches_stats, 0, sizeof(runtime_branches_stats));
233 memset(runtime_cacherefs_stats, 0, sizeof(runtime_cacherefs_stats));
234 memset(runtime_l1_dcache_stats, 0, sizeof(runtime_l1_dcache_stats));
235 memset(runtime_l1_icache_stats, 0, sizeof(runtime_l1_icache_stats));
236 memset(runtime_ll_cache_stats, 0, sizeof(runtime_ll_cache_stats));
237 memset(runtime_itlb_cache_stats, 0, sizeof(runtime_itlb_cache_stats));
238 memset(runtime_dtlb_cache_stats, 0, sizeof(runtime_dtlb_cache_stats));
239 memset(&walltime_nsecs_stats, 0, sizeof(walltime_nsecs_stats));
240}
241
Jiri Olsacac21422012-11-12 18:34:00 +0100242static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200243{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200244 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200245
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200246 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200247 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
248 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200249
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200250 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300251
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300252 if (perf_target__has_cpu(&target))
253 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200254
Arnaldo Carvalho de Melo07ac0022012-11-13 17:27:28 -0300255 if (!perf_target__has_task(&target) &&
Namhyung Kim823254e2012-11-29 15:38:30 +0900256 perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200257 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700258 if (!initial_delay)
259 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200260 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300261
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300262 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200263}
264
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200265/*
266 * Does the counter have nsecs as a unit?
267 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200268static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200269{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200270 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
271 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200272 return 1;
273
274 return 0;
275}
276
277/*
Ingo Molnardcd99362011-04-27 04:36:37 +0200278 * Update various tracking values we maintain to print
279 * more semantic information such as miss/hit ratios,
280 * instruction rates, etc:
281 */
282static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
283{
284 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
285 update_stats(&runtime_nsecs_stats[0], count[0]);
286 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
287 update_stats(&runtime_cycles_stats[0], count[0]);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200288 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
289 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200290 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
Ingo Molnard3d1e862011-04-29 13:49:08 +0200291 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200292 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
293 update_stats(&runtime_branches_stats[0], count[0]);
294 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
295 update_stats(&runtime_cacherefs_stats[0], count[0]);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200296 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
297 update_stats(&runtime_l1_dcache_stats[0], count[0]);
Ingo Molnarc3305252011-05-19 14:01:42 +0200298 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1I))
299 update_stats(&runtime_l1_icache_stats[0], count[0]);
300 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_LL))
301 update_stats(&runtime_ll_cache_stats[0], count[0]);
302 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_DTLB))
303 update_stats(&runtime_dtlb_cache_stats[0], count[0]);
304 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_ITLB))
305 update_stats(&runtime_itlb_cache_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200306}
307
308/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200309 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200310 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200311 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200312static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200313{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200314 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200315 u64 *count = counter->counts->aggr.values;
316 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200317
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800318 if (__perf_evsel__read(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900319 thread_map__nr(evsel_list->threads), scale) < 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200320 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200321
322 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200323 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200324
325 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200326 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300327 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200328 }
329
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200330 /*
331 * Save the full runtime - to allow normalization during printout:
332 */
Ingo Molnardcd99362011-04-27 04:36:37 +0200333 update_shadow_stats(counter, count);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200334
335 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200336}
337
338/*
339 * Read out the results of a single counter:
340 * do not aggregate counts across CPUs in system-wide mode
341 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200342static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200343{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200344 u64 *count;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200345 int cpu;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200346
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800347 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200348 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
349 return -1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200350
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200351 count = counter->counts->cpu[cpu].values;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200352
Ingo Molnardcd99362011-04-27 04:36:37 +0200353 update_shadow_stats(counter, count);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200354 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200355
356 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200357}
358
Stephane Eranian13370a92013-01-29 12:47:44 +0100359static void print_interval(void)
360{
361 static int num_print_interval;
362 struct perf_evsel *counter;
363 struct perf_stat *ps;
364 struct timespec ts, rs;
365 char prefix[64];
366
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100367 if (aggr_mode == AGGR_GLOBAL) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100368 list_for_each_entry(counter, &evsel_list->entries, node) {
369 ps = counter->priv;
370 memset(ps->res_stats, 0, sizeof(ps->res_stats));
371 read_counter_aggr(counter);
372 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100373 } else {
374 list_for_each_entry(counter, &evsel_list->entries, node) {
375 ps = counter->priv;
376 memset(ps->res_stats, 0, sizeof(ps->res_stats));
377 read_counter(counter);
378 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100379 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100380
Stephane Eranian13370a92013-01-29 12:47:44 +0100381 clock_gettime(CLOCK_MONOTONIC, &ts);
382 diff_timespec(&rs, &ts, &ref_time);
383 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
384
385 if (num_print_interval == 0 && !csv_output) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100386 switch (aggr_mode) {
387 case AGGR_SOCKET:
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100388 fprintf(output, "# time socket cpus counts events\n");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100389 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100390 case AGGR_CORE:
391 fprintf(output, "# time core cpus counts events\n");
392 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100393 case AGGR_NONE:
Stephane Eranian13370a92013-01-29 12:47:44 +0100394 fprintf(output, "# time CPU counts events\n");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100395 break;
396 case AGGR_GLOBAL:
397 default:
Stephane Eranian13370a92013-01-29 12:47:44 +0100398 fprintf(output, "# time counts events\n");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100399 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100400 }
401
402 if (++num_print_interval == 25)
403 num_print_interval = 0;
404
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100405 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100406 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100407 case AGGR_SOCKET:
408 print_aggr(prefix);
409 break;
410 case AGGR_NONE:
Stephane Eranian13370a92013-01-29 12:47:44 +0100411 list_for_each_entry(counter, &evsel_list->entries, node)
412 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100413 break;
414 case AGGR_GLOBAL:
415 default:
Stephane Eranian13370a92013-01-29 12:47:44 +0100416 list_for_each_entry(counter, &evsel_list->entries, node)
417 print_counter_aggr(counter, prefix);
418 }
Andi Kleen2bbf03f2013-08-02 17:41:12 -0700419
420 fflush(output);
Stephane Eranian13370a92013-01-29 12:47:44 +0100421}
422
Andi Kleen41191682013-08-02 17:41:11 -0700423static void handle_initial_delay(void)
424{
425 struct perf_evsel *counter;
426
427 if (initial_delay) {
428 const int ncpus = cpu_map__nr(evsel_list->cpus),
429 nthreads = thread_map__nr(evsel_list->threads);
430
431 usleep(initial_delay * 1000);
432 list_for_each_entry(counter, &evsel_list->entries, node)
433 perf_evsel__enable(counter, ncpus, nthreads);
434 }
435}
436
Namhyung Kimacf28922013-03-11 16:43:18 +0900437static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200438{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300439 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200440 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100441 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100442 struct timespec ts;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200443 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300444 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200445
Stephane Eranian13370a92013-01-29 12:47:44 +0100446 if (interval) {
447 ts.tv_sec = interval / 1000;
448 ts.tv_nsec = (interval % 1000) * 1000000;
449 } else {
450 ts.tv_sec = 1;
451 ts.tv_nsec = 0;
452 }
453
Liming Wang60666c62009-12-31 16:05:50 +0800454 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900455 if (perf_evlist__prepare_workload(evsel_list, &target, argv,
456 false, false) < 0) {
457 perror("failed to prepare workload");
458 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800459 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900460 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000461 }
462
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200463 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300464 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200465
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200466 list_for_each_entry(counter, &evsel_list->entries, node) {
Jiri Olsacac21422012-11-12 18:34:00 +0100467 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600468 /*
469 * PPC returns ENXIO for HW counters until 2.6.37
470 * (behavior changed with commit b0a873e).
471 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100472 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600473 errno == ENOENT || errno == EOPNOTSUPP ||
474 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600475 if (verbose)
476 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300477 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600478 counter->supported = false;
Ingo Molnarede70292011-04-28 08:48:42 +0200479 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600480 }
Ingo Molnarede70292011-04-28 08:48:42 +0200481
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300482 perf_evsel__open_strerror(counter, &target,
483 errno, msg, sizeof(msg));
484 ui__error("%s\n", msg);
485
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200486 if (child_pid != -1)
487 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600488
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200489 return -1;
490 }
David Ahern2cee77c2011-05-30 08:55:59 -0600491 counter->supported = true;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300492 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200493
Arnaldo Carvalho de Melo1491a632012-09-26 14:43:13 -0300494 if (perf_evlist__apply_filters(evsel_list)) {
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100495 error("failed to set filter with %d (%s)\n", errno,
496 strerror(errno));
497 return -1;
498 }
499
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200500 /*
501 * Enable counters and exec the command:
502 */
503 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100504 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200505
Liming Wang60666c62009-12-31 16:05:50 +0800506 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900507 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700508 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900509
Stephane Eranian13370a92013-01-29 12:47:44 +0100510 if (interval) {
511 while (!waitpid(child_pid, &status, WNOHANG)) {
512 nanosleep(&ts, NULL);
513 print_interval();
514 }
515 }
Liming Wang60666c62009-12-31 16:05:50 +0800516 wait(&status);
Andi Kleen33e49ea2011-09-15 14:31:40 -0700517 if (WIFSIGNALED(status))
518 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800519 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700520 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100521 while (!done) {
522 nanosleep(&ts, NULL);
523 if (interval)
524 print_interval();
525 }
Liming Wang60666c62009-12-31 16:05:50 +0800526 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200527
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200528 t1 = rdclock();
529
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200530 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200531
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100532 if (aggr_mode == AGGR_GLOBAL) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200533 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200534 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800535 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900536 thread_map__nr(evsel_list->threads));
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200537 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100538 } else {
539 list_for_each_entry(counter, &evsel_list->entries, node) {
540 read_counter(counter);
541 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
542 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200543 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200544
Ingo Molnar42202dd2009-06-13 14:57:28 +0200545 return WEXITSTATUS(status);
546}
547
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200548static int run_perf_stat(int argc __maybe_unused, const char **argv)
549{
550 int ret;
551
552 if (pre_cmd) {
553 ret = system(pre_cmd);
554 if (ret)
555 return ret;
556 }
557
558 if (sync_run)
559 sync();
560
561 ret = __run_perf_stat(argc, argv);
562 if (ret)
563 return ret;
564
565 if (post_cmd) {
566 ret = system(post_cmd);
567 if (ret)
568 return ret;
569 }
570
571 return ret;
572}
573
Ingo Molnarf99844c2011-04-27 05:35:39 +0200574static void print_noise_pct(double total, double avg)
575{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800576 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200577
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700578 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200579 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600580 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200581 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200582}
583
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200584static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200585{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200586 struct perf_stat *ps;
587
Peter Zijlstra849abde2009-09-04 18:23:38 +0200588 if (run_count == 1)
589 return;
590
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200591 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200592 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200593}
594
Stephane Eranian12c08a92013-02-14 13:57:29 +0100595static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200596{
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100597 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100598 case AGGR_CORE:
599 fprintf(output, "S%d-C%*d%s%*d%s",
600 cpu_map__id_to_socket(id),
601 csv_output ? 0 : -8,
602 cpu_map__id_to_cpu(id),
603 csv_sep,
604 csv_output ? 0 : 4,
605 nr,
606 csv_sep);
607 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100608 case AGGR_SOCKET:
609 fprintf(output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100610 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100611 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100612 csv_sep,
613 csv_output ? 0 : 4,
614 nr,
615 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100616 break;
617 case AGGR_NONE:
618 fprintf(output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200619 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100620 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100621 break;
622 case AGGR_GLOBAL:
623 default:
624 break;
625 }
626}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200627
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100628static void nsec_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
629{
630 double msecs = avg / 1e6;
631 const char *fmt = csv_output ? "%.6f%s%s" : "%18.6f%s%-25s";
632
633 aggr_printout(evsel, cpu, nr);
634
635 fprintf(output, fmt, msecs, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200636
Stephane Eranian023695d2011-02-14 11:20:01 +0200637 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200638 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200639
Stephane Eranian13370a92013-01-29 12:47:44 +0100640 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200641 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200642
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200643 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200644 fprintf(output, " # %8.3f CPUs utilized ",
645 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900646 else
647 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200648}
649
Namhyung Kim15e63922011-12-28 00:35:49 +0900650/* used for get_ratio_color() */
651enum grc_type {
652 GRC_STALLED_CYCLES_FE,
653 GRC_STALLED_CYCLES_BE,
654 GRC_CACHE_MISSES,
655 GRC_MAX_NR
656};
657
658static const char *get_ratio_color(enum grc_type type, double ratio)
659{
660 static const double grc_table[GRC_MAX_NR][3] = {
661 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
662 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
663 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
664 };
665 const char *color = PERF_COLOR_NORMAL;
666
667 if (ratio > grc_table[type][0])
668 color = PERF_COLOR_RED;
669 else if (ratio > grc_table[type][1])
670 color = PERF_COLOR_MAGENTA;
671 else if (ratio > grc_table[type][2])
672 color = PERF_COLOR_YELLOW;
673
674 return color;
675}
676
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300677static void print_stalled_cycles_frontend(int cpu,
678 struct perf_evsel *evsel
679 __maybe_unused, double avg)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200680{
681 double total, ratio = 0.0;
682 const char *color;
683
684 total = avg_stats(&runtime_cycles_stats[cpu]);
685
686 if (total)
687 ratio = avg / total * 100.0;
688
Namhyung Kim15e63922011-12-28 00:35:49 +0900689 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200690
Stephane Eranian4aa90152011-08-15 22:22:33 +0200691 fprintf(output, " # ");
692 color_fprintf(output, color, "%6.2f%%", ratio);
693 fprintf(output, " frontend cycles idle ");
Ingo Molnard3d1e862011-04-29 13:49:08 +0200694}
695
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300696static void print_stalled_cycles_backend(int cpu,
697 struct perf_evsel *evsel
698 __maybe_unused, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200699{
700 double total, ratio = 0.0;
701 const char *color;
702
703 total = avg_stats(&runtime_cycles_stats[cpu]);
704
705 if (total)
706 ratio = avg / total * 100.0;
707
Namhyung Kim15e63922011-12-28 00:35:49 +0900708 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200709
Stephane Eranian4aa90152011-08-15 22:22:33 +0200710 fprintf(output, " # ");
711 color_fprintf(output, color, "%6.2f%%", ratio);
712 fprintf(output, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200713}
714
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300715static void print_branch_misses(int cpu,
716 struct perf_evsel *evsel __maybe_unused,
717 double avg)
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200718{
719 double total, ratio = 0.0;
720 const char *color;
721
722 total = avg_stats(&runtime_branches_stats[cpu]);
723
724 if (total)
725 ratio = avg / total * 100.0;
726
Namhyung Kim15e63922011-12-28 00:35:49 +0900727 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200728
Stephane Eranian4aa90152011-08-15 22:22:33 +0200729 fprintf(output, " # ");
730 color_fprintf(output, color, "%6.2f%%", ratio);
731 fprintf(output, " of all branches ");
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200732}
733
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300734static void print_l1_dcache_misses(int cpu,
735 struct perf_evsel *evsel __maybe_unused,
736 double avg)
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200737{
738 double total, ratio = 0.0;
739 const char *color;
740
741 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
742
743 if (total)
744 ratio = avg / total * 100.0;
745
Namhyung Kim15e63922011-12-28 00:35:49 +0900746 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200747
Stephane Eranian4aa90152011-08-15 22:22:33 +0200748 fprintf(output, " # ");
749 color_fprintf(output, color, "%6.2f%%", ratio);
750 fprintf(output, " of all L1-dcache hits ");
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200751}
752
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300753static void print_l1_icache_misses(int cpu,
754 struct perf_evsel *evsel __maybe_unused,
755 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200756{
757 double total, ratio = 0.0;
758 const char *color;
759
760 total = avg_stats(&runtime_l1_icache_stats[cpu]);
761
762 if (total)
763 ratio = avg / total * 100.0;
764
Namhyung Kim15e63922011-12-28 00:35:49 +0900765 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200766
Stephane Eranian4aa90152011-08-15 22:22:33 +0200767 fprintf(output, " # ");
768 color_fprintf(output, color, "%6.2f%%", ratio);
769 fprintf(output, " of all L1-icache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200770}
771
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300772static void print_dtlb_cache_misses(int cpu,
773 struct perf_evsel *evsel __maybe_unused,
774 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200775{
776 double total, ratio = 0.0;
777 const char *color;
778
779 total = avg_stats(&runtime_dtlb_cache_stats[cpu]);
780
781 if (total)
782 ratio = avg / total * 100.0;
783
Namhyung Kim15e63922011-12-28 00:35:49 +0900784 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200785
Stephane Eranian4aa90152011-08-15 22:22:33 +0200786 fprintf(output, " # ");
787 color_fprintf(output, color, "%6.2f%%", ratio);
788 fprintf(output, " of all dTLB cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200789}
790
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300791static void print_itlb_cache_misses(int cpu,
792 struct perf_evsel *evsel __maybe_unused,
793 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200794{
795 double total, ratio = 0.0;
796 const char *color;
797
798 total = avg_stats(&runtime_itlb_cache_stats[cpu]);
799
800 if (total)
801 ratio = avg / total * 100.0;
802
Namhyung Kim15e63922011-12-28 00:35:49 +0900803 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200804
Stephane Eranian4aa90152011-08-15 22:22:33 +0200805 fprintf(output, " # ");
806 color_fprintf(output, color, "%6.2f%%", ratio);
807 fprintf(output, " of all iTLB cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200808}
809
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300810static void print_ll_cache_misses(int cpu,
811 struct perf_evsel *evsel __maybe_unused,
812 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200813{
814 double total, ratio = 0.0;
815 const char *color;
816
817 total = avg_stats(&runtime_ll_cache_stats[cpu]);
818
819 if (total)
820 ratio = avg / total * 100.0;
821
Namhyung Kim15e63922011-12-28 00:35:49 +0900822 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200823
Stephane Eranian4aa90152011-08-15 22:22:33 +0200824 fprintf(output, " # ");
825 color_fprintf(output, color, "%6.2f%%", ratio);
826 fprintf(output, " of all LL-cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200827}
828
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100829static void abs_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200830{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200831 double total, ratio = 0.0;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200832 const char *fmt;
833
834 if (csv_output)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100835 fmt = "%.0f%s%s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200836 else if (big_num)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100837 fmt = "%'18.0f%s%-25s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200838 else
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100839 fmt = "%18.0f%s%-25s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200840
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100841 aggr_printout(evsel, cpu, nr);
842
843 if (aggr_mode == AGGR_GLOBAL)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200844 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200845
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100846 fprintf(output, fmt, avg, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200847
Stephane Eranian023695d2011-02-14 11:20:01 +0200848 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200849 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200850
Stephane Eranian13370a92013-01-29 12:47:44 +0100851 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200852 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200853
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200854 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200855 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200856 if (total)
857 ratio = avg / total;
858
Stephane Eranian4aa90152011-08-15 22:22:33 +0200859 fprintf(output, " # %5.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200860
Ingo Molnard3d1e862011-04-29 13:49:08 +0200861 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
862 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200863
864 if (total && avg) {
865 ratio = total / avg;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200866 fprintf(output, "\n # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200867 }
868
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200869 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200870 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200871 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200872 } else if (
873 evsel->attr.type == PERF_TYPE_HW_CACHE &&
874 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
875 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
876 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200877 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200878 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnarc3305252011-05-19 14:01:42 +0200879 } else if (
880 evsel->attr.type == PERF_TYPE_HW_CACHE &&
881 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
882 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
883 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
884 runtime_l1_icache_stats[cpu].n != 0) {
885 print_l1_icache_misses(cpu, evsel, avg);
886 } else if (
887 evsel->attr.type == PERF_TYPE_HW_CACHE &&
888 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
889 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
890 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
891 runtime_dtlb_cache_stats[cpu].n != 0) {
892 print_dtlb_cache_misses(cpu, evsel, avg);
893 } else if (
894 evsel->attr.type == PERF_TYPE_HW_CACHE &&
895 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
896 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
897 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
898 runtime_itlb_cache_stats[cpu].n != 0) {
899 print_itlb_cache_misses(cpu, evsel, avg);
900 } else if (
901 evsel->attr.type == PERF_TYPE_HW_CACHE &&
902 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
903 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
904 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
905 runtime_ll_cache_stats[cpu].n != 0) {
906 print_ll_cache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200907 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
908 runtime_cacherefs_stats[cpu].n != 0) {
909 total = avg_stats(&runtime_cacherefs_stats[cpu]);
910
911 if (total)
912 ratio = avg * 100 / total;
913
Stephane Eranian4aa90152011-08-15 22:22:33 +0200914 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200915
Ingo Molnard3d1e862011-04-29 13:49:08 +0200916 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
917 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200918 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200919 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200920 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
921 total = avg_stats(&runtime_nsecs_stats[cpu]);
922
923 if (total)
924 ratio = 1.0 * avg / total;
925
Stephane Eranian4aa90152011-08-15 22:22:33 +0200926 fprintf(output, " # %8.3f GHz ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200927 } else if (runtime_nsecs_stats[cpu].n != 0) {
Namhyung Kim5fde2522012-02-06 16:44:44 +0900928 char unit = 'M';
929
Ingo Molnar481f9882011-04-27 04:34:16 +0200930 total = avg_stats(&runtime_nsecs_stats[cpu]);
931
932 if (total)
933 ratio = 1000.0 * avg / total;
Namhyung Kim5fde2522012-02-06 16:44:44 +0900934 if (ratio < 0.001) {
935 ratio *= 1000;
936 unit = 'K';
937 }
Ingo Molnar481f9882011-04-27 04:34:16 +0200938
Namhyung Kim5fde2522012-02-06 16:44:44 +0900939 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200940 } else {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200941 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200942 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200943}
944
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100945static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100946{
947 struct perf_evsel *counter;
Stephane Eranian582ec0822013-07-05 19:06:45 +0200948 int cpu, cpu2, s, s2, id, nr;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100949 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100950
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100951 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100952 return;
953
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100954 for (s = 0; s < aggr_map->nr; s++) {
955 id = aggr_map->map[s];
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100956 list_for_each_entry(counter, &evsel_list->entries, node) {
957 val = ena = run = 0;
958 nr = 0;
959 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200960 cpu2 = perf_evsel__cpus(counter)->map[cpu];
961 s2 = aggr_get_id(evsel_list->cpus, cpu2);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100962 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100963 continue;
964 val += counter->counts->cpu[cpu].val;
965 ena += counter->counts->cpu[cpu].ena;
966 run += counter->counts->cpu[cpu].run;
967 nr++;
968 }
969 if (prefix)
970 fprintf(output, "%s", prefix);
971
972 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200973 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100974
975 fprintf(output, "%*s%s%*s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100976 csv_output ? 0 : 18,
977 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
978 csv_sep,
979 csv_output ? 0 : -24,
980 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100981
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100982 if (counter->cgrp)
983 fprintf(output, "%s%s",
984 csv_sep, counter->cgrp->name);
985
986 fputc('\n', output);
987 continue;
988 }
989
990 if (nsec_counter(counter))
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100991 nsec_printout(id, nr, counter, val);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100992 else
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100993 abs_printout(id, nr, counter, val);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100994
995 if (!csv_output) {
996 print_noise(counter, 1.0);
997
998 if (run != ena)
999 fprintf(output, " (%.2f%%)",
1000 100.0 * run / ena);
1001 }
1002 fputc('\n', output);
1003 }
1004 }
1005}
1006
Ingo Molnar42202dd2009-06-13 14:57:28 +02001007/*
1008 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001009 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +02001010 */
Stephane Eranian13370a92013-01-29 12:47:44 +01001011static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001012{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001013 struct perf_stat *ps = counter->priv;
1014 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001015 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001016
Stephane Eranian13370a92013-01-29 12:47:44 +01001017 if (prefix)
1018 fprintf(output, "%s", prefix);
1019
Ingo Molnar42202dd2009-06-13 14:57:28 +02001020 if (scaled == -1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001021 fprintf(output, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001022 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -06001023 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian023695d2011-02-14 11:20:01 +02001024 csv_sep,
1025 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001026 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +02001027
1028 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001029 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +02001030
Stephane Eranian4aa90152011-08-15 22:22:33 +02001031 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001032 return;
1033 }
1034
1035 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001036 nsec_printout(-1, 0, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001037 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001038 abs_printout(-1, 0, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +02001039
Zhengyu He3ae9a34d2011-06-23 13:45:42 -07001040 print_noise(counter, avg);
1041
Stephane Eraniand7470b62010-12-01 18:49:05 +02001042 if (csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001043 fputc('\n', output);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001044 return;
1045 }
1046
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001047 if (scaled) {
1048 double avg_enabled, avg_running;
1049
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001050 avg_enabled = avg_stats(&ps->res_stats[1]);
1051 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001052
Stephane Eranian4aa90152011-08-15 22:22:33 +02001053 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001054 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001055 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +02001056}
1057
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001058/*
1059 * Print out the results of a single counter:
1060 * does not use aggregated count in system-wide
1061 */
Stephane Eranian13370a92013-01-29 12:47:44 +01001062static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001063{
1064 u64 ena, run, val;
1065 int cpu;
1066
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001067 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001068 val = counter->counts->cpu[cpu].val;
1069 ena = counter->counts->cpu[cpu].ena;
1070 run = counter->counts->cpu[cpu].run;
Stephane Eranian13370a92013-01-29 12:47:44 +01001071
1072 if (prefix)
1073 fprintf(output, "%s", prefix);
1074
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001075 if (run == 0 || ena == 0) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001076 fprintf(output, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001077 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001078 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +02001079 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -06001080 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
1081 csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +02001082 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001083 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001084
Stephane Eranian023695d2011-02-14 11:20:01 +02001085 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001086 fprintf(output, "%s%s",
1087 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +02001088
Stephane Eranian4aa90152011-08-15 22:22:33 +02001089 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001090 continue;
1091 }
1092
1093 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001094 nsec_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001095 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001096 abs_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001097
Stephane Eraniand7470b62010-12-01 18:49:05 +02001098 if (!csv_output) {
1099 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001100
Ingo Molnarc6264de2011-04-27 13:50:47 +02001101 if (run != ena)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001102 fprintf(output, " (%.2f%%)",
1103 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001104 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001105 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001106 }
1107}
1108
Ingo Molnar42202dd2009-06-13 14:57:28 +02001109static void print_stat(int argc, const char **argv)
1110{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001111 struct perf_evsel *counter;
1112 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001113
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001114 fflush(stdout);
1115
Stephane Eraniand7470b62010-12-01 18:49:05 +02001116 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001117 fprintf(output, "\n");
1118 fprintf(output, " Performance counter stats for ");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001119 if (!perf_target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001120 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001121 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001122 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +09001123 } else if (target.pid)
1124 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001125 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001126 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001127
Stephane Eranian4aa90152011-08-15 22:22:33 +02001128 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001129 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001130 fprintf(output, " (%d runs)", run_count);
1131 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001132 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001133
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001134 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +01001135 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001136 case AGGR_SOCKET:
1137 print_aggr(NULL);
1138 break;
1139 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001140 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001141 print_counter_aggr(counter, NULL);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001142 break;
1143 case AGGR_NONE:
1144 list_for_each_entry(counter, &evsel_list->entries, node)
1145 print_counter(counter, NULL);
1146 break;
1147 default:
1148 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001149 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001150
Stephane Eraniand7470b62010-12-01 18:49:05 +02001151 if (!csv_output) {
Ingo Molnarc3305252011-05-19 14:01:42 +02001152 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001153 fprintf(output, "\n");
1154 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001155 avg_stats(&walltime_nsecs_stats)/1e9);
1156 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001157 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +02001158 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
1159 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +02001160 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001161 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +02001162 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001163}
1164
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001165static volatile int signr = -1;
1166
Ingo Molnar52425192009-05-26 09:17:18 +02001167static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001168{
Stephane Eranian13370a92013-01-29 12:47:44 +01001169 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001170 done = 1;
1171
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001172 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001173 /*
1174 * render child_pid harmless
1175 * won't send SIGTERM to a random
1176 * process in case of race condition
1177 * and fast PID recycling
1178 */
1179 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001180}
1181
1182static void sig_atexit(void)
1183{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001184 sigset_t set, oset;
1185
1186 /*
1187 * avoid race condition with SIGCHLD handler
1188 * in skip_signal() which is modifying child_pid
1189 * goal is to avoid send SIGTERM to a random
1190 * process
1191 */
1192 sigemptyset(&set);
1193 sigaddset(&set, SIGCHLD);
1194 sigprocmask(SIG_BLOCK, &set, &oset);
1195
Chris Wilson933da832009-10-04 01:35:01 +01001196 if (child_pid != -1)
1197 kill(child_pid, SIGTERM);
1198
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001199 sigprocmask(SIG_SETMASK, &oset, NULL);
1200
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001201 if (signr == -1)
1202 return;
1203
1204 signal(signr, SIG_DFL);
1205 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001206}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001207
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001208static int stat__set_big_num(const struct option *opt __maybe_unused,
1209 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001210{
1211 big_num_opt = unset ? 0 : 1;
1212 return 0;
1213}
1214
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001215static int perf_stat_init_aggr_mode(void)
1216{
1217 switch (aggr_mode) {
1218 case AGGR_SOCKET:
1219 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1220 perror("cannot build socket map");
1221 return -1;
1222 }
1223 aggr_get_id = cpu_map__get_socket;
1224 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001225 case AGGR_CORE:
1226 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1227 perror("cannot build core map");
1228 return -1;
1229 }
1230 aggr_get_id = cpu_map__get_core;
1231 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001232 case AGGR_NONE:
1233 case AGGR_GLOBAL:
1234 default:
1235 break;
1236 }
1237 return 0;
1238}
1239
1240
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001241/*
1242 * Add default attributes, if there were no attributes specified or
1243 * if -d/--detailed, -d -d or -d -d -d is used:
1244 */
1245static int add_default_attributes(void)
1246{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001247 struct perf_event_attr default_attrs[] = {
1248
1249 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1250 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1251 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1252 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1253
1254 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1255 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1256 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1257 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1258 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1259 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1260
1261};
1262
1263/*
1264 * Detailed stats (-d), covering the L1 and last level data caches:
1265 */
1266 struct perf_event_attr detailed_attrs[] = {
1267
1268 { .type = PERF_TYPE_HW_CACHE,
1269 .config =
1270 PERF_COUNT_HW_CACHE_L1D << 0 |
1271 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1272 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1273
1274 { .type = PERF_TYPE_HW_CACHE,
1275 .config =
1276 PERF_COUNT_HW_CACHE_L1D << 0 |
1277 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1278 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1279
1280 { .type = PERF_TYPE_HW_CACHE,
1281 .config =
1282 PERF_COUNT_HW_CACHE_LL << 0 |
1283 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1284 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1285
1286 { .type = PERF_TYPE_HW_CACHE,
1287 .config =
1288 PERF_COUNT_HW_CACHE_LL << 0 |
1289 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1290 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1291};
1292
1293/*
1294 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1295 */
1296 struct perf_event_attr very_detailed_attrs[] = {
1297
1298 { .type = PERF_TYPE_HW_CACHE,
1299 .config =
1300 PERF_COUNT_HW_CACHE_L1I << 0 |
1301 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1302 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1303
1304 { .type = PERF_TYPE_HW_CACHE,
1305 .config =
1306 PERF_COUNT_HW_CACHE_L1I << 0 |
1307 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1308 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1309
1310 { .type = PERF_TYPE_HW_CACHE,
1311 .config =
1312 PERF_COUNT_HW_CACHE_DTLB << 0 |
1313 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1314 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1315
1316 { .type = PERF_TYPE_HW_CACHE,
1317 .config =
1318 PERF_COUNT_HW_CACHE_DTLB << 0 |
1319 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1320 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1321
1322 { .type = PERF_TYPE_HW_CACHE,
1323 .config =
1324 PERF_COUNT_HW_CACHE_ITLB << 0 |
1325 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1326 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1327
1328 { .type = PERF_TYPE_HW_CACHE,
1329 .config =
1330 PERF_COUNT_HW_CACHE_ITLB << 0 |
1331 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1332 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1333
1334};
1335
1336/*
1337 * Very, very detailed stats (-d -d -d), adding prefetch events:
1338 */
1339 struct perf_event_attr very_very_detailed_attrs[] = {
1340
1341 { .type = PERF_TYPE_HW_CACHE,
1342 .config =
1343 PERF_COUNT_HW_CACHE_L1D << 0 |
1344 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1345 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1346
1347 { .type = PERF_TYPE_HW_CACHE,
1348 .config =
1349 PERF_COUNT_HW_CACHE_L1D << 0 |
1350 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1351 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1352};
1353
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001354 /* Set attrs if no event is selected and !null_run: */
1355 if (null_run)
1356 return 0;
1357
1358 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001359 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001360 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001361 }
1362
1363 /* Detailed events get appended to the event list: */
1364
1365 if (detailed_run < 1)
1366 return 0;
1367
1368 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001369 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001370 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001371
1372 if (detailed_run < 2)
1373 return 0;
1374
1375 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001376 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001377 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001378
1379 if (detailed_run < 3)
1380 return 0;
1381
1382 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001383 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001384}
1385
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001386int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001387{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001388 bool append_file = false;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001389 int output_fd = 0;
1390 const char *output_name = NULL;
1391 const struct option options[] = {
1392 OPT_CALLBACK('e', "event", &evsel_list, "event",
1393 "event selector. use 'perf list' to list available events",
1394 parse_events_option),
1395 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1396 "event filter", parse_filter),
1397 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1398 "child tasks do not inherit counters"),
1399 OPT_STRING('p', "pid", &target.pid, "pid",
1400 "stat events on existing process id"),
1401 OPT_STRING('t', "tid", &target.tid, "tid",
1402 "stat events on existing thread id"),
1403 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1404 "system-wide collection from all CPUs"),
1405 OPT_BOOLEAN('g', "group", &group,
1406 "put the counters into a counter group"),
1407 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1408 OPT_INCR('v', "verbose", &verbose,
1409 "be more verbose (show counter open errors, etc)"),
1410 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001411 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001412 OPT_BOOLEAN('n', "null", &null_run,
1413 "null run - dont start any counters"),
1414 OPT_INCR('d', "detailed", &detailed_run,
1415 "detailed run - start a lot of events"),
1416 OPT_BOOLEAN('S', "sync", &sync_run,
1417 "call sync() before starting a run"),
1418 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1419 "print large numbers with thousands\' separators",
1420 stat__set_big_num),
1421 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1422 "list of cpus to monitor in system-wide"),
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001423 OPT_SET_UINT('A', "no-aggr", &aggr_mode,
1424 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001425 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1426 "print counts with custom separator"),
1427 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1428 "monitor event in cgroup name only", parse_cgroups),
1429 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1430 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1431 OPT_INTEGER(0, "log-fd", &output_fd,
1432 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001433 OPT_STRING(0, "pre", &pre_cmd, "command",
1434 "command to run prior to the measured command"),
1435 OPT_STRING(0, "post", &post_cmd, "command",
1436 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001437 OPT_UINTEGER('I', "interval-print", &interval,
1438 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand4304952013-02-14 13:57:28 +01001439 OPT_SET_UINT(0, "per-socket", &aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001440 "aggregate counts per processor socket", AGGR_SOCKET),
Stephane Eranian12c08a92013-02-14 13:57:29 +01001441 OPT_SET_UINT(0, "per-core", &aggr_mode,
1442 "aggregate counts per physical processor core", AGGR_CORE),
Andi Kleen41191682013-08-02 17:41:11 -07001443 OPT_UINTEGER('D', "delay", &initial_delay,
1444 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001445 OPT_END()
1446 };
1447 const char * const stat_usage[] = {
1448 "perf stat [<options>] [<command>]",
1449 NULL
1450 };
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001451 int status = -ENOMEM, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001452 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001453
Stephane Eranian5af52b52010-05-18 15:00:01 +02001454 setlocale(LC_ALL, "");
1455
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001456 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001457 if (evsel_list == NULL)
1458 return -ENOMEM;
1459
Anton Blancharda0541232009-07-22 23:04:12 +10001460 argc = parse_options(argc, argv, options, stat_usage,
1461 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001462
Stephane Eranian4aa90152011-08-15 22:22:33 +02001463 output = stderr;
1464 if (output_name && strcmp(output_name, "-"))
1465 output = NULL;
1466
Jim Cromie56f3bae2011-09-07 17:14:00 -06001467 if (output_name && output_fd) {
1468 fprintf(stderr, "cannot use both --output and --log-fd\n");
1469 usage_with_options(stat_usage, options);
1470 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001471
1472 if (output_fd < 0) {
1473 fprintf(stderr, "argument to --log-fd must be a > 0\n");
1474 usage_with_options(stat_usage, options);
1475 }
1476
Stephane Eranian4aa90152011-08-15 22:22:33 +02001477 if (!output) {
1478 struct timespec tm;
1479 mode = append_file ? "a" : "w";
1480
1481 output = fopen(output_name, mode);
1482 if (!output) {
1483 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001484 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001485 }
1486 clock_gettime(CLOCK_REALTIME, &tm);
1487 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001488 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001489 mode = append_file ? "a" : "w";
1490 output = fdopen(output_fd, mode);
1491 if (!output) {
1492 perror("Failed opening logfd");
1493 return -errno;
1494 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001495 }
1496
Jim Cromied4ffd042011-09-07 17:14:03 -06001497 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001498 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001499 if (!strcmp(csv_sep, "\\t"))
1500 csv_sep = "\t";
1501 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001502 csv_sep = DEFAULT_SEPARATOR;
1503
1504 /*
1505 * let the spreadsheet do the pretty-printing
1506 */
1507 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001508 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001509 if (big_num_opt == 1) {
1510 fprintf(stderr, "-B option not supported with -x\n");
1511 usage_with_options(stat_usage, options);
1512 } else /* Nope, so disable big number formatting */
1513 big_num = false;
1514 } else if (big_num_opt == 0) /* User passed --no-big-num */
1515 big_num = false;
1516
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001517 if (!argc && !perf_target__has_task(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001518 usage_with_options(stat_usage, options);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001519 if (run_count < 0) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001520 usage_with_options(stat_usage, options);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001521 } else if (run_count == 0) {
1522 forever = true;
1523 run_count = 1;
1524 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001525
Stephane Eranian023695d2011-02-14 11:20:01 +02001526 /* no_aggr, cgroup are for system-wide only */
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001527 if ((aggr_mode != AGGR_GLOBAL || nr_cgroups)
1528 && !perf_target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001529 fprintf(stderr, "both cgroup and no-aggregation "
1530 "modes only available in system-wide mode\n");
1531
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001532 usage_with_options(stat_usage, options);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001533 return -1;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001534 }
1535
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001536 if (add_default_attributes())
1537 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001538
Namhyung Kim4bd0f2d2012-04-26 14:15:18 +09001539 perf_target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001540
Namhyung Kim77a6f012012-05-07 14:09:04 +09001541 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001542 if (perf_target__has_task(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001543 pr_err("Problems finding threads of monitor\n");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001544 if (perf_target__has_cpu(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001545 perror("failed to parse CPUs map");
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001546
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001547 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001548 return -1;
1549 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001550 if (interval && interval < 100) {
1551 pr_err("print interval must be >= 100ms\n");
1552 usage_with_options(stat_usage, options);
1553 return -1;
1554 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001555
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001556 if (perf_evlist__alloc_stats(evsel_list, interval))
1557 goto out_free_maps;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001558
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001559 if (perf_stat_init_aggr_mode())
1560 goto out;
1561
Ingo Molnar58d7e992009-05-15 11:03:23 +02001562 /*
1563 * We dont want to block the signals - that would cause
1564 * child tasks to inherit that and Ctrl-C would not work.
1565 * What we want is for Ctrl-C to work in the exec()-ed
1566 * task, but being ignored by perf stat itself:
1567 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001568 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001569 if (!forever)
1570 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001571 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001572 signal(SIGALRM, skip_signal);
1573 signal(SIGABRT, skip_signal);
1574
Ingo Molnar42202dd2009-06-13 14:57:28 +02001575 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001576 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001577 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001578 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1579 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001580
Ingo Molnar42202dd2009-06-13 14:57:28 +02001581 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001582 if (forever && status != -1) {
1583 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001584 perf_stat__reset_stats(evsel_list);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001585 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001586 }
1587
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001588 if (!forever && status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001589 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001590
1591 perf_evlist__free_stats(evsel_list);
1592out_free_maps:
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001593 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001594out:
1595 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001596 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001597}