blob: b24ecee95fec1683d9d812e51e9392c260196c67 [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"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030046#include "util/cgroup.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020047#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020048#include "util/parse-options.h"
49#include "util/parse-events.h"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070050#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020051#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020052#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020053#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020054#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020055#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080056#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080057#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110058#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030059#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020060#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020061
Peter Zijlstra1f16c572012-10-23 13:40:14 +020062#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020063#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020064#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020065
Stephane Eraniand7470b62010-12-01 18:49:05 +020066#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060067#define CNTR_NOT_SUPPORTED "<not supported>"
68#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020069
Stephane Eranian13370a92013-01-29 12:47:44 +010070static void print_stat(int argc, const char **argv);
71static void print_counter_aggr(struct perf_evsel *counter, char *prefix);
72static void print_counter(struct perf_evsel *counter, char *prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +010073static void print_aggr(char *prefix);
Stephane Eranian13370a92013-01-29 12:47:44 +010074
Andi Kleen4cabc3d2013-08-21 16:47:26 -070075/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020076static const char *transaction_attrs = {
77 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070078 "{"
79 "instructions,"
80 "cycles,"
81 "cpu/cycles-t/,"
82 "cpu/tx-start/,"
83 "cpu/el-start/,"
84 "cpu/cycles-ct/"
85 "}"
86};
87
88/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +020089static const char * transaction_limited_attrs = {
90 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070091 "{"
92 "instructions,"
93 "cycles,"
94 "cpu/cycles-t/,"
95 "cpu/tx-start/"
96 "}"
97};
98
Robert Richter666e6d42012-04-05 18:26:27 +020099static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200100
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300101static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900102 .uid = UINT_MAX,
103};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530104
105static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200106static bool no_inherit = false;
Ian Munsiec0555642010-04-13 18:37:33 +1000107static bool scale = true;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100108static enum aggr_mode aggr_mode = AGGR_GLOBAL;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200109static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000110static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200111static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700112static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200113static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200114static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200115static const char *csv_sep = NULL;
116static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800117static bool group = false;
Stephane Eranian4aa90152011-08-15 22:22:33 +0200118static FILE *output = NULL;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200119static const char *pre_cmd = NULL;
120static const char *post_cmd = NULL;
121static bool sync_run = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100122static unsigned int interval = 0;
Andi Kleen41191682013-08-02 17:41:11 -0700123static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100124static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500125static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100126static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100127static struct cpu_map *aggr_map;
128static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200129
Liming Wang60666c62009-12-31 16:05:50 +0800130static volatile int done = 0;
131
Stephane Eranian13370a92013-01-29 12:47:44 +0100132static inline void diff_timespec(struct timespec *r, struct timespec *a,
133 struct timespec *b)
134{
135 r->tv_sec = a->tv_sec - b->tv_sec;
136 if (a->tv_nsec < b->tv_nsec) {
137 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
138 r->tv_sec--;
139 } else {
140 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
141 }
142}
143
144static inline struct cpu_map *perf_evsel__cpus(struct perf_evsel *evsel)
145{
146 return (evsel->cpus && !target.cpu_list) ? evsel->cpus : evsel_list->cpus;
147}
148
149static inline int perf_evsel__nr_cpus(struct perf_evsel *evsel)
150{
151 return perf_evsel__cpus(evsel)->nr;
152}
153
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500154static void perf_evsel__reset_stat_priv(struct perf_evsel *evsel)
155{
Andi Kleen90f6bb62014-03-25 10:31:38 -0700156 int i;
157 struct perf_stat *ps = evsel->priv;
158
159 for (i = 0; i < 3; i++)
160 init_stats(&ps->res_stats[i]);
Jiri Olsae2f56da2015-06-04 15:50:55 +0200161
162 perf_stat_evsel_id_init(evsel);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500163}
164
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200165static int perf_evsel__alloc_stat_priv(struct perf_evsel *evsel)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200166{
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200167 evsel->priv = zalloc(sizeof(struct perf_stat));
Jiri Olsad180ac12014-06-20 10:56:34 +0200168 if (evsel->priv == NULL)
Andi Kleen90f6bb62014-03-25 10:31:38 -0700169 return -ENOMEM;
170 perf_evsel__reset_stat_priv(evsel);
171 return 0;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200172}
173
174static void perf_evsel__free_stat_priv(struct perf_evsel *evsel)
175{
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300176 zfree(&evsel->priv);
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200177}
178
Stephane Eranian13370a92013-01-29 12:47:44 +0100179static int perf_evsel__alloc_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800180{
Stephane Eranian13370a92013-01-29 12:47:44 +0100181 void *addr;
182 size_t sz;
183
184 sz = sizeof(*evsel->counts) +
185 (perf_evsel__nr_cpus(evsel) * sizeof(struct perf_counts_values));
186
187 addr = zalloc(sz);
188 if (!addr)
189 return -ENOMEM;
190
191 evsel->prev_raw_counts = addr;
192
193 return 0;
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800194}
195
Stephane Eranian13370a92013-01-29 12:47:44 +0100196static void perf_evsel__free_prev_raw_counts(struct perf_evsel *evsel)
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800197{
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300198 zfree(&evsel->prev_raw_counts);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800199}
200
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300201static void perf_evlist__free_stats(struct perf_evlist *evlist)
202{
203 struct perf_evsel *evsel;
204
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300205 evlist__for_each(evlist, evsel) {
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300206 perf_evsel__free_stat_priv(evsel);
207 perf_evsel__free_counts(evsel);
208 perf_evsel__free_prev_raw_counts(evsel);
209 }
210}
211
212static int perf_evlist__alloc_stats(struct perf_evlist *evlist, bool alloc_raw)
213{
214 struct perf_evsel *evsel;
215
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300216 evlist__for_each(evlist, evsel) {
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -0300217 if (perf_evsel__alloc_stat_priv(evsel) < 0 ||
218 perf_evsel__alloc_counts(evsel, perf_evsel__nr_cpus(evsel)) < 0 ||
219 (alloc_raw && perf_evsel__alloc_prev_raw_counts(evsel) < 0))
220 goto out_free;
221 }
222
223 return 0;
224
225out_free:
226 perf_evlist__free_stats(evlist);
227 return -1;
228}
229
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200230static void perf_stat__reset_stats(struct perf_evlist *evlist)
231{
232 struct perf_evsel *evsel;
233
234 evlist__for_each(evlist, evsel) {
235 perf_evsel__reset_stat_priv(evsel);
236 perf_evsel__reset_counts(evsel, perf_evsel__nr_cpus(evsel));
237 }
238
Jiri Olsaf87027b2015-06-03 16:25:59 +0200239 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200240}
241
Jiri Olsacac21422012-11-12 18:34:00 +0100242static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200243{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200244 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200245
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200246 if (scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200247 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
248 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200249
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200250 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300251
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300252 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300253 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200254
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300255 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200256 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700257 if (!initial_delay)
258 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200259 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300260
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300261 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200262}
263
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200264/*
265 * Does the counter have nsecs as a unit?
266 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200267static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200268{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200269 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
270 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200271 return 1;
272
273 return 0;
274}
275
Jiri Olsa779d0b992014-11-21 10:31:14 +0100276static void zero_per_pkg(struct perf_evsel *counter)
277{
278 if (counter->per_pkg_mask)
279 memset(counter->per_pkg_mask, 0, MAX_NR_CPUS);
280}
281
282static int check_per_pkg(struct perf_evsel *counter, int cpu, bool *skip)
283{
284 unsigned long *mask = counter->per_pkg_mask;
285 struct cpu_map *cpus = perf_evsel__cpus(counter);
286 int s;
287
288 *skip = false;
289
290 if (!counter->per_pkg)
291 return 0;
292
293 if (cpu_map__empty(cpus))
294 return 0;
295
296 if (!mask) {
297 mask = zalloc(MAX_NR_CPUS);
298 if (!mask)
299 return -ENOMEM;
300
301 counter->per_pkg_mask = mask;
302 }
303
304 s = cpu_map__get_socket(cpus, cpu);
305 if (s < 0)
306 return -1;
307
308 *skip = test_and_set_bit(s, mask) == 1;
309 return 0;
310}
311
Jiri Olsa060c4f92014-11-21 10:31:08 +0100312static int read_cb(struct perf_evsel *evsel, int cpu, int thread __maybe_unused,
313 struct perf_counts_values *count)
314{
Jiri Olsa1971f592014-11-21 10:31:10 +0100315 struct perf_counts_values *aggr = &evsel->counts->aggr;
Jiri Olsa779d0b992014-11-21 10:31:14 +0100316 static struct perf_counts_values zero;
317 bool skip = false;
318
319 if (check_per_pkg(evsel, cpu, &skip)) {
320 pr_err("failed to read per-pkg counter\n");
321 return -1;
322 }
323
324 if (skip)
325 count = &zero;
Jiri Olsa1971f592014-11-21 10:31:10 +0100326
Jiri Olsa060c4f92014-11-21 10:31:08 +0100327 switch (aggr_mode) {
328 case AGGR_CORE:
329 case AGGR_SOCKET:
330 case AGGR_NONE:
Jiri Olsa6c0345b2014-11-21 10:31:15 +0100331 if (!evsel->snapshot)
332 perf_evsel__compute_deltas(evsel, cpu, count);
Jiri Olsa060c4f92014-11-21 10:31:08 +0100333 perf_counts_values__scale(count, scale, NULL);
334 evsel->counts->cpu[cpu] = *count;
Andi Kleen56f0fd42015-03-11 08:28:01 -0700335 if (aggr_mode == AGGR_NONE)
Jiri Olsaf87027b2015-06-03 16:25:59 +0200336 perf_stat__update_shadow_stats(evsel, count->values, cpu);
Jiri Olsa060c4f92014-11-21 10:31:08 +0100337 break;
338 case AGGR_GLOBAL:
Jiri Olsa1971f592014-11-21 10:31:10 +0100339 aggr->val += count->val;
340 if (scale) {
341 aggr->ena += count->ena;
342 aggr->run += count->run;
343 }
Jiri Olsa060c4f92014-11-21 10:31:08 +0100344 default:
345 break;
346 }
347
348 return 0;
349}
350
Jiri Olsa1971f592014-11-21 10:31:10 +0100351static int read_counter(struct perf_evsel *counter);
352
Ingo Molnardcd99362011-04-27 04:36:37 +0200353/*
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200354 * Read out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200355 * aggregate counts across CPUs in system-wide mode
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200356 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200357static int read_counter_aggr(struct perf_evsel *counter)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200358{
Jiri Olsa1971f592014-11-21 10:31:10 +0100359 struct perf_counts_values *aggr = &counter->counts->aggr;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200360 struct perf_stat *ps = counter->priv;
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200361 u64 *count = counter->counts->aggr.values;
362 int i;
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200363
Jiri Olsa1971f592014-11-21 10:31:10 +0100364 aggr->val = aggr->ena = aggr->run = 0;
365
366 if (read_counter(counter))
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200367 return -1;
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200368
Jiri Olsa6c0345b2014-11-21 10:31:15 +0100369 if (!counter->snapshot)
370 perf_evsel__compute_deltas(counter, -1, aggr);
Jiri Olsa1971f592014-11-21 10:31:10 +0100371 perf_counts_values__scale(aggr, scale, &counter->counts->scaled);
372
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200373 for (i = 0; i < 3; i++)
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200374 update_stats(&ps->res_stats[i], count[i]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200375
376 if (verbose) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200377 fprintf(output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300378 perf_evsel__name(counter), count[0], count[1], count[2]);
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200379 }
380
Ingo Molnarbe1ac0d2009-05-29 09:10:54 +0200381 /*
382 * Save the full runtime - to allow normalization during printout:
383 */
Jiri Olsaf87027b2015-06-03 16:25:59 +0200384 perf_stat__update_shadow_stats(counter, count, 0);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200385
386 return 0;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200387}
388
389/*
390 * Read out the results of a single counter:
391 * do not aggregate counts across CPUs in system-wide mode
392 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200393static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200394{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100395 int nthreads = thread_map__nr(evsel_list->threads);
396 int ncpus = perf_evsel__nr_cpus(counter);
397 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200398
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000399 if (!counter->supported)
400 return -ENOENT;
401
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100402 if (counter->system_wide)
403 nthreads = 1;
404
Jiri Olsa779d0b992014-11-21 10:31:14 +0100405 if (counter->per_pkg)
406 zero_per_pkg(counter);
407
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100408 for (thread = 0; thread < nthreads; thread++) {
409 for (cpu = 0; cpu < ncpus; cpu++) {
410 if (perf_evsel__read_cb(counter, cpu, thread, read_cb))
411 return -1;
412 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200413 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200414
415 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200416}
417
Stephane Eranian13370a92013-01-29 12:47:44 +0100418static void print_interval(void)
419{
420 static int num_print_interval;
421 struct perf_evsel *counter;
422 struct perf_stat *ps;
423 struct timespec ts, rs;
424 char prefix[64];
425
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100426 if (aggr_mode == AGGR_GLOBAL) {
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300427 evlist__for_each(evsel_list, counter) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100428 ps = counter->priv;
429 memset(ps->res_stats, 0, sizeof(ps->res_stats));
430 read_counter_aggr(counter);
431 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100432 } else {
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300433 evlist__for_each(evsel_list, counter) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100434 ps = counter->priv;
435 memset(ps->res_stats, 0, sizeof(ps->res_stats));
436 read_counter(counter);
437 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100438 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100439
Stephane Eranian13370a92013-01-29 12:47:44 +0100440 clock_gettime(CLOCK_MONOTONIC, &ts);
441 diff_timespec(&rs, &ts, &ref_time);
442 sprintf(prefix, "%6lu.%09lu%s", rs.tv_sec, rs.tv_nsec, csv_sep);
443
444 if (num_print_interval == 0 && !csv_output) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100445 switch (aggr_mode) {
446 case AGGR_SOCKET:
Stephane Eranian410136f2013-11-12 17:58:49 +0100447 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100448 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100449 case AGGR_CORE:
Stephane Eranian410136f2013-11-12 17:58:49 +0100450 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
Stephane Eranian12c08a92013-02-14 13:57:29 +0100451 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100452 case AGGR_NONE:
Stephane Eranian410136f2013-11-12 17:58:49 +0100453 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100454 break;
455 case AGGR_GLOBAL:
456 default:
Stephane Eranian410136f2013-11-12 17:58:49 +0100457 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100458 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100459 }
460
461 if (++num_print_interval == 25)
462 num_print_interval = 0;
463
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100464 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100465 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100466 case AGGR_SOCKET:
467 print_aggr(prefix);
468 break;
469 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300470 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +0100471 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100472 break;
473 case AGGR_GLOBAL:
474 default:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300475 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +0100476 print_counter_aggr(counter, prefix);
477 }
Andi Kleen2bbf03f2013-08-02 17:41:12 -0700478
479 fflush(output);
Stephane Eranian13370a92013-01-29 12:47:44 +0100480}
481
Andi Kleen41191682013-08-02 17:41:11 -0700482static void handle_initial_delay(void)
483{
484 struct perf_evsel *counter;
485
486 if (initial_delay) {
487 const int ncpus = cpu_map__nr(evsel_list->cpus),
488 nthreads = thread_map__nr(evsel_list->threads);
489
490 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300491 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700492 perf_evsel__enable(counter, ncpus, nthreads);
493 }
494}
495
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300496static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300497
498/*
499 * perf_evlist__prepare_workload will send a SIGUSR1
500 * if the fork fails, since we asked by setting its
501 * want_signal to true.
502 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300503static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
504 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300505{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300506 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300507}
508
Namhyung Kimacf28922013-03-11 16:43:18 +0900509static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200510{
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300511 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200512 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100513 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100514 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100515 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200516 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300517 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200518
Stephane Eranian13370a92013-01-29 12:47:44 +0100519 if (interval) {
520 ts.tv_sec = interval / 1000;
521 ts.tv_nsec = (interval % 1000) * 1000000;
522 } else {
523 ts.tv_sec = 1;
524 ts.tv_nsec = 0;
525 }
526
Liming Wang60666c62009-12-31 16:05:50 +0800527 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300528 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
529 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900530 perror("failed to prepare workload");
531 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800532 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900533 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000534 }
535
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200536 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300537 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200538
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300539 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100540 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600541 /*
542 * PPC returns ENXIO for HW counters until 2.6.37
543 * (behavior changed with commit b0a873e).
544 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100545 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600546 errno == ENOENT || errno == EOPNOTSUPP ||
547 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600548 if (verbose)
549 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300550 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600551 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400552
553 if ((counter->leader != counter) ||
554 !(counter->leader->nr_members > 1))
555 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600556 }
Ingo Molnarede70292011-04-28 08:48:42 +0200557
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300558 perf_evsel__open_strerror(counter, &target,
559 errno, msg, sizeof(msg));
560 ui__error("%s\n", msg);
561
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200562 if (child_pid != -1)
563 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600564
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200565 return -1;
566 }
David Ahern2cee77c2011-05-30 08:55:59 -0600567 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100568
569 l = strlen(counter->unit);
570 if (l > unit_width)
571 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300572 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200573
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300574 if (perf_evlist__apply_filters(evsel_list, &counter)) {
575 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
576 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000577 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100578 return -1;
579 }
580
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200581 /*
582 * Enable counters and exec the command:
583 */
584 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100585 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200586
Liming Wang60666c62009-12-31 16:05:50 +0800587 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900588 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700589 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900590
Stephane Eranian13370a92013-01-29 12:47:44 +0100591 if (interval) {
592 while (!waitpid(child_pid, &status, WNOHANG)) {
593 nanosleep(&ts, NULL);
594 print_interval();
595 }
596 }
Liming Wang60666c62009-12-31 16:05:50 +0800597 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300598
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300599 if (workload_exec_errno) {
600 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
601 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300602 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300603 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300604
Andi Kleen33e49ea2011-09-15 14:31:40 -0700605 if (WIFSIGNALED(status))
606 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800607 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700608 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100609 while (!done) {
610 nanosleep(&ts, NULL);
611 if (interval)
612 print_interval();
613 }
Liming Wang60666c62009-12-31 16:05:50 +0800614 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200615
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200616 t1 = rdclock();
617
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200618 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200619
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100620 if (aggr_mode == AGGR_GLOBAL) {
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300621 evlist__for_each(evsel_list, counter) {
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200622 read_counter_aggr(counter);
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800623 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
Namhyung Kimb3a319d2013-03-11 16:43:14 +0900624 thread_map__nr(evsel_list->threads));
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200625 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100626 } else {
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300627 evlist__for_each(evsel_list, counter) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100628 read_counter(counter);
629 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter), 1);
630 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200631 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200632
Ingo Molnar42202dd2009-06-13 14:57:28 +0200633 return WEXITSTATUS(status);
634}
635
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300636static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200637{
638 int ret;
639
640 if (pre_cmd) {
641 ret = system(pre_cmd);
642 if (ret)
643 return ret;
644 }
645
646 if (sync_run)
647 sync();
648
649 ret = __run_perf_stat(argc, argv);
650 if (ret)
651 return ret;
652
653 if (post_cmd) {
654 ret = system(post_cmd);
655 if (ret)
656 return ret;
657 }
658
659 return ret;
660}
661
Andi Kleend73515c2015-03-11 07:16:27 -0700662static void print_running(u64 run, u64 ena)
663{
664 if (csv_output) {
665 fprintf(output, "%s%" PRIu64 "%s%.2f",
666 csv_sep,
667 run,
668 csv_sep,
669 ena ? 100.0 * run / ena : 100.0);
670 } else if (run != ena) {
671 fprintf(output, " (%.2f%%)", 100.0 * run / ena);
672 }
673}
674
Ingo Molnarf99844c2011-04-27 05:35:39 +0200675static void print_noise_pct(double total, double avg)
676{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800677 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200678
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700679 if (csv_output)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200680 fprintf(output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600681 else if (pct)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200682 fprintf(output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200683}
684
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200685static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200686{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200687 struct perf_stat *ps;
688
Peter Zijlstra849abde2009-09-04 18:23:38 +0200689 if (run_count == 1)
690 return;
691
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200692 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200693 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200694}
695
Stephane Eranian12c08a92013-02-14 13:57:29 +0100696static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200697{
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100698 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100699 case AGGR_CORE:
700 fprintf(output, "S%d-C%*d%s%*d%s",
701 cpu_map__id_to_socket(id),
702 csv_output ? 0 : -8,
703 cpu_map__id_to_cpu(id),
704 csv_sep,
705 csv_output ? 0 : 4,
706 nr,
707 csv_sep);
708 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100709 case AGGR_SOCKET:
710 fprintf(output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100711 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100712 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100713 csv_sep,
714 csv_output ? 0 : 4,
715 nr,
716 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100717 break;
718 case AGGR_NONE:
719 fprintf(output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200720 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100721 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100722 break;
723 case AGGR_GLOBAL:
724 default:
725 break;
726 }
727}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200728
Andi Kleenda88c7f2014-09-24 13:50:46 -0700729static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100730{
731 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100732 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600733 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100734
Stephane Eranian410136f2013-11-12 17:58:49 +0100735 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
736 fmt_n = csv_output ? "%s" : "%-25s";
737
Andi Kleenda88c7f2014-09-24 13:50:46 -0700738 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100739
David Ahern4bbe5a62013-09-28 14:28:00 -0600740 scnprintf(name, sizeof(name), "%s%s",
741 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100742
743 fprintf(output, fmt_v, msecs, csv_sep);
744
745 if (csv_output)
746 fprintf(output, "%s%s", evsel->unit, csv_sep);
747 else
748 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
749
750 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200751
Stephane Eranian023695d2011-02-14 11:20:01 +0200752 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200753 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200754
Stephane Eranian13370a92013-01-29 12:47:44 +0100755 if (csv_output || interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200756 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200757
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200758 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200759 fprintf(output, " # %8.3f CPUs utilized ",
760 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900761 else
762 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200763}
764
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200765static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
766{
767 double sc = evsel->scale;
768 const char *fmt;
769 int cpu = cpu_map__id_to_cpu(id);
770
771 if (csv_output) {
772 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
773 } else {
774 if (big_num)
775 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
776 else
777 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
778 }
779
780 aggr_printout(evsel, id, nr);
781
782 if (aggr_mode == AGGR_GLOBAL)
783 cpu = 0;
784
785 fprintf(output, fmt, avg, csv_sep);
786
787 if (evsel->unit)
788 fprintf(output, "%-*s%s",
789 csv_output ? 0 : unit_width,
790 evsel->unit, csv_sep);
791
792 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
793
794 if (evsel->cgrp)
795 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
796
797 if (csv_output || interval)
798 return;
799
Jiri Olsaf87027b2015-06-03 16:25:59 +0200800 perf_stat__print_shadow_stats(output, evsel, avg, cpu, aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200801}
802
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100803static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100804{
805 struct perf_evsel *counter;
Stephane Eranian582ec0822013-07-05 19:06:45 +0200806 int cpu, cpu2, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100807 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100808 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100809
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100810 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100811 return;
812
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100813 for (s = 0; s < aggr_map->nr; s++) {
814 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300815 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100816 val = ena = run = 0;
817 nr = 0;
818 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200819 cpu2 = perf_evsel__cpus(counter)->map[cpu];
820 s2 = aggr_get_id(evsel_list->cpus, cpu2);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100821 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100822 continue;
823 val += counter->counts->cpu[cpu].val;
824 ena += counter->counts->cpu[cpu].ena;
825 run += counter->counts->cpu[cpu].run;
826 nr++;
827 }
828 if (prefix)
829 fprintf(output, "%s", prefix);
830
831 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200832 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100833
Stephane Eranian410136f2013-11-12 17:58:49 +0100834 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100835 csv_output ? 0 : 18,
836 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100837 csv_sep);
838
839 fprintf(output, "%-*s%s",
840 csv_output ? 0 : unit_width,
841 counter->unit, csv_sep);
842
843 fprintf(output, "%*s",
844 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100845 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100846
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100847 if (counter->cgrp)
848 fprintf(output, "%s%s",
849 csv_sep, counter->cgrp->name);
850
Andi Kleend73515c2015-03-11 07:16:27 -0700851 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100852 fputc('\n', output);
853 continue;
854 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100855 uval = val * counter->scale;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100856
857 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100858 nsec_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100859 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100860 abs_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100861
Andi Kleend73515c2015-03-11 07:16:27 -0700862 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100863 print_noise(counter, 1.0);
864
Andi Kleend73515c2015-03-11 07:16:27 -0700865 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100866 fputc('\n', output);
867 }
868 }
869}
870
Ingo Molnar42202dd2009-06-13 14:57:28 +0200871/*
872 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200873 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200874 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100875static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200876{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200877 struct perf_stat *ps = counter->priv;
878 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200879 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100880 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700881 double avg_enabled, avg_running;
882
883 avg_enabled = avg_stats(&ps->res_stats[1]);
884 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200885
Stephane Eranian13370a92013-01-29 12:47:44 +0100886 if (prefix)
887 fprintf(output, "%s", prefix);
888
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000889 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100890 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200891 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600892 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100893 csv_sep);
894 fprintf(output, "%-*s%s",
895 csv_output ? 0 : unit_width,
896 counter->unit, csv_sep);
897 fprintf(output, "%*s",
898 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300899 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200900
901 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200902 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200903
Andi Kleend73515c2015-03-11 07:16:27 -0700904 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200905 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200906 return;
907 }
908
Stephane Eranian410136f2013-11-12 17:58:49 +0100909 uval = avg * counter->scale;
910
Ingo Molnar42202dd2009-06-13 14:57:28 +0200911 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100912 nsec_printout(-1, 0, counter, uval);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200913 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100914 abs_printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200915
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700916 print_noise(counter, avg);
917
Andi Kleend73515c2015-03-11 07:16:27 -0700918 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200919 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200920}
921
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200922/*
923 * Print out the results of a single counter:
924 * does not use aggregated count in system-wide
925 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100926static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200927{
928 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100929 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200930 int cpu;
931
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800932 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200933 val = counter->counts->cpu[cpu].val;
934 ena = counter->counts->cpu[cpu].ena;
935 run = counter->counts->cpu[cpu].run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100936
937 if (prefix)
938 fprintf(output, "%s", prefix);
939
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200940 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100941 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200942 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800943 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200944 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600945 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100946 csv_sep);
947
948 fprintf(output, "%-*s%s",
949 csv_output ? 0 : unit_width,
950 counter->unit, csv_sep);
951
952 fprintf(output, "%*s",
953 csv_output ? 0 : -25,
954 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200955
Stephane Eranian023695d2011-02-14 11:20:01 +0200956 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200957 fprintf(output, "%s%s",
958 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200959
Andi Kleend73515c2015-03-11 07:16:27 -0700960 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200961 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200962 continue;
963 }
964
Stephane Eranian410136f2013-11-12 17:58:49 +0100965 uval = val * counter->scale;
966
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200967 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100968 nsec_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200969 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100970 abs_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200971
Andi Kleend73515c2015-03-11 07:16:27 -0700972 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200973 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700974 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200975
Stephane Eranian4aa90152011-08-15 22:22:33 +0200976 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200977 }
978}
979
Ingo Molnar42202dd2009-06-13 14:57:28 +0200980static void print_stat(int argc, const char **argv)
981{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200982 struct perf_evsel *counter;
983 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200984
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200985 fflush(stdout);
986
Stephane Eraniand7470b62010-12-01 18:49:05 +0200987 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200988 fprintf(output, "\n");
989 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600990 if (target.system_wide)
991 fprintf(output, "\'system wide");
992 else if (target.cpu_list)
993 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300994 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200995 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200996 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200997 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900998 } else if (target.pid)
999 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001000 else
Namhyung Kim20f946b2012-04-26 14:15:16 +09001001 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +02001002
Stephane Eranian4aa90152011-08-15 22:22:33 +02001003 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001004 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001005 fprintf(output, " (%d runs)", run_count);
1006 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +02001007 }
Ingo Molnar2996f5d2009-05-29 09:10:54 +02001008
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001009 switch (aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +01001010 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001011 case AGGR_SOCKET:
1012 print_aggr(NULL);
1013 break;
1014 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001015 evlist__for_each(evsel_list, counter)
Stephane Eranian13370a92013-01-29 12:47:44 +01001016 print_counter_aggr(counter, NULL);
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001017 break;
1018 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001019 evlist__for_each(evsel_list, counter)
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001020 print_counter(counter, NULL);
1021 break;
1022 default:
1023 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +02001024 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001025
Stephane Eraniand7470b62010-12-01 18:49:05 +02001026 if (!csv_output) {
Ingo Molnarc33052572011-05-19 14:01:42 +02001027 if (!null_run)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001028 fprintf(output, "\n");
1029 fprintf(output, " %17.9f seconds time elapsed",
Stephane Eraniand7470b62010-12-01 18:49:05 +02001030 avg_stats(&walltime_nsecs_stats)/1e9);
1031 if (run_count > 1) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02001032 fprintf(output, " ");
Ingo Molnarf99844c2011-04-27 05:35:39 +02001033 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
1034 avg_stats(&walltime_nsecs_stats));
Stephane Eraniand7470b62010-12-01 18:49:05 +02001035 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001036 fprintf(output, "\n\n");
Ingo Molnar566747e2009-06-27 06:24:32 +02001037 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001038}
1039
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001040static volatile int signr = -1;
1041
Ingo Molnar52425192009-05-26 09:17:18 +02001042static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001043{
Stephane Eranian13370a92013-01-29 12:47:44 +01001044 if ((child_pid == -1) || interval)
Liming Wang60666c62009-12-31 16:05:50 +08001045 done = 1;
1046
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001047 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001048 /*
1049 * render child_pid harmless
1050 * won't send SIGTERM to a random
1051 * process in case of race condition
1052 * and fast PID recycling
1053 */
1054 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001055}
1056
1057static void sig_atexit(void)
1058{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001059 sigset_t set, oset;
1060
1061 /*
1062 * avoid race condition with SIGCHLD handler
1063 * in skip_signal() which is modifying child_pid
1064 * goal is to avoid send SIGTERM to a random
1065 * process
1066 */
1067 sigemptyset(&set);
1068 sigaddset(&set, SIGCHLD);
1069 sigprocmask(SIG_BLOCK, &set, &oset);
1070
Chris Wilson933da832009-10-04 01:35:01 +01001071 if (child_pid != -1)
1072 kill(child_pid, SIGTERM);
1073
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001074 sigprocmask(SIG_SETMASK, &oset, NULL);
1075
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001076 if (signr == -1)
1077 return;
1078
1079 signal(signr, SIG_DFL);
1080 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001081}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001082
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001083static int stat__set_big_num(const struct option *opt __maybe_unused,
1084 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001085{
1086 big_num_opt = unset ? 0 : 1;
1087 return 0;
1088}
1089
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001090static int perf_stat_init_aggr_mode(void)
1091{
1092 switch (aggr_mode) {
1093 case AGGR_SOCKET:
1094 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1095 perror("cannot build socket map");
1096 return -1;
1097 }
1098 aggr_get_id = cpu_map__get_socket;
1099 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001100 case AGGR_CORE:
1101 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1102 perror("cannot build core map");
1103 return -1;
1104 }
1105 aggr_get_id = cpu_map__get_core;
1106 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001107 case AGGR_NONE:
1108 case AGGR_GLOBAL:
1109 default:
1110 break;
1111 }
1112 return 0;
1113}
1114
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001115/*
1116 * Add default attributes, if there were no attributes specified or
1117 * if -d/--detailed, -d -d or -d -d -d is used:
1118 */
1119static int add_default_attributes(void)
1120{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001121 struct perf_event_attr default_attrs[] = {
1122
1123 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1124 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1125 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1126 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1127
1128 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1129 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1130 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1131 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1132 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1133 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1134
1135};
1136
1137/*
1138 * Detailed stats (-d), covering the L1 and last level data caches:
1139 */
1140 struct perf_event_attr detailed_attrs[] = {
1141
1142 { .type = PERF_TYPE_HW_CACHE,
1143 .config =
1144 PERF_COUNT_HW_CACHE_L1D << 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_L1D << 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_LL << 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_LL << 0 |
1163 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1164 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1165};
1166
1167/*
1168 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1169 */
1170 struct perf_event_attr very_detailed_attrs[] = {
1171
1172 { .type = PERF_TYPE_HW_CACHE,
1173 .config =
1174 PERF_COUNT_HW_CACHE_L1I << 0 |
1175 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1176 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1177
1178 { .type = PERF_TYPE_HW_CACHE,
1179 .config =
1180 PERF_COUNT_HW_CACHE_L1I << 0 |
1181 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1182 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1183
1184 { .type = PERF_TYPE_HW_CACHE,
1185 .config =
1186 PERF_COUNT_HW_CACHE_DTLB << 0 |
1187 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1188 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1189
1190 { .type = PERF_TYPE_HW_CACHE,
1191 .config =
1192 PERF_COUNT_HW_CACHE_DTLB << 0 |
1193 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1194 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1195
1196 { .type = PERF_TYPE_HW_CACHE,
1197 .config =
1198 PERF_COUNT_HW_CACHE_ITLB << 0 |
1199 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1200 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1201
1202 { .type = PERF_TYPE_HW_CACHE,
1203 .config =
1204 PERF_COUNT_HW_CACHE_ITLB << 0 |
1205 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1206 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1207
1208};
1209
1210/*
1211 * Very, very detailed stats (-d -d -d), adding prefetch events:
1212 */
1213 struct perf_event_attr very_very_detailed_attrs[] = {
1214
1215 { .type = PERF_TYPE_HW_CACHE,
1216 .config =
1217 PERF_COUNT_HW_CACHE_L1D << 0 |
1218 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1219 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1220
1221 { .type = PERF_TYPE_HW_CACHE,
1222 .config =
1223 PERF_COUNT_HW_CACHE_L1D << 0 |
1224 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1225 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1226};
1227
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001228 /* Set attrs if no event is selected and !null_run: */
1229 if (null_run)
1230 return 0;
1231
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001232 if (transaction_run) {
1233 int err;
1234 if (pmu_have_event("cpu", "cycles-ct") &&
1235 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001236 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001237 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001238 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1239 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001240 fprintf(stderr, "Cannot set up transaction events\n");
1241 return -1;
1242 }
1243 return 0;
1244 }
1245
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001246 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 Melob070a5472012-10-01 15:20:58 -03001277 int output_fd = 0;
1278 const char *output_name = NULL;
1279 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001280 OPT_BOOLEAN('T', "transaction", &transaction_run,
1281 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001282 OPT_CALLBACK('e', "event", &evsel_list, "event",
1283 "event selector. use 'perf list' to list available events",
1284 parse_events_option),
1285 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1286 "event filter", parse_filter),
1287 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1288 "child tasks do not inherit counters"),
1289 OPT_STRING('p', "pid", &target.pid, "pid",
1290 "stat events on existing process id"),
1291 OPT_STRING('t', "tid", &target.tid, "tid",
1292 "stat events on existing thread id"),
1293 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1294 "system-wide collection from all CPUs"),
1295 OPT_BOOLEAN('g', "group", &group,
1296 "put the counters into a counter group"),
1297 OPT_BOOLEAN('c', "scale", &scale, "scale/normalize counters"),
1298 OPT_INCR('v', "verbose", &verbose,
1299 "be more verbose (show counter open errors, etc)"),
1300 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001301 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001302 OPT_BOOLEAN('n', "null", &null_run,
1303 "null run - dont start any counters"),
1304 OPT_INCR('d', "detailed", &detailed_run,
1305 "detailed run - start a lot of events"),
1306 OPT_BOOLEAN('S', "sync", &sync_run,
1307 "call sync() before starting a run"),
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001308 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001309 "print large numbers with thousands\' separators",
1310 stat__set_big_num),
1311 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1312 "list of cpus to monitor in system-wide"),
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001313 OPT_SET_UINT('A', "no-aggr", &aggr_mode,
1314 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001315 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1316 "print counts with custom separator"),
1317 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1318 "monitor event in cgroup name only", parse_cgroups),
1319 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1320 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1321 OPT_INTEGER(0, "log-fd", &output_fd,
1322 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001323 OPT_STRING(0, "pre", &pre_cmd, "command",
1324 "command to run prior to the measured command"),
1325 OPT_STRING(0, "post", &post_cmd, "command",
1326 "command to run after to the measured command"),
Stephane Eranian13370a92013-01-29 12:47:44 +01001327 OPT_UINTEGER('I', "interval-print", &interval,
1328 "print counts at regular interval in ms (>= 100)"),
Stephane Eraniand4304952013-02-14 13:57:28 +01001329 OPT_SET_UINT(0, "per-socket", &aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001330 "aggregate counts per processor socket", AGGR_SOCKET),
Stephane Eranian12c08a92013-02-14 13:57:29 +01001331 OPT_SET_UINT(0, "per-core", &aggr_mode,
1332 "aggregate counts per physical processor core", AGGR_CORE),
Andi Kleen41191682013-08-02 17:41:11 -07001333 OPT_UINTEGER('D', "delay", &initial_delay,
1334 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001335 OPT_END()
1336 };
1337 const char * const stat_usage[] = {
1338 "perf stat [<options>] [<command>]",
1339 NULL
1340 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001341 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001342 const char *mode;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001343
Stephane Eranian5af52b52010-05-18 15:00:01 +02001344 setlocale(LC_ALL, "");
1345
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001346 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001347 if (evsel_list == NULL)
1348 return -ENOMEM;
1349
Anton Blancharda0541232009-07-22 23:04:12 +10001350 argc = parse_options(argc, argv, options, stat_usage,
1351 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001352
Stephane Eranian4aa90152011-08-15 22:22:33 +02001353 output = stderr;
1354 if (output_name && strcmp(output_name, "-"))
1355 output = NULL;
1356
Jim Cromie56f3bae2011-09-07 17:14:00 -06001357 if (output_name && output_fd) {
1358 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001359 parse_options_usage(stat_usage, options, "o", 1);
1360 parse_options_usage(NULL, options, "log-fd", 0);
1361 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001362 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001363
1364 if (output_fd < 0) {
1365 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001366 parse_options_usage(stat_usage, options, "log-fd", 0);
1367 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001368 }
1369
Stephane Eranian4aa90152011-08-15 22:22:33 +02001370 if (!output) {
1371 struct timespec tm;
1372 mode = append_file ? "a" : "w";
1373
1374 output = fopen(output_name, mode);
1375 if (!output) {
1376 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001377 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001378 }
1379 clock_gettime(CLOCK_REALTIME, &tm);
1380 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001381 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001382 mode = append_file ? "a" : "w";
1383 output = fdopen(output_fd, mode);
1384 if (!output) {
1385 perror("Failed opening logfd");
1386 return -errno;
1387 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001388 }
1389
Jim Cromied4ffd042011-09-07 17:14:03 -06001390 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001391 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001392 if (!strcmp(csv_sep, "\\t"))
1393 csv_sep = "\t";
1394 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001395 csv_sep = DEFAULT_SEPARATOR;
1396
1397 /*
1398 * let the spreadsheet do the pretty-printing
1399 */
1400 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001401 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001402 if (big_num_opt == 1) {
1403 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001404 parse_options_usage(stat_usage, options, "B", 1);
1405 parse_options_usage(NULL, options, "x", 1);
1406 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001407 } else /* Nope, so disable big number formatting */
1408 big_num = false;
1409 } else if (big_num_opt == 0) /* User passed --no-big-num */
1410 big_num = false;
1411
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001412 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001413 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001414
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001415 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001416 pr_err("Run count must be a positive number\n");
1417 parse_options_usage(stat_usage, options, "r", 1);
1418 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001419 } else if (run_count == 0) {
1420 forever = true;
1421 run_count = 1;
1422 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001423
Stephane Eranian023695d2011-02-14 11:20:01 +02001424 /* no_aggr, cgroup are for system-wide only */
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001425 if ((aggr_mode != AGGR_GLOBAL || nr_cgroups) &&
1426 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001427 fprintf(stderr, "both cgroup and no-aggregation "
1428 "modes only available in system-wide mode\n");
1429
Namhyung Kimcc03c542013-11-01 16:33:15 +09001430 parse_options_usage(stat_usage, options, "G", 1);
1431 parse_options_usage(NULL, options, "A", 1);
1432 parse_options_usage(NULL, options, "a", 1);
1433 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001434 }
1435
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001436 if (add_default_attributes())
1437 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001438
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001439 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001440
Namhyung Kim77a6f012012-05-07 14:09:04 +09001441 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001442 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001443 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001444 parse_options_usage(stat_usage, options, "p", 1);
1445 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001446 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001447 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001448 parse_options_usage(stat_usage, options, "C", 1);
1449 parse_options_usage(NULL, options, "a", 1);
1450 }
1451 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001452 }
Stephane Eranian13370a92013-01-29 12:47:44 +01001453 if (interval && interval < 100) {
1454 pr_err("print interval must be >= 100ms\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001455 parse_options_usage(stat_usage, options, "I", 1);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001456 goto out;
Stephane Eranian13370a92013-01-29 12:47:44 +01001457 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001458
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001459 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001460 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001461
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001462 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001463 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001464
Ingo Molnar58d7e992009-05-15 11:03:23 +02001465 /*
1466 * We dont want to block the signals - that would cause
1467 * child tasks to inherit that and Ctrl-C would not work.
1468 * What we want is for Ctrl-C to work in the exec()-ed
1469 * task, but being ignored by perf stat itself:
1470 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001471 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001472 if (!forever)
1473 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001474 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001475 signal(SIGALRM, skip_signal);
1476 signal(SIGABRT, skip_signal);
1477
Ingo Molnar42202dd2009-06-13 14:57:28 +02001478 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001479 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001480 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001481 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1482 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001483
Ingo Molnar42202dd2009-06-13 14:57:28 +02001484 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001485 if (forever && status != -1) {
1486 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001487 perf_stat__reset_stats(evsel_list);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001488 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001489 }
1490
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001491 if (!forever && status != -1 && !interval)
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -03001492 print_stat(argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001493
1494 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001495out:
1496 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001497 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001498}