blob: b74ee0f2e714a837b590616183d29c4d83cc8920 [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;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200125
Liming Wang60666c62009-12-31 16:05:50 +0800126static volatile int done = 0;
127
Jiri Olsa421a50f2015-07-21 14:31:22 +0200128static struct perf_stat_config stat_config = {
129 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200130 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200131};
132
Stephane Eranian13370a92013-01-29 12:47:44 +0100133static inline void diff_timespec(struct timespec *r, struct timespec *a,
134 struct timespec *b)
135{
136 r->tv_sec = a->tv_sec - b->tv_sec;
137 if (a->tv_nsec < b->tv_nsec) {
138 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
139 r->tv_sec--;
140 } else {
141 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
142 }
143}
144
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200145static void perf_stat__reset_stats(void)
146{
147 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200148 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200149}
150
Jiri Olsacac21422012-11-12 18:34:00 +0100151static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200152{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200153 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200154
Jiri Olsa711a5722015-07-21 14:31:23 +0200155 if (stat_config.scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200156 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
157 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200158
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200159 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300160
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300161 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300162 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200163
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300164 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200165 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700166 if (!initial_delay)
167 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200168 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300169
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300170 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200171}
172
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200173/*
174 * Does the counter have nsecs as a unit?
175 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200176static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200177{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200178 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
179 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200180 return 1;
181
182 return 0;
183}
184
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200185/*
186 * Read out the results of a single counter:
187 * do not aggregate counts across CPUs in system-wide mode
188 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200189static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200190{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100191 int nthreads = thread_map__nr(evsel_list->threads);
192 int ncpus = perf_evsel__nr_cpus(counter);
193 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200194
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000195 if (!counter->supported)
196 return -ENOENT;
197
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100198 if (counter->system_wide)
199 nthreads = 1;
200
201 for (thread = 0; thread < nthreads; thread++) {
202 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200203 struct perf_counts_values *count;
204
205 count = perf_counts(counter->counts, cpu, thread);
206 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100207 return -1;
208 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200209 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200210
211 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200212}
213
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200214static void read_counters(bool close_counters)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200215{
216 struct perf_evsel *counter;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200217
218 evlist__for_each(evsel_list, counter) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200219 if (read_counter(counter))
Andi Kleen245bad82015-09-01 15:52:46 -0700220 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200221
Jiri Olsaf80010e2015-07-21 14:31:27 +0200222 if (perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200223 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200224
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200225 if (close_counters) {
Jiri Olsa106a94a2015-06-26 11:29:19 +0200226 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
227 thread_map__nr(evsel_list->threads));
228 }
229 }
230}
231
Jiri Olsaba411a92015-06-26 11:29:24 +0200232static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100233{
Stephane Eranian13370a92013-01-29 12:47:44 +0100234 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100235
Jiri Olsa106a94a2015-06-26 11:29:19 +0200236 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100237
Stephane Eranian13370a92013-01-29 12:47:44 +0100238 clock_gettime(CLOCK_MONOTONIC, &ts);
239 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100240
Jiri Olsad4f63a42015-06-26 11:29:26 +0200241 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100242}
243
Andi Kleen41191682013-08-02 17:41:11 -0700244static void handle_initial_delay(void)
245{
246 struct perf_evsel *counter;
247
248 if (initial_delay) {
249 const int ncpus = cpu_map__nr(evsel_list->cpus),
250 nthreads = thread_map__nr(evsel_list->threads);
251
252 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300253 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700254 perf_evsel__enable(counter, ncpus, nthreads);
255 }
256}
257
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300258static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300259
260/*
261 * perf_evlist__prepare_workload will send a SIGUSR1
262 * if the fork fails, since we asked by setting its
263 * want_signal to true.
264 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300265static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
266 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300267{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300268 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300269}
270
Namhyung Kimacf28922013-03-11 16:43:18 +0900271static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200272{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200273 int interval = stat_config.interval;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300274 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200275 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100276 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100277 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100278 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200279 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300280 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200281
Stephane Eranian13370a92013-01-29 12:47:44 +0100282 if (interval) {
283 ts.tv_sec = interval / 1000;
284 ts.tv_nsec = (interval % 1000) * 1000000;
285 } else {
286 ts.tv_sec = 1;
287 ts.tv_nsec = 0;
288 }
289
Liming Wang60666c62009-12-31 16:05:50 +0800290 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300291 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
292 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900293 perror("failed to prepare workload");
294 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800295 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900296 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000297 }
298
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200299 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300300 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200301
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300302 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100303 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600304 /*
305 * PPC returns ENXIO for HW counters until 2.6.37
306 * (behavior changed with commit b0a873e).
307 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100308 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600309 errno == ENOENT || errno == EOPNOTSUPP ||
310 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600311 if (verbose)
312 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300313 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600314 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400315
316 if ((counter->leader != counter) ||
317 !(counter->leader->nr_members > 1))
318 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600319 }
Ingo Molnarede70292011-04-28 08:48:42 +0200320
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300321 perf_evsel__open_strerror(counter, &target,
322 errno, msg, sizeof(msg));
323 ui__error("%s\n", msg);
324
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200325 if (child_pid != -1)
326 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600327
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200328 return -1;
329 }
David Ahern2cee77c2011-05-30 08:55:59 -0600330 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100331
332 l = strlen(counter->unit);
333 if (l > unit_width)
334 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300335 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200336
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300337 if (perf_evlist__apply_filters(evsel_list, &counter)) {
338 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
339 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000340 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100341 return -1;
342 }
343
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200344 /*
345 * Enable counters and exec the command:
346 */
347 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100348 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200349
Liming Wang60666c62009-12-31 16:05:50 +0800350 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900351 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700352 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900353
Stephane Eranian13370a92013-01-29 12:47:44 +0100354 if (interval) {
355 while (!waitpid(child_pid, &status, WNOHANG)) {
356 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200357 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100358 }
359 }
Liming Wang60666c62009-12-31 16:05:50 +0800360 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300361
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300362 if (workload_exec_errno) {
363 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
364 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300365 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300366 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300367
Andi Kleen33e49ea2011-09-15 14:31:40 -0700368 if (WIFSIGNALED(status))
369 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800370 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700371 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100372 while (!done) {
373 nanosleep(&ts, NULL);
374 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200375 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100376 }
Liming Wang60666c62009-12-31 16:05:50 +0800377 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200378
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200379 t1 = rdclock();
380
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200381 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200382
Jiri Olsa106a94a2015-06-26 11:29:19 +0200383 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200384
Ingo Molnar42202dd2009-06-13 14:57:28 +0200385 return WEXITSTATUS(status);
386}
387
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300388static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200389{
390 int ret;
391
392 if (pre_cmd) {
393 ret = system(pre_cmd);
394 if (ret)
395 return ret;
396 }
397
398 if (sync_run)
399 sync();
400
401 ret = __run_perf_stat(argc, argv);
402 if (ret)
403 return ret;
404
405 if (post_cmd) {
406 ret = system(post_cmd);
407 if (ret)
408 return ret;
409 }
410
411 return ret;
412}
413
Andi Kleend73515c2015-03-11 07:16:27 -0700414static void print_running(u64 run, u64 ena)
415{
416 if (csv_output) {
Jiri Olsa58215222015-07-21 14:31:24 +0200417 fprintf(stat_config.output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700418 csv_sep,
419 run,
420 csv_sep,
421 ena ? 100.0 * run / ena : 100.0);
422 } else if (run != ena) {
Jiri Olsa58215222015-07-21 14:31:24 +0200423 fprintf(stat_config.output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700424 }
425}
426
Ingo Molnarf99844c2011-04-27 05:35:39 +0200427static void print_noise_pct(double total, double avg)
428{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800429 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200430
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700431 if (csv_output)
Jiri Olsa58215222015-07-21 14:31:24 +0200432 fprintf(stat_config.output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600433 else if (pct)
Jiri Olsa58215222015-07-21 14:31:24 +0200434 fprintf(stat_config.output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200435}
436
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200437static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200438{
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200439 struct perf_stat_evsel *ps;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200440
Peter Zijlstra849abde2009-09-04 18:23:38 +0200441 if (run_count == 1)
442 return;
443
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200444 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200445 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200446}
447
Stephane Eranian12c08a92013-02-14 13:57:29 +0100448static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200449{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200450 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100451 case AGGR_CORE:
Jiri Olsa58215222015-07-21 14:31:24 +0200452 fprintf(stat_config.output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100453 cpu_map__id_to_socket(id),
454 csv_output ? 0 : -8,
455 cpu_map__id_to_cpu(id),
456 csv_sep,
457 csv_output ? 0 : 4,
458 nr,
459 csv_sep);
460 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100461 case AGGR_SOCKET:
Jiri Olsa58215222015-07-21 14:31:24 +0200462 fprintf(stat_config.output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100463 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100464 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100465 csv_sep,
466 csv_output ? 0 : 4,
467 nr,
468 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100469 break;
470 case AGGR_NONE:
Jiri Olsa58215222015-07-21 14:31:24 +0200471 fprintf(stat_config.output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200472 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100473 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100474 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200475 case AGGR_THREAD:
Jiri Olsa58215222015-07-21 14:31:24 +0200476 fprintf(stat_config.output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200477 csv_output ? 0 : 16,
478 thread_map__comm(evsel->threads, id),
479 csv_output ? 0 : -8,
480 thread_map__pid(evsel->threads, id),
481 csv_sep);
482 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100483 case AGGR_GLOBAL:
Jiri Olsa208df992015-10-16 12:41:04 +0200484 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100485 default:
486 break;
487 }
488}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200489
Andi Kleenda88c7f2014-09-24 13:50:46 -0700490static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100491{
Jiri Olsa58215222015-07-21 14:31:24 +0200492 FILE *output = stat_config.output;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100493 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100494 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600495 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100496
Stephane Eranian410136f2013-11-12 17:58:49 +0100497 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
498 fmt_n = csv_output ? "%s" : "%-25s";
499
Andi Kleenda88c7f2014-09-24 13:50:46 -0700500 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100501
David Ahern4bbe5a62013-09-28 14:28:00 -0600502 scnprintf(name, sizeof(name), "%s%s",
503 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100504
505 fprintf(output, fmt_v, msecs, csv_sep);
506
507 if (csv_output)
508 fprintf(output, "%s%s", evsel->unit, csv_sep);
509 else
510 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
511
512 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200513
Stephane Eranian023695d2011-02-14 11:20:01 +0200514 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200515 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200516}
517
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200518static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
519{
Jiri Olsa58215222015-07-21 14:31:24 +0200520 FILE *output = stat_config.output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200521 double sc = evsel->scale;
522 const char *fmt;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200523
524 if (csv_output) {
525 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
526 } else {
527 if (big_num)
528 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
529 else
530 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
531 }
532
533 aggr_printout(evsel, id, nr);
534
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200535 fprintf(output, fmt, avg, csv_sep);
536
537 if (evsel->unit)
538 fprintf(output, "%-*s%s",
539 csv_output ? 0 : unit_width,
540 evsel->unit, csv_sep);
541
542 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
543
544 if (evsel->cgrp)
545 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Andi Kleeneedfcb42015-11-02 17:50:21 -0800546}
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200547
Andi Kleeneedfcb42015-11-02 17:50:21 -0800548static void printout(int id, int nr, struct perf_evsel *counter, double uval)
549{
550 int cpu = cpu_map__id_to_cpu(id);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200551
Andi Kleeneedfcb42015-11-02 17:50:21 -0800552 if (stat_config.aggr_mode == AGGR_GLOBAL)
553 cpu = 0;
554
555 if (nsec_counter(counter))
556 nsec_printout(id, nr, counter, uval);
557 else
558 abs_printout(id, nr, counter, uval);
559
560 if (!csv_output && !stat_config.interval)
561 perf_stat__print_shadow_stats(stat_config.output, counter,
562 uval, cpu,
563 stat_config.aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200564}
565
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100566static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100567{
Jiri Olsa58215222015-07-21 14:31:24 +0200568 FILE *output = stat_config.output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100569 struct perf_evsel *counter;
Kan Liang601083c2015-07-02 03:08:43 -0400570 int cpu, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100571 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100572 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100573
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100574 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100575 return;
576
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100577 for (s = 0; s < aggr_map->nr; s++) {
578 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300579 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100580 val = ena = run = 0;
581 nr = 0;
582 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Kan Liang601083c2015-07-02 03:08:43 -0400583 s2 = aggr_get_id(perf_evsel__cpus(counter), cpu);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100584 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100585 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200586 val += perf_counts(counter->counts, cpu, 0)->val;
587 ena += perf_counts(counter->counts, cpu, 0)->ena;
588 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100589 nr++;
590 }
591 if (prefix)
592 fprintf(output, "%s", prefix);
593
594 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200595 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100596
Stephane Eranian410136f2013-11-12 17:58:49 +0100597 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100598 csv_output ? 0 : 18,
599 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100600 csv_sep);
601
602 fprintf(output, "%-*s%s",
603 csv_output ? 0 : unit_width,
604 counter->unit, csv_sep);
605
606 fprintf(output, "%*s",
607 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100608 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100609
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100610 if (counter->cgrp)
611 fprintf(output, "%s%s",
612 csv_sep, counter->cgrp->name);
613
Andi Kleend73515c2015-03-11 07:16:27 -0700614 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100615 fputc('\n', output);
616 continue;
617 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100618 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800619 printout(id, nr, counter, uval);
Andi Kleend73515c2015-03-11 07:16:27 -0700620 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100621 print_noise(counter, 1.0);
622
Andi Kleend73515c2015-03-11 07:16:27 -0700623 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100624 fputc('\n', output);
625 }
626 }
627}
628
Jiri Olsa32b8af82015-06-26 11:29:27 +0200629static void print_aggr_thread(struct perf_evsel *counter, char *prefix)
630{
Jiri Olsa58215222015-07-21 14:31:24 +0200631 FILE *output = stat_config.output;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200632 int nthreads = thread_map__nr(counter->threads);
633 int ncpus = cpu_map__nr(counter->cpus);
634 int cpu, thread;
635 double uval;
636
637 for (thread = 0; thread < nthreads; thread++) {
638 u64 ena = 0, run = 0, val = 0;
639
640 for (cpu = 0; cpu < ncpus; cpu++) {
641 val += perf_counts(counter->counts, cpu, thread)->val;
642 ena += perf_counts(counter->counts, cpu, thread)->ena;
643 run += perf_counts(counter->counts, cpu, thread)->run;
644 }
645
646 if (prefix)
647 fprintf(output, "%s", prefix);
648
649 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800650 printout(thread, 0, counter, uval);
Jiri Olsa32b8af82015-06-26 11:29:27 +0200651
652 if (!csv_output)
653 print_noise(counter, 1.0);
654
655 print_running(run, ena);
656 fputc('\n', output);
657 }
658}
659
Ingo Molnar42202dd2009-06-13 14:57:28 +0200660/*
661 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200662 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200663 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100664static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200665{
Jiri Olsa58215222015-07-21 14:31:24 +0200666 FILE *output = stat_config.output;
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200667 struct perf_stat_evsel *ps = counter->priv;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200668 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200669 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100670 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700671 double avg_enabled, avg_running;
672
673 avg_enabled = avg_stats(&ps->res_stats[1]);
674 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200675
Stephane Eranian13370a92013-01-29 12:47:44 +0100676 if (prefix)
677 fprintf(output, "%s", prefix);
678
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000679 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100680 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200681 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600682 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100683 csv_sep);
684 fprintf(output, "%-*s%s",
685 csv_output ? 0 : unit_width,
686 counter->unit, csv_sep);
687 fprintf(output, "%*s",
688 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300689 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200690
691 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200692 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200693
Andi Kleend73515c2015-03-11 07:16:27 -0700694 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200695 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200696 return;
697 }
698
Stephane Eranian410136f2013-11-12 17:58:49 +0100699 uval = avg * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800700 printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200701
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700702 print_noise(counter, avg);
703
Andi Kleend73515c2015-03-11 07:16:27 -0700704 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200705 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200706}
707
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200708/*
709 * Print out the results of a single counter:
710 * does not use aggregated count in system-wide
711 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100712static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200713{
Jiri Olsa58215222015-07-21 14:31:24 +0200714 FILE *output = stat_config.output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200715 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100716 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200717 int cpu;
718
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800719 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200720 val = perf_counts(counter->counts, cpu, 0)->val;
721 ena = perf_counts(counter->counts, cpu, 0)->ena;
722 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100723
724 if (prefix)
725 fprintf(output, "%s", prefix);
726
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200727 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100728 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200729 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800730 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200731 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600732 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100733 csv_sep);
734
735 fprintf(output, "%-*s%s",
736 csv_output ? 0 : unit_width,
737 counter->unit, csv_sep);
738
739 fprintf(output, "%*s",
740 csv_output ? 0 : -25,
741 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200742
Stephane Eranian023695d2011-02-14 11:20:01 +0200743 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200744 fprintf(output, "%s%s",
745 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200746
Andi Kleend73515c2015-03-11 07:16:27 -0700747 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200748 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200749 continue;
750 }
751
Stephane Eranian410136f2013-11-12 17:58:49 +0100752 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800753 printout(cpu, 0, counter, uval);
Andi Kleend73515c2015-03-11 07:16:27 -0700754 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200755 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700756 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200757
Stephane Eranian4aa90152011-08-15 22:22:33 +0200758 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200759 }
760}
761
Jiri Olsad4f63a42015-06-26 11:29:26 +0200762static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200763{
Jiri Olsa58215222015-07-21 14:31:24 +0200764 FILE *output = stat_config.output;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200765 static int num_print_interval;
766
767 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
768
769 if (num_print_interval == 0 && !csv_output) {
Jiri Olsa421a50f2015-07-21 14:31:22 +0200770 switch (stat_config.aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +0200771 case AGGR_SOCKET:
772 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
773 break;
774 case AGGR_CORE:
775 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
776 break;
777 case AGGR_NONE:
778 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
779 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200780 case AGGR_THREAD:
781 fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit");
782 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200783 case AGGR_GLOBAL:
784 default:
785 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
Jiri Olsa208df992015-10-16 12:41:04 +0200786 case AGGR_UNSET:
787 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200788 }
789 }
790
791 if (++num_print_interval == 25)
792 num_print_interval = 0;
793}
794
795static void print_header(int argc, const char **argv)
796{
Jiri Olsa58215222015-07-21 14:31:24 +0200797 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200798 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200799
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200800 fflush(stdout);
801
Stephane Eraniand7470b62010-12-01 18:49:05 +0200802 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200803 fprintf(output, "\n");
804 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600805 if (target.system_wide)
806 fprintf(output, "\'system wide");
807 else if (target.cpu_list)
808 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300809 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200810 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200811 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200812 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900813 } else if (target.pid)
814 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200815 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900816 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200817
Stephane Eranian4aa90152011-08-15 22:22:33 +0200818 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200819 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200820 fprintf(output, " (%d runs)", run_count);
821 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200822 }
Jiri Olsad4f63a42015-06-26 11:29:26 +0200823}
824
825static void print_footer(void)
826{
Jiri Olsa58215222015-07-21 14:31:24 +0200827 FILE *output = stat_config.output;
828
Jiri Olsad4f63a42015-06-26 11:29:26 +0200829 if (!null_run)
830 fprintf(output, "\n");
831 fprintf(output, " %17.9f seconds time elapsed",
832 avg_stats(&walltime_nsecs_stats)/1e9);
833 if (run_count > 1) {
834 fprintf(output, " ");
835 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
836 avg_stats(&walltime_nsecs_stats));
837 }
838 fprintf(output, "\n\n");
839}
840
841static void print_counters(struct timespec *ts, int argc, const char **argv)
842{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200843 int interval = stat_config.interval;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200844 struct perf_evsel *counter;
845 char buf[64], *prefix = NULL;
846
847 if (interval)
848 print_interval(prefix = buf, ts);
849 else
850 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200851
Jiri Olsa421a50f2015-07-21 14:31:22 +0200852 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100853 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100854 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +0200855 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100856 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200857 case AGGR_THREAD:
858 evlist__for_each(evsel_list, counter)
859 print_aggr_thread(counter, prefix);
860 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100861 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300862 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200863 print_counter_aggr(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100864 break;
865 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300866 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200867 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100868 break;
Jiri Olsa208df992015-10-16 12:41:04 +0200869 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100870 default:
871 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200872 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200873
Jiri Olsad4f63a42015-06-26 11:29:26 +0200874 if (!interval && !csv_output)
875 print_footer();
876
Jiri Olsa58215222015-07-21 14:31:24 +0200877 fflush(stat_config.output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200878}
879
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200880static volatile int signr = -1;
881
Ingo Molnar52425192009-05-26 09:17:18 +0200882static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200883{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200884 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800885 done = 1;
886
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200887 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200888 /*
889 * render child_pid harmless
890 * won't send SIGTERM to a random
891 * process in case of race condition
892 * and fast PID recycling
893 */
894 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200895}
896
897static void sig_atexit(void)
898{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200899 sigset_t set, oset;
900
901 /*
902 * avoid race condition with SIGCHLD handler
903 * in skip_signal() which is modifying child_pid
904 * goal is to avoid send SIGTERM to a random
905 * process
906 */
907 sigemptyset(&set);
908 sigaddset(&set, SIGCHLD);
909 sigprocmask(SIG_BLOCK, &set, &oset);
910
Chris Wilson933da832009-10-04 01:35:01 +0100911 if (child_pid != -1)
912 kill(child_pid, SIGTERM);
913
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200914 sigprocmask(SIG_SETMASK, &oset, NULL);
915
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200916 if (signr == -1)
917 return;
918
919 signal(signr, SIG_DFL);
920 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200921}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200922
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300923static int stat__set_big_num(const struct option *opt __maybe_unused,
924 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200925{
926 big_num_opt = unset ? 0 : 1;
927 return 0;
928}
929
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200930static int perf_stat__get_socket(struct cpu_map *map, int cpu)
931{
932 return cpu_map__get_socket(map, cpu, NULL);
933}
934
935static int perf_stat__get_core(struct cpu_map *map, int cpu)
936{
937 return cpu_map__get_core(map, cpu, NULL);
938}
939
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100940static int cpu_map__get_max(struct cpu_map *map)
941{
942 int i, max = -1;
943
944 for (i = 0; i < map->nr; i++) {
945 if (map->map[i] > max)
946 max = map->map[i];
947 }
948
949 return max;
950}
951
952static struct cpu_map *cpus_aggr_map;
953
954static int perf_stat__get_aggr(aggr_get_id_t get_id, struct cpu_map *map, int idx)
955{
956 int cpu;
957
958 if (idx >= map->nr)
959 return -1;
960
961 cpu = map->map[idx];
962
963 if (cpus_aggr_map->map[cpu] == -1)
964 cpus_aggr_map->map[cpu] = get_id(map, idx);
965
966 return cpus_aggr_map->map[cpu];
967}
968
969static int perf_stat__get_socket_cached(struct cpu_map *map, int idx)
970{
971 return perf_stat__get_aggr(perf_stat__get_socket, map, idx);
972}
973
974static int perf_stat__get_core_cached(struct cpu_map *map, int idx)
975{
976 return perf_stat__get_aggr(perf_stat__get_core, map, idx);
977}
978
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100979static int perf_stat_init_aggr_mode(void)
980{
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100981 int nr;
982
Jiri Olsa421a50f2015-07-21 14:31:22 +0200983 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100984 case AGGR_SOCKET:
985 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
986 perror("cannot build socket map");
987 return -1;
988 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100989 aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100990 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100991 case AGGR_CORE:
992 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
993 perror("cannot build core map");
994 return -1;
995 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100996 aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100997 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100998 case AGGR_NONE:
999 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02001000 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +02001001 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001002 default:
1003 break;
1004 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001005
1006 /*
1007 * The evsel_list->cpus is the base we operate on,
1008 * taking the highest cpu number to be the size of
1009 * the aggregation translate cpumap.
1010 */
1011 nr = cpu_map__get_max(evsel_list->cpus);
1012 cpus_aggr_map = cpu_map__empty_new(nr + 1);
1013 return cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001014}
1015
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001016/*
1017 * Add default attributes, if there were no attributes specified or
1018 * if -d/--detailed, -d -d or -d -d -d is used:
1019 */
1020static int add_default_attributes(void)
1021{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001022 struct perf_event_attr default_attrs[] = {
1023
1024 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1025 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1026 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1027 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1028
1029 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1030 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1031 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1032 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1033 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1034 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1035
1036};
1037
1038/*
1039 * Detailed stats (-d), covering the L1 and last level data caches:
1040 */
1041 struct perf_event_attr detailed_attrs[] = {
1042
1043 { .type = PERF_TYPE_HW_CACHE,
1044 .config =
1045 PERF_COUNT_HW_CACHE_L1D << 0 |
1046 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1047 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1048
1049 { .type = PERF_TYPE_HW_CACHE,
1050 .config =
1051 PERF_COUNT_HW_CACHE_L1D << 0 |
1052 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1053 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1054
1055 { .type = PERF_TYPE_HW_CACHE,
1056 .config =
1057 PERF_COUNT_HW_CACHE_LL << 0 |
1058 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1059 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1060
1061 { .type = PERF_TYPE_HW_CACHE,
1062 .config =
1063 PERF_COUNT_HW_CACHE_LL << 0 |
1064 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1065 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1066};
1067
1068/*
1069 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1070 */
1071 struct perf_event_attr very_detailed_attrs[] = {
1072
1073 { .type = PERF_TYPE_HW_CACHE,
1074 .config =
1075 PERF_COUNT_HW_CACHE_L1I << 0 |
1076 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1077 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1078
1079 { .type = PERF_TYPE_HW_CACHE,
1080 .config =
1081 PERF_COUNT_HW_CACHE_L1I << 0 |
1082 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1083 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1084
1085 { .type = PERF_TYPE_HW_CACHE,
1086 .config =
1087 PERF_COUNT_HW_CACHE_DTLB << 0 |
1088 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1089 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1090
1091 { .type = PERF_TYPE_HW_CACHE,
1092 .config =
1093 PERF_COUNT_HW_CACHE_DTLB << 0 |
1094 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1095 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1096
1097 { .type = PERF_TYPE_HW_CACHE,
1098 .config =
1099 PERF_COUNT_HW_CACHE_ITLB << 0 |
1100 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1101 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1102
1103 { .type = PERF_TYPE_HW_CACHE,
1104 .config =
1105 PERF_COUNT_HW_CACHE_ITLB << 0 |
1106 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1107 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1108
1109};
1110
1111/*
1112 * Very, very detailed stats (-d -d -d), adding prefetch events:
1113 */
1114 struct perf_event_attr very_very_detailed_attrs[] = {
1115
1116 { .type = PERF_TYPE_HW_CACHE,
1117 .config =
1118 PERF_COUNT_HW_CACHE_L1D << 0 |
1119 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1120 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1121
1122 { .type = PERF_TYPE_HW_CACHE,
1123 .config =
1124 PERF_COUNT_HW_CACHE_L1D << 0 |
1125 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1126 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1127};
1128
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001129 /* Set attrs if no event is selected and !null_run: */
1130 if (null_run)
1131 return 0;
1132
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001133 if (transaction_run) {
1134 int err;
1135 if (pmu_have_event("cpu", "cycles-ct") &&
1136 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001137 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001138 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001139 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1140 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001141 fprintf(stderr, "Cannot set up transaction events\n");
1142 return -1;
1143 }
1144 return 0;
1145 }
1146
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001147 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001148 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001149 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001150 }
1151
1152 /* Detailed events get appended to the event list: */
1153
1154 if (detailed_run < 1)
1155 return 0;
1156
1157 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001158 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001159 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001160
1161 if (detailed_run < 2)
1162 return 0;
1163
1164 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001165 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001166 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001167
1168 if (detailed_run < 3)
1169 return 0;
1170
1171 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001172 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001173}
1174
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001175int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001176{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001177 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001178 int output_fd = 0;
1179 const char *output_name = NULL;
1180 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001181 OPT_BOOLEAN('T', "transaction", &transaction_run,
1182 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001183 OPT_CALLBACK('e', "event", &evsel_list, "event",
1184 "event selector. use 'perf list' to list available events",
1185 parse_events_option),
1186 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1187 "event filter", parse_filter),
1188 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1189 "child tasks do not inherit counters"),
1190 OPT_STRING('p', "pid", &target.pid, "pid",
1191 "stat events on existing process id"),
1192 OPT_STRING('t', "tid", &target.tid, "tid",
1193 "stat events on existing thread id"),
1194 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1195 "system-wide collection from all CPUs"),
1196 OPT_BOOLEAN('g', "group", &group,
1197 "put the counters into a counter group"),
Jiri Olsa711a5722015-07-21 14:31:23 +02001198 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001199 OPT_INCR('v', "verbose", &verbose,
1200 "be more verbose (show counter open errors, etc)"),
1201 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001202 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001203 OPT_BOOLEAN('n', "null", &null_run,
1204 "null run - dont start any counters"),
1205 OPT_INCR('d', "detailed", &detailed_run,
1206 "detailed run - start a lot of events"),
1207 OPT_BOOLEAN('S', "sync", &sync_run,
1208 "call sync() before starting a run"),
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001209 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001210 "print large numbers with thousands\' separators",
1211 stat__set_big_num),
1212 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1213 "list of cpus to monitor in system-wide"),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001214 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001215 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001216 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1217 "print counts with custom separator"),
1218 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1219 "monitor event in cgroup name only", parse_cgroups),
1220 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1221 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1222 OPT_INTEGER(0, "log-fd", &output_fd,
1223 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001224 OPT_STRING(0, "pre", &pre_cmd, "command",
1225 "command to run prior to the measured command"),
1226 OPT_STRING(0, "post", &post_cmd, "command",
1227 "command to run after to the measured command"),
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001228 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Kan Liang19afd102015-10-02 05:04:34 -04001229 "print counts at regular interval in ms (>= 10)"),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001230 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001231 "aggregate counts per processor socket", AGGR_SOCKET),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001232 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
Stephane Eranian12c08a92013-02-14 13:57:29 +01001233 "aggregate counts per physical processor core", AGGR_CORE),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001234 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
Jiri Olsa32b8af82015-06-26 11:29:27 +02001235 "aggregate counts per thread", AGGR_THREAD),
Andi Kleen41191682013-08-02 17:41:11 -07001236 OPT_UINTEGER('D', "delay", &initial_delay,
1237 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001238 OPT_END()
1239 };
1240 const char * const stat_usage[] = {
1241 "perf stat [<options>] [<command>]",
1242 NULL
1243 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001244 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001245 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001246 FILE *output = stderr;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001247 unsigned int interval;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001248
Stephane Eranian5af52b52010-05-18 15:00:01 +02001249 setlocale(LC_ALL, "");
1250
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001251 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001252 if (evsel_list == NULL)
1253 return -ENOMEM;
1254
Anton Blancharda0541232009-07-22 23:04:12 +10001255 argc = parse_options(argc, argv, options, stat_usage,
1256 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001257
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001258 interval = stat_config.interval;
1259
Stephane Eranian4aa90152011-08-15 22:22:33 +02001260 if (output_name && strcmp(output_name, "-"))
1261 output = NULL;
1262
Jim Cromie56f3bae2011-09-07 17:14:00 -06001263 if (output_name && output_fd) {
1264 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001265 parse_options_usage(stat_usage, options, "o", 1);
1266 parse_options_usage(NULL, options, "log-fd", 0);
1267 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001268 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001269
1270 if (output_fd < 0) {
1271 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001272 parse_options_usage(stat_usage, options, "log-fd", 0);
1273 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001274 }
1275
Stephane Eranian4aa90152011-08-15 22:22:33 +02001276 if (!output) {
1277 struct timespec tm;
1278 mode = append_file ? "a" : "w";
1279
1280 output = fopen(output_name, mode);
1281 if (!output) {
1282 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001283 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001284 }
1285 clock_gettime(CLOCK_REALTIME, &tm);
1286 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001287 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001288 mode = append_file ? "a" : "w";
1289 output = fdopen(output_fd, mode);
1290 if (!output) {
1291 perror("Failed opening logfd");
1292 return -errno;
1293 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001294 }
1295
Jiri Olsa58215222015-07-21 14:31:24 +02001296 stat_config.output = output;
1297
Jim Cromied4ffd042011-09-07 17:14:03 -06001298 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001299 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001300 if (!strcmp(csv_sep, "\\t"))
1301 csv_sep = "\t";
1302 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001303 csv_sep = DEFAULT_SEPARATOR;
1304
1305 /*
1306 * let the spreadsheet do the pretty-printing
1307 */
1308 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001309 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001310 if (big_num_opt == 1) {
1311 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001312 parse_options_usage(stat_usage, options, "B", 1);
1313 parse_options_usage(NULL, options, "x", 1);
1314 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001315 } else /* Nope, so disable big number formatting */
1316 big_num = false;
1317 } else if (big_num_opt == 0) /* User passed --no-big-num */
1318 big_num = false;
1319
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001320 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001321 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001322
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001323 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001324 pr_err("Run count must be a positive number\n");
1325 parse_options_usage(stat_usage, options, "r", 1);
1326 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001327 } else if (run_count == 0) {
1328 forever = true;
1329 run_count = 1;
1330 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001331
Jiri Olsa421a50f2015-07-21 14:31:22 +02001332 if ((stat_config.aggr_mode == AGGR_THREAD) && !target__has_task(&target)) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001333 fprintf(stderr, "The --per-thread option is only available "
1334 "when monitoring via -p -t options.\n");
1335 parse_options_usage(NULL, options, "p", 1);
1336 parse_options_usage(NULL, options, "t", 1);
1337 goto out;
1338 }
1339
1340 /*
1341 * no_aggr, cgroup are for system-wide only
1342 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1343 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001344 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1345 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001346 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001347 fprintf(stderr, "both cgroup and no-aggregation "
1348 "modes only available in system-wide mode\n");
1349
Namhyung Kimcc03c542013-11-01 16:33:15 +09001350 parse_options_usage(stat_usage, options, "G", 1);
1351 parse_options_usage(NULL, options, "A", 1);
1352 parse_options_usage(NULL, options, "a", 1);
1353 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001354 }
1355
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001356 if (add_default_attributes())
1357 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001358
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001359 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001360
Namhyung Kim77a6f012012-05-07 14:09:04 +09001361 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001362 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001363 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001364 parse_options_usage(stat_usage, options, "p", 1);
1365 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001366 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001367 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001368 parse_options_usage(stat_usage, options, "C", 1);
1369 parse_options_usage(NULL, options, "a", 1);
1370 }
1371 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001372 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001373
1374 /*
1375 * Initialize thread_map with comm names,
1376 * so we could print it out on output.
1377 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001378 if (stat_config.aggr_mode == AGGR_THREAD)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001379 thread_map__read_comms(evsel_list->threads);
1380
Stephane Eranian13370a92013-01-29 12:47:44 +01001381 if (interval && interval < 100) {
Kan Liang19afd102015-10-02 05:04:34 -04001382 if (interval < 10) {
1383 pr_err("print interval must be >= 10ms\n");
1384 parse_options_usage(stat_usage, options, "I", 1);
1385 goto out;
1386 } else
1387 pr_warning("print interval < 100ms. "
1388 "The overhead percentage could be high in some cases. "
1389 "Please proceed with caution.\n");
Stephane Eranian13370a92013-01-29 12:47:44 +01001390 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001391
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001392 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001393 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001394
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001395 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001396 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001397
Ingo Molnar58d7e992009-05-15 11:03:23 +02001398 /*
1399 * We dont want to block the signals - that would cause
1400 * child tasks to inherit that and Ctrl-C would not work.
1401 * What we want is for Ctrl-C to work in the exec()-ed
1402 * task, but being ignored by perf stat itself:
1403 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001404 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001405 if (!forever)
1406 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001407 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001408 signal(SIGALRM, skip_signal);
1409 signal(SIGABRT, skip_signal);
1410
Ingo Molnar42202dd2009-06-13 14:57:28 +02001411 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001412 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001413 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001414 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1415 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001416
Ingo Molnar42202dd2009-06-13 14:57:28 +02001417 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001418 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001419 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001420 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001421 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001422 }
1423
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001424 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001425 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001426
1427 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001428out:
1429 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001430 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001431}