blob: 99848761f573883e320f2db06071c5c16984b123 [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02009 $ perf stat ./hackbench 10
Ingo Molnarddcacfa2009-04-20 15:37:32 +020010
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020011 Time: 0.118
Ingo Molnarddcacfa2009-04-20 15:37:32 +020012
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020013 Performance counter stats for './hackbench 10':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020014
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020015 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
26
27 0.154822978 seconds time elapsed
Ingo Molnarddcacfa2009-04-20 15:37:32 +020028
Ingo Molnar52425192009-05-26 09:17:18 +020029 *
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020030 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
Ingo Molnar52425192009-05-26 09:17:18 +020031 *
32 * Improvements and fixes by:
33 *
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053039 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020040 *
41 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020042 */
43
Peter Zijlstra1a482f32009-05-23 18:28:58 +020044#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020045#include "builtin.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020046#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020047#include "util/parse-options.h"
48#include "util/parse-events.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020049#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020050#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020051#include "util/evsel.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020052#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020053#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080054#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080055#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110056#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030057#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020058#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020059
Peter Zijlstra1f16c572012-10-23 13:40:14 +020060#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020061#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020062#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020063
Stephane Eraniand7470b62010-12-01 18:49:05 +020064#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060065#define CNTR_NOT_SUPPORTED "<not supported>"
66#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020067
Stephane Eranian13370a92013-01-29 12:47:44 +010068static void print_stat(int argc, const char **argv);
69static void print_counter_aggr(struct perf_evsel *counter, char *prefix);
70static void print_counter(struct perf_evsel *counter, char *prefix);
Stephane 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 Molnarc3305252011-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),
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200252 evsel_list->threads->nr, 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
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200340static int __run_perf_stat(int argc __maybe_unused, 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;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000347 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300348 const bool forks = (argc > 0);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000349 char buf;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200350
Stephane Eranian13370a92013-01-29 12:47:44 +0100351 if (interval) {
352 ts.tv_sec = interval / 1000;
353 ts.tv_nsec = (interval % 1000) * 1000000;
354 } else {
355 ts.tv_sec = 1;
356 ts.tv_nsec = 0;
357 }
358
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100359 if (aggr_socket
360 && cpu_map__build_socket_map(evsel_list->cpus, &sock_map)) {
361 perror("cannot build socket map");
362 return -1;
363 }
364
Liming Wang60666c62009-12-31 16:05:50 +0800365 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000366 perror("failed to create pipes");
David Ahernfceda7f2012-08-26 12:24:44 -0600367 return -1;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000368 }
369
Liming Wang60666c62009-12-31 16:05:50 +0800370 if (forks) {
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300371 if ((child_pid = fork()) < 0)
Liming Wang60666c62009-12-31 16:05:50 +0800372 perror("failed to fork");
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000373
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300374 if (!child_pid) {
Liming Wang60666c62009-12-31 16:05:50 +0800375 close(child_ready_pipe[0]);
376 close(go_pipe[1]);
377 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
378
379 /*
380 * Do a dummy execvp to get the PLT entry resolved,
381 * so we avoid the resolver overhead on the real
382 * execvp call.
383 */
384 execvp("", (char **)argv);
385
386 /*
387 * Tell the parent we're ready to go
388 */
389 close(child_ready_pipe[1]);
390
391 /*
392 * Wait until the parent tells us to go.
393 */
394 if (read(go_pipe[0], &buf, 1) == -1)
395 perror("unable to read pipe");
396
397 execvp(argv[0], (char **)argv);
398
399 perror(argv[0]);
400 exit(-1);
401 }
402
Namhyung Kimd67356e2012-05-07 14:09:03 +0900403 if (perf_target__none(&target))
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200404 evsel_list->threads->map[0] = child_pid;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300405
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000406 /*
Liming Wang60666c62009-12-31 16:05:50 +0800407 * Wait for the child to be ready to exec.
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000408 */
409 close(child_ready_pipe[1]);
Liming Wang60666c62009-12-31 16:05:50 +0800410 close(go_pipe[0]);
411 if (read(child_ready_pipe[0], &buf, 1) == -1)
Frederic Weisbeckera92bef02009-07-01 21:02:10 +0200412 perror("unable to read pipe");
Liming Wang60666c62009-12-31 16:05:50 +0800413 close(child_ready_pipe[0]);
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000414 }
415
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200416 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300417 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200418
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200419 list_for_each_entry(counter, &evsel_list->entries, node) {
Jiri Olsacac21422012-11-12 18:34:00 +0100420 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600421 /*
422 * PPC returns ENXIO for HW counters until 2.6.37
423 * (behavior changed with commit b0a873e).
424 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100425 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600426 errno == ENOENT || errno == EOPNOTSUPP ||
427 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600428 if (verbose)
429 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300430 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600431 counter->supported = false;
Ingo Molnarede70292011-04-28 08:48:42 +0200432 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600433 }
Ingo Molnarede70292011-04-28 08:48:42 +0200434
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300435 perf_evsel__open_strerror(counter, &target,
436 errno, msg, sizeof(msg));
437 ui__error("%s\n", msg);
438
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200439 if (child_pid != -1)
440 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600441
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200442 return -1;
443 }
David Ahern2cee77c2011-05-30 08:55:59 -0600444 counter->supported = true;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300445 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200446
Arnaldo Carvalho de Melo1491a632012-09-26 14:43:13 -0300447 if (perf_evlist__apply_filters(evsel_list)) {
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100448 error("failed to set filter with %d (%s)\n", errno,
449 strerror(errno));
450 return -1;
451 }
452
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200453 /*
454 * Enable counters and exec the command:
455 */
456 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100457 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200458
Liming Wang60666c62009-12-31 16:05:50 +0800459 if (forks) {
460 close(go_pipe[1]);
Stephane Eranian13370a92013-01-29 12:47:44 +0100461 if (interval) {
462 while (!waitpid(child_pid, &status, WNOHANG)) {
463 nanosleep(&ts, NULL);
464 print_interval();
465 }
466 }
Liming Wang60666c62009-12-31 16:05:50 +0800467 wait(&status);
Andi Kleen33e49ea2011-09-15 14:31:40 -0700468 if (WIFSIGNALED(status))
469 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800470 } else {
Stephane Eranian13370a92013-01-29 12:47:44 +0100471 while (!done) {
472 nanosleep(&ts, NULL);
473 if (interval)
474 print_interval();
475 }
Liming Wang60666c62009-12-31 16:05:50 +0800476 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200477
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200478 t1 = rdclock();
479
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200480 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200481
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200482 if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200483 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200484 read_counter(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800485 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200486 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200487 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200488 list_for_each_entry(counter, &evsel_list->entries, node) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200489 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800490 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -0200491 evsel_list->threads->nr);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200492 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200493 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200494
Ingo Molnar42202dd2009-06-13 14:57:28 +0200495 return WEXITSTATUS(status);
496}
497
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200498static int run_perf_stat(int argc __maybe_unused, const char **argv)
499{
500 int ret;
501
502 if (pre_cmd) {
503 ret = system(pre_cmd);
504 if (ret)
505 return ret;
506 }
507
508 if (sync_run)
509 sync();
510
511 ret = __run_perf_stat(argc, argv);
512 if (ret)
513 return ret;
514
515 if (post_cmd) {
516 ret = system(post_cmd);
517 if (ret)
518 return ret;
519 }
520
521 return ret;
522}
523
Ingo Molnarf99844c2011-04-27 05:35:39 +0200524static void print_noise_pct(double total, double avg)
525{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800526 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200527
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700528 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200529 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600530 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200531 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200532}
533
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200534static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200535{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200536 struct perf_stat *ps;
537
Peter Zijlstra849abde2009-09-04 18:23:38 +0200538 if (run_count == 1)
539 return;
540
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200541 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200542 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200543}
544
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100545static void nsec_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200546{
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200547 double msecs = avg / 1e6;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200548 char cpustr[16] = { '\0', };
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200549 const char *fmt = csv_output ? "%s%.6f%s%s" : "%s%18.6f%s%-25s";
Ingo Molnar42202dd2009-06-13 14:57:28 +0200550
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100551 if (aggr_socket)
552 sprintf(cpustr, "S%*d%s%*d%s",
553 csv_output ? 0 : -5,
554 cpu,
555 csv_sep,
556 csv_output ? 0 : 4,
557 nr,
558 csv_sep);
559 else if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200560 sprintf(cpustr, "CPU%*d%s",
561 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800562 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200563
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300564 fprintf(output, fmt, cpustr, msecs, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200565
Stephane Eranian023695d2011-02-14 11:20:01 +0200566 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200567 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200568
Stephane Eranian13370a92013-01-29 12:47:44 +0100569 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200570 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200571
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200572 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200573 fprintf(output, " # %8.3f CPUs utilized ",
574 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900575 else
576 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200577}
578
Namhyung Kim15e63922011-12-28 00:35:49 +0900579/* used for get_ratio_color() */
580enum grc_type {
581 GRC_STALLED_CYCLES_FE,
582 GRC_STALLED_CYCLES_BE,
583 GRC_CACHE_MISSES,
584 GRC_MAX_NR
585};
586
587static const char *get_ratio_color(enum grc_type type, double ratio)
588{
589 static const double grc_table[GRC_MAX_NR][3] = {
590 [GRC_STALLED_CYCLES_FE] = { 50.0, 30.0, 10.0 },
591 [GRC_STALLED_CYCLES_BE] = { 75.0, 50.0, 20.0 },
592 [GRC_CACHE_MISSES] = { 20.0, 10.0, 5.0 },
593 };
594 const char *color = PERF_COLOR_NORMAL;
595
596 if (ratio > grc_table[type][0])
597 color = PERF_COLOR_RED;
598 else if (ratio > grc_table[type][1])
599 color = PERF_COLOR_MAGENTA;
600 else if (ratio > grc_table[type][2])
601 color = PERF_COLOR_YELLOW;
602
603 return color;
604}
605
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300606static void print_stalled_cycles_frontend(int cpu,
607 struct perf_evsel *evsel
608 __maybe_unused, double avg)
Ingo Molnard3d1e862011-04-29 13:49:08 +0200609{
610 double total, ratio = 0.0;
611 const char *color;
612
613 total = avg_stats(&runtime_cycles_stats[cpu]);
614
615 if (total)
616 ratio = avg / total * 100.0;
617
Namhyung Kim15e63922011-12-28 00:35:49 +0900618 color = get_ratio_color(GRC_STALLED_CYCLES_FE, ratio);
Ingo Molnard3d1e862011-04-29 13:49:08 +0200619
Stephane Eranian4aa90152011-08-15 22:22:33 +0200620 fprintf(output, " # ");
621 color_fprintf(output, color, "%6.2f%%", ratio);
622 fprintf(output, " frontend cycles idle ");
Ingo Molnard3d1e862011-04-29 13:49:08 +0200623}
624
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300625static void print_stalled_cycles_backend(int cpu,
626 struct perf_evsel *evsel
627 __maybe_unused, double avg)
Ingo Molnara5d243d2011-04-27 05:39:24 +0200628{
629 double total, ratio = 0.0;
630 const char *color;
631
632 total = avg_stats(&runtime_cycles_stats[cpu]);
633
634 if (total)
635 ratio = avg / total * 100.0;
636
Namhyung Kim15e63922011-12-28 00:35:49 +0900637 color = get_ratio_color(GRC_STALLED_CYCLES_BE, ratio);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200638
Stephane Eranian4aa90152011-08-15 22:22:33 +0200639 fprintf(output, " # ");
640 color_fprintf(output, color, "%6.2f%%", ratio);
641 fprintf(output, " backend cycles idle ");
Ingo Molnara5d243d2011-04-27 05:39:24 +0200642}
643
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300644static void print_branch_misses(int cpu,
645 struct perf_evsel *evsel __maybe_unused,
646 double avg)
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200647{
648 double total, ratio = 0.0;
649 const char *color;
650
651 total = avg_stats(&runtime_branches_stats[cpu]);
652
653 if (total)
654 ratio = avg / total * 100.0;
655
Namhyung Kim15e63922011-12-28 00:35:49 +0900656 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200657
Stephane Eranian4aa90152011-08-15 22:22:33 +0200658 fprintf(output, " # ");
659 color_fprintf(output, color, "%6.2f%%", ratio);
660 fprintf(output, " of all branches ");
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200661}
662
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300663static void print_l1_dcache_misses(int cpu,
664 struct perf_evsel *evsel __maybe_unused,
665 double avg)
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200666{
667 double total, ratio = 0.0;
668 const char *color;
669
670 total = avg_stats(&runtime_l1_dcache_stats[cpu]);
671
672 if (total)
673 ratio = avg / total * 100.0;
674
Namhyung Kim15e63922011-12-28 00:35:49 +0900675 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200676
Stephane Eranian4aa90152011-08-15 22:22:33 +0200677 fprintf(output, " # ");
678 color_fprintf(output, color, "%6.2f%%", ratio);
679 fprintf(output, " of all L1-dcache hits ");
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200680}
681
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300682static void print_l1_icache_misses(int cpu,
683 struct perf_evsel *evsel __maybe_unused,
684 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200685{
686 double total, ratio = 0.0;
687 const char *color;
688
689 total = avg_stats(&runtime_l1_icache_stats[cpu]);
690
691 if (total)
692 ratio = avg / total * 100.0;
693
Namhyung Kim15e63922011-12-28 00:35:49 +0900694 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200695
Stephane Eranian4aa90152011-08-15 22:22:33 +0200696 fprintf(output, " # ");
697 color_fprintf(output, color, "%6.2f%%", ratio);
698 fprintf(output, " of all L1-icache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200699}
700
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300701static void print_dtlb_cache_misses(int cpu,
702 struct perf_evsel *evsel __maybe_unused,
703 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200704{
705 double total, ratio = 0.0;
706 const char *color;
707
708 total = avg_stats(&runtime_dtlb_cache_stats[cpu]);
709
710 if (total)
711 ratio = avg / total * 100.0;
712
Namhyung Kim15e63922011-12-28 00:35:49 +0900713 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200714
Stephane Eranian4aa90152011-08-15 22:22:33 +0200715 fprintf(output, " # ");
716 color_fprintf(output, color, "%6.2f%%", ratio);
717 fprintf(output, " of all dTLB cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200718}
719
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300720static void print_itlb_cache_misses(int cpu,
721 struct perf_evsel *evsel __maybe_unused,
722 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200723{
724 double total, ratio = 0.0;
725 const char *color;
726
727 total = avg_stats(&runtime_itlb_cache_stats[cpu]);
728
729 if (total)
730 ratio = avg / total * 100.0;
731
Namhyung Kim15e63922011-12-28 00:35:49 +0900732 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200733
Stephane Eranian4aa90152011-08-15 22:22:33 +0200734 fprintf(output, " # ");
735 color_fprintf(output, color, "%6.2f%%", ratio);
736 fprintf(output, " of all iTLB cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200737}
738
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300739static void print_ll_cache_misses(int cpu,
740 struct perf_evsel *evsel __maybe_unused,
741 double avg)
Ingo Molnarc3305252011-05-19 14:01:42 +0200742{
743 double total, ratio = 0.0;
744 const char *color;
745
746 total = avg_stats(&runtime_ll_cache_stats[cpu]);
747
748 if (total)
749 ratio = avg / total * 100.0;
750
Namhyung Kim15e63922011-12-28 00:35:49 +0900751 color = get_ratio_color(GRC_CACHE_MISSES, ratio);
Ingo Molnarc3305252011-05-19 14:01:42 +0200752
Stephane Eranian4aa90152011-08-15 22:22:33 +0200753 fprintf(output, " # ");
754 color_fprintf(output, color, "%6.2f%%", ratio);
755 fprintf(output, " of all LL-cache hits ");
Ingo Molnarc3305252011-05-19 14:01:42 +0200756}
757
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100758static void abs_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200759{
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200760 double total, ratio = 0.0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200761 char cpustr[16] = { '\0', };
Stephane Eraniand7470b62010-12-01 18:49:05 +0200762 const char *fmt;
763
764 if (csv_output)
765 fmt = "%s%.0f%s%s";
766 else if (big_num)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200767 fmt = "%s%'18.0f%s%-25s";
Stephane Eraniand7470b62010-12-01 18:49:05 +0200768 else
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200769 fmt = "%s%18.0f%s%-25s";
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200770
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100771 if (aggr_socket)
772 sprintf(cpustr, "S%*d%s%*d%s",
773 csv_output ? 0 : -5,
774 cpu,
775 csv_sep,
776 csv_output ? 0 : 4,
777 nr,
778 csv_sep);
779 else if (no_aggr)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200780 sprintf(cpustr, "CPU%*d%s",
781 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800782 perf_evsel__cpus(evsel)->map[cpu], csv_sep);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200783 else
784 cpu = 0;
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200785
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300786 fprintf(output, fmt, cpustr, avg, csv_sep, perf_evsel__name(evsel));
Stephane Eraniand7470b62010-12-01 18:49:05 +0200787
Stephane Eranian023695d2011-02-14 11:20:01 +0200788 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200789 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200790
Stephane Eranian13370a92013-01-29 12:47:44 +0100791 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200792 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200793
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200794 if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200795 total = avg_stats(&runtime_cycles_stats[cpu]);
Ingo Molnarc7f7fea2009-09-22 14:53:51 +0200796 if (total)
797 ratio = avg / total;
798
Stephane Eranian4aa90152011-08-15 22:22:33 +0200799 fprintf(output, " # %5.2f insns per cycle ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200800
Ingo Molnard3d1e862011-04-29 13:49:08 +0200801 total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
802 total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
Ingo Molnar481f9882011-04-27 04:34:16 +0200803
804 if (total && avg) {
805 ratio = total / avg;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200806 fprintf(output, "\n # %5.2f stalled cycles per insn", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200807 }
808
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200809 } else if (perf_evsel__match(evsel, HARDWARE, HW_BRANCH_MISSES) &&
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200810 runtime_branches_stats[cpu].n != 0) {
Ingo Molnarc78df6c2011-04-27 12:16:10 +0200811 print_branch_misses(cpu, evsel, avg);
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200812 } else if (
813 evsel->attr.type == PERF_TYPE_HW_CACHE &&
814 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1D |
815 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
816 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
Ingo Molnarc6264de2011-04-27 13:50:47 +0200817 runtime_l1_dcache_stats[cpu].n != 0) {
Ingo Molnar8bb6c792011-04-27 13:25:24 +0200818 print_l1_dcache_misses(cpu, evsel, avg);
Ingo Molnarc3305252011-05-19 14:01:42 +0200819 } else if (
820 evsel->attr.type == PERF_TYPE_HW_CACHE &&
821 evsel->attr.config == ( PERF_COUNT_HW_CACHE_L1I |
822 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
823 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
824 runtime_l1_icache_stats[cpu].n != 0) {
825 print_l1_icache_misses(cpu, evsel, avg);
826 } else if (
827 evsel->attr.type == PERF_TYPE_HW_CACHE &&
828 evsel->attr.config == ( PERF_COUNT_HW_CACHE_DTLB |
829 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
830 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
831 runtime_dtlb_cache_stats[cpu].n != 0) {
832 print_dtlb_cache_misses(cpu, evsel, avg);
833 } else if (
834 evsel->attr.type == PERF_TYPE_HW_CACHE &&
835 evsel->attr.config == ( PERF_COUNT_HW_CACHE_ITLB |
836 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
837 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
838 runtime_itlb_cache_stats[cpu].n != 0) {
839 print_itlb_cache_misses(cpu, evsel, avg);
840 } else if (
841 evsel->attr.type == PERF_TYPE_HW_CACHE &&
842 evsel->attr.config == ( PERF_COUNT_HW_CACHE_LL |
843 ((PERF_COUNT_HW_CACHE_OP_READ) << 8) |
844 ((PERF_COUNT_HW_CACHE_RESULT_MISS) << 16)) &&
845 runtime_ll_cache_stats[cpu].n != 0) {
846 print_ll_cache_misses(cpu, evsel, avg);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200847 } else if (perf_evsel__match(evsel, HARDWARE, HW_CACHE_MISSES) &&
848 runtime_cacherefs_stats[cpu].n != 0) {
849 total = avg_stats(&runtime_cacherefs_stats[cpu]);
850
851 if (total)
852 ratio = avg * 100 / total;
853
Stephane Eranian4aa90152011-08-15 22:22:33 +0200854 fprintf(output, " # %8.3f %% of all cache refs ", ratio);
Ingo Molnard58f4c82011-04-27 03:42:18 +0200855
Ingo Molnard3d1e862011-04-29 13:49:08 +0200856 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_FRONTEND)) {
857 print_stalled_cycles_frontend(cpu, evsel, avg);
Ingo Molnar129c04c2011-04-29 14:41:28 +0200858 } else if (perf_evsel__match(evsel, HARDWARE, HW_STALLED_CYCLES_BACKEND)) {
Ingo Molnard3d1e862011-04-29 13:49:08 +0200859 print_stalled_cycles_backend(cpu, evsel, avg);
Ingo Molnar481f9882011-04-27 04:34:16 +0200860 } else if (perf_evsel__match(evsel, HARDWARE, HW_CPU_CYCLES)) {
861 total = avg_stats(&runtime_nsecs_stats[cpu]);
862
863 if (total)
864 ratio = 1.0 * avg / total;
865
Stephane Eranian4aa90152011-08-15 22:22:33 +0200866 fprintf(output, " # %8.3f GHz ", ratio);
Ingo Molnar481f9882011-04-27 04:34:16 +0200867 } else if (runtime_nsecs_stats[cpu].n != 0) {
Namhyung Kim5fde2522012-02-06 16:44:44 +0900868 char unit = 'M';
869
Ingo Molnar481f9882011-04-27 04:34:16 +0200870 total = avg_stats(&runtime_nsecs_stats[cpu]);
871
872 if (total)
873 ratio = 1000.0 * avg / total;
Namhyung Kim5fde2522012-02-06 16:44:44 +0900874 if (ratio < 0.001) {
875 ratio *= 1000;
876 unit = 'K';
877 }
Ingo Molnar481f9882011-04-27 04:34:16 +0200878
Namhyung Kim5fde2522012-02-06 16:44:44 +0900879 fprintf(output, " # %8.3f %c/sec ", ratio, unit);
Ingo Molnara5d243d2011-04-27 05:39:24 +0200880 } else {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200881 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200882 }
Ingo Molnar42202dd2009-06-13 14:57:28 +0200883}
884
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100885static void print_aggr_socket(char *prefix)
886{
887 struct perf_evsel *counter;
888 u64 ena, run, val;
889 int cpu, s, s2, sock, nr;
890
891 if (!sock_map)
892 return;
893
894 for (s = 0; s < sock_map->nr; s++) {
895 sock = cpu_map__socket(sock_map, s);
896 list_for_each_entry(counter, &evsel_list->entries, node) {
897 val = ena = run = 0;
898 nr = 0;
899 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
900 s2 = cpu_map__get_socket(evsel_list->cpus, cpu);
901 if (s2 != sock)
902 continue;
903 val += counter->counts->cpu[cpu].val;
904 ena += counter->counts->cpu[cpu].ena;
905 run += counter->counts->cpu[cpu].run;
906 nr++;
907 }
908 if (prefix)
909 fprintf(output, "%s", prefix);
910
911 if (run == 0 || ena == 0) {
912 fprintf(output, "S%*d%s%*d%s%*s%s%*s",
913 csv_output ? 0 : -5,
914 s,
915 csv_sep,
916 csv_output ? 0 : 4,
917 nr,
918 csv_sep,
919 csv_output ? 0 : 18,
920 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
921 csv_sep,
922 csv_output ? 0 : -24,
923 perf_evsel__name(counter));
924 if (counter->cgrp)
925 fprintf(output, "%s%s",
926 csv_sep, counter->cgrp->name);
927
928 fputc('\n', output);
929 continue;
930 }
931
932 if (nsec_counter(counter))
933 nsec_printout(sock, nr, counter, val);
934 else
935 abs_printout(sock, nr, counter, val);
936
937 if (!csv_output) {
938 print_noise(counter, 1.0);
939
940 if (run != ena)
941 fprintf(output, " (%.2f%%)",
942 100.0 * run / ena);
943 }
944 fputc('\n', output);
945 }
946 }
947}
948
Ingo Molnar42202dd2009-06-13 14:57:28 +0200949/*
950 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200951 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200952 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100953static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200954{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200955 struct perf_stat *ps = counter->priv;
956 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200957 int scaled = counter->counts->scaled;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200958
Stephane Eranian13370a92013-01-29 12:47:44 +0100959 if (prefix)
960 fprintf(output, "%s", prefix);
961
Ingo Molnar42202dd2009-06-13 14:57:28 +0200962 if (scaled == -1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200963 fprintf(output, "%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200964 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600965 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian023695d2011-02-14 11:20:01 +0200966 csv_sep,
967 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300968 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200969
970 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200971 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200972
Stephane Eranian4aa90152011-08-15 22:22:33 +0200973 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200974 return;
975 }
976
977 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100978 nsec_printout(-1, 0, counter, avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200979 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100980 abs_printout(-1, 0, counter, avg);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200981
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700982 print_noise(counter, avg);
983
Stephane Eraniand7470b62010-12-01 18:49:05 +0200984 if (csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200985 fputc('\n', output);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200986 return;
987 }
988
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200989 if (scaled) {
990 double avg_enabled, avg_running;
991
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200992 avg_enabled = avg_stats(&ps->res_stats[1]);
993 avg_running = avg_stats(&ps->res_stats[2]);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200994
Stephane Eranian4aa90152011-08-15 22:22:33 +0200995 fprintf(output, " [%5.2f%%]", 100 * avg_running / avg_enabled);
Peter Zijlstra506d4bc2009-09-04 15:36:12 +0200996 }
Stephane Eranian4aa90152011-08-15 22:22:33 +0200997 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200998}
999
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001000/*
1001 * Print out the results of a single counter:
1002 * does not use aggregated count in system-wide
1003 */
Stephane Eranian13370a92013-01-29 12:47:44 +01001004static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001005{
1006 u64 ena, run, val;
1007 int cpu;
1008
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001009 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001010 val = counter->counts->cpu[cpu].val;
1011 ena = counter->counts->cpu[cpu].ena;
1012 run = counter->counts->cpu[cpu].run;
Stephane Eranian13370a92013-01-29 12:47:44 +01001013
1014 if (prefix)
1015 fprintf(output, "%s", prefix);
1016
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001017 if (run == 0 || ena == 0) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001018 fprintf(output, "CPU%*d%s%*s%s%*s",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001019 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001020 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +02001021 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -06001022 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
1023 csv_sep,
Stephane Eranian023695d2011-02-14 11:20:01 +02001024 csv_output ? 0 : -24,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -03001025 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001026
Stephane Eranian023695d2011-02-14 11:20:01 +02001027 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001028 fprintf(output, "%s%s",
1029 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +02001030
Stephane Eranian4aa90152011-08-15 22:22:33 +02001031 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001032 continue;
1033 }
1034
1035 if (nsec_counter(counter))
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001036 nsec_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001037 else
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001038 abs_printout(cpu, 0, counter, val);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001039
Stephane Eraniand7470b62010-12-01 18:49:05 +02001040 if (!csv_output) {
1041 print_noise(counter, 1.0);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001042
Ingo Molnarc6264de2011-04-27 13:50:47 +02001043 if (run != ena)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001044 fprintf(output, " (%.2f%%)",
1045 100.0 * run / ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001046 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001047 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001048 }
1049}
1050
Ingo Molnar42202dd2009-06-13 14:57:28 +02001051static void print_stat(int argc, const char **argv)
1052{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001053 struct perf_evsel *counter;
1054 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001055
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001056 fflush(stdout);
1057
Stephane Eraniand7470b62010-12-01 18:49:05 +02001058 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001059 fprintf(output, "\n");
1060 fprintf(output, " Performance counter stats for ");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001061 if (!perf_target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001062 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001063 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001064 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +09001065 } else if (target.pid)
1066 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001067 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001068 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001069
Stephane Eranian4aa90152011-08-15 22:22:33 +02001070 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001071 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001072 fprintf(output, " (%d runs)", run_count);
1073 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001074 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001075
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001076 if (aggr_socket)
1077 print_aggr_socket(NULL);
1078 else if (no_aggr) {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001079 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001080 print_counter(counter, NULL);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001081 } else {
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001082 list_for_each_entry(counter, &evsel_list->entries, node)
Stephane Eranian13370a92013-01-29 12:47:44 +01001083 print_counter_aggr(counter, NULL);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001084 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001085
Stephane Eraniand7470b62010-12-01 18:49:05 +02001086 if (!csv_output) {
Ingo Molnarc3305252011-05-19 14:01:42 +02001087 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001088 fprintf(output, "\n");
1089 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001090 avg_stats(&walltime_nsecs_stats)/1e9);
1091 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001092 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +02001093 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
1094 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +02001095 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001096 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +02001097 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001098}
1099
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001100static volatile int signr = -1;
1101
Ingo Molnar52425192009-05-26 09:17:18 +02001102static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001103{
Stephane Eranian13370a92013-01-29 12:47:44 +01001104 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001105 done = 1;
1106
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001107 signr = signo;
1108}
1109
1110static void sig_atexit(void)
1111{
Chris Wilson933da832009-10-04 01:35:01 +01001112 if (child_pid != -1)
1113 kill(child_pid, SIGTERM);
1114
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001115 if (signr == -1)
1116 return;
1117
1118 signal(signr, SIG_DFL);
1119 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001120}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001121
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001122static int stat__set_big_num(const struct option *opt __maybe_unused,
1123 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001124{
1125 big_num_opt = unset ? 0 : 1;
1126 return 0;
1127}
1128
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001129/*
1130 * Add default attributes, if there were no attributes specified or
1131 * if -d/--detailed, -d -d or -d -d -d is used:
1132 */
1133static int add_default_attributes(void)
1134{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001135 struct perf_event_attr default_attrs[] = {
1136
1137 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1138 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1139 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1140 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1141
1142 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1143 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1144 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1145 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1146 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1147 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1148
1149};
1150
1151/*
1152 * Detailed stats (-d), covering the L1 and last level data caches:
1153 */
1154 struct perf_event_attr detailed_attrs[] = {
1155
1156 { .type = PERF_TYPE_HW_CACHE,
1157 .config =
1158 PERF_COUNT_HW_CACHE_L1D << 0 |
1159 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1160 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1161
1162 { .type = PERF_TYPE_HW_CACHE,
1163 .config =
1164 PERF_COUNT_HW_CACHE_L1D << 0 |
1165 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1166 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1167
1168 { .type = PERF_TYPE_HW_CACHE,
1169 .config =
1170 PERF_COUNT_HW_CACHE_LL << 0 |
1171 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1172 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1173
1174 { .type = PERF_TYPE_HW_CACHE,
1175 .config =
1176 PERF_COUNT_HW_CACHE_LL << 0 |
1177 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1178 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1179};
1180
1181/*
1182 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1183 */
1184 struct perf_event_attr very_detailed_attrs[] = {
1185
1186 { .type = PERF_TYPE_HW_CACHE,
1187 .config =
1188 PERF_COUNT_HW_CACHE_L1I << 0 |
1189 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1190 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1191
1192 { .type = PERF_TYPE_HW_CACHE,
1193 .config =
1194 PERF_COUNT_HW_CACHE_L1I << 0 |
1195 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1196 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1197
1198 { .type = PERF_TYPE_HW_CACHE,
1199 .config =
1200 PERF_COUNT_HW_CACHE_DTLB << 0 |
1201 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1202 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1203
1204 { .type = PERF_TYPE_HW_CACHE,
1205 .config =
1206 PERF_COUNT_HW_CACHE_DTLB << 0 |
1207 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1208 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1209
1210 { .type = PERF_TYPE_HW_CACHE,
1211 .config =
1212 PERF_COUNT_HW_CACHE_ITLB << 0 |
1213 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1214 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1215
1216 { .type = PERF_TYPE_HW_CACHE,
1217 .config =
1218 PERF_COUNT_HW_CACHE_ITLB << 0 |
1219 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1220 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1221
1222};
1223
1224/*
1225 * Very, very detailed stats (-d -d -d), adding prefetch events:
1226 */
1227 struct perf_event_attr very_very_detailed_attrs[] = {
1228
1229 { .type = PERF_TYPE_HW_CACHE,
1230 .config =
1231 PERF_COUNT_HW_CACHE_L1D << 0 |
1232 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1233 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1234
1235 { .type = PERF_TYPE_HW_CACHE,
1236 .config =
1237 PERF_COUNT_HW_CACHE_L1D << 0 |
1238 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1239 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1240};
1241
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001242 /* Set attrs if no event is selected and !null_run: */
1243 if (null_run)
1244 return 0;
1245
1246 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001247 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001248 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001249 }
1250
1251 /* Detailed events get appended to the event list: */
1252
1253 if (detailed_run < 1)
1254 return 0;
1255
1256 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001257 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001258 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001259
1260 if (detailed_run < 2)
1261 return 0;
1262
1263 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001264 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001265 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001266
1267 if (detailed_run < 3)
1268 return 0;
1269
1270 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001271 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001272}
1273
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001274int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001275{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001276 bool append_file = false;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001277 int output_fd = 0;
1278 const char *output_name = NULL;
1279 const struct option options[] = {
1280 OPT_CALLBACK('e', "event", &evsel_list, "event",
1281 "event selector. use 'perf list' to list available events",
1282 parse_events_option),
1283 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1284 "event filter", parse_filter),
1285 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1286 "child tasks do not inherit counters"),
1287 OPT_STRING('p', "pid", &target.pid, "pid",
1288 "stat events on existing process id"),
1289 OPT_STRING('t', "tid", &target.tid, "tid",
1290 "stat events on existing thread id"),
1291 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1292 "system-wide collection from all CPUs"),
1293 OPT_BOOLEAN('g', "group", &group,
1294 "put the counters into a counter group"),
1295 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1296 OPT_INCR('v', "verbose", &verbose,
1297 "be more verbose (show counter open errors, etc)"),
1298 OPT_INTEGER('r', "repeat", &run_count,
1299 "repeat command and print average + stddev (max: 100)"),
1300 OPT_BOOLEAN('n', "null", &null_run,
1301 "null run - dont start any counters"),
1302 OPT_INCR('d', "detailed", &detailed_run,
1303 "detailed run - start a lot of events"),
1304 OPT_BOOLEAN('S', "sync", &sync_run,
1305 "call sync() before starting a run"),
1306 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1307 "print large numbers with thousands\' separators",
1308 stat__set_big_num),
1309 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1310 "list of cpus to monitor in system-wide"),
1311 OPT_BOOLEAN('A', "no-aggr", &no_aggr, "disable CPU count aggregation"),
1312 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1313 "print counts with custom separator"),
1314 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1315 "monitor event in cgroup name only", parse_cgroups),
1316 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1317 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1318 OPT_INTEGER(0, "log-fd", &output_fd,
1319 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001320 OPT_STRING(0, "pre", &pre_cmd, "command",
1321 "command to run prior to the measured command"),
1322 OPT_STRING(0, "post", &post_cmd, "command",
1323 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001324 OPT_UINTEGER('I', "interval-print", &interval,
1325 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001326 OPT_BOOLEAN(0, "aggr-socket", &aggr_socket, "aggregate counts per processor socket"),
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001327 OPT_END()
1328 };
1329 const char * const stat_usage[] = {
1330 "perf stat [<options>] [<command>]",
1331 NULL
1332 };
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001333 struct perf_evsel *pos;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001334 int status = -ENOMEM, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001335 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001336
Stephane Eranian5af52b52010-05-18 15:00:01 +02001337 setlocale(LC_ALL, "");
1338
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001339 evsel_list = perf_evlist__new(NULL, NULL);
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001340 if (evsel_list == NULL)
1341 return -ENOMEM;
1342
Anton Blancharda0541232009-07-22 23:04:12 +10001343 argc = parse_options(argc, argv, options, stat_usage,
1344 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001345
Stephane Eranian4aa90152011-08-15 22:22:33 +02001346 output = stderr;
1347 if (output_name && strcmp(output_name, "-"))
1348 output = NULL;
1349
Jim Cromie56f3bae2011-09-07 17:14:00 -06001350 if (output_name && output_fd) {
1351 fprintf(stderr, "cannot use both --output and --log-fd\n");
1352 usage_with_options(stat_usage, options);
1353 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001354
1355 if (output_fd < 0) {
1356 fprintf(stderr, "argument to --log-fd must be a > 0\n");
1357 usage_with_options(stat_usage, options);
1358 }
1359
Stephane Eranian4aa90152011-08-15 22:22:33 +02001360 if (!output) {
1361 struct timespec tm;
1362 mode = append_file ? "a" : "w";
1363
1364 output = fopen(output_name, mode);
1365 if (!output) {
1366 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001367 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001368 }
1369 clock_gettime(CLOCK_REALTIME, &tm);
1370 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001371 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001372 mode = append_file ? "a" : "w";
1373 output = fdopen(output_fd, mode);
1374 if (!output) {
1375 perror("Failed opening logfd");
1376 return -errno;
1377 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001378 }
1379
Jim Cromied4ffd042011-09-07 17:14:03 -06001380 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001381 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001382 if (!strcmp(csv_sep, "\\t"))
1383 csv_sep = "\t";
1384 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001385 csv_sep = DEFAULT_SEPARATOR;
1386
1387 /*
1388 * let the spreadsheet do the pretty-printing
1389 */
1390 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001391 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001392 if (big_num_opt == 1) {
1393 fprintf(stderr, "-B option not supported with -x\n");
1394 usage_with_options(stat_usage, options);
1395 } else /* Nope, so disable big number formatting */
1396 big_num = false;
1397 } else if (big_num_opt == 0) /* User passed --no-big-num */
1398 big_num = false;
1399
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001400 if (!argc && !perf_target__has_task(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001401 usage_with_options(stat_usage, options);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +02001402 if (run_count <= 0)
Ingo Molnar42202dd2009-06-13 14:57:28 +02001403 usage_with_options(stat_usage, options);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001404
Stephane Eranian023695d2011-02-14 11:20:01 +02001405 /* no_aggr, cgroup are for system-wide only */
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001406 if ((no_aggr || nr_cgroups) && !perf_target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001407 fprintf(stderr, "both cgroup and no-aggregation "
1408 "modes only available in system-wide mode\n");
1409
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001410 usage_with_options(stat_usage, options);
Stephane Eranian023695d2011-02-14 11:20:01 +02001411 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001412
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001413 if (aggr_socket) {
1414 if (!perf_target__has_cpu(&target)) {
1415 fprintf(stderr, "--aggr-socket only available in system-wide mode (-a)\n");
1416 usage_with_options(stat_usage, options);
1417 }
1418 no_aggr = true;
1419 }
1420
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001421 if (add_default_attributes())
1422 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001423
Namhyung Kim4bd0f2d2012-04-26 14:15:18 +09001424 perf_target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001425
Namhyung Kim77a6f012012-05-07 14:09:04 +09001426 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001427 if (perf_target__has_task(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001428 pr_err("Problems finding threads of monitor\n");
Namhyung Kimaa22dd42012-05-16 18:45:47 +09001429 if (perf_target__has_cpu(&target))
Namhyung Kim77a6f012012-05-07 14:09:04 +09001430 perror("failed to parse CPUs map");
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001431
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001432 usage_with_options(stat_usage, options);
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001433 return -1;
1434 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001435 if (interval && interval < 100) {
1436 pr_err("print interval must be >= 100ms\n");
1437 usage_with_options(stat_usage, options);
1438 return -1;
1439 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001440
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001441 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001442 if (perf_evsel__alloc_stat_priv(pos) < 0 ||
Yan, Zheng7ae92e72012-09-10 15:53:50 +08001443 perf_evsel__alloc_counts(pos, perf_evsel__nr_cpus(pos)) < 0)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001444 goto out_free_fd;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001445 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001446 if (interval) {
1447 list_for_each_entry(pos, &evsel_list->entries, node) {
1448 if (perf_evsel__alloc_prev_raw_counts(pos) < 0)
1449 goto out_free_fd;
1450 }
1451 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001452
Ingo Molnar58d7e992009-05-15 11:03:23 +02001453 /*
1454 * We dont want to block the signals - that would cause
1455 * child tasks to inherit that and Ctrl-C would not work.
1456 * What we want is for Ctrl-C to work in the exec()-ed
1457 * task, but being ignored by perf stat itself:
1458 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001459 atexit(sig_atexit);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001460 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001461 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001462 signal(SIGALRM, skip_signal);
1463 signal(SIGABRT, skip_signal);
1464
Ingo Molnar42202dd2009-06-13 14:57:28 +02001465 status = 0;
1466 for (run_idx = 0; run_idx < run_count; run_idx++) {
1467 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001468 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1469 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001470
Ingo Molnar42202dd2009-06-13 14:57:28 +02001471 status = run_perf_stat(argc, argv);
1472 }
1473
Stephane Eranian13370a92013-01-29 12:47:44 +01001474 if (status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001475 print_stat(argc, argv);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001476out_free_fd:
Stephane Eranian13370a92013-01-29 12:47:44 +01001477 list_for_each_entry(pos, &evsel_list->entries, node) {
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -02001478 perf_evsel__free_stat_priv(pos);
Namhyung Kim43f8e762013-01-25 10:44:44 +09001479 perf_evsel__free_counts(pos);
Stephane Eranian13370a92013-01-29 12:47:44 +01001480 perf_evsel__free_prev_raw_counts(pos);
1481 }
Arnaldo Carvalho de Melo7e2ed092011-01-30 11:59:43 -02001482 perf_evlist__delete_maps(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001483out:
1484 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001485 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001486}