blob: 69fe6ed89627a1dc6425101cc1f733e8277d4ab5 [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02009 $ perf stat ./hackbench 10
Ingo Molnarddcacfa2009-04-20 15:37:32 +020010
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020011 Time: 0.118
Ingo Molnarddcacfa2009-04-20 15:37:32 +020012
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020013 Performance counter stats for './hackbench 10':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020014
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020015 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
26
27 0.154822978 seconds time elapsed
Ingo Molnarddcacfa2009-04-20 15:37:32 +020028
Ingo Molnar52425192009-05-26 09:17:18 +020029 *
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020030 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
Ingo Molnar52425192009-05-26 09:17:18 +020031 *
32 * Improvements and fixes by:
33 *
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053039 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020040 *
41 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020042 */
43
Peter Zijlstra1a482f32009-05-23 18:28:58 +020044#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020045#include "builtin.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020046#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020047#include "util/parse-options.h"
48#include "util/parse-events.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020049#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020050#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020051#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020052#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020053#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080054#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080055#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110056#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030057#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020058#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020059
Peter Zijlstra1f16c572012-10-23 13:40:14 +020060#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020061#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020062#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020063
Stephane Eraniand7470b62010-12-01 18:49:05 +020064#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060065#define CNTR_NOT_SUPPORTED "<not supported>"
66#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020067
Stephane Eranian13370a92013-01-29 12:47:44 +010068static void print_stat(int argc, const char **argv);
69static void print_counter_aggr(struct perf_evsel *counter, char *prefix);
70static void print_counter(struct perf_evsel *counter, char *prefix);
Stephane Eraniand7e7a452013-02-06 15:46:02 +010071static void print_aggr_socket(char *prefix);
Stephane Eranian13370a92013-01-29 12:47:44 +010072
Robert Richter666e6d42012-04-05 18:26:27 +020073static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020074
Namhyung Kim77a6f012012-05-07 14:09:04 +090075static struct perf_target target = {
76 .uid = UINT_MAX,
77};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +053078
79static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020080static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +100081static bool scale = true;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +020082static bool no_aggr = false;
Stephane Eraniand7e7a452013-02-06 15:46:02 +010083static bool aggr_socket = false;
Chris Wilson933da832009-10-04 01:35:01 +010084static pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +100085static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020086static int detailed_run = 0;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -020087static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +020088static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +020089static const char *csv_sep = NULL;
90static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +080091static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +020092static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +020093static const char *pre_cmd = NULL;
94static const char *post_cmd = NULL;
95static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +010096static unsigned int interval = 0;
97static struct timespec ref_time;
Stephane Eraniand7e7a452013-02-06 15:46:02 +010098static struct cpu_map *sock_map;
Stephane Eranian5af52b52010-05-18 15:00:01 +020099
Liming Wang60666c62009-12-31 16:05:50 +0800100static volatile int done = 0;
101
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200102struct perf_stat {
103 struct stats res_stats[3];
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200104};
105
Stephane Eranian13370a92013-01-29 12:47:44 +0100106static inline void diff_timespec(struct timespec *r, struct timespec *a,
107 struct timespec *b)
108{
109 r->tv_sec = a->tv_sec - b->tv_sec;
110 if (a->tv_nsec < b->tv_nsec) {
111 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
112 r->tv_sec--;
113 } else {
114 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
115 }
116}
117
118static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
119{
120 return (evsel->cpus && !target.cpu_list) ? evsel->cpus : evsel_list->cpus;
121}
122
123static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
124{
125 return perf_evsel__cpus(evsel)->nr;
126}
127
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200128static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200129{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200130 evsel->priv = zalloc(sizeof(struct perf_stat));
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200131 return evsel->priv == NULL ? -ENOMEM : 0;
132}
133
134static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
135{
136 free(evsel->priv);
137 evsel->priv = NULL;
138}
139
Stephane Eranian13370a92013-01-29 12:47:44 +0100140static int perf_evsel__alloc_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800141{
Stephane Eranian13370a92013-01-29 12:47:44 +0100142 void *addr;
143 size_t sz;
144
145 sz = sizeof(*evsel->counts) +
146 (perf_evsel__nr_cpus(evsel) * sizeof(struct perf_counts_values));
147
148 addr = zalloc(sz);
149 if (!addr)
150 return -ENOMEM;
151
152 evsel->prev_raw_counts = addr;
153
154 return 0;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800155}
156
Stephane Eranian13370a92013-01-29 12:47:44 +0100157static void perf_evsel__free_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800158{
Stephane Eranian13370a92013-01-29 12:47:44 +0100159 free(evsel->prev_raw_counts);
160 evsel->prev_raw_counts = NULL;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800161}
162
Robert Richter666e6d42012-04-05 18:26:27 +0200163static struct stats runtime_nsecs_stats[MAX_NR_CPUS];
164static struct stats runtime_cycles_stats[MAX_NR_CPUS];
165static struct stats runtime_stalled_cycles_front_stats[MAX_NR_CPUS];
166static struct stats runtime_stalled_cycles_back_stats[MAX_NR_CPUS];
167static struct stats runtime_branches_stats[MAX_NR_CPUS];
168static struct stats runtime_cacherefs_stats[MAX_NR_CPUS];
169static struct stats runtime_l1_dcache_stats[MAX_NR_CPUS];
170static struct stats runtime_l1_icache_stats[MAX_NR_CPUS];
171static struct stats runtime_ll_cache_stats[MAX_NR_CPUS];
172static struct stats runtime_itlb_cache_stats[MAX_NR_CPUS];
173static struct stats runtime_dtlb_cache_stats[MAX_NR_CPUS];
174static struct stats walltime_nsecs_stats;
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200175
Jiri Olsacac21422012-11-12 18:34:00 +0100176static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200177{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200178 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200179
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200180 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200181 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
182 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200183
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200184 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300185
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300186 if (perf_target__has_cpu(&target))
187 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200188
Arnaldo Carvalho de Melo07ac0022012-11-13 17:27:28 -0300189 if (!perf_target__has_task(&target) &&
Namhyung Kim823254e2012-11-29 15:38:30 +0900190 perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200191 attr->disabled = 1;
192 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200193 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300194
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300195 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200196}
197
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200198/*
199 * Does the counter have nsecs as a unit?
200 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200201static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200202{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200203 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
204 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200205 return 1;
206
207 return 0;
208}
209
210/*
Ingo Molnardcd99362011-04-27 04:36:37 +0200211 * Update various tracking values we maintain to print
212 * more semantic information such as miss/hit ratios,
213 * instruction rates, etc:
214 */
215static void update_shadow_stats(struct perf_evsel *counter, u64 *count)
216{
217 if (perf_evsel__match(counter, SOFTWARE, SW_TASK_CLOCK))
218 update_stats(&runtime_nsecs_stats[0], count[0]);
219 else if (perf_evsel__match(counter, HARDWARE, HW_CPU_CYCLES))
220 update_stats(&runtime_cycles_stats[0], count[0]);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200221 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_FRONTEND))
222 update_stats(&runtime_stalled_cycles_front_stats[0], count[0]);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200223 else if (perf_evsel__match(counter, HARDWARE, HW_STALLED_CYCLES_BACKEND))
Ingo Molnard3d1e862011-04-29 13:49:08 +0200224 update_stats(&runtime_stalled_cycles_back_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200225 else if (perf_evsel__match(counter, HARDWARE, HW_BRANCH_INSTRUCTIONS))
226 update_stats(&runtime_branches_stats[0], count[0]);
227 else if (perf_evsel__match(counter, HARDWARE, HW_CACHE_REFERENCES))
228 update_stats(&runtime_cacherefs_stats[0], count[0]);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200229 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1D))
230 update_stats(&runtime_l1_dcache_stats[0], count[0]);
Ingo Molnarc33052572011-05-19 14:01:42 +0200231 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_L1I))
232 update_stats(&runtime_l1_icache_stats[0], count[0]);
233 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_LL))
234 update_stats(&runtime_ll_cache_stats[0], count[0]);
235 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_DTLB))
236 update_stats(&runtime_dtlb_cache_stats[0], count[0]);
237 else if (perf_evsel__match(counter, HW_CACHE, HW_CACHE_ITLB))
238 update_stats(&runtime_itlb_cache_stats[0], count[0]);
Ingo Molnardcd99362011-04-27 04:36:37 +0200239}
240
241/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200242 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200243 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200244 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200245static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200246{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200247 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200248 u64 *count = counter->counts->aggr.values;
249 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200250
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800251 if (__perf_evsel__read(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900252 thread_map__nr(evsel_list->threads), scale) < 0)
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200253 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200254
255 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200256 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200257
258 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200259 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300260 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200261 }
262
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200263 /*
264 * Save the full runtime - to allow normalization during printout:
265 */
Ingo Molnardcd99362011-04-27 04:36:37 +0200266 update_shadow_stats(counter, count);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200267
268 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200269}
270
271/*
272 * Read out the results of a single counter:
273 * do not aggregate counts across CPUs in system-wide mode
274 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200275static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200276{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200277 u64 *count;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200278 int cpu;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200279
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800280 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200281 if (__perf_evsel__read_on_cpu(counter, cpu, 0, scale) < 0)
282 return -1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200283
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200284 count = counter->counts->cpu[cpu].values;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200285
Ingo Molnardcd99362011-04-27 04:36:37 +0200286 update_shadow_stats(counter, count);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200287 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200288
289 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200290}
291
Stephane Eranian13370a92013-01-29 12:47:44 +0100292static void print_interval(void)
293{
294 static int num_print_interval;
295 struct perf_evsel *counter;
296 struct perf_stat *ps;
297 struct timespec ts, rs;
298 char prefix[64];
299
300 if (no_aggr) {
301 list_for_each_entry(counter, &evsel_list->entries, node) {
302 ps = counter->priv;
303 memset(ps->res_stats, 0, sizeof(ps->res_stats));
304 read_counter(counter);
305 }
306 } else {
307 list_for_each_entry(counter, &evsel_list->entries, node) {
308 ps = counter->priv;
309 memset(ps->res_stats, 0, sizeof(ps->res_stats));
310 read_counter_aggr(counter);
311 }
312 }
313 clock_gettime(CLOCK_MONOTONIC, &ts);
314 diff_timespec(&rs, &ts, &ref_time);
315 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
316
317 if (num_print_interval == 0 && !csv_output) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100318 if (aggr_socket)
319 fprintf(output, "# time socket cpus counts events\n");
320 else if (no_aggr)
Stephane Eranian13370a92013-01-29 12:47:44 +0100321 fprintf(output, "# time CPU counts events\n");
322 else
323 fprintf(output, "# time counts events\n");
324 }
325
326 if (++num_print_interval == 25)
327 num_print_interval = 0;
328
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100329 if (aggr_socket)
330 print_aggr_socket(prefix);
331 else if (no_aggr) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100332 list_for_each_entry(counter, &evsel_list->entries, node)
333 print_counter(counter, prefix);
334 } else {
335 list_for_each_entry(counter, &evsel_list->entries, node)
336 print_counter_aggr(counter, prefix);
337 }
338}
339
Namhyung Kimacf28922013-03-11 16:43:18 +0900340static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200341{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300342 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200343 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100344 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100345 struct timespec ts;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200346 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300347 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200348
Stephane Eranian13370a92013-01-29 12:47:44 +0100349 if (interval) {
350 ts.tv_sec = interval / 1000;
351 ts.tv_nsec = (interval % 1000) * 1000000;
352 } else {
353 ts.tv_sec = 1;
354 ts.tv_nsec = 0;
355 }
356
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100357 if (aggr_socket
358 && cpu_map__build_socket_map(evsel_list->cpus, &sock_map)) {
359 perror("cannot build socket map");
360 return -1;
361 }
362
Liming Wang60666c62009-12-31 16:05:50 +0800363 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900364 if (perf_evlist__prepare_workload(evsel_list, &target, argv,
365 false, false) < 0) {
366 perror("failed to prepare workload");
367 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800368 }
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000369 }
370
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200371 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300372 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200373
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200374 list_for_each_entry(counter, &evsel_list->entries, node) {
Jiri Olsacac21422012-11-12 18:34:00 +0100375 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600376 /*
377 * PPC returns ENXIO for HW counters until 2.6.37
378 * (behavior changed with commit b0a873e).
379 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100380 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600381 errno == ENOENT || errno == EOPNOTSUPP ||
382 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600383 if (verbose)
384 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300385 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600386 counter->supported = false;
Ingo Molnarede70292011-04-28 08:48:42 +0200387 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600388 }
Ingo Molnarede70292011-04-28 08:48:42 +0200389
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300390 perf_evsel__open_strerror(counter, &target,
391 errno, msg, sizeof(msg));
392 ui__error("%s\n", msg);
393
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200394 if (child_pid != -1)
395 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600396
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200397 return -1;
398 }
David Ahern2cee77c2011-05-30 08:55:59 -0600399 counter->supported = true;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300400 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200401
Arnaldo Carvalho de Melo1491a632012-09-26 14:43:13 -0300402 if (perf_evlist__apply_filters(evsel_list)) {
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100403 error("failed to set filter with %d (%s)\n", errno,
404 strerror(errno));
405 return -1;
406 }
407
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200408 /*
409 * Enable counters and exec the command:
410 */
411 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100412 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200413
Liming Wang60666c62009-12-31 16:05:50 +0800414 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900415 perf_evlist__start_workload(evsel_list);
416
Stephane Eranian13370a92013-01-29 12:47:44 +0100417 if (interval) {
418 while (!waitpid(child_pid, &status, WNOHANG)) {
419 nanosleep(&ts, NULL);
420 print_interval();
421 }
422 }
Liming Wang60666c62009-12-31 16:05:50 +0800423 wait(&status);
Andi Kleen33e49ea2011-09-15 14:31:40 -0700424 if (WIFSIGNALED(status))
425 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800426 } else {
Stephane Eranian13370a92013-01-29 12:47:44 +0100427 while (!done) {
428 nanosleep(&ts, NULL);
429 if (interval)
430 print_interval();
431 }
Liming Wang60666c62009-12-31 16:05:50 +0800432 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200433
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200434 t1 = rdclock();
435
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200436 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200437
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200438 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200439 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200440 read_counter(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800441 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200442 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200443 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200444 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200445 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800446 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900447 thread_map__nr(evsel_list->threads));
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200448 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200449 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200450
Ingo Molnar42202dd2009-06-13 14:57:28 +0200451 return WEXITSTATUS(status);
452}
453
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200454static int run_perf_stat(int argc __maybe_unused, const char **argv)
455{
456 int ret;
457
458 if (pre_cmd) {
459 ret = system(pre_cmd);
460 if (ret)
461 return ret;
462 }
463
464 if (sync_run)
465 sync();
466
467 ret = __run_perf_stat(argc, argv);
468 if (ret)
469 return ret;
470
471 if (post_cmd) {
472 ret = system(post_cmd);
473 if (ret)
474 return ret;
475 }
476
477 return ret;
478}
479
Ingo Molnarf99844c2011-04-27 05:35:39 +0200480static void print_noise_pct(double total, double avg)
481{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800482 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200483
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700484 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200485 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600486 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200487 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200488}
489
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200490static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200491{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200492 struct perf_stat *ps;
493
Peter Zijlstra849abde2009-09-04 18:23:38 +0200494 if (run_count == 1)
495 return;
496
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200497 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200498 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200499}
500
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100501static void nsec_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200502{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200503 double msecs = avg / 1e6;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200504 char cpustr[16] = { '\0', };
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200505 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-25s";
Ingo Molnar42202dd2009-06-13 14:57:28 +0200506
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100507 if (aggr_socket)
508 sprintf(cpustr, "S%*d%s%*d%s",
509 csv_output ? 0 : -5,
510 cpu,
511 csv_sep,
512 csv_output ? 0 : 4,
513 nr,
514 csv_sep);
515 else if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200516 sprintf(cpustr, "CPU%*d%s",
517 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800518 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200519
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300520 fprintf(output, fmt, cpustr, msecs, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200521
Stephane Eranian023695d2011-02-14 11:20:01 +0200522 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200523 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200524
Stephane Eranian13370a92013-01-29 12:47:44 +0100525 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200526 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200527
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200528 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200529 fprintf(output, " # %8.3f CPUs utilized ",
530 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900531 else
532 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200533}
534
Namhyung Kim15e63922011-12-28 00:35:49 +0900535/* used for get_ratio_color() */
536enum grc_type {
537 GRC_STALLED_CYCLES_FE,
538 GRC_STALLED_CYCLES_BE,
539 GRC_CACHE_MISSES,
540 GRC_MAX_NR
541};
542
543static const char *get_ratio_color(enum grc_type type, double ratio)
544{
545 static const double grc_table[GRC_MAX_NR][3] = {
546 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
547 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
548 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
549 };
550 const char *color = PERF_COLOR_NORMAL;
551
552 if (ratio > grc_table[type][0])
553 color = PERF_COLOR_RED;
554 else if (ratio > grc_table[type][1])
555 color = PERF_COLOR_MAGENTA;
556 else if (ratio > grc_table[type][2])
557 color = PERF_COLOR_YELLOW;
558
559 return color;
560}
561
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300562static void print_stalled_cycles_frontend(int cpu,
563 struct perf_evsel *evsel
564 __maybe_unused, double avg)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200565{
566 double total, ratio = 0.0;
567 const char *color;
568
569 total = avg_stats(&runtime_cycles_stats[cpu]);
570
571 if (total)
572 ratio = avg / total * 100.0;
573
Namhyung Kim15e63922011-12-28 00:35:49 +0900574 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200575
Stephane Eranian4aa90152011-08-15 22:22:33 +0200576 fprintf(output, " # ");
577 color_fprintf(output, color, "%6.2f%%", ratio);
578 fprintf(output, " frontend cycles idle ");
Ingo Molnard3d1e862011-04-29 13:49:08 +0200579}
580
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300581static void print_stalled_cycles_backend(int cpu,
582 struct perf_evsel *evsel
583 __maybe_unused, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200584{
585 double total, ratio = 0.0;
586 const char *color;
587
588 total = avg_stats(&runtime_cycles_stats[cpu]);
589
590 if (total)
591 ratio = avg / total * 100.0;
592
Namhyung Kim15e63922011-12-28 00:35:49 +0900593 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200594
Stephane Eranian4aa90152011-08-15 22:22:33 +0200595 fprintf(output, " # ");
596 color_fprintf(output, color, "%6.2f%%", ratio);
597 fprintf(output, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200598}
599
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300600static void print_branch_misses(int cpu,
601 struct perf_evsel *evsel __maybe_unused,
602 double avg)
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200603{
604 double total, ratio = 0.0;
605 const char *color;
606
607 total = avg_stats(&runtime_branches_stats[cpu]);
608
609 if (total)
610 ratio = avg / total * 100.0;
611
Namhyung Kim15e63922011-12-28 00:35:49 +0900612 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200613
Stephane Eranian4aa90152011-08-15 22:22:33 +0200614 fprintf(output, " # ");
615 color_fprintf(output, color, "%6.2f%%", ratio);
616 fprintf(output, " of all branches ");
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200617}
618
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300619static void print_l1_dcache_misses(int cpu,
620 struct perf_evsel *evsel __maybe_unused,
621 double avg)
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200622{
623 double total, ratio = 0.0;
624 const char *color;
625
626 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
627
628 if (total)
629 ratio = avg / total * 100.0;
630
Namhyung Kim15e63922011-12-28 00:35:49 +0900631 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200632
Stephane Eranian4aa90152011-08-15 22:22:33 +0200633 fprintf(output, " # ");
634 color_fprintf(output, color, "%6.2f%%", ratio);
635 fprintf(output, " of all L1-dcache hits ");
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200636}
637
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300638static void print_l1_icache_misses(int cpu,
639 struct perf_evsel *evsel __maybe_unused,
640 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200641{
642 double total, ratio = 0.0;
643 const char *color;
644
645 total = avg_stats(&runtime_l1_icache_stats[cpu]);
646
647 if (total)
648 ratio = avg / total * 100.0;
649
Namhyung Kim15e63922011-12-28 00:35:49 +0900650 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200651
Stephane Eranian4aa90152011-08-15 22:22:33 +0200652 fprintf(output, " # ");
653 color_fprintf(output, color, "%6.2f%%", ratio);
654 fprintf(output, " of all L1-icache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200655}
656
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300657static void print_dtlb_cache_misses(int cpu,
658 struct perf_evsel *evsel __maybe_unused,
659 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200660{
661 double total, ratio = 0.0;
662 const char *color;
663
664 total = avg_stats(&runtime_dtlb_cache_stats[cpu]);
665
666 if (total)
667 ratio = avg / total * 100.0;
668
Namhyung Kim15e63922011-12-28 00:35:49 +0900669 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200670
Stephane Eranian4aa90152011-08-15 22:22:33 +0200671 fprintf(output, " # ");
672 color_fprintf(output, color, "%6.2f%%", ratio);
673 fprintf(output, " of all dTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200674}
675
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300676static void print_itlb_cache_misses(int cpu,
677 struct perf_evsel *evsel __maybe_unused,
678 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200679{
680 double total, ratio = 0.0;
681 const char *color;
682
683 total = avg_stats(&runtime_itlb_cache_stats[cpu]);
684
685 if (total)
686 ratio = avg / total * 100.0;
687
Namhyung Kim15e63922011-12-28 00:35:49 +0900688 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200689
Stephane Eranian4aa90152011-08-15 22:22:33 +0200690 fprintf(output, " # ");
691 color_fprintf(output, color, "%6.2f%%", ratio);
692 fprintf(output, " of all iTLB cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200693}
694
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300695static void print_ll_cache_misses(int cpu,
696 struct perf_evsel *evsel __maybe_unused,
697 double avg)
Ingo Molnarc33052572011-05-19 14:01:42 +0200698{
699 double total, ratio = 0.0;
700 const char *color;
701
702 total = avg_stats(&runtime_ll_cache_stats[cpu]);
703
704 if (total)
705 ratio = avg / total * 100.0;
706
Namhyung Kim15e63922011-12-28 00:35:49 +0900707 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc33052572011-05-19 14:01:42 +0200708
Stephane Eranian4aa90152011-08-15 22:22:33 +0200709 fprintf(output, " # ");
710 color_fprintf(output, color, "%6.2f%%", ratio);
711 fprintf(output, " of all LL-cache hits ");
Ingo Molnarc33052572011-05-19 14:01:42 +0200712}
713
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100714static void abs_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200715{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200716 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200717 char cpustr[16] = { '\0', };
Stephane Eraniand7470b62010-12-01 18:49:05 +0200718 const char *fmt;
719
720 if (csv_output)
721 fmt = "%s%.0f%s%s";
722 else if (big_num)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200723 fmt = "%s%'18.0f%s%-25s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200724 else
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200725 fmt = "%s%18.0f%s%-25s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200726
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100727 if (aggr_socket)
728 sprintf(cpustr, "S%*d%s%*d%s",
729 csv_output ? 0 : -5,
730 cpu,
731 csv_sep,
732 csv_output ? 0 : 4,
733 nr,
734 csv_sep);
735 else if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200736 sprintf(cpustr, "CPU%*d%s",
737 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800738 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200739 else
740 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200741
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300742 fprintf(output, fmt, cpustr, avg, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200743
Stephane Eranian023695d2011-02-14 11:20:01 +0200744 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200745 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200746
Stephane Eranian13370a92013-01-29 12:47:44 +0100747 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200748 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200749
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200750 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200751 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200752 if (total)
753 ratio = avg / total;
754
Stephane Eranian4aa90152011-08-15 22:22:33 +0200755 fprintf(output, " # %5.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200756
Ingo Molnard3d1e862011-04-29 13:49:08 +0200757 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
758 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200759
760 if (total && avg) {
761 ratio = total / avg;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200762 fprintf(output, "\n # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200763 }
764
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200765 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200766 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200767 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200768 } else if (
769 evsel->attr.type == PERF_TYPE_HW_CACHE &&
770 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
771 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
772 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200773 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200774 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnarc33052572011-05-19 14:01:42 +0200775 } else if (
776 evsel->attr.type == PERF_TYPE_HW_CACHE &&
777 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
778 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
779 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
780 runtime_l1_icache_stats[cpu].n != 0) {
781 print_l1_icache_misses(cpu, evsel, avg);
782 } else if (
783 evsel->attr.type == PERF_TYPE_HW_CACHE &&
784 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
785 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
786 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
787 runtime_dtlb_cache_stats[cpu].n != 0) {
788 print_dtlb_cache_misses(cpu, evsel, avg);
789 } else if (
790 evsel->attr.type == PERF_TYPE_HW_CACHE &&
791 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
792 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
793 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
794 runtime_itlb_cache_stats[cpu].n != 0) {
795 print_itlb_cache_misses(cpu, evsel, avg);
796 } else if (
797 evsel->attr.type == PERF_TYPE_HW_CACHE &&
798 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
799 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
800 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
801 runtime_ll_cache_stats[cpu].n != 0) {
802 print_ll_cache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200803 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
804 runtime_cacherefs_stats[cpu].n != 0) {
805 total = avg_stats(&runtime_cacherefs_stats[cpu]);
806
807 if (total)
808 ratio = avg * 100 / total;
809
Stephane Eranian4aa90152011-08-15 22:22:33 +0200810 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200811
Ingo Molnard3d1e862011-04-29 13:49:08 +0200812 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
813 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200814 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200815 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200816 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
817 total = avg_stats(&runtime_nsecs_stats[cpu]);
818
819 if (total)
820 ratio = 1.0 * avg / total;
821
Stephane Eranian4aa90152011-08-15 22:22:33 +0200822 fprintf(output, " # %8.3f GHz ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200823 } else if (runtime_nsecs_stats[cpu].n != 0) {
Namhyung Kim5fde25232012-02-06 16:44:44 +0900824 char unit = 'M';
825
Ingo Molnar481f9882011-04-27 04:34:16 +0200826 total = avg_stats(&runtime_nsecs_stats[cpu]);
827
828 if (total)
829 ratio = 1000.0 * avg / total;
Namhyung Kim5fde25232012-02-06 16:44:44 +0900830 if (ratio < 0.001) {
831 ratio *= 1000;
832 unit = 'K';
833 }
Ingo Molnar481f9882011-04-27 04:34:16 +0200834
Namhyung Kim5fde25232012-02-06 16:44:44 +0900835 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200836 } else {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200837 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200838 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200839}
840
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100841static void print_aggr_socket(char *prefix)
842{
843 struct perf_evsel *counter;
844 u64 ena, run, val;
845 int cpu, s, s2, sock, nr;
846
847 if (!sock_map)
848 return;
849
850 for (s = 0; s < sock_map->nr; s++) {
851 sock = cpu_map__socket(sock_map, s);
852 list_for_each_entry(counter, &evsel_list->entries, node) {
853 val = ena = run = 0;
854 nr = 0;
855 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
856 s2 = cpu_map__get_socket(evsel_list->cpus, cpu);
857 if (s2 != sock)
858 continue;
859 val += counter->counts->cpu[cpu].val;
860 ena += counter->counts->cpu[cpu].ena;
861 run += counter->counts->cpu[cpu].run;
862 nr++;
863 }
864 if (prefix)
865 fprintf(output, "%s", prefix);
866
867 if (run == 0 || ena == 0) {
868 fprintf(output, "S%*d%s%*d%s%*s%s%*s",
869 csv_output ? 0 : -5,
870 s,
871 csv_sep,
872 csv_output ? 0 : 4,
873 nr,
874 csv_sep,
875 csv_output ? 0 : 18,
876 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
877 csv_sep,
878 csv_output ? 0 : -24,
879 perf_evsel__name(counter));
880 if (counter->cgrp)
881 fprintf(output, "%s%s",
882 csv_sep, counter->cgrp->name);
883
884 fputc('\n', output);
885 continue;
886 }
887
888 if (nsec_counter(counter))
889 nsec_printout(sock, nr, counter, val);
890 else
891 abs_printout(sock, nr, counter, val);
892
893 if (!csv_output) {
894 print_noise(counter, 1.0);
895
896 if (run != ena)
897 fprintf(output, " (%.2f%%)",
898 100.0 * run / ena);
899 }
900 fputc('\n', output);
901 }
902 }
903}
904
Ingo Molnar42202dd2009-06-13 14:57:28 +0200905/*
906 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200907 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200908 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100909static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200910{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200911 struct perf_stat *ps = counter->priv;
912 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200913 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200914
Stephane Eranian13370a92013-01-29 12:47:44 +0100915 if (prefix)
916 fprintf(output, "%s", prefix);
917
Ingo Molnar42202dd2009-06-13 14:57:28 +0200918 if (scaled == -1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200919 fprintf(output, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200920 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600921 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian023695d2011-02-14 11:20:01 +0200922 csv_sep,
923 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300924 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200925
926 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200927 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200928
Stephane Eranian4aa90152011-08-15 22:22:33 +0200929 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200930 return;
931 }
932
933 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100934 nsec_printout(-1, 0, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200935 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100936 abs_printout(-1, 0, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200937
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700938 print_noise(counter, avg);
939
Stephane Eraniand7470b62010-12-01 18:49:05 +0200940 if (csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200941 fputc('\n', output);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200942 return;
943 }
944
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200945 if (scaled) {
946 double avg_enabled, avg_running;
947
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200948 avg_enabled = avg_stats(&ps->res_stats[1]);
949 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200950
Stephane Eranian4aa90152011-08-15 22:22:33 +0200951 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200952 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200953 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200954}
955
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200956/*
957 * Print out the results of a single counter:
958 * does not use aggregated count in system-wide
959 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100960static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200961{
962 u64 ena, run, val;
963 int cpu;
964
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800965 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200966 val = counter->counts->cpu[cpu].val;
967 ena = counter->counts->cpu[cpu].ena;
968 run = counter->counts->cpu[cpu].run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100969
970 if (prefix)
971 fprintf(output, "%s", prefix);
972
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200973 if (run == 0 || ena == 0) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200974 fprintf(output, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200975 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800976 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200977 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600978 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
979 csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +0200980 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300981 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200982
Stephane Eranian023695d2011-02-14 11:20:01 +0200983 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200984 fprintf(output, "%s%s",
985 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200986
Stephane Eranian4aa90152011-08-15 22:22:33 +0200987 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200988 continue;
989 }
990
991 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100992 nsec_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200993 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100994 abs_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200995
Stephane Eraniand7470b62010-12-01 18:49:05 +0200996 if (!csv_output) {
997 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200998
Ingo Molnarc6264de2011-04-27 13:50:47 +0200999 if (run != ena)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001000 fprintf(output, " (%.2f%%)",
1001 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001002 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001003 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001004 }
1005}
1006
Ingo Molnar42202dd2009-06-13 14:57:28 +02001007static void print_stat(int argc, const char **argv)
1008{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001009 struct perf_evsel *counter;
1010 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001011
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001012 fflush(stdout);
1013
Stephane Eraniand7470b62010-12-01 18:49:05 +02001014 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001015 fprintf(output, "\n");
1016 fprintf(output, " Performance counter stats for ");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001017 if (!perf_target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001018 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001019 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001020 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +09001021 } else if (target.pid)
1022 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001023 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001024 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001025
Stephane Eranian4aa90152011-08-15 22:22:33 +02001026 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001027 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001028 fprintf(output, " (%d runs)", run_count);
1029 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001030 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001031
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001032 if (aggr_socket)
1033 print_aggr_socket(NULL);
1034 else if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001035 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001036 print_counter(counter, NULL);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001037 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001038 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001039 print_counter_aggr(counter, NULL);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001040 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001041
Stephane Eraniand7470b62010-12-01 18:49:05 +02001042 if (!csv_output) {
Ingo Molnarc33052572011-05-19 14:01:42 +02001043 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001044 fprintf(output, "\n");
1045 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001046 avg_stats(&walltime_nsecs_stats)/1e9);
1047 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001048 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +02001049 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
1050 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +02001051 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001052 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +02001053 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001054}
1055
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001056static volatile int signr = -1;
1057
Ingo Molnar52425192009-05-26 09:17:18 +02001058static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001059{
Stephane Eranian13370a92013-01-29 12:47:44 +01001060 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001061 done = 1;
1062
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001063 signr = signo;
1064}
1065
1066static void sig_atexit(void)
1067{
Chris Wilson933da832009-10-04 01:35:01 +01001068 if (child_pid != -1)
1069 kill(child_pid, SIGTERM);
1070
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001071 if (signr == -1)
1072 return;
1073
1074 signal(signr, SIG_DFL);
1075 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001076}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001077
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001078static int stat__set_big_num(const struct option *opt __maybe_unused,
1079 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001080{
1081 big_num_opt = unset ? 0 : 1;
1082 return 0;
1083}
1084
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001085/*
1086 * Add default attributes, if there were no attributes specified or
1087 * if -d/--detailed, -d -d or -d -d -d is used:
1088 */
1089static int add_default_attributes(void)
1090{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001091 struct perf_event_attr default_attrs[] = {
1092
1093 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1094 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1095 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1096 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1097
1098 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1099 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1100 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1101 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1102 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1103 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1104
1105};
1106
1107/*
1108 * Detailed stats (-d), covering the L1 and last level data caches:
1109 */
1110 struct perf_event_attr detailed_attrs[] = {
1111
1112 { .type = PERF_TYPE_HW_CACHE,
1113 .config =
1114 PERF_COUNT_HW_CACHE_L1D << 0 |
1115 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1116 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1117
1118 { .type = PERF_TYPE_HW_CACHE,
1119 .config =
1120 PERF_COUNT_HW_CACHE_L1D << 0 |
1121 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1122 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1123
1124 { .type = PERF_TYPE_HW_CACHE,
1125 .config =
1126 PERF_COUNT_HW_CACHE_LL << 0 |
1127 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1128 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1129
1130 { .type = PERF_TYPE_HW_CACHE,
1131 .config =
1132 PERF_COUNT_HW_CACHE_LL << 0 |
1133 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1134 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1135};
1136
1137/*
1138 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1139 */
1140 struct perf_event_attr very_detailed_attrs[] = {
1141
1142 { .type = PERF_TYPE_HW_CACHE,
1143 .config =
1144 PERF_COUNT_HW_CACHE_L1I << 0 |
1145 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1146 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1147
1148 { .type = PERF_TYPE_HW_CACHE,
1149 .config =
1150 PERF_COUNT_HW_CACHE_L1I << 0 |
1151 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1152 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1153
1154 { .type = PERF_TYPE_HW_CACHE,
1155 .config =
1156 PERF_COUNT_HW_CACHE_DTLB << 0 |
1157 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1158 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1159
1160 { .type = PERF_TYPE_HW_CACHE,
1161 .config =
1162 PERF_COUNT_HW_CACHE_DTLB << 0 |
1163 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1164 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1165
1166 { .type = PERF_TYPE_HW_CACHE,
1167 .config =
1168 PERF_COUNT_HW_CACHE_ITLB << 0 |
1169 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1170 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1171
1172 { .type = PERF_TYPE_HW_CACHE,
1173 .config =
1174 PERF_COUNT_HW_CACHE_ITLB << 0 |
1175 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1176 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1177
1178};
1179
1180/*
1181 * Very, very detailed stats (-d -d -d), adding prefetch events:
1182 */
1183 struct perf_event_attr very_very_detailed_attrs[] = {
1184
1185 { .type = PERF_TYPE_HW_CACHE,
1186 .config =
1187 PERF_COUNT_HW_CACHE_L1D << 0 |
1188 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1189 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1190
1191 { .type = PERF_TYPE_HW_CACHE,
1192 .config =
1193 PERF_COUNT_HW_CACHE_L1D << 0 |
1194 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1195 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1196};
1197
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001198 /* Set attrs if no event is selected and !null_run: */
1199 if (null_run)
1200 return 0;
1201
1202 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001203 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001204 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001205 }
1206
1207 /* Detailed events get appended to the event list: */
1208
1209 if (detailed_run < 1)
1210 return 0;
1211
1212 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001213 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001214 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001215
1216 if (detailed_run < 2)
1217 return 0;
1218
1219 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001220 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001221 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001222
1223 if (detailed_run < 3)
1224 return 0;
1225
1226 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001227 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001228}
1229
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001230int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001231{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001232 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001233 int output_fd = 0;
1234 const char *output_name = NULL;
1235 const struct option options[] = {
1236 OPT_CALLBACK('e', "event", &evsel_list, "event",
1237 "event selector. use 'perf list' to list available events",
1238 parse_events_option),
1239 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1240 "event filter", parse_filter),
1241 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1242 "child tasks do not inherit counters"),
1243 OPT_STRING('p', "pid", &target.pid, "pid",
1244 "stat events on existing process id"),
1245 OPT_STRING('t', "tid", &target.tid, "tid",
1246 "stat events on existing thread id"),
1247 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1248 "system-wide collection from all CPUs"),
1249 OPT_BOOLEAN('g', "group", &group,
1250 "put the counters into a counter group"),
1251 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1252 OPT_INCR('v', "verbose", &verbose,
1253 "be more verbose (show counter open errors, etc)"),
1254 OPT_INTEGER('r', "repeat", &run_count,
1255 "repeat command and print average + stddev (max: 100)"),
1256 OPT_BOOLEAN('n', "null", &null_run,
1257 "null run - dont start any counters"),
1258 OPT_INCR('d', "detailed", &detailed_run,
1259 "detailed run - start a lot of events"),
1260 OPT_BOOLEAN('S', "sync", &sync_run,
1261 "call sync() before starting a run"),
1262 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1263 "print large numbers with thousands\' separators",
1264 stat__set_big_num),
1265 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1266 "list of cpus to monitor in system-wide"),
1267 OPT_BOOLEAN('A', "no-aggr", &no_aggr, "disable CPU count aggregation"),
1268 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1269 "print counts with custom separator"),
1270 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1271 "monitor event in cgroup name only", parse_cgroups),
1272 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1273 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1274 OPT_INTEGER(0, "log-fd", &output_fd,
1275 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001276 OPT_STRING(0, "pre", &pre_cmd, "command",
1277 "command to run prior to the measured command"),
1278 OPT_STRING(0, "post", &post_cmd, "command",
1279 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001280 OPT_UINTEGER('I', "interval-print", &interval,
1281 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001282 OPT_BOOLEAN(0, "aggr-socket", &aggr_socket, "aggregate counts per processor socket"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001283 OPT_END()
1284 };
1285 const char * const stat_usage[] = {
1286 "perf stat [<options>] [<command>]",
1287 NULL
1288 };
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001289 struct perf_evsel *pos;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001290 int status = -ENOMEM, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001291 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001292
Stephane Eranian5af52b52010-05-18 15:00:01 +02001293 setlocale(LC_ALL, "");
1294
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001295 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001296 if (evsel_list == NULL)
1297 return -ENOMEM;
1298
Anton Blancharda0541232009-07-22 23:04:12 +10001299 argc = parse_options(argc, argv, options, stat_usage,
1300 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001301
Stephane Eranian4aa90152011-08-15 22:22:33 +02001302 output = stderr;
1303 if (output_name && strcmp(output_name, "-"))
1304 output = NULL;
1305
Jim Cromie56f3bae2011-09-07 17:14:00 -06001306 if (output_name && output_fd) {
1307 fprintf(stderr, "cannot use both --output and --log-fd\n");
1308 usage_with_options(stat_usage, options);
1309 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001310
1311 if (output_fd < 0) {
1312 fprintf(stderr, "argument to --log-fd must be a > 0\n");
1313 usage_with_options(stat_usage, options);
1314 }
1315
Stephane Eranian4aa90152011-08-15 22:22:33 +02001316 if (!output) {
1317 struct timespec tm;
1318 mode = append_file ? "a" : "w";
1319
1320 output = fopen(output_name, mode);
1321 if (!output) {
1322 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001323 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001324 }
1325 clock_gettime(CLOCK_REALTIME, &tm);
1326 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001327 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001328 mode = append_file ? "a" : "w";
1329 output = fdopen(output_fd, mode);
1330 if (!output) {
1331 perror("Failed opening logfd");
1332 return -errno;
1333 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001334 }
1335
Jim Cromied4ffd042011-09-07 17:14:03 -06001336 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001337 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001338 if (!strcmp(csv_sep, "\\t"))
1339 csv_sep = "\t";
1340 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001341 csv_sep = DEFAULT_SEPARATOR;
1342
1343 /*
1344 * let the spreadsheet do the pretty-printing
1345 */
1346 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001347 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001348 if (big_num_opt == 1) {
1349 fprintf(stderr, "-B option not supported with -x\n");
1350 usage_with_options(stat_usage, options);
1351 } else /* Nope, so disable big number formatting */
1352 big_num = false;
1353 } else if (big_num_opt == 0) /* User passed --no-big-num */
1354 big_num = false;
1355
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001356 if (!argc && !perf_target__has_task(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001357 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +02001358 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001359 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001360
Stephane Eranian023695d2011-02-14 11:20:01 +02001361 /* no_aggr, cgroup are for system-wide only */
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001362 if ((no_aggr || nr_cgroups) && !perf_target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001363 fprintf(stderr, "both cgroup and no-aggregation "
1364 "modes only available in system-wide mode\n");
1365
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001366 usage_with_options(stat_usage, options);
Stephane Eranian023695d2011-02-14 11:20:01 +02001367 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001368
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001369 if (aggr_socket) {
1370 if (!perf_target__has_cpu(&target)) {
1371 fprintf(stderr, "--aggr-socket only available in system-wide mode (-a)\n");
1372 usage_with_options(stat_usage, options);
1373 }
1374 no_aggr = true;
1375 }
1376
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001377 if (add_default_attributes())
1378 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001379
Namhyung Kim4bd0f2d2012-04-26 14:15:18 +09001380 perf_target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001381
Namhyung Kim77a6f012012-05-07 14:09:04 +09001382 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001383 if (perf_target__has_task(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001384 pr_err("Problems finding threads of monitor\n");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001385 if (perf_target__has_cpu(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001386 perror("failed to parse CPUs map");
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001387
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001388 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001389 return -1;
1390 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001391 if (interval && interval < 100) {
1392 pr_err("print interval must be >= 100ms\n");
1393 usage_with_options(stat_usage, options);
1394 return -1;
1395 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001396
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001397 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001398 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001399 perf_evsel__alloc_counts(pos, perf_evsel__nr_cpus(pos)) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001400 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001401 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001402 if (interval) {
1403 list_for_each_entry(pos, &evsel_list->entries, node) {
1404 if (perf_evsel__alloc_prev_raw_counts(pos) < 0)
1405 goto out_free_fd;
1406 }
1407 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001408
Ingo Molnar58d7e992009-05-15 11:03:23 +02001409 /*
1410 * We dont want to block the signals - that would cause
1411 * child tasks to inherit that and Ctrl-C would not work.
1412 * What we want is for Ctrl-C to work in the exec()-ed
1413 * task, but being ignored by perf stat itself:
1414 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001415 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001416 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001417 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001418 signal(SIGALRM, skip_signal);
1419 signal(SIGABRT, skip_signal);
1420
Ingo Molnar42202dd2009-06-13 14:57:28 +02001421 status = 0;
1422 for (run_idx = 0; run_idx < run_count; run_idx++) {
1423 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001424 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1425 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001426
Ingo Molnar42202dd2009-06-13 14:57:28 +02001427 status = run_perf_stat(argc, argv);
1428 }
1429
Stephane Eranian13370a92013-01-29 12:47:44 +01001430 if (status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001431 print_stat(argc, argv);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001432out_free_fd:
Stephane Eranian13370a92013-01-29 12:47:44 +01001433 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001434 perf_evsel__free_stat_priv(pos);
Namhyung Kim43f8e762013-01-25 10:44:44 +09001435 perf_evsel__free_counts(pos);
Stephane Eranian13370a92013-01-29 12:47:44 +01001436 perf_evsel__free_prev_raw_counts(pos);
1437 }
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001438 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001439out:
1440 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001441 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001442}