blob: 2e70610649a1d2e0b72ebe854eaeef4e1a449eba [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"
Jiri Olsad8095602015-08-07 12:51:03 +020061#include "util/counts.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020062
Peter Zijlstra1f16c572012-10-23 13:40:14 +020063#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020064#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020065#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020066
Stephane Eraniand7470b62010-12-01 18:49:05 +020067#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060068#define CNTR_NOT_SUPPORTED "<not supported>"
69#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020070
Jiri Olsad4f63a42015-06-26 11:29:26 +020071static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010072
Andi Kleen4cabc3d2013-08-21 16:47:26 -070073/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020074static const char *transaction_attrs = {
75 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070076 "{"
77 "instructions,"
78 "cycles,"
79 "cpu/cycles-t/,"
80 "cpu/tx-start/,"
81 "cpu/el-start/,"
82 "cpu/cycles-ct/"
83 "}"
84};
85
86/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +020087static const char * transaction_limited_attrs = {
88 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070089 "{"
90 "instructions,"
91 "cycles,"
92 "cpu/cycles-t/,"
93 "cpu/tx-start/"
94 "}"
95};
96
Robert Richter666e6d42012-04-05 18:26:27 +020097static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020098
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -030099static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900100 .uid = UINT_MAX,
101};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530102
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100103typedef int (*aggr_get_id_t)(struct cpu_map *m, int cpu);
104
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530105static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200106static bool no_inherit = false;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200107static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000108static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200109static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700110static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200111static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200112static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200113static const char *csv_sep = NULL;
114static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800115static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200116static const char *pre_cmd = NULL;
117static const char *post_cmd = NULL;
118static bool sync_run = false;
Andi Kleen41191682013-08-02 17:41:11 -0700119static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100120static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500121static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100122static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100123static struct cpu_map *aggr_map;
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100124static aggr_get_id_t aggr_get_id;
Jiri Olsae0547312015-11-05 15:40:45 +0100125static bool append_file;
126static const char *output_name;
127static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200128
Liming Wang60666c62009-12-31 16:05:50 +0800129static volatile int done = 0;
130
Jiri Olsa421a50f2015-07-21 14:31:22 +0200131static struct perf_stat_config stat_config = {
132 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200133 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200134};
135
Stephane Eranian13370a92013-01-29 12:47:44 +0100136static inline void diff_timespec(struct timespec *r, struct timespec *a,
137 struct timespec *b)
138{
139 r->tv_sec = a->tv_sec - b->tv_sec;
140 if (a->tv_nsec < b->tv_nsec) {
141 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
142 r->tv_sec--;
143 } else {
144 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
145 }
146}
147
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200148static void perf_stat__reset_stats(void)
149{
150 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200151 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200152}
153
Jiri Olsacac21422012-11-12 18:34:00 +0100154static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200155{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200156 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200157
Jiri Olsa711a5722015-07-21 14:31:23 +0200158 if (stat_config.scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200159 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
160 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200161
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200162 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300163
Jiri Olsa6acd8e92015-11-25 16:36:54 +0100164 /*
165 * Some events get initialized with sample_(period/type) set,
166 * like tracepoints. Clear it up for counting.
167 */
168 attr->sample_period = 0;
169 attr->sample_type = 0;
170
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100171 /*
172 * Disabling all counters initially, they will be enabled
173 * either manually by us or by kernel via enable_on_exec
174 * set later.
175 */
176 if (perf_evsel__is_group_leader(evsel))
177 attr->disabled = 1;
178
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300179 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300180 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200181
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300182 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Andi Kleen41191682013-08-02 17:41:11 -0700183 if (!initial_delay)
184 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200185 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300186
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300187 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200188}
189
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200190/*
191 * Does the counter have nsecs as a unit?
192 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200193static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200194{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200195 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
196 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200197 return 1;
198
199 return 0;
200}
201
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200202/*
203 * Read out the results of a single counter:
204 * do not aggregate counts across CPUs in system-wide mode
205 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200206static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200207{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100208 int nthreads = thread_map__nr(evsel_list->threads);
209 int ncpus = perf_evsel__nr_cpus(counter);
210 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200211
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000212 if (!counter->supported)
213 return -ENOENT;
214
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100215 if (counter->system_wide)
216 nthreads = 1;
217
218 for (thread = 0; thread < nthreads; thread++) {
219 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200220 struct perf_counts_values *count;
221
222 count = perf_counts(counter->counts, cpu, thread);
223 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100224 return -1;
225 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200226 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200227
228 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200229}
230
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200231static void read_counters(bool close_counters)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200232{
233 struct perf_evsel *counter;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200234
235 evlist__for_each(evsel_list, counter) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200236 if (read_counter(counter))
Andi Kleen245bad82015-09-01 15:52:46 -0700237 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200238
Jiri Olsaf80010e2015-07-21 14:31:27 +0200239 if (perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200240 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200241
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200242 if (close_counters) {
Jiri Olsa106a94a2015-06-26 11:29:19 +0200243 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
244 thread_map__nr(evsel_list->threads));
245 }
246 }
247}
248
Jiri Olsaba411a92015-06-26 11:29:24 +0200249static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100250{
Stephane Eranian13370a92013-01-29 12:47:44 +0100251 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100252
Jiri Olsa106a94a2015-06-26 11:29:19 +0200253 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100254
Stephane Eranian13370a92013-01-29 12:47:44 +0100255 clock_gettime(CLOCK_MONOTONIC, &ts);
256 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100257
Jiri Olsad4f63a42015-06-26 11:29:26 +0200258 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100259}
260
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100261static void enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700262{
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100263 if (initial_delay)
Andi Kleen41191682013-08-02 17:41:11 -0700264 usleep(initial_delay * 1000);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100265
266 /*
267 * We need to enable counters only if:
268 * - we don't have tracee (attaching to task or cpu)
269 * - we have initial delay configured
270 */
271 if (!target__none(&target) || initial_delay)
Jiri Olsaab46db02015-12-03 10:06:43 +0100272 perf_evlist__enable(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700273}
274
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300275static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300276
277/*
278 * perf_evlist__prepare_workload will send a SIGUSR1
279 * if the fork fails, since we asked by setting its
280 * want_signal to true.
281 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300282static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
283 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300284{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300285 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300286}
287
Namhyung Kimacf28922013-03-11 16:43:18 +0900288static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200289{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200290 int interval = stat_config.interval;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300291 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200292 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100293 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100294 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100295 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200296 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300297 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200298
Stephane Eranian13370a92013-01-29 12:47:44 +0100299 if (interval) {
300 ts.tv_sec = interval / 1000;
301 ts.tv_nsec = (interval % 1000) * 1000000;
302 } else {
303 ts.tv_sec = 1;
304 ts.tv_nsec = 0;
305 }
306
Liming Wang60666c62009-12-31 16:05:50 +0800307 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300308 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
309 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900310 perror("failed to prepare workload");
311 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800312 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900313 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000314 }
315
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200316 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300317 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200318
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300319 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100320 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600321 /*
322 * PPC returns ENXIO for HW counters until 2.6.37
323 * (behavior changed with commit b0a873e).
324 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100325 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600326 errno == ENOENT || errno == EOPNOTSUPP ||
327 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600328 if (verbose)
329 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300330 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600331 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400332
333 if ((counter->leader != counter) ||
334 !(counter->leader->nr_members > 1))
335 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600336 }
Ingo Molnarede70292011-04-28 08:48:42 +0200337
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300338 perf_evsel__open_strerror(counter, &target,
339 errno, msg, sizeof(msg));
340 ui__error("%s\n", msg);
341
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200342 if (child_pid != -1)
343 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600344
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200345 return -1;
346 }
David Ahern2cee77c2011-05-30 08:55:59 -0600347 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100348
349 l = strlen(counter->unit);
350 if (l > unit_width)
351 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300352 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200353
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300354 if (perf_evlist__apply_filters(evsel_list, &counter)) {
355 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
356 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000357 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100358 return -1;
359 }
360
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200361 /*
362 * Enable counters and exec the command:
363 */
364 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100365 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200366
Liming Wang60666c62009-12-31 16:05:50 +0800367 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900368 perf_evlist__start_workload(evsel_list);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100369 enable_counters();
Namhyung Kimacf28922013-03-11 16:43:18 +0900370
Stephane Eranian13370a92013-01-29 12:47:44 +0100371 if (interval) {
372 while (!waitpid(child_pid, &status, WNOHANG)) {
373 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200374 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100375 }
376 }
Liming Wang60666c62009-12-31 16:05:50 +0800377 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300378
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300379 if (workload_exec_errno) {
380 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
381 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300382 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300383 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300384
Andi Kleen33e49ea2011-09-15 14:31:40 -0700385 if (WIFSIGNALED(status))
386 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800387 } else {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100388 enable_counters();
Stephane Eranian13370a92013-01-29 12:47:44 +0100389 while (!done) {
390 nanosleep(&ts, NULL);
391 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200392 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100393 }
Liming Wang60666c62009-12-31 16:05:50 +0800394 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200395
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200396 t1 = rdclock();
397
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200398 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200399
Jiri Olsa106a94a2015-06-26 11:29:19 +0200400 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200401
Ingo Molnar42202dd2009-06-13 14:57:28 +0200402 return WEXITSTATUS(status);
403}
404
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300405static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200406{
407 int ret;
408
409 if (pre_cmd) {
410 ret = system(pre_cmd);
411 if (ret)
412 return ret;
413 }
414
415 if (sync_run)
416 sync();
417
418 ret = __run_perf_stat(argc, argv);
419 if (ret)
420 return ret;
421
422 if (post_cmd) {
423 ret = system(post_cmd);
424 if (ret)
425 return ret;
426 }
427
428 return ret;
429}
430
Andi Kleend73515c2015-03-11 07:16:27 -0700431static void print_running(u64 run, u64 ena)
432{
433 if (csv_output) {
Jiri Olsa58215222015-07-21 14:31:24 +0200434 fprintf(stat_config.output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700435 csv_sep,
436 run,
437 csv_sep,
438 ena ? 100.0 * run / ena : 100.0);
439 } else if (run != ena) {
Jiri Olsa58215222015-07-21 14:31:24 +0200440 fprintf(stat_config.output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700441 }
442}
443
Ingo Molnarf99844c2011-04-27 05:35:39 +0200444static void print_noise_pct(double total, double avg)
445{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800446 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200447
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700448 if (csv_output)
Jiri Olsa58215222015-07-21 14:31:24 +0200449 fprintf(stat_config.output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600450 else if (pct)
Jiri Olsa58215222015-07-21 14:31:24 +0200451 fprintf(stat_config.output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200452}
453
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200454static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200455{
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200456 struct perf_stat_evsel *ps;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200457
Peter Zijlstra849abde2009-09-04 18:23:38 +0200458 if (run_count == 1)
459 return;
460
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200461 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200462 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200463}
464
Stephane Eranian12c08a92013-02-14 13:57:29 +0100465static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200466{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200467 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100468 case AGGR_CORE:
Jiri Olsa58215222015-07-21 14:31:24 +0200469 fprintf(stat_config.output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100470 cpu_map__id_to_socket(id),
471 csv_output ? 0 : -8,
472 cpu_map__id_to_cpu(id),
473 csv_sep,
474 csv_output ? 0 : 4,
475 nr,
476 csv_sep);
477 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100478 case AGGR_SOCKET:
Jiri Olsa58215222015-07-21 14:31:24 +0200479 fprintf(stat_config.output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100480 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100481 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100482 csv_sep,
483 csv_output ? 0 : 4,
484 nr,
485 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100486 break;
487 case AGGR_NONE:
Jiri Olsa58215222015-07-21 14:31:24 +0200488 fprintf(stat_config.output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200489 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100490 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100491 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200492 case AGGR_THREAD:
Jiri Olsa58215222015-07-21 14:31:24 +0200493 fprintf(stat_config.output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200494 csv_output ? 0 : 16,
495 thread_map__comm(evsel->threads, id),
496 csv_output ? 0 : -8,
497 thread_map__pid(evsel->threads, id),
498 csv_sep);
499 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100500 case AGGR_GLOBAL:
Jiri Olsa208df992015-10-16 12:41:04 +0200501 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100502 default:
503 break;
504 }
505}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200506
Andi Kleenda88c7f2014-09-24 13:50:46 -0700507static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100508{
Jiri Olsa58215222015-07-21 14:31:24 +0200509 FILE *output = stat_config.output;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100510 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100511 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600512 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100513
Stephane Eranian410136f2013-11-12 17:58:49 +0100514 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
515 fmt_n = csv_output ? "%s" : "%-25s";
516
Andi Kleenda88c7f2014-09-24 13:50:46 -0700517 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100518
David Ahern4bbe5a62013-09-28 14:28:00 -0600519 scnprintf(name, sizeof(name), "%s%s",
520 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100521
522 fprintf(output, fmt_v, msecs, csv_sep);
523
524 if (csv_output)
525 fprintf(output, "%s%s", evsel->unit, csv_sep);
526 else
527 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
528
529 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200530
Stephane Eranian023695d2011-02-14 11:20:01 +0200531 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200532 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200533}
534
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200535static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
536{
Jiri Olsa58215222015-07-21 14:31:24 +0200537 FILE *output = stat_config.output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200538 double sc = evsel->scale;
539 const char *fmt;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200540
541 if (csv_output) {
542 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
543 } else {
544 if (big_num)
545 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
546 else
547 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
548 }
549
550 aggr_printout(evsel, id, nr);
551
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200552 fprintf(output, fmt, avg, csv_sep);
553
554 if (evsel->unit)
555 fprintf(output, "%-*s%s",
556 csv_output ? 0 : unit_width,
557 evsel->unit, csv_sep);
558
559 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
560
561 if (evsel->cgrp)
562 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Andi Kleeneedfcb42015-11-02 17:50:21 -0800563}
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200564
Andi Kleeneedfcb42015-11-02 17:50:21 -0800565static void printout(int id, int nr, struct perf_evsel *counter, double uval)
566{
567 int cpu = cpu_map__id_to_cpu(id);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200568
Andi Kleeneedfcb42015-11-02 17:50:21 -0800569 if (stat_config.aggr_mode == AGGR_GLOBAL)
570 cpu = 0;
571
572 if (nsec_counter(counter))
573 nsec_printout(id, nr, counter, uval);
574 else
575 abs_printout(id, nr, counter, uval);
576
577 if (!csv_output && !stat_config.interval)
578 perf_stat__print_shadow_stats(stat_config.output, counter,
579 uval, cpu,
580 stat_config.aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200581}
582
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100583static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100584{
Jiri Olsa58215222015-07-21 14:31:24 +0200585 FILE *output = stat_config.output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100586 struct perf_evsel *counter;
Kan Liang601083c2015-07-02 03:08:43 -0400587 int cpu, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100588 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100589 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100590
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100591 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100592 return;
593
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100594 for (s = 0; s < aggr_map->nr; s++) {
595 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300596 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100597 val = ena = run = 0;
598 nr = 0;
599 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Kan Liang601083c2015-07-02 03:08:43 -0400600 s2 = aggr_get_id(perf_evsel__cpus(counter), cpu);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100601 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100602 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200603 val += perf_counts(counter->counts, cpu, 0)->val;
604 ena += perf_counts(counter->counts, cpu, 0)->ena;
605 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100606 nr++;
607 }
608 if (prefix)
609 fprintf(output, "%s", prefix);
610
611 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200612 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100613
Stephane Eranian410136f2013-11-12 17:58:49 +0100614 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100615 csv_output ? 0 : 18,
616 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100617 csv_sep);
618
619 fprintf(output, "%-*s%s",
620 csv_output ? 0 : unit_width,
621 counter->unit, csv_sep);
622
623 fprintf(output, "%*s",
624 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100625 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100626
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100627 if (counter->cgrp)
628 fprintf(output, "%s%s",
629 csv_sep, counter->cgrp->name);
630
Andi Kleend73515c2015-03-11 07:16:27 -0700631 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100632 fputc('\n', output);
633 continue;
634 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100635 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800636 printout(id, nr, counter, uval);
Andi Kleend73515c2015-03-11 07:16:27 -0700637 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100638 print_noise(counter, 1.0);
639
Andi Kleend73515c2015-03-11 07:16:27 -0700640 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100641 fputc('\n', output);
642 }
643 }
644}
645
Jiri Olsa32b8af82015-06-26 11:29:27 +0200646static void print_aggr_thread(struct perf_evsel *counter, char *prefix)
647{
Jiri Olsa58215222015-07-21 14:31:24 +0200648 FILE *output = stat_config.output;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200649 int nthreads = thread_map__nr(counter->threads);
650 int ncpus = cpu_map__nr(counter->cpus);
651 int cpu, thread;
652 double uval;
653
654 for (thread = 0; thread < nthreads; thread++) {
655 u64 ena = 0, run = 0, val = 0;
656
657 for (cpu = 0; cpu < ncpus; cpu++) {
658 val += perf_counts(counter->counts, cpu, thread)->val;
659 ena += perf_counts(counter->counts, cpu, thread)->ena;
660 run += perf_counts(counter->counts, cpu, thread)->run;
661 }
662
663 if (prefix)
664 fprintf(output, "%s", prefix);
665
666 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800667 printout(thread, 0, counter, uval);
Jiri Olsa32b8af82015-06-26 11:29:27 +0200668
669 if (!csv_output)
670 print_noise(counter, 1.0);
671
672 print_running(run, ena);
673 fputc('\n', output);
674 }
675}
676
Ingo Molnar42202dd2009-06-13 14:57:28 +0200677/*
678 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200679 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200680 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100681static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200682{
Jiri Olsa58215222015-07-21 14:31:24 +0200683 FILE *output = stat_config.output;
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200684 struct perf_stat_evsel *ps = counter->priv;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200685 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200686 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100687 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700688 double avg_enabled, avg_running;
689
690 avg_enabled = avg_stats(&ps->res_stats[1]);
691 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200692
Stephane Eranian13370a92013-01-29 12:47:44 +0100693 if (prefix)
694 fprintf(output, "%s", prefix);
695
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000696 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100697 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200698 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600699 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100700 csv_sep);
701 fprintf(output, "%-*s%s",
702 csv_output ? 0 : unit_width,
703 counter->unit, csv_sep);
704 fprintf(output, "%*s",
705 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300706 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200707
708 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200709 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200710
Andi Kleend73515c2015-03-11 07:16:27 -0700711 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200712 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200713 return;
714 }
715
Stephane Eranian410136f2013-11-12 17:58:49 +0100716 uval = avg * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800717 printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200718
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700719 print_noise(counter, avg);
720
Andi Kleend73515c2015-03-11 07:16:27 -0700721 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200722 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200723}
724
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200725/*
726 * Print out the results of a single counter:
727 * does not use aggregated count in system-wide
728 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100729static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200730{
Jiri Olsa58215222015-07-21 14:31:24 +0200731 FILE *output = stat_config.output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200732 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100733 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200734 int cpu;
735
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800736 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200737 val = perf_counts(counter->counts, cpu, 0)->val;
738 ena = perf_counts(counter->counts, cpu, 0)->ena;
739 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100740
741 if (prefix)
742 fprintf(output, "%s", prefix);
743
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200744 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100745 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200746 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800747 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200748 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600749 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100750 csv_sep);
751
752 fprintf(output, "%-*s%s",
753 csv_output ? 0 : unit_width,
754 counter->unit, csv_sep);
755
756 fprintf(output, "%*s",
757 csv_output ? 0 : -25,
758 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200759
Stephane Eranian023695d2011-02-14 11:20:01 +0200760 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200761 fprintf(output, "%s%s",
762 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200763
Andi Kleend73515c2015-03-11 07:16:27 -0700764 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200765 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200766 continue;
767 }
768
Stephane Eranian410136f2013-11-12 17:58:49 +0100769 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800770 printout(cpu, 0, counter, uval);
Andi Kleend73515c2015-03-11 07:16:27 -0700771 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200772 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700773 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200774
Stephane Eranian4aa90152011-08-15 22:22:33 +0200775 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200776 }
777}
778
Jiri Olsad4f63a42015-06-26 11:29:26 +0200779static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200780{
Jiri Olsa58215222015-07-21 14:31:24 +0200781 FILE *output = stat_config.output;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200782 static int num_print_interval;
783
784 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
785
786 if (num_print_interval == 0 && !csv_output) {
Jiri Olsa421a50f2015-07-21 14:31:22 +0200787 switch (stat_config.aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +0200788 case AGGR_SOCKET:
789 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
790 break;
791 case AGGR_CORE:
792 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
793 break;
794 case AGGR_NONE:
795 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
796 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200797 case AGGR_THREAD:
798 fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit");
799 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200800 case AGGR_GLOBAL:
801 default:
802 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
Jiri Olsa208df992015-10-16 12:41:04 +0200803 case AGGR_UNSET:
804 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200805 }
806 }
807
808 if (++num_print_interval == 25)
809 num_print_interval = 0;
810}
811
812static void print_header(int argc, const char **argv)
813{
Jiri Olsa58215222015-07-21 14:31:24 +0200814 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200815 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200816
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200817 fflush(stdout);
818
Stephane Eraniand7470b62010-12-01 18:49:05 +0200819 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200820 fprintf(output, "\n");
821 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600822 if (target.system_wide)
823 fprintf(output, "\'system wide");
824 else if (target.cpu_list)
825 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300826 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200827 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200828 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200829 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900830 } else if (target.pid)
831 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200832 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900833 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200834
Stephane Eranian4aa90152011-08-15 22:22:33 +0200835 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200836 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200837 fprintf(output, " (%d runs)", run_count);
838 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200839 }
Jiri Olsad4f63a42015-06-26 11:29:26 +0200840}
841
842static void print_footer(void)
843{
Jiri Olsa58215222015-07-21 14:31:24 +0200844 FILE *output = stat_config.output;
845
Jiri Olsad4f63a42015-06-26 11:29:26 +0200846 if (!null_run)
847 fprintf(output, "\n");
848 fprintf(output, " %17.9f seconds time elapsed",
849 avg_stats(&walltime_nsecs_stats)/1e9);
850 if (run_count > 1) {
851 fprintf(output, " ");
852 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
853 avg_stats(&walltime_nsecs_stats));
854 }
855 fprintf(output, "\n\n");
856}
857
858static void print_counters(struct timespec *ts, int argc, const char **argv)
859{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200860 int interval = stat_config.interval;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200861 struct perf_evsel *counter;
862 char buf[64], *prefix = NULL;
863
864 if (interval)
865 print_interval(prefix = buf, ts);
866 else
867 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200868
Jiri Olsa421a50f2015-07-21 14:31:22 +0200869 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100870 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100871 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +0200872 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100873 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200874 case AGGR_THREAD:
875 evlist__for_each(evsel_list, counter)
876 print_aggr_thread(counter, prefix);
877 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100878 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300879 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200880 print_counter_aggr(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100881 break;
882 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300883 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200884 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100885 break;
Jiri Olsa208df992015-10-16 12:41:04 +0200886 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100887 default:
888 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200889 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200890
Jiri Olsad4f63a42015-06-26 11:29:26 +0200891 if (!interval && !csv_output)
892 print_footer();
893
Jiri Olsa58215222015-07-21 14:31:24 +0200894 fflush(stat_config.output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200895}
896
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200897static volatile int signr = -1;
898
Ingo Molnar52425192009-05-26 09:17:18 +0200899static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200900{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200901 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800902 done = 1;
903
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200904 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200905 /*
906 * render child_pid harmless
907 * won't send SIGTERM to a random
908 * process in case of race condition
909 * and fast PID recycling
910 */
911 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200912}
913
914static void sig_atexit(void)
915{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200916 sigset_t set, oset;
917
918 /*
919 * avoid race condition with SIGCHLD handler
920 * in skip_signal() which is modifying child_pid
921 * goal is to avoid send SIGTERM to a random
922 * process
923 */
924 sigemptyset(&set);
925 sigaddset(&set, SIGCHLD);
926 sigprocmask(SIG_BLOCK, &set, &oset);
927
Chris Wilson933da832009-10-04 01:35:01 +0100928 if (child_pid != -1)
929 kill(child_pid, SIGTERM);
930
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200931 sigprocmask(SIG_SETMASK, &oset, NULL);
932
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200933 if (signr == -1)
934 return;
935
936 signal(signr, SIG_DFL);
937 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200938}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200939
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300940static int stat__set_big_num(const struct option *opt __maybe_unused,
941 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200942{
943 big_num_opt = unset ? 0 : 1;
944 return 0;
945}
946
Jiri Olsae0547312015-11-05 15:40:45 +0100947static const struct option stat_options[] = {
948 OPT_BOOLEAN('T', "transaction", &transaction_run,
949 "hardware transaction statistics"),
950 OPT_CALLBACK('e', "event", &evsel_list, "event",
951 "event selector. use 'perf list' to list available events",
952 parse_events_option),
953 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
954 "event filter", parse_filter),
955 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
956 "child tasks do not inherit counters"),
957 OPT_STRING('p', "pid", &target.pid, "pid",
958 "stat events on existing process id"),
959 OPT_STRING('t', "tid", &target.tid, "tid",
960 "stat events on existing thread id"),
961 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
962 "system-wide collection from all CPUs"),
963 OPT_BOOLEAN('g', "group", &group,
964 "put the counters into a counter group"),
965 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
966 OPT_INCR('v', "verbose", &verbose,
967 "be more verbose (show counter open errors, etc)"),
968 OPT_INTEGER('r', "repeat", &run_count,
969 "repeat command and print average + stddev (max: 100, forever: 0)"),
970 OPT_BOOLEAN('n', "null", &null_run,
971 "null run - dont start any counters"),
972 OPT_INCR('d', "detailed", &detailed_run,
973 "detailed run - start a lot of events"),
974 OPT_BOOLEAN('S', "sync", &sync_run,
975 "call sync() before starting a run"),
976 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
977 "print large numbers with thousands\' separators",
978 stat__set_big_num),
979 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
980 "list of cpus to monitor in system-wide"),
981 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
982 "disable CPU count aggregation", AGGR_NONE),
983 OPT_STRING('x', "field-separator", &csv_sep, "separator",
984 "print counts with custom separator"),
985 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
986 "monitor event in cgroup name only", parse_cgroups),
987 OPT_STRING('o', "output", &output_name, "file", "output file name"),
988 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
989 OPT_INTEGER(0, "log-fd", &output_fd,
990 "log output to fd, instead of stderr"),
991 OPT_STRING(0, "pre", &pre_cmd, "command",
992 "command to run prior to the measured command"),
993 OPT_STRING(0, "post", &post_cmd, "command",
994 "command to run after to the measured command"),
995 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
996 "print counts at regular interval in ms (>= 10)"),
997 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
998 "aggregate counts per processor socket", AGGR_SOCKET),
999 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
1000 "aggregate counts per physical processor core", AGGR_CORE),
1001 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
1002 "aggregate counts per thread", AGGR_THREAD),
1003 OPT_UINTEGER('D', "delay", &initial_delay,
1004 "ms to wait before starting measurement after program start"),
1005 OPT_END()
1006};
1007
Jiri Olsa1fe7a302015-10-16 12:41:15 +02001008static int perf_stat__get_socket(struct cpu_map *map, int cpu)
1009{
1010 return cpu_map__get_socket(map, cpu, NULL);
1011}
1012
1013static int perf_stat__get_core(struct cpu_map *map, int cpu)
1014{
1015 return cpu_map__get_core(map, cpu, NULL);
1016}
1017
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001018static int cpu_map__get_max(struct cpu_map *map)
1019{
1020 int i, max = -1;
1021
1022 for (i = 0; i < map->nr; i++) {
1023 if (map->map[i] > max)
1024 max = map->map[i];
1025 }
1026
1027 return max;
1028}
1029
1030static struct cpu_map *cpus_aggr_map;
1031
1032static int perf_stat__get_aggr(aggr_get_id_t get_id, struct cpu_map *map, int idx)
1033{
1034 int cpu;
1035
1036 if (idx >= map->nr)
1037 return -1;
1038
1039 cpu = map->map[idx];
1040
1041 if (cpus_aggr_map->map[cpu] == -1)
1042 cpus_aggr_map->map[cpu] = get_id(map, idx);
1043
1044 return cpus_aggr_map->map[cpu];
1045}
1046
1047static int perf_stat__get_socket_cached(struct cpu_map *map, int idx)
1048{
1049 return perf_stat__get_aggr(perf_stat__get_socket, map, idx);
1050}
1051
1052static int perf_stat__get_core_cached(struct cpu_map *map, int idx)
1053{
1054 return perf_stat__get_aggr(perf_stat__get_core, map, idx);
1055}
1056
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001057static int perf_stat_init_aggr_mode(void)
1058{
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001059 int nr;
1060
Jiri Olsa421a50f2015-07-21 14:31:22 +02001061 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001062 case AGGR_SOCKET:
1063 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1064 perror("cannot build socket map");
1065 return -1;
1066 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001067 aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001068 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001069 case AGGR_CORE:
1070 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1071 perror("cannot build core map");
1072 return -1;
1073 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001074 aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001075 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001076 case AGGR_NONE:
1077 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02001078 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +02001079 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001080 default:
1081 break;
1082 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001083
1084 /*
1085 * The evsel_list->cpus is the base we operate on,
1086 * taking the highest cpu number to be the size of
1087 * the aggregation translate cpumap.
1088 */
1089 nr = cpu_map__get_max(evsel_list->cpus);
1090 cpus_aggr_map = cpu_map__empty_new(nr + 1);
1091 return cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001092}
1093
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001094/*
1095 * Add default attributes, if there were no attributes specified or
1096 * if -d/--detailed, -d -d or -d -d -d is used:
1097 */
1098static int add_default_attributes(void)
1099{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001100 struct perf_event_attr default_attrs[] = {
1101
1102 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1103 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1104 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1105 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1106
1107 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1108 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1109 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1110 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1111 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1112 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1113
1114};
1115
1116/*
1117 * Detailed stats (-d), covering the L1 and last level data caches:
1118 */
1119 struct perf_event_attr detailed_attrs[] = {
1120
1121 { .type = PERF_TYPE_HW_CACHE,
1122 .config =
1123 PERF_COUNT_HW_CACHE_L1D << 0 |
1124 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1125 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1126
1127 { .type = PERF_TYPE_HW_CACHE,
1128 .config =
1129 PERF_COUNT_HW_CACHE_L1D << 0 |
1130 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1131 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1132
1133 { .type = PERF_TYPE_HW_CACHE,
1134 .config =
1135 PERF_COUNT_HW_CACHE_LL << 0 |
1136 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1137 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1138
1139 { .type = PERF_TYPE_HW_CACHE,
1140 .config =
1141 PERF_COUNT_HW_CACHE_LL << 0 |
1142 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1143 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1144};
1145
1146/*
1147 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1148 */
1149 struct perf_event_attr very_detailed_attrs[] = {
1150
1151 { .type = PERF_TYPE_HW_CACHE,
1152 .config =
1153 PERF_COUNT_HW_CACHE_L1I << 0 |
1154 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1155 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1156
1157 { .type = PERF_TYPE_HW_CACHE,
1158 .config =
1159 PERF_COUNT_HW_CACHE_L1I << 0 |
1160 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1161 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1162
1163 { .type = PERF_TYPE_HW_CACHE,
1164 .config =
1165 PERF_COUNT_HW_CACHE_DTLB << 0 |
1166 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1167 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1168
1169 { .type = PERF_TYPE_HW_CACHE,
1170 .config =
1171 PERF_COUNT_HW_CACHE_DTLB << 0 |
1172 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1173 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1174
1175 { .type = PERF_TYPE_HW_CACHE,
1176 .config =
1177 PERF_COUNT_HW_CACHE_ITLB << 0 |
1178 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1179 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1180
1181 { .type = PERF_TYPE_HW_CACHE,
1182 .config =
1183 PERF_COUNT_HW_CACHE_ITLB << 0 |
1184 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1185 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1186
1187};
1188
1189/*
1190 * Very, very detailed stats (-d -d -d), adding prefetch events:
1191 */
1192 struct perf_event_attr very_very_detailed_attrs[] = {
1193
1194 { .type = PERF_TYPE_HW_CACHE,
1195 .config =
1196 PERF_COUNT_HW_CACHE_L1D << 0 |
1197 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1198 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1199
1200 { .type = PERF_TYPE_HW_CACHE,
1201 .config =
1202 PERF_COUNT_HW_CACHE_L1D << 0 |
1203 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1204 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1205};
1206
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001207 /* Set attrs if no event is selected and !null_run: */
1208 if (null_run)
1209 return 0;
1210
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001211 if (transaction_run) {
1212 int err;
1213 if (pmu_have_event("cpu", "cycles-ct") &&
1214 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001215 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001216 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001217 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1218 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001219 fprintf(stderr, "Cannot set up transaction events\n");
1220 return -1;
1221 }
1222 return 0;
1223 }
1224
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001225 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001226 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001227 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001228 }
1229
1230 /* Detailed events get appended to the event list: */
1231
1232 if (detailed_run < 1)
1233 return 0;
1234
1235 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001236 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001237 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001238
1239 if (detailed_run < 2)
1240 return 0;
1241
1242 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001243 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001244 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001245
1246 if (detailed_run < 3)
1247 return 0;
1248
1249 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001250 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001251}
1252
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001253int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001254{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001255 const char * const stat_usage[] = {
1256 "perf stat [<options>] [<command>]",
1257 NULL
1258 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001259 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001260 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001261 FILE *output = stderr;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001262 unsigned int interval;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001263
Stephane Eranian5af52b52010-05-18 15:00:01 +02001264 setlocale(LC_ALL, "");
1265
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001266 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001267 if (evsel_list == NULL)
1268 return -ENOMEM;
1269
Jiri Olsae0547312015-11-05 15:40:45 +01001270 argc = parse_options(argc, argv, stat_options, stat_usage,
Anton Blancharda0541232009-07-22 23:04:12 +10001271 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001272
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001273 interval = stat_config.interval;
1274
Stephane Eranian4aa90152011-08-15 22:22:33 +02001275 if (output_name && strcmp(output_name, "-"))
1276 output = NULL;
1277
Jim Cromie56f3bae2011-09-07 17:14:00 -06001278 if (output_name && output_fd) {
1279 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001280 parse_options_usage(stat_usage, stat_options, "o", 1);
1281 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001282 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001283 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001284
1285 if (output_fd < 0) {
1286 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001287 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001288 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001289 }
1290
Stephane Eranian4aa90152011-08-15 22:22:33 +02001291 if (!output) {
1292 struct timespec tm;
1293 mode = append_file ? "a" : "w";
1294
1295 output = fopen(output_name, mode);
1296 if (!output) {
1297 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001298 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001299 }
1300 clock_gettime(CLOCK_REALTIME, &tm);
1301 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001302 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001303 mode = append_file ? "a" : "w";
1304 output = fdopen(output_fd, mode);
1305 if (!output) {
1306 perror("Failed opening logfd");
1307 return -errno;
1308 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001309 }
1310
Jiri Olsa58215222015-07-21 14:31:24 +02001311 stat_config.output = output;
1312
Jim Cromied4ffd042011-09-07 17:14:03 -06001313 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001314 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001315 if (!strcmp(csv_sep, "\\t"))
1316 csv_sep = "\t";
1317 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001318 csv_sep = DEFAULT_SEPARATOR;
1319
1320 /*
1321 * let the spreadsheet do the pretty-printing
1322 */
1323 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001324 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001325 if (big_num_opt == 1) {
1326 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001327 parse_options_usage(stat_usage, stat_options, "B", 1);
1328 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001329 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001330 } else /* Nope, so disable big number formatting */
1331 big_num = false;
1332 } else if (big_num_opt == 0) /* User passed --no-big-num */
1333 big_num = false;
1334
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001335 if (!argc && target__none(&target))
Jiri Olsae0547312015-11-05 15:40:45 +01001336 usage_with_options(stat_usage, stat_options);
David Ahernac3063b2013-09-30 07:37:37 -06001337
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001338 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001339 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001340 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001341 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001342 } else if (run_count == 0) {
1343 forever = true;
1344 run_count = 1;
1345 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001346
Jiri Olsa421a50f2015-07-21 14:31:22 +02001347 if ((stat_config.aggr_mode == AGGR_THREAD) && !target__has_task(&target)) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001348 fprintf(stderr, "The --per-thread option is only available "
1349 "when monitoring via -p -t options.\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001350 parse_options_usage(NULL, stat_options, "p", 1);
1351 parse_options_usage(NULL, stat_options, "t", 1);
Jiri Olsa32b8af82015-06-26 11:29:27 +02001352 goto out;
1353 }
1354
1355 /*
1356 * no_aggr, cgroup are for system-wide only
1357 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1358 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001359 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1360 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001361 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001362 fprintf(stderr, "both cgroup and no-aggregation "
1363 "modes only available in system-wide mode\n");
1364
Jiri Olsae0547312015-11-05 15:40:45 +01001365 parse_options_usage(stat_usage, stat_options, "G", 1);
1366 parse_options_usage(NULL, stat_options, "A", 1);
1367 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001368 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001369 }
1370
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001371 if (add_default_attributes())
1372 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001373
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001374 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001375
Namhyung Kim77a6f012012-05-07 14:09:04 +09001376 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001377 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001378 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001379 parse_options_usage(stat_usage, stat_options, "p", 1);
1380 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001381 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001382 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01001383 parse_options_usage(stat_usage, stat_options, "C", 1);
1384 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001385 }
1386 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001387 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001388
1389 /*
1390 * Initialize thread_map with comm names,
1391 * so we could print it out on output.
1392 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001393 if (stat_config.aggr_mode == AGGR_THREAD)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001394 thread_map__read_comms(evsel_list->threads);
1395
Stephane Eranian13370a92013-01-29 12:47:44 +01001396 if (interval && interval < 100) {
Kan Liang19afd102015-10-02 05:04:34 -04001397 if (interval < 10) {
1398 pr_err("print interval must be >= 10ms\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001399 parse_options_usage(stat_usage, stat_options, "I", 1);
Kan Liang19afd102015-10-02 05:04:34 -04001400 goto out;
1401 } else
1402 pr_warning("print interval < 100ms. "
1403 "The overhead percentage could be high in some cases. "
1404 "Please proceed with caution.\n");
Stephane Eranian13370a92013-01-29 12:47:44 +01001405 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001406
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001407 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001408 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001409
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001410 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001411 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001412
Ingo Molnar58d7e992009-05-15 11:03:23 +02001413 /*
1414 * We dont want to block the signals - that would cause
1415 * child tasks to inherit that and Ctrl-C would not work.
1416 * What we want is for Ctrl-C to work in the exec()-ed
1417 * task, but being ignored by perf stat itself:
1418 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001419 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001420 if (!forever)
1421 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001422 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001423 signal(SIGALRM, skip_signal);
1424 signal(SIGABRT, skip_signal);
1425
Ingo Molnar42202dd2009-06-13 14:57:28 +02001426 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001427 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001428 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001429 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1430 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001431
Ingo Molnar42202dd2009-06-13 14:57:28 +02001432 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001433 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001434 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001435 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001436 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001437 }
1438
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001439 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001440 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001441
1442 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001443out:
1444 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001445 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001446}