blob: dab98b50c9feb800eac1652d4c66d2cf4c691c97 [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"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070049#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020050#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020051#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020052#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020053#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020054#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080055#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080056#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110057#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030058#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020059#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020060
Peter Zijlstra1f16c572012-10-23 13:40:14 +020061#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020062#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020063#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020064
Stephane Eraniand7470b62010-12-01 18:49:05 +020065#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060066#define CNTR_NOT_SUPPORTED "<not supported>"
67#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020068
Stephane Eranian13370a92013-01-29 12:47:44 +010069static void print_stat(int argc, const char **argv);
70static void print_counter_aggr(struct perf_evsel *counter, char *prefix);
71static void print_counter(struct perf_evsel *counter, char *prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +010072static void print_aggr(char *prefix);
Stephane Eranian13370a92013-01-29 12:47:44 +010073
Andi Kleen4cabc3d2013-08-21 16:47:26 -070074/* Default events used for perf stat -T */
75static const char * const transaction_attrs[] = {
76 "task-clock",
77 "{"
78 "instructions,"
79 "cycles,"
80 "cpu/cycles-t/,"
81 "cpu/tx-start/,"
82 "cpu/el-start/,"
83 "cpu/cycles-ct/"
84 "}"
85};
86
87/* More limited version when the CPU does not have all events. */
88static const char * const transaction_limited_attrs[] = {
89 "task-clock",
90 "{"
91 "instructions,"
92 "cycles,"
93 "cpu/cycles-t/,"
94 "cpu/tx-start/"
95 "}"
96};
97
98/* must match transaction_attrs and the beginning limited_attrs */
99enum {
100 T_TASK_CLOCK,
101 T_INSTRUCTIONS,
102 T_CYCLES,
103 T_CYCLES_IN_TX,
104 T_TRANSACTION_START,
105 T_ELISION_START,
106 T_CYCLES_IN_TX_CP,
107};
108
Robert Richter666e6d42012-04-05 18:26:27 +0200109static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200110
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300111static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900112 .uid = UINT_MAX,
113};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530114
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100115enum aggr_mode {
116 AGGR_NONE,
117 AGGR_GLOBAL,
118 AGGR_SOCKET,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100119 AGGR_CORE,
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100120};
121
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530122static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200123static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +1000124static bool scale = true;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100125static enum aggr_mode aggr_mode = AGGR_GLOBAL;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200126static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000127static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200128static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700129static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200130static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200131static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200132static const char *csv_sep = NULL;
133static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800134static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200135static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200136static const char *pre_cmd = NULL;
137static const char *post_cmd = NULL;
138static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100139static unsigned int interval = 0;
Andi Kleen41191682013-08-02 17:41:11 -0700140static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100141static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500142static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100143static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100144static struct cpu_map *aggr_map;
145static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200146
Liming Wang60666c62009-12-31 16:05:50 +0800147static volatile int done = 0;
148
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200149struct perf_stat {
150 struct stats res_stats[3];
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200151};
152
Stephane Eranian13370a92013-01-29 12:47:44 +0100153static inline void diff_timespec(struct timespec *r, struct timespec *a,
154 struct timespec *b)
155{
156 r->tv_sec = a->tv_sec - b->tv_sec;
157 if (a->tv_nsec < b->tv_nsec) {
158 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
159 r->tv_sec--;
160 } else {
161 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
162 }
163}
164
165static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
166{
167 return (evsel->cpus && !target.cpu_list) ? evsel->cpus : evsel_list->cpus;
168}
169
170static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
171{
172 return perf_evsel__cpus(evsel)->nr;
173}
174
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500175static void perf_evsel__reset_stat_priv(struct perf_evsel *evsel)
176{
177 memset(evsel->priv, 0, sizeof(struct perf_stat));
178}
179
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200180static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200181{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200182 evsel->priv = zalloc(sizeof(struct perf_stat));
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200183 return evsel->priv == NULL ? -ENOMEM : 0;
184}
185
186static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
187{
188 free(evsel->priv);
189 evsel->priv = NULL;
190}
191
Stephane Eranian13370a92013-01-29 12:47:44 +0100192static int perf_evsel__alloc_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800193{
Stephane Eranian13370a92013-01-29 12:47:44 +0100194 void *addr;
195 size_t sz;
196
197 sz = sizeof(*evsel->counts) +
198 (perf_evsel__nr_cpus(evsel) * sizeof(struct perf_counts_values));
199
200 addr = zalloc(sz);
201 if (!addr)
202 return -ENOMEM;
203
204 evsel->prev_raw_counts = addr;
205
206 return 0;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800207}
208
Stephane Eranian13370a92013-01-29 12:47:44 +0100209static void perf_evsel__free_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800210{
Stephane Eranian13370a92013-01-29 12:47:44 +0100211 free(evsel->prev_raw_counts);
212 evsel->prev_raw_counts = NULL;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800213}
214
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300215static void perf_evlist__free_stats(struct perf_evlist *evlist)
216{
217 struct perf_evsel *evsel;
218
219 list_for_each_entry(evsel, &evlist->entries, node) {
220 perf_evsel__free_stat_priv(evsel);
221 perf_evsel__free_counts(evsel);
222 perf_evsel__free_prev_raw_counts(evsel);
223 }
224}
225
226static int perf_evlist__alloc_stats(struct perf_evlist *evlist, bool alloc_raw)
227{
228 struct perf_evsel *evsel;
229
230 list_for_each_entry(evsel, &evlist->entries, node) {
231 if (perf_evsel__alloc_stat_priv(evsel) < 0 ||
232 perf_evsel__alloc_counts(evsel, perf_evsel__nr_cpus(evsel)) < 0 ||
233 (alloc_raw && perf_evsel__alloc_prev_raw_counts(evsel) < 0))
234 goto out_free;
235 }
236
237 return 0;
238
239out_free:
240 perf_evlist__free_stats(evlist);
241 return -1;
242}
243
Robert Richter666e6d42012-04-05 18:26:27 +0200244static struct stats runtime_nsecs_stats[MAX_NR_CPUS];
245static struct stats runtime_cycles_stats[MAX_NR_CPUS];
246static struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
247static struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
248static struct stats runtime_branches_stats[MAX_NR_CPUS];
249static struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
250static struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
251static struct stats runtime_l1_icache_stats[MAX_NR_CPUS];
252static struct stats runtime_ll_cache_stats[MAX_NR_CPUS];
253static struct stats runtime_itlb_cache_stats[MAX_NR_CPUS];
254static struct stats runtime_dtlb_cache_stats[MAX_NR_CPUS];
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700255static struct stats runtime_cycles_in_tx_stats[MAX_NR_CPUS];
Robert Richter666e6d42012-04-05 18:26:27 +0200256static struct stats walltime_nsecs_stats;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700257static struct stats runtime_transaction_stats[MAX_NR_CPUS];
258static struct stats runtime_elision_stats[MAX_NR_CPUS];
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200259
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300260static void perf_stat__reset_stats(struct perf_evlist *evlist)
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500261{
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300262 struct perf_evsel *evsel;
263
264 list_for_each_entry(evsel, &evlist->entries, node) {
265 perf_evsel__reset_stat_priv(evsel);
266 perf_evsel__reset_counts(evsel, perf_evsel__nr_cpus(evsel));
267 }
268
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500269 memset(runtime_nsecs_stats, 0, sizeof(runtime_nsecs_stats));
270 memset(runtime_cycles_stats, 0, sizeof(runtime_cycles_stats));
271 memset(runtime_stalled_cycles_front_stats, 0, sizeof(runtime_stalled_cycles_front_stats));
272 memset(runtime_stalled_cycles_back_stats, 0, sizeof(runtime_stalled_cycles_back_stats));
273 memset(runtime_branches_stats, 0, sizeof(runtime_branches_stats));
274 memset(runtime_cacherefs_stats, 0, sizeof(runtime_cacherefs_stats));
275 memset(runtime_l1_dcache_stats, 0, sizeof(runtime_l1_dcache_stats));
276 memset(runtime_l1_icache_stats, 0, sizeof(runtime_l1_icache_stats));
277 memset(runtime_ll_cache_stats, 0, sizeof(runtime_ll_cache_stats));
278 memset(runtime_itlb_cache_stats, 0, sizeof(runtime_itlb_cache_stats));
279 memset(runtime_dtlb_cache_stats, 0, sizeof(runtime_dtlb_cache_stats));
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700280 memset(runtime_cycles_in_tx_stats, 0,
281 sizeof(runtime_cycles_in_tx_stats));
282 memset(runtime_transaction_stats, 0,
283 sizeof(runtime_transaction_stats));
284 memset(runtime_elision_stats, 0, sizeof(runtime_elision_stats));
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500285 memset(&walltime_nsecs_stats, 0, sizeof(walltime_nsecs_stats));
286}
287
Jiri Olsacac21422012-11-12 18:34:00 +0100288static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200289{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200290 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200291
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200292 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200293 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
294 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200295
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200296 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300297
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300298 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300299 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200300
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300301 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200302 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700303 if (!initial_delay)
304 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200305 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300306
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300307 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200308}
309
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200310/*
311 * Does the counter have nsecs as a unit?
312 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200313static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200314{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200315 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
316 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200317 return 1;
318
319 return 0;
320}
321
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700322static struct perf_evsel *nth_evsel(int n)
323{
324 static struct perf_evsel **array;
325 static int array_len;
326 struct perf_evsel *ev;
327 int j;
328
329 /* Assumes this only called when evsel_list does not change anymore. */
330 if (!array) {
331 list_for_each_entry(ev, &evsel_list->entries, node)
332 array_len++;
333 array = malloc(array_len * sizeof(void *));
334 if (!array)
335 exit(ENOMEM);
336 j = 0;
337 list_for_each_entry(ev, &evsel_list->entries, node)
338 array[j++] = ev;
339 }
340 if (n < array_len)
341 return array[n];
342 return NULL;
343}
344
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200345/*
Ingo Molnardcd99362011-04-27 04:36:37 +0200346 * Update various tracking values we maintain to print
347 * more semantic information such as miss/hit ratios,
348 * instruction rates, etc:
349 */
350static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
351{
352 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
353 update_stats(&runtime_nsecs_stats[0], count[0]);
354 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
355 update_stats(&runtime_cycles_stats[0], count[0]);
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700356 else if (transaction_run &&
357 perf_evsel__cmp(counter, nth_evsel(T_CYCLES_IN_TX)))
358 update_stats(&runtime_cycles_in_tx_stats[0], count[0]);
359 else if (transaction_run &&
360 perf_evsel__cmp(counter, nth_evsel(T_TRANSACTION_START)))
361 update_stats(&runtime_transaction_stats[0], count[0]);
362 else if (transaction_run &&
363 perf_evsel__cmp(counter, nth_evsel(T_ELISION_START)))
364 update_stats(&runtime_elision_stats[0], count[0]);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200365 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
366 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200367 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
Ingo Molnard3d1e862011-04-29 13:49:08 +0200368 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200369 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
370 update_stats(&runtime_branches_stats[0], count[0]);
371 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
372 update_stats(&runtime_cacherefs_stats[0], count[0]);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200373 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
374 update_stats(&runtime_l1_dcache_stats[0], count[0]);
Ingo Molnarc33052572011-05-19 14:01:42 +0200375 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1I))
376 update_stats(&runtime_l1_icache_stats[0], count[0]);
377 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_LL))
378 update_stats(&runtime_ll_cache_stats[0], count[0]);
379 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_DTLB))
380 update_stats(&runtime_dtlb_cache_stats[0], count[0]);
381 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_ITLB))
382 update_stats(&runtime_itlb_cache_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200383}
384
385/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200386 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200387 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200388 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200389static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200390{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200391 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200392 u64 *count = counter->counts->aggr.values;
393 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200394
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800395 if (__perf_evsel__read(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900396 thread_map__nr(evsel_list->threads), scale) < 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200397 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200398
399 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200400 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200401
402 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200403 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300404 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200405 }
406
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200407 /*
408 * Save the full runtime - to allow normalization during printout:
409 */
Ingo Molnardcd99362011-04-27 04:36:37 +0200410 update_shadow_stats(counter, count);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200411
412 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200413}
414
415/*
416 * Read out the results of a single counter:
417 * do not aggregate counts across CPUs in system-wide mode
418 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200419static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200420{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200421 u64 *count;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200422 int cpu;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200423
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800424 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200425 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
426 return -1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200427
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200428 count = counter->counts->cpu[cpu].values;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200429
Ingo Molnardcd99362011-04-27 04:36:37 +0200430 update_shadow_stats(counter, count);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200431 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200432
433 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200434}
435
Stephane Eranian13370a92013-01-29 12:47:44 +0100436static void print_interval(void)
437{
438 static int num_print_interval;
439 struct perf_evsel *counter;
440 struct perf_stat *ps;
441 struct timespec ts, rs;
442 char prefix[64];
443
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100444 if (aggr_mode == AGGR_GLOBAL) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100445 list_for_each_entry(counter, &evsel_list->entries, node) {
446 ps = counter->priv;
447 memset(ps->res_stats, 0, sizeof(ps->res_stats));
448 read_counter_aggr(counter);
449 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100450 } else {
451 list_for_each_entry(counter, &evsel_list->entries, node) {
452 ps = counter->priv;
453 memset(ps->res_stats, 0, sizeof(ps->res_stats));
454 read_counter(counter);
455 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100456 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100457
Stephane Eranian13370a92013-01-29 12:47:44 +0100458 clock_gettime(CLOCK_MONOTONIC, &ts);
459 diff_timespec(&rs, &ts, &ref_time);
460 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
461
462 if (num_print_interval == 0 && !csv_output) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100463 switch (aggr_mode) {
464 case AGGR_SOCKET:
Stephane Eranian410136f2013-11-12 17:58:49 +0100465 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100466 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100467 case AGGR_CORE:
Stephane Eranian410136f2013-11-12 17:58:49 +0100468 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
Stephane Eranian12c08a92013-02-14 13:57:29 +0100469 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100470 case AGGR_NONE:
Stephane Eranian410136f2013-11-12 17:58:49 +0100471 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100472 break;
473 case AGGR_GLOBAL:
474 default:
Stephane Eranian410136f2013-11-12 17:58:49 +0100475 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100476 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100477 }
478
479 if (++num_print_interval == 25)
480 num_print_interval = 0;
481
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100482 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100483 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100484 case AGGR_SOCKET:
485 print_aggr(prefix);
486 break;
487 case AGGR_NONE:
Stephane Eranian13370a92013-01-29 12:47:44 +0100488 list_for_each_entry(counter, &evsel_list->entries, node)
489 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100490 break;
491 case AGGR_GLOBAL:
492 default:
Stephane Eranian13370a92013-01-29 12:47:44 +0100493 list_for_each_entry(counter, &evsel_list->entries, node)
494 print_counter_aggr(counter, prefix);
495 }
Andi Kleen2bbf03f2013-08-02 17:41:12 -0700496
497 fflush(output);
Stephane Eranian13370a92013-01-29 12:47:44 +0100498}
499
Andi Kleen41191682013-08-02 17:41:11 -0700500static void handle_initial_delay(void)
501{
502 struct perf_evsel *counter;
503
504 if (initial_delay) {
505 const int ncpus = cpu_map__nr(evsel_list->cpus),
506 nthreads = thread_map__nr(evsel_list->threads);
507
508 usleep(initial_delay * 1000);
509 list_for_each_entry(counter, &evsel_list->entries, node)
510 perf_evsel__enable(counter, ncpus, nthreads);
511 }
512}
513
Namhyung Kimacf28922013-03-11 16:43:18 +0900514static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200515{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300516 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200517 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100518 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100519 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100520 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200521 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300522 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200523
Stephane Eranian13370a92013-01-29 12:47:44 +0100524 if (interval) {
525 ts.tv_sec = interval / 1000;
526 ts.tv_nsec = (interval % 1000) * 1000000;
527 } else {
528 ts.tv_sec = 1;
529 ts.tv_nsec = 0;
530 }
531
Liming Wang60666c62009-12-31 16:05:50 +0800532 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900533 if (perf_evlist__prepare_workload(evsel_list, &target, argv,
534 false, false) < 0) {
535 perror("failed to prepare workload");
536 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800537 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900538 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000539 }
540
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200541 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300542 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200543
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200544 list_for_each_entry(counter, &evsel_list->entries, node) {
Jiri Olsacac21422012-11-12 18:34:00 +0100545 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600546 /*
547 * PPC returns ENXIO for HW counters until 2.6.37
548 * (behavior changed with commit b0a873e).
549 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100550 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600551 errno == ENOENT || errno == EOPNOTSUPP ||
552 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600553 if (verbose)
554 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300555 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600556 counter->supported = false;
Ingo Molnarede70292011-04-28 08:48:42 +0200557 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600558 }
Ingo Molnarede70292011-04-28 08:48:42 +0200559
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300560 perf_evsel__open_strerror(counter, &target,
561 errno, msg, sizeof(msg));
562 ui__error("%s\n", msg);
563
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200564 if (child_pid != -1)
565 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600566
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200567 return -1;
568 }
David Ahern2cee77c2011-05-30 08:55:59 -0600569 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100570
571 l = strlen(counter->unit);
572 if (l > unit_width)
573 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300574 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200575
Arnaldo Carvalho de Melo1491a632012-09-26 14:43:13 -0300576 if (perf_evlist__apply_filters(evsel_list)) {
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100577 error("failed to set filter with %d (%s)\n", errno,
578 strerror(errno));
579 return -1;
580 }
581
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200582 /*
583 * Enable counters and exec the command:
584 */
585 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100586 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200587
Liming Wang60666c62009-12-31 16:05:50 +0800588 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900589 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700590 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900591
Stephane Eranian13370a92013-01-29 12:47:44 +0100592 if (interval) {
593 while (!waitpid(child_pid, &status, WNOHANG)) {
594 nanosleep(&ts, NULL);
595 print_interval();
596 }
597 }
Liming Wang60666c62009-12-31 16:05:50 +0800598 wait(&status);
Andi Kleen33e49ea2011-09-15 14:31:40 -0700599 if (WIFSIGNALED(status))
600 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800601 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700602 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100603 while (!done) {
604 nanosleep(&ts, NULL);
605 if (interval)
606 print_interval();
607 }
Liming Wang60666c62009-12-31 16:05:50 +0800608 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200609
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200610 t1 = rdclock();
611
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200612 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200613
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100614 if (aggr_mode == AGGR_GLOBAL) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200615 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200616 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800617 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900618 thread_map__nr(evsel_list->threads));
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200619 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100620 } else {
621 list_for_each_entry(counter, &evsel_list->entries, node) {
622 read_counter(counter);
623 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
624 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200625 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200626
Ingo Molnar42202dd2009-06-13 14:57:28 +0200627 return WEXITSTATUS(status);
628}
629
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200630static int run_perf_stat(int argc __maybe_unused, const char **argv)
631{
632 int ret;
633
634 if (pre_cmd) {
635 ret = system(pre_cmd);
636 if (ret)
637 return ret;
638 }
639
640 if (sync_run)
641 sync();
642
643 ret = __run_perf_stat(argc, argv);
644 if (ret)
645 return ret;
646
647 if (post_cmd) {
648 ret = system(post_cmd);
649 if (ret)
650 return ret;
651 }
652
653 return ret;
654}
655
Ingo Molnarf99844c2011-04-27 05:35:39 +0200656static void print_noise_pct(double total, double avg)
657{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800658 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200659
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700660 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200661 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600662 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200663 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200664}
665
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200666static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200667{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200668 struct perf_stat *ps;
669
Peter Zijlstra849abde2009-09-04 18:23:38 +0200670 if (run_count == 1)
671 return;
672
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200673 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200674 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200675}
676
Stephane Eranian12c08a92013-02-14 13:57:29 +0100677static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200678{
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100679 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100680 case AGGR_CORE:
681 fprintf(output, "S%d-C%*d%s%*d%s",
682 cpu_map__id_to_socket(id),
683 csv_output ? 0 : -8,
684 cpu_map__id_to_cpu(id),
685 csv_sep,
686 csv_output ? 0 : 4,
687 nr,
688 csv_sep);
689 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100690 case AGGR_SOCKET:
691 fprintf(output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100692 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100693 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100694 csv_sep,
695 csv_output ? 0 : 4,
696 nr,
697 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100698 break;
699 case AGGR_NONE:
700 fprintf(output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200701 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100702 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100703 break;
704 case AGGR_GLOBAL:
705 default:
706 break;
707 }
708}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200709
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100710static void nsec_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
711{
712 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100713 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600714 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100715
Stephane Eranian410136f2013-11-12 17:58:49 +0100716 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
717 fmt_n = csv_output ? "%s" : "%-25s";
718
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100719 aggr_printout(evsel, cpu, nr);
720
David Ahern4bbe5a62013-09-28 14:28:00 -0600721 scnprintf(name, sizeof(name), "%s%s",
722 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100723
724 fprintf(output, fmt_v, msecs, csv_sep);
725
726 if (csv_output)
727 fprintf(output, "%s%s", evsel->unit, csv_sep);
728 else
729 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
730
731 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200732
Stephane Eranian023695d2011-02-14 11:20:01 +0200733 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200734 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200735
Stephane Eranian13370a92013-01-29 12:47:44 +0100736 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200737 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200738
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200739 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200740 fprintf(output, " # %8.3f CPUs utilized ",
741 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900742 else
743 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200744}
745
Namhyung Kim15e63922011-12-28 00:35:49 +0900746/* used for get_ratio_color() */
747enum grc_type {
748 GRC_STALLED_CYCLES_FE,
749 GRC_STALLED_CYCLES_BE,
750 GRC_CACHE_MISSES,
751 GRC_MAX_NR
752};
753
754static const char *get_ratio_color(enum grc_type type, double ratio)
755{
756 static const double grc_table[GRC_MAX_NR][3] = {
757 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
758 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
759 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
760 };
761 const char *color = PERF_COLOR_NORMAL;
762
763 if (ratio > grc_table[type][0])
764 color = PERF_COLOR_RED;
765 else if (ratio > grc_table[type][1])
766 color = PERF_COLOR_MAGENTA;
767 else if (ratio > grc_table[type][2])
768 color = PERF_COLOR_YELLOW;
769
770 return color;
771}
772
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300773static void print_stalled_cycles_frontend(int cpu,
774 struct perf_evsel *evsel
775 __maybe_unused, double avg)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200776{
777 double total, ratio = 0.0;
778 const char *color;
779
780 total = avg_stats(&runtime_cycles_stats[cpu]);
781
782 if (total)
783 ratio = avg / total * 100.0;
784
Namhyung Kim15e63922011-12-28 00:35:49 +0900785 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200786
Stephane Eranian4aa90152011-08-15 22:22:33 +0200787 fprintf(output, " # ");
788 color_fprintf(output, color, "%6.2f%%", ratio);
789 fprintf(output, " frontend cycles idle ");
Ingo Molnard3d1e862011-04-29 13:49:08 +0200790}
791
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300792static void print_stalled_cycles_backend(int cpu,
793 struct perf_evsel *evsel
794 __maybe_unused, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200795{
796 double total, ratio = 0.0;
797 const char *color;
798
799 total = avg_stats(&runtime_cycles_stats[cpu]);
800
801 if (total)
802 ratio = avg / total * 100.0;
803
Namhyung Kim15e63922011-12-28 00:35:49 +0900804 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200805
Stephane Eranian4aa90152011-08-15 22:22:33 +0200806 fprintf(output, " # ");
807 color_fprintf(output, color, "%6.2f%%", ratio);
808 fprintf(output, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200809}
810
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300811static void print_branch_misses(int cpu,
812 struct perf_evsel *evsel __maybe_unused,
813 double avg)
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200814{
815 double total, ratio = 0.0;
816 const char *color;
817
818 total = avg_stats(&runtime_branches_stats[cpu]);
819
820 if (total)
821 ratio = avg / total * 100.0;
822
Namhyung Kim15e63922011-12-28 00:35:49 +0900823 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200824
Stephane Eranian4aa90152011-08-15 22:22:33 +0200825 fprintf(output, " # ");
826 color_fprintf(output, color, "%6.2f%%", ratio);
827 fprintf(output, " of all branches ");
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200828}
829
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300830static void print_l1_dcache_misses(int cpu,
831 struct perf_evsel *evsel __maybe_unused,
832 double avg)
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200833{
834 double total, ratio = 0.0;
835 const char *color;
836
837 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
838
839 if (total)
840 ratio = avg / total * 100.0;
841
Namhyung Kim15e63922011-12-28 00:35:49 +0900842 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200843
Stephane Eranian4aa90152011-08-15 22:22:33 +0200844 fprintf(output, " # ");
845 color_fprintf(output, color, "%6.2f%%", ratio);
846 fprintf(output, " of all L1-dcache hits ");
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200847}
848
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300849static void print_l1_icache_misses(int cpu,
850 struct perf_evsel *evsel __maybe_unused,
851 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200852{
853 double total, ratio = 0.0;
854 const char *color;
855
856 total = avg_stats(&runtime_l1_icache_stats[cpu]);
857
858 if (total)
859 ratio = avg / total * 100.0;
860
Namhyung Kim15e63922011-12-28 00:35:49 +0900861 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200862
Stephane Eranian4aa90152011-08-15 22:22:33 +0200863 fprintf(output, " # ");
864 color_fprintf(output, color, "%6.2f%%", ratio);
865 fprintf(output, " of all L1-icache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200866}
867
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300868static void print_dtlb_cache_misses(int cpu,
869 struct perf_evsel *evsel __maybe_unused,
870 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200871{
872 double total, ratio = 0.0;
873 const char *color;
874
875 total = avg_stats(&runtime_dtlb_cache_stats[cpu]);
876
877 if (total)
878 ratio = avg / total * 100.0;
879
Namhyung Kim15e63922011-12-28 00:35:49 +0900880 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200881
Stephane Eranian4aa90152011-08-15 22:22:33 +0200882 fprintf(output, " # ");
883 color_fprintf(output, color, "%6.2f%%", ratio);
884 fprintf(output, " of all dTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200885}
886
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300887static void print_itlb_cache_misses(int cpu,
888 struct perf_evsel *evsel __maybe_unused,
889 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200890{
891 double total, ratio = 0.0;
892 const char *color;
893
894 total = avg_stats(&runtime_itlb_cache_stats[cpu]);
895
896 if (total)
897 ratio = avg / total * 100.0;
898
Namhyung Kim15e63922011-12-28 00:35:49 +0900899 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200900
Stephane Eranian4aa90152011-08-15 22:22:33 +0200901 fprintf(output, " # ");
902 color_fprintf(output, color, "%6.2f%%", ratio);
903 fprintf(output, " of all iTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200904}
905
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300906static void print_ll_cache_misses(int cpu,
907 struct perf_evsel *evsel __maybe_unused,
908 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200909{
910 double total, ratio = 0.0;
911 const char *color;
912
913 total = avg_stats(&runtime_ll_cache_stats[cpu]);
914
915 if (total)
916 ratio = avg / total * 100.0;
917
Namhyung Kim15e63922011-12-28 00:35:49 +0900918 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200919
Stephane Eranian4aa90152011-08-15 22:22:33 +0200920 fprintf(output, " # ");
921 color_fprintf(output, color, "%6.2f%%", ratio);
922 fprintf(output, " of all LL-cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200923}
924
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100925static void abs_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200926{
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700927 double total, ratio = 0.0, total2;
Stephane Eranian410136f2013-11-12 17:58:49 +0100928 double sc = evsel->scale;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200929 const char *fmt;
930
Stephane Eranian410136f2013-11-12 17:58:49 +0100931 if (csv_output) {
932 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
933 } else {
934 if (big_num)
935 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
936 else
937 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
938 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200939
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100940 aggr_printout(evsel, cpu, nr);
941
942 if (aggr_mode == AGGR_GLOBAL)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200943 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200944
Stephane Eranian410136f2013-11-12 17:58:49 +0100945 fprintf(output, fmt, avg, csv_sep);
946
947 if (evsel->unit)
948 fprintf(output, "%-*s%s",
949 csv_output ? 0 : unit_width,
950 evsel->unit, csv_sep);
951
952 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200953
Stephane Eranian023695d2011-02-14 11:20:01 +0200954 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200955 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200956
Stephane Eranian13370a92013-01-29 12:47:44 +0100957 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200958 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200959
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200960 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200961 total = avg_stats(&runtime_cycles_stats[cpu]);
Ramkumar Ramachandra3e7a0812013-10-01 14:06:44 +0530962 if (total) {
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200963 ratio = avg / total;
Ramkumar Ramachandra3e7a0812013-10-01 14:06:44 +0530964 fprintf(output, " # %5.2f insns per cycle ", ratio);
965 }
Ingo Molnard3d1e862011-04-29 13:49:08 +0200966 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
967 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200968
969 if (total && avg) {
970 ratio = total / avg;
Stephane Eranian410136f2013-11-12 17:58:49 +0100971 fprintf(output, "\n");
972 if (aggr_mode == AGGR_NONE)
973 fprintf(output, " ");
974 fprintf(output, " # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200975 }
976
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200977 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200978 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200979 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200980 } else if (
981 evsel->attr.type == PERF_TYPE_HW_CACHE &&
982 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
983 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
984 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200985 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200986 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnarc33052572011-05-19 14:01:42 +0200987 } else if (
988 evsel->attr.type == PERF_TYPE_HW_CACHE &&
989 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
990 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
991 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
992 runtime_l1_icache_stats[cpu].n != 0) {
993 print_l1_icache_misses(cpu, evsel, avg);
994 } else if (
995 evsel->attr.type == PERF_TYPE_HW_CACHE &&
996 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
997 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
998 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
999 runtime_dtlb_cache_stats[cpu].n != 0) {
1000 print_dtlb_cache_misses(cpu, evsel, avg);
1001 } else if (
1002 evsel->attr.type == PERF_TYPE_HW_CACHE &&
1003 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
1004 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
1005 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
1006 runtime_itlb_cache_stats[cpu].n != 0) {
1007 print_itlb_cache_misses(cpu, evsel, avg);
1008 } else if (
1009 evsel->attr.type == PERF_TYPE_HW_CACHE &&
1010 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
1011 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
1012 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
1013 runtime_ll_cache_stats[cpu].n != 0) {
1014 print_ll_cache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +02001015 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
1016 runtime_cacherefs_stats[cpu].n != 0) {
1017 total = avg_stats(&runtime_cacherefs_stats[cpu]);
1018
1019 if (total)
1020 ratio = avg * 100 / total;
1021
Stephane Eranian4aa90152011-08-15 22:22:33 +02001022 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +02001023
Ingo Molnard3d1e862011-04-29 13:49:08 +02001024 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
1025 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +02001026 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +02001027 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +02001028 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
1029 total = avg_stats(&runtime_nsecs_stats[cpu]);
1030
Ramkumar Ramachandrac458fe62013-09-30 16:43:05 +05301031 if (total) {
1032 ratio = avg / total;
1033 fprintf(output, " # %8.3f GHz ", ratio);
1034 }
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001035 } else if (transaction_run &&
1036 perf_evsel__cmp(evsel, nth_evsel(T_CYCLES_IN_TX))) {
1037 total = avg_stats(&runtime_cycles_stats[cpu]);
1038 if (total)
1039 fprintf(output,
1040 " # %5.2f%% transactional cycles ",
1041 100.0 * (avg / total));
1042 } else if (transaction_run &&
1043 perf_evsel__cmp(evsel, nth_evsel(T_CYCLES_IN_TX_CP))) {
1044 total = avg_stats(&runtime_cycles_stats[cpu]);
1045 total2 = avg_stats(&runtime_cycles_in_tx_stats[cpu]);
1046 if (total2 < avg)
1047 total2 = avg;
1048 if (total)
1049 fprintf(output,
1050 " # %5.2f%% aborted cycles ",
1051 100.0 * ((total2-avg) / total));
1052 } else if (transaction_run &&
1053 perf_evsel__cmp(evsel, nth_evsel(T_TRANSACTION_START)) &&
1054 avg > 0 &&
1055 runtime_cycles_in_tx_stats[cpu].n != 0) {
1056 total = avg_stats(&runtime_cycles_in_tx_stats[cpu]);
1057
1058 if (total)
1059 ratio = total / avg;
1060
1061 fprintf(output, " # %8.0f cycles / transaction ", ratio);
1062 } else if (transaction_run &&
1063 perf_evsel__cmp(evsel, nth_evsel(T_ELISION_START)) &&
1064 avg > 0 &&
1065 runtime_cycles_in_tx_stats[cpu].n != 0) {
1066 total = avg_stats(&runtime_cycles_in_tx_stats[cpu]);
1067
1068 if (total)
1069 ratio = total / avg;
1070
1071 fprintf(output, " # %8.0f cycles / elision ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +02001072 } else if (runtime_nsecs_stats[cpu].n != 0) {
Namhyung Kim5fde25232012-02-06 16:44:44 +09001073 char unit = 'M';
1074
Ingo Molnar481f9882011-04-27 04:34:16 +02001075 total = avg_stats(&runtime_nsecs_stats[cpu]);
1076
1077 if (total)
1078 ratio = 1000.0 * avg / total;
Namhyung Kim5fde25232012-02-06 16:44:44 +09001079 if (ratio < 0.001) {
1080 ratio *= 1000;
1081 unit = 'K';
1082 }
Ingo Molnar481f9882011-04-27 04:34:16 +02001083
Namhyung Kim5fde25232012-02-06 16:44:44 +09001084 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
Ingo Molnara5d243d2011-04-27 05:39:24 +02001085 } else {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001086 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +02001087 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001088}
1089
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001090static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001091{
1092 struct perf_evsel *counter;
Stephane Eranian582ec0822013-07-05 19:06:45 +02001093 int cpu, cpu2, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +01001094 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001095 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001096
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001097 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001098 return;
1099
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001100 for (s = 0; s < aggr_map->nr; s++) {
1101 id = aggr_map->map[s];
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001102 list_for_each_entry(counter, &evsel_list->entries, node) {
1103 val = ena = run = 0;
1104 nr = 0;
1105 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian582ec0822013-07-05 19:06:45 +02001106 cpu2 = perf_evsel__cpus(counter)->map[cpu];
1107 s2 = aggr_get_id(evsel_list->cpus, cpu2);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001108 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001109 continue;
1110 val += counter->counts->cpu[cpu].val;
1111 ena += counter->counts->cpu[cpu].ena;
1112 run += counter->counts->cpu[cpu].run;
1113 nr++;
1114 }
1115 if (prefix)
1116 fprintf(output, "%s", prefix);
1117
1118 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +02001119 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001120
Stephane Eranian410136f2013-11-12 17:58:49 +01001121 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001122 csv_output ? 0 : 18,
1123 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +01001124 csv_sep);
1125
1126 fprintf(output, "%-*s%s",
1127 csv_output ? 0 : unit_width,
1128 counter->unit, csv_sep);
1129
1130 fprintf(output, "%*s",
1131 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001132 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001133
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001134 if (counter->cgrp)
1135 fprintf(output, "%s%s",
1136 csv_sep, counter->cgrp->name);
1137
1138 fputc('\n', output);
1139 continue;
1140 }
Stephane Eranian410136f2013-11-12 17:58:49 +01001141 uval = val * counter->scale;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001142
1143 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +01001144 nsec_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001145 else
Stephane Eranian410136f2013-11-12 17:58:49 +01001146 abs_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001147
1148 if (!csv_output) {
1149 print_noise(counter, 1.0);
1150
1151 if (run != ena)
1152 fprintf(output, " (%.2f%%)",
1153 100.0 * run / ena);
1154 }
1155 fputc('\n', output);
1156 }
1157 }
1158}
1159
Ingo Molnar42202dd2009-06-13 14:57:28 +02001160/*
1161 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001162 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +02001163 */
Stephane Eranian13370a92013-01-29 12:47:44 +01001164static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001165{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001166 struct perf_stat *ps = counter->priv;
1167 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001168 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +01001169 double uval;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001170
Stephane Eranian13370a92013-01-29 12:47:44 +01001171 if (prefix)
1172 fprintf(output, "%s", prefix);
1173
Ingo Molnar42202dd2009-06-13 14:57:28 +02001174 if (scaled == -1) {
Stephane Eranian410136f2013-11-12 17:58:49 +01001175 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001176 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -06001177 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +01001178 csv_sep);
1179 fprintf(output, "%-*s%s",
1180 csv_output ? 0 : unit_width,
1181 counter->unit, csv_sep);
1182 fprintf(output, "%*s",
1183 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001184 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +02001185
1186 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001187 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +02001188
Stephane Eranian4aa90152011-08-15 22:22:33 +02001189 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001190 return;
1191 }
1192
Stephane Eranian410136f2013-11-12 17:58:49 +01001193 uval = avg * counter->scale;
1194
Ingo Molnar42202dd2009-06-13 14:57:28 +02001195 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +01001196 nsec_printout(-1, 0, counter, uval);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001197 else
Stephane Eranian410136f2013-11-12 17:58:49 +01001198 abs_printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +02001199
Zhengyu He3ae9a34d2011-06-23 13:45:42 -07001200 print_noise(counter, avg);
1201
Stephane Eraniand7470b62010-12-01 18:49:05 +02001202 if (csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001203 fputc('\n', output);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001204 return;
1205 }
1206
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001207 if (scaled) {
1208 double avg_enabled, avg_running;
1209
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001210 avg_enabled = avg_stats(&ps->res_stats[1]);
1211 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001212
Stephane Eranian4aa90152011-08-15 22:22:33 +02001213 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +02001214 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001215 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +02001216}
1217
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001218/*
1219 * Print out the results of a single counter:
1220 * does not use aggregated count in system-wide
1221 */
Stephane Eranian13370a92013-01-29 12:47:44 +01001222static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001223{
1224 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +01001225 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001226 int cpu;
1227
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001228 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001229 val = counter->counts->cpu[cpu].val;
1230 ena = counter->counts->cpu[cpu].ena;
1231 run = counter->counts->cpu[cpu].run;
Stephane Eranian13370a92013-01-29 12:47:44 +01001232
1233 if (prefix)
1234 fprintf(output, "%s", prefix);
1235
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001236 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +01001237 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001238 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001239 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +02001240 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -06001241 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +01001242 csv_sep);
1243
1244 fprintf(output, "%-*s%s",
1245 csv_output ? 0 : unit_width,
1246 counter->unit, csv_sep);
1247
1248 fprintf(output, "%*s",
1249 csv_output ? 0 : -25,
1250 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001251
Stephane Eranian023695d2011-02-14 11:20:01 +02001252 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001253 fprintf(output, "%s%s",
1254 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +02001255
Stephane Eranian4aa90152011-08-15 22:22:33 +02001256 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001257 continue;
1258 }
1259
Stephane Eranian410136f2013-11-12 17:58:49 +01001260 uval = val * counter->scale;
1261
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001262 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +01001263 nsec_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001264 else
Stephane Eranian410136f2013-11-12 17:58:49 +01001265 abs_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001266
Stephane Eraniand7470b62010-12-01 18:49:05 +02001267 if (!csv_output) {
1268 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001269
Ingo Molnarc6264de2011-04-27 13:50:47 +02001270 if (run != ena)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001271 fprintf(output, " (%.2f%%)",
1272 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001273 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001274 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001275 }
1276}
1277
Ingo Molnar42202dd2009-06-13 14:57:28 +02001278static void print_stat(int argc, const char **argv)
1279{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001280 struct perf_evsel *counter;
1281 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001282
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001283 fflush(stdout);
1284
Stephane Eraniand7470b62010-12-01 18:49:05 +02001285 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001286 fprintf(output, "\n");
1287 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -06001288 if (target.system_wide)
1289 fprintf(output, "\'system wide");
1290 else if (target.cpu_list)
1291 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001292 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001293 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001294 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001295 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +09001296 } else if (target.pid)
1297 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001298 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001299 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001300
Stephane Eranian4aa90152011-08-15 22:22:33 +02001301 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001302 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001303 fprintf(output, " (%d runs)", run_count);
1304 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001305 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001306
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001307 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +01001308 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001309 case AGGR_SOCKET:
1310 print_aggr(NULL);
1311 break;
1312 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001313 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001314 print_counter_aggr(counter, NULL);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001315 break;
1316 case AGGR_NONE:
1317 list_for_each_entry(counter, &evsel_list->entries, node)
1318 print_counter(counter, NULL);
1319 break;
1320 default:
1321 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001322 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001323
Stephane Eraniand7470b62010-12-01 18:49:05 +02001324 if (!csv_output) {
Ingo Molnarc33052572011-05-19 14:01:42 +02001325 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001326 fprintf(output, "\n");
1327 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001328 avg_stats(&walltime_nsecs_stats)/1e9);
1329 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001330 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +02001331 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
1332 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +02001333 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001334 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +02001335 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001336}
1337
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001338static volatile int signr = -1;
1339
Ingo Molnar52425192009-05-26 09:17:18 +02001340static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001341{
Stephane Eranian13370a92013-01-29 12:47:44 +01001342 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001343 done = 1;
1344
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001345 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001346 /*
1347 * render child_pid harmless
1348 * won't send SIGTERM to a random
1349 * process in case of race condition
1350 * and fast PID recycling
1351 */
1352 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001353}
1354
1355static void sig_atexit(void)
1356{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001357 sigset_t set, oset;
1358
1359 /*
1360 * avoid race condition with SIGCHLD handler
1361 * in skip_signal() which is modifying child_pid
1362 * goal is to avoid send SIGTERM to a random
1363 * process
1364 */
1365 sigemptyset(&set);
1366 sigaddset(&set, SIGCHLD);
1367 sigprocmask(SIG_BLOCK, &set, &oset);
1368
Chris Wilson933da832009-10-04 01:35:01 +01001369 if (child_pid != -1)
1370 kill(child_pid, SIGTERM);
1371
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001372 sigprocmask(SIG_SETMASK, &oset, NULL);
1373
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001374 if (signr == -1)
1375 return;
1376
1377 signal(signr, SIG_DFL);
1378 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001379}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001380
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001381static int stat__set_big_num(const struct option *opt __maybe_unused,
1382 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001383{
1384 big_num_opt = unset ? 0 : 1;
1385 return 0;
1386}
1387
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001388static int perf_stat_init_aggr_mode(void)
1389{
1390 switch (aggr_mode) {
1391 case AGGR_SOCKET:
1392 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1393 perror("cannot build socket map");
1394 return -1;
1395 }
1396 aggr_get_id = cpu_map__get_socket;
1397 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001398 case AGGR_CORE:
1399 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1400 perror("cannot build core map");
1401 return -1;
1402 }
1403 aggr_get_id = cpu_map__get_core;
1404 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001405 case AGGR_NONE:
1406 case AGGR_GLOBAL:
1407 default:
1408 break;
1409 }
1410 return 0;
1411}
1412
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001413static int setup_events(const char * const *attrs, unsigned len)
1414{
1415 unsigned i;
1416
1417 for (i = 0; i < len; i++) {
1418 if (parse_events(evsel_list, attrs[i]))
1419 return -1;
1420 }
1421 return 0;
1422}
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001423
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001424/*
1425 * Add default attributes, if there were no attributes specified or
1426 * if -d/--detailed, -d -d or -d -d -d is used:
1427 */
1428static int add_default_attributes(void)
1429{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001430 struct perf_event_attr default_attrs[] = {
1431
1432 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1433 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1434 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1435 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1436
1437 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1438 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1439 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1440 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1441 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1442 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1443
1444};
1445
1446/*
1447 * Detailed stats (-d), covering the L1 and last level data caches:
1448 */
1449 struct perf_event_attr detailed_attrs[] = {
1450
1451 { .type = PERF_TYPE_HW_CACHE,
1452 .config =
1453 PERF_COUNT_HW_CACHE_L1D << 0 |
1454 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1455 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1456
1457 { .type = PERF_TYPE_HW_CACHE,
1458 .config =
1459 PERF_COUNT_HW_CACHE_L1D << 0 |
1460 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1461 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1462
1463 { .type = PERF_TYPE_HW_CACHE,
1464 .config =
1465 PERF_COUNT_HW_CACHE_LL << 0 |
1466 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1467 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1468
1469 { .type = PERF_TYPE_HW_CACHE,
1470 .config =
1471 PERF_COUNT_HW_CACHE_LL << 0 |
1472 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1473 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1474};
1475
1476/*
1477 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1478 */
1479 struct perf_event_attr very_detailed_attrs[] = {
1480
1481 { .type = PERF_TYPE_HW_CACHE,
1482 .config =
1483 PERF_COUNT_HW_CACHE_L1I << 0 |
1484 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1485 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1486
1487 { .type = PERF_TYPE_HW_CACHE,
1488 .config =
1489 PERF_COUNT_HW_CACHE_L1I << 0 |
1490 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1491 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1492
1493 { .type = PERF_TYPE_HW_CACHE,
1494 .config =
1495 PERF_COUNT_HW_CACHE_DTLB << 0 |
1496 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1497 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1498
1499 { .type = PERF_TYPE_HW_CACHE,
1500 .config =
1501 PERF_COUNT_HW_CACHE_DTLB << 0 |
1502 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1503 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1504
1505 { .type = PERF_TYPE_HW_CACHE,
1506 .config =
1507 PERF_COUNT_HW_CACHE_ITLB << 0 |
1508 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1509 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1510
1511 { .type = PERF_TYPE_HW_CACHE,
1512 .config =
1513 PERF_COUNT_HW_CACHE_ITLB << 0 |
1514 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1515 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1516
1517};
1518
1519/*
1520 * Very, very detailed stats (-d -d -d), adding prefetch events:
1521 */
1522 struct perf_event_attr very_very_detailed_attrs[] = {
1523
1524 { .type = PERF_TYPE_HW_CACHE,
1525 .config =
1526 PERF_COUNT_HW_CACHE_L1D << 0 |
1527 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1528 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1529
1530 { .type = PERF_TYPE_HW_CACHE,
1531 .config =
1532 PERF_COUNT_HW_CACHE_L1D << 0 |
1533 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1534 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1535};
1536
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001537 /* Set attrs if no event is selected and !null_run: */
1538 if (null_run)
1539 return 0;
1540
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001541 if (transaction_run) {
1542 int err;
1543 if (pmu_have_event("cpu", "cycles-ct") &&
1544 pmu_have_event("cpu", "el-start"))
1545 err = setup_events(transaction_attrs,
1546 ARRAY_SIZE(transaction_attrs));
1547 else
1548 err = setup_events(transaction_limited_attrs,
1549 ARRAY_SIZE(transaction_limited_attrs));
1550 if (err < 0) {
1551 fprintf(stderr, "Cannot set up transaction events\n");
1552 return -1;
1553 }
1554 return 0;
1555 }
1556
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001557 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001558 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001559 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001560 }
1561
1562 /* Detailed events get appended to the event list: */
1563
1564 if (detailed_run < 1)
1565 return 0;
1566
1567 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001568 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001569 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001570
1571 if (detailed_run < 2)
1572 return 0;
1573
1574 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001575 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001576 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001577
1578 if (detailed_run < 3)
1579 return 0;
1580
1581 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001582 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001583}
1584
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001585int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001586{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001587 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001588 int output_fd = 0;
1589 const char *output_name = NULL;
1590 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001591 OPT_BOOLEAN('T', "transaction", &transaction_run,
1592 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001593 OPT_CALLBACK('e', "event", &evsel_list, "event",
1594 "event selector. use 'perf list' to list available events",
1595 parse_events_option),
1596 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1597 "event filter", parse_filter),
1598 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1599 "child tasks do not inherit counters"),
1600 OPT_STRING('p', "pid", &target.pid, "pid",
1601 "stat events on existing process id"),
1602 OPT_STRING('t', "tid", &target.tid, "tid",
1603 "stat events on existing thread id"),
1604 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1605 "system-wide collection from all CPUs"),
1606 OPT_BOOLEAN('g', "group", &group,
1607 "put the counters into a counter group"),
1608 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1609 OPT_INCR('v', "verbose", &verbose,
1610 "be more verbose (show counter open errors, etc)"),
1611 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001612 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001613 OPT_BOOLEAN('n', "null", &null_run,
1614 "null run - dont start any counters"),
1615 OPT_INCR('d', "detailed", &detailed_run,
1616 "detailed run - start a lot of events"),
1617 OPT_BOOLEAN('S', "sync", &sync_run,
1618 "call sync() before starting a run"),
1619 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1620 "print large numbers with thousands\' separators",
1621 stat__set_big_num),
1622 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1623 "list of cpus to monitor in system-wide"),
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001624 OPT_SET_UINT('A', "no-aggr", &aggr_mode,
1625 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001626 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1627 "print counts with custom separator"),
1628 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1629 "monitor event in cgroup name only", parse_cgroups),
1630 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1631 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1632 OPT_INTEGER(0, "log-fd", &output_fd,
1633 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001634 OPT_STRING(0, "pre", &pre_cmd, "command",
1635 "command to run prior to the measured command"),
1636 OPT_STRING(0, "post", &post_cmd, "command",
1637 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001638 OPT_UINTEGER('I', "interval-print", &interval,
1639 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand4304952013-02-14 13:57:28 +01001640 OPT_SET_UINT(0, "per-socket", &aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001641 "aggregate counts per processor socket", AGGR_SOCKET),
Stephane Eranian12c08a92013-02-14 13:57:29 +01001642 OPT_SET_UINT(0, "per-core", &aggr_mode,
1643 "aggregate counts per physical processor core", AGGR_CORE),
Andi Kleen41191682013-08-02 17:41:11 -07001644 OPT_UINTEGER('D', "delay", &initial_delay,
1645 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001646 OPT_END()
1647 };
1648 const char * const stat_usage[] = {
1649 "perf stat [<options>] [<command>]",
1650 NULL
1651 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001652 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001653 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001654
Stephane Eranian5af52b52010-05-18 15:00:01 +02001655 setlocale(LC_ALL, "");
1656
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001657 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001658 if (evsel_list == NULL)
1659 return -ENOMEM;
1660
Anton Blancharda0541232009-07-22 23:04:12 +10001661 argc = parse_options(argc, argv, options, stat_usage,
1662 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001663
Stephane Eranian4aa90152011-08-15 22:22:33 +02001664 output = stderr;
1665 if (output_name && strcmp(output_name, "-"))
1666 output = NULL;
1667
Jim Cromie56f3bae2011-09-07 17:14:00 -06001668 if (output_name && output_fd) {
1669 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001670 parse_options_usage(stat_usage, options, "o", 1);
1671 parse_options_usage(NULL, options, "log-fd", 0);
1672 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001673 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001674
1675 if (output_fd < 0) {
1676 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001677 parse_options_usage(stat_usage, options, "log-fd", 0);
1678 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001679 }
1680
Stephane Eranian4aa90152011-08-15 22:22:33 +02001681 if (!output) {
1682 struct timespec tm;
1683 mode = append_file ? "a" : "w";
1684
1685 output = fopen(output_name, mode);
1686 if (!output) {
1687 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001688 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001689 }
1690 clock_gettime(CLOCK_REALTIME, &tm);
1691 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001692 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001693 mode = append_file ? "a" : "w";
1694 output = fdopen(output_fd, mode);
1695 if (!output) {
1696 perror("Failed opening logfd");
1697 return -errno;
1698 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001699 }
1700
Jim Cromied4ffd042011-09-07 17:14:03 -06001701 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001702 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001703 if (!strcmp(csv_sep, "\\t"))
1704 csv_sep = "\t";
1705 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001706 csv_sep = DEFAULT_SEPARATOR;
1707
1708 /*
1709 * let the spreadsheet do the pretty-printing
1710 */
1711 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001712 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001713 if (big_num_opt == 1) {
1714 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001715 parse_options_usage(stat_usage, options, "B", 1);
1716 parse_options_usage(NULL, options, "x", 1);
1717 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001718 } else /* Nope, so disable big number formatting */
1719 big_num = false;
1720 } else if (big_num_opt == 0) /* User passed --no-big-num */
1721 big_num = false;
1722
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001723 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001724 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001725
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001726 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001727 pr_err("Run count must be a positive number\n");
1728 parse_options_usage(stat_usage, options, "r", 1);
1729 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001730 } else if (run_count == 0) {
1731 forever = true;
1732 run_count = 1;
1733 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001734
Stephane Eranian023695d2011-02-14 11:20:01 +02001735 /* no_aggr, cgroup are for system-wide only */
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001736 if ((aggr_mode != AGGR_GLOBAL || nr_cgroups) &&
1737 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001738 fprintf(stderr, "both cgroup and no-aggregation "
1739 "modes only available in system-wide mode\n");
1740
Namhyung Kimcc03c542013-11-01 16:33:15 +09001741 parse_options_usage(stat_usage, options, "G", 1);
1742 parse_options_usage(NULL, options, "A", 1);
1743 parse_options_usage(NULL, options, "a", 1);
1744 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001745 }
1746
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001747 if (add_default_attributes())
1748 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001749
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001750 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001751
Namhyung Kim77a6f012012-05-07 14:09:04 +09001752 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001753 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001754 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001755 parse_options_usage(stat_usage, options, "p", 1);
1756 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001757 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001758 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001759 parse_options_usage(stat_usage, options, "C", 1);
1760 parse_options_usage(NULL, options, "a", 1);
1761 }
1762 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001763 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001764 if (interval && interval < 100) {
1765 pr_err("print interval must be >= 100ms\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001766 parse_options_usage(stat_usage, options, "I", 1);
1767 goto out_free_maps;
Stephane Eranian13370a92013-01-29 12:47:44 +01001768 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001769
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001770 if (perf_evlist__alloc_stats(evsel_list, interval))
1771 goto out_free_maps;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001772
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001773 if (perf_stat_init_aggr_mode())
Namhyung Kimcc03c542013-11-01 16:33:15 +09001774 goto out_free_maps;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001775
Ingo Molnar58d7e992009-05-15 11:03:23 +02001776 /*
1777 * We dont want to block the signals - that would cause
1778 * child tasks to inherit that and Ctrl-C would not work.
1779 * What we want is for Ctrl-C to work in the exec()-ed
1780 * task, but being ignored by perf stat itself:
1781 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001782 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001783 if (!forever)
1784 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001785 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001786 signal(SIGALRM, skip_signal);
1787 signal(SIGABRT, skip_signal);
1788
Ingo Molnar42202dd2009-06-13 14:57:28 +02001789 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001790 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001791 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001792 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1793 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001794
Ingo Molnar42202dd2009-06-13 14:57:28 +02001795 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001796 if (forever && status != -1) {
1797 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001798 perf_stat__reset_stats(evsel_list);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001799 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001800 }
1801
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001802 if (!forever && status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001803 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001804
1805 perf_evlist__free_stats(evsel_list);
1806out_free_maps:
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001807 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001808out:
1809 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001810 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001811}