blob: a054ddc0b2a013aca7023ee9cfb2b3840f4827d5 [file] [log] [blame]
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-stat.c
3 *
4 * Builtin stat command: Give a precise performance counters summary
5 * overview about any workload, CPU or specific PID.
6 *
7 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02008
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02009 $ perf stat ./hackbench 10
Ingo Molnarddcacfa2009-04-20 15:37:32 +020010
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020011 Time: 0.118
Ingo Molnarddcacfa2009-04-20 15:37:32 +020012
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020013 Performance counter stats for './hackbench 10':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020014
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020015 1708.761321 task-clock # 11.037 CPUs utilized
16 41,190 context-switches # 0.024 M/sec
17 6,735 CPU-migrations # 0.004 M/sec
18 17,318 page-faults # 0.010 M/sec
19 5,205,202,243 cycles # 3.046 GHz
20 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
21 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
22 2,603,501,247 instructions # 0.50 insns per cycle
23 # 1.48 stalled cycles per insn
24 484,357,498 branches # 283.455 M/sec
25 6,388,934 branch-misses # 1.32% of all branches
26
27 0.154822978 seconds time elapsed
Ingo Molnarddcacfa2009-04-20 15:37:32 +020028
Ingo Molnar52425192009-05-26 09:17:18 +020029 *
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020030 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
Ingo Molnar52425192009-05-26 09:17:18 +020031 *
32 * Improvements and fixes by:
33 *
34 * Arjan van de Ven <arjan@linux.intel.com>
35 * Yanmin Zhang <yanmin.zhang@intel.com>
36 * Wu Fengguang <fengguang.wu@intel.com>
37 * Mike Galbraith <efault@gmx.de>
38 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053039 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnar52425192009-05-26 09:17:18 +020040 *
41 * Released under the GPL v2. (and only v2, not any later version)
Ingo Molnarddcacfa2009-04-20 15:37:32 +020042 */
43
Peter Zijlstra1a482f32009-05-23 18:28:58 +020044#include "perf.h"
Ingo Molnar16f762a2009-05-27 09:10:38 +020045#include "builtin.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030046#include "util/cgroup.h"
Ingo Molnar148be2c2009-04-27 08:02:14 +020047#include "util/util.h"
Ingo Molnar52425192009-05-26 09:17:18 +020048#include "util/parse-options.h"
49#include "util/parse-events.h"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070050#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020051#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020052#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020053#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020054#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020055#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080056#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080057#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110058#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030059#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020060#include "util/thread_map.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020061
Peter Zijlstra1f16c572012-10-23 13:40:14 +020062#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020063#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020064#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020065
Stephane Eraniand7470b62010-12-01 18:49:05 +020066#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060067#define CNTR_NOT_SUPPORTED "<not supported>"
68#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020069
Jiri Olsad4f63a42015-06-26 11:29:26 +020070static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010071
Andi Kleen4cabc3d2013-08-21 16:47:26 -070072/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020073static const char *transaction_attrs = {
74 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070075 "{"
76 "instructions,"
77 "cycles,"
78 "cpu/cycles-t/,"
79 "cpu/tx-start/,"
80 "cpu/el-start/,"
81 "cpu/cycles-ct/"
82 "}"
83};
84
85/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +020086static const char * transaction_limited_attrs = {
87 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070088 "{"
89 "instructions,"
90 "cycles,"
91 "cpu/cycles-t/,"
92 "cpu/tx-start/"
93 "}"
94};
95
Robert Richter666e6d42012-04-05 18:26:27 +020096static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020097
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -030098static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +090099 .uid = UINT_MAX,
100};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530101
102static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200103static bool no_inherit = false;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200104static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000105static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200106static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700107static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200108static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200109static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200110static const char *csv_sep = NULL;
111static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800112static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200113static const char *pre_cmd = NULL;
114static const char *post_cmd = NULL;
115static bool sync_run = false;
Andi Kleen41191682013-08-02 17:41:11 -0700116static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100117static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500118static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100119static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100120static struct cpu_map *aggr_map;
121static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200122
Liming Wang60666c62009-12-31 16:05:50 +0800123static volatile int done = 0;
124
Jiri Olsa421a50f2015-07-21 14:31:22 +0200125static struct perf_stat_config stat_config = {
126 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200127 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200128};
129
Stephane Eranian13370a92013-01-29 12:47:44 +0100130static inline void diff_timespec(struct timespec *r, struct timespec *a,
131 struct timespec *b)
132{
133 r->tv_sec = a->tv_sec - b->tv_sec;
134 if (a->tv_nsec < b->tv_nsec) {
135 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
136 r->tv_sec--;
137 } else {
138 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
139 }
140}
141
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200142static void perf_stat__reset_stats(void)
143{
144 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200145 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200146}
147
Jiri Olsacac21422012-11-12 18:34:00 +0100148static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200149{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200150 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200151
Jiri Olsa711a5722015-07-21 14:31:23 +0200152 if (stat_config.scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200153 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
154 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200155
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200156 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300157
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300158 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300159 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200160
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300161 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200162 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700163 if (!initial_delay)
164 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200165 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300166
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300167 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200168}
169
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200170/*
171 * Does the counter have nsecs as a unit?
172 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200173static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200174{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200175 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
176 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200177 return 1;
178
179 return 0;
180}
181
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200182/*
183 * Read out the results of a single counter:
184 * do not aggregate counts across CPUs in system-wide mode
185 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200186static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200187{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100188 int nthreads = thread_map__nr(evsel_list->threads);
189 int ncpus = perf_evsel__nr_cpus(counter);
190 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200191
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000192 if (!counter->supported)
193 return -ENOENT;
194
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100195 if (counter->system_wide)
196 nthreads = 1;
197
198 for (thread = 0; thread < nthreads; thread++) {
199 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200200 struct perf_counts_values *count;
201
202 count = perf_counts(counter->counts, cpu, thread);
203 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100204 return -1;
205 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200206 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200207
208 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200209}
210
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200211static void read_counters(bool close_counters)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200212{
213 struct perf_evsel *counter;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200214
215 evlist__for_each(evsel_list, counter) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200216 if (read_counter(counter))
217 pr_warning("failed to read counter %s\n", counter->name);
218
Jiri Olsaf80010e2015-07-21 14:31:27 +0200219 if (perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200220 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200221
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200222 if (close_counters) {
Jiri Olsa106a94a2015-06-26 11:29:19 +0200223 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
224 thread_map__nr(evsel_list->threads));
225 }
226 }
227}
228
Jiri Olsaba411a92015-06-26 11:29:24 +0200229static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100230{
Stephane Eranian13370a92013-01-29 12:47:44 +0100231 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100232
Jiri Olsa106a94a2015-06-26 11:29:19 +0200233 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100234
Stephane Eranian13370a92013-01-29 12:47:44 +0100235 clock_gettime(CLOCK_MONOTONIC, &ts);
236 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100237
Jiri Olsad4f63a42015-06-26 11:29:26 +0200238 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100239}
240
Andi Kleen41191682013-08-02 17:41:11 -0700241static void handle_initial_delay(void)
242{
243 struct perf_evsel *counter;
244
245 if (initial_delay) {
246 const int ncpus = cpu_map__nr(evsel_list->cpus),
247 nthreads = thread_map__nr(evsel_list->threads);
248
249 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300250 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700251 perf_evsel__enable(counter, ncpus, nthreads);
252 }
253}
254
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300255static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300256
257/*
258 * perf_evlist__prepare_workload will send a SIGUSR1
259 * if the fork fails, since we asked by setting its
260 * want_signal to true.
261 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300262static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
263 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300264{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300265 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300266}
267
Namhyung Kimacf28922013-03-11 16:43:18 +0900268static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200269{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200270 int interval = stat_config.interval;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300271 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200272 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100273 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100274 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100275 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200276 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300277 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200278
Stephane Eranian13370a92013-01-29 12:47:44 +0100279 if (interval) {
280 ts.tv_sec = interval / 1000;
281 ts.tv_nsec = (interval % 1000) * 1000000;
282 } else {
283 ts.tv_sec = 1;
284 ts.tv_nsec = 0;
285 }
286
Liming Wang60666c62009-12-31 16:05:50 +0800287 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300288 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
289 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900290 perror("failed to prepare workload");
291 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800292 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900293 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000294 }
295
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200296 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300297 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200298
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300299 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100300 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600301 /*
302 * PPC returns ENXIO for HW counters until 2.6.37
303 * (behavior changed with commit b0a873e).
304 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100305 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600306 errno == ENOENT || errno == EOPNOTSUPP ||
307 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600308 if (verbose)
309 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300310 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600311 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400312
313 if ((counter->leader != counter) ||
314 !(counter->leader->nr_members > 1))
315 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600316 }
Ingo Molnarede70292011-04-28 08:48:42 +0200317
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300318 perf_evsel__open_strerror(counter, &target,
319 errno, msg, sizeof(msg));
320 ui__error("%s\n", msg);
321
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200322 if (child_pid != -1)
323 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600324
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200325 return -1;
326 }
David Ahern2cee77c2011-05-30 08:55:59 -0600327 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100328
329 l = strlen(counter->unit);
330 if (l > unit_width)
331 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300332 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200333
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300334 if (perf_evlist__apply_filters(evsel_list, &counter)) {
335 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
336 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000337 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100338 return -1;
339 }
340
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200341 /*
342 * Enable counters and exec the command:
343 */
344 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100345 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200346
Liming Wang60666c62009-12-31 16:05:50 +0800347 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900348 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700349 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900350
Stephane Eranian13370a92013-01-29 12:47:44 +0100351 if (interval) {
352 while (!waitpid(child_pid, &status, WNOHANG)) {
353 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200354 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100355 }
356 }
Liming Wang60666c62009-12-31 16:05:50 +0800357 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300358
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300359 if (workload_exec_errno) {
360 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
361 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300362 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300363 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300364
Andi Kleen33e49ea2011-09-15 14:31:40 -0700365 if (WIFSIGNALED(status))
366 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800367 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700368 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100369 while (!done) {
370 nanosleep(&ts, NULL);
371 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200372 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100373 }
Liming Wang60666c62009-12-31 16:05:50 +0800374 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200375
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200376 t1 = rdclock();
377
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200378 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200379
Jiri Olsa106a94a2015-06-26 11:29:19 +0200380 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200381
Ingo Molnar42202dd2009-06-13 14:57:28 +0200382 return WEXITSTATUS(status);
383}
384
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300385static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200386{
387 int ret;
388
389 if (pre_cmd) {
390 ret = system(pre_cmd);
391 if (ret)
392 return ret;
393 }
394
395 if (sync_run)
396 sync();
397
398 ret = __run_perf_stat(argc, argv);
399 if (ret)
400 return ret;
401
402 if (post_cmd) {
403 ret = system(post_cmd);
404 if (ret)
405 return ret;
406 }
407
408 return ret;
409}
410
Andi Kleend73515c2015-03-11 07:16:27 -0700411static void print_running(u64 run, u64 ena)
412{
413 if (csv_output) {
Jiri Olsa58215222015-07-21 14:31:24 +0200414 fprintf(stat_config.output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700415 csv_sep,
416 run,
417 csv_sep,
418 ena ? 100.0 * run / ena : 100.0);
419 } else if (run != ena) {
Jiri Olsa58215222015-07-21 14:31:24 +0200420 fprintf(stat_config.output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700421 }
422}
423
Ingo Molnarf99844c2011-04-27 05:35:39 +0200424static void print_noise_pct(double total, double avg)
425{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800426 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200427
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700428 if (csv_output)
Jiri Olsa58215222015-07-21 14:31:24 +0200429 fprintf(stat_config.output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600430 else if (pct)
Jiri Olsa58215222015-07-21 14:31:24 +0200431 fprintf(stat_config.output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200432}
433
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200434static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200435{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200436 struct perf_stat *ps;
437
Peter Zijlstra849abde2009-09-04 18:23:38 +0200438 if (run_count == 1)
439 return;
440
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200441 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200442 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200443}
444
Stephane Eranian12c08a92013-02-14 13:57:29 +0100445static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200446{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200447 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100448 case AGGR_CORE:
Jiri Olsa58215222015-07-21 14:31:24 +0200449 fprintf(stat_config.output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100450 cpu_map__id_to_socket(id),
451 csv_output ? 0 : -8,
452 cpu_map__id_to_cpu(id),
453 csv_sep,
454 csv_output ? 0 : 4,
455 nr,
456 csv_sep);
457 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100458 case AGGR_SOCKET:
Jiri Olsa58215222015-07-21 14:31:24 +0200459 fprintf(stat_config.output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100460 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100461 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100462 csv_sep,
463 csv_output ? 0 : 4,
464 nr,
465 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100466 break;
467 case AGGR_NONE:
Jiri Olsa58215222015-07-21 14:31:24 +0200468 fprintf(stat_config.output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200469 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100470 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100471 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200472 case AGGR_THREAD:
Jiri Olsa58215222015-07-21 14:31:24 +0200473 fprintf(stat_config.output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200474 csv_output ? 0 : 16,
475 thread_map__comm(evsel->threads, id),
476 csv_output ? 0 : -8,
477 thread_map__pid(evsel->threads, id),
478 csv_sep);
479 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100480 case AGGR_GLOBAL:
481 default:
482 break;
483 }
484}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200485
Andi Kleenda88c7f2014-09-24 13:50:46 -0700486static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100487{
Jiri Olsa58215222015-07-21 14:31:24 +0200488 FILE *output = stat_config.output;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100489 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100490 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600491 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100492
Stephane Eranian410136f2013-11-12 17:58:49 +0100493 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
494 fmt_n = csv_output ? "%s" : "%-25s";
495
Andi Kleenda88c7f2014-09-24 13:50:46 -0700496 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100497
David Ahern4bbe5a62013-09-28 14:28:00 -0600498 scnprintf(name, sizeof(name), "%s%s",
499 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100500
501 fprintf(output, fmt_v, msecs, csv_sep);
502
503 if (csv_output)
504 fprintf(output, "%s%s", evsel->unit, csv_sep);
505 else
506 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
507
508 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200509
Stephane Eranian023695d2011-02-14 11:20:01 +0200510 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200511 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200512
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200513 if (csv_output || stat_config.interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200514 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200515
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200516 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200517 fprintf(output, " # %8.3f CPUs utilized ",
518 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900519 else
520 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200521}
522
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200523static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
524{
Jiri Olsa58215222015-07-21 14:31:24 +0200525 FILE *output = stat_config.output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200526 double sc = evsel->scale;
527 const char *fmt;
528 int cpu = cpu_map__id_to_cpu(id);
529
530 if (csv_output) {
531 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
532 } else {
533 if (big_num)
534 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
535 else
536 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
537 }
538
539 aggr_printout(evsel, id, nr);
540
Jiri Olsa421a50f2015-07-21 14:31:22 +0200541 if (stat_config.aggr_mode == AGGR_GLOBAL)
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200542 cpu = 0;
543
544 fprintf(output, fmt, avg, csv_sep);
545
546 if (evsel->unit)
547 fprintf(output, "%-*s%s",
548 csv_output ? 0 : unit_width,
549 evsel->unit, csv_sep);
550
551 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
552
553 if (evsel->cgrp)
554 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
555
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200556 if (csv_output || stat_config.interval)
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200557 return;
558
Jiri Olsa421a50f2015-07-21 14:31:22 +0200559 perf_stat__print_shadow_stats(output, evsel, avg, cpu,
560 stat_config.aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200561}
562
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100563static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100564{
Jiri Olsa58215222015-07-21 14:31:24 +0200565 FILE *output = stat_config.output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100566 struct perf_evsel *counter;
Stephane Eranian582ec0822013-07-05 19:06:45 +0200567 int cpu, cpu2, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100568 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100569 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100570
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100571 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100572 return;
573
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100574 for (s = 0; s < aggr_map->nr; s++) {
575 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300576 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100577 val = ena = run = 0;
578 nr = 0;
579 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200580 cpu2 = perf_evsel__cpus(counter)->map[cpu];
581 s2 = aggr_get_id(evsel_list->cpus, cpu2);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100582 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100583 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200584 val += perf_counts(counter->counts, cpu, 0)->val;
585 ena += perf_counts(counter->counts, cpu, 0)->ena;
586 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100587 nr++;
588 }
589 if (prefix)
590 fprintf(output, "%s", prefix);
591
592 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200593 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100594
Stephane Eranian410136f2013-11-12 17:58:49 +0100595 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100596 csv_output ? 0 : 18,
597 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100598 csv_sep);
599
600 fprintf(output, "%-*s%s",
601 csv_output ? 0 : unit_width,
602 counter->unit, csv_sep);
603
604 fprintf(output, "%*s",
605 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100606 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100607
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100608 if (counter->cgrp)
609 fprintf(output, "%s%s",
610 csv_sep, counter->cgrp->name);
611
Andi Kleend73515c2015-03-11 07:16:27 -0700612 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100613 fputc('\n', output);
614 continue;
615 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100616 uval = val * counter->scale;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100617
618 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100619 nsec_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100620 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100621 abs_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100622
Andi Kleend73515c2015-03-11 07:16:27 -0700623 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100624 print_noise(counter, 1.0);
625
Andi Kleend73515c2015-03-11 07:16:27 -0700626 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100627 fputc('\n', output);
628 }
629 }
630}
631
Jiri Olsa32b8af82015-06-26 11:29:27 +0200632static void print_aggr_thread(struct perf_evsel *counter, char *prefix)
633{
Jiri Olsa58215222015-07-21 14:31:24 +0200634 FILE *output = stat_config.output;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200635 int nthreads = thread_map__nr(counter->threads);
636 int ncpus = cpu_map__nr(counter->cpus);
637 int cpu, thread;
638 double uval;
639
640 for (thread = 0; thread < nthreads; thread++) {
641 u64 ena = 0, run = 0, val = 0;
642
643 for (cpu = 0; cpu < ncpus; cpu++) {
644 val += perf_counts(counter->counts, cpu, thread)->val;
645 ena += perf_counts(counter->counts, cpu, thread)->ena;
646 run += perf_counts(counter->counts, cpu, thread)->run;
647 }
648
649 if (prefix)
650 fprintf(output, "%s", prefix);
651
652 uval = val * counter->scale;
653
654 if (nsec_counter(counter))
655 nsec_printout(thread, 0, counter, uval);
656 else
657 abs_printout(thread, 0, counter, uval);
658
659 if (!csv_output)
660 print_noise(counter, 1.0);
661
662 print_running(run, ena);
663 fputc('\n', output);
664 }
665}
666
Ingo Molnar42202dd2009-06-13 14:57:28 +0200667/*
668 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200669 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200670 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100671static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200672{
Jiri Olsa58215222015-07-21 14:31:24 +0200673 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200674 struct perf_stat *ps = counter->priv;
675 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200676 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100677 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700678 double avg_enabled, avg_running;
679
680 avg_enabled = avg_stats(&ps->res_stats[1]);
681 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200682
Stephane Eranian13370a92013-01-29 12:47:44 +0100683 if (prefix)
684 fprintf(output, "%s", prefix);
685
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000686 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100687 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200688 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600689 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100690 csv_sep);
691 fprintf(output, "%-*s%s",
692 csv_output ? 0 : unit_width,
693 counter->unit, csv_sep);
694 fprintf(output, "%*s",
695 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300696 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200697
698 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200699 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200700
Andi Kleend73515c2015-03-11 07:16:27 -0700701 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200702 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200703 return;
704 }
705
Stephane Eranian410136f2013-11-12 17:58:49 +0100706 uval = avg * counter->scale;
707
Ingo Molnar42202dd2009-06-13 14:57:28 +0200708 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100709 nsec_printout(-1, 0, counter, uval);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200710 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100711 abs_printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200712
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700713 print_noise(counter, avg);
714
Andi Kleend73515c2015-03-11 07:16:27 -0700715 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200716 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200717}
718
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200719/*
720 * Print out the results of a single counter:
721 * does not use aggregated count in system-wide
722 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100723static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200724{
Jiri Olsa58215222015-07-21 14:31:24 +0200725 FILE *output = stat_config.output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200726 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100727 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200728 int cpu;
729
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800730 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200731 val = perf_counts(counter->counts, cpu, 0)->val;
732 ena = perf_counts(counter->counts, cpu, 0)->ena;
733 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100734
735 if (prefix)
736 fprintf(output, "%s", prefix);
737
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200738 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100739 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200740 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800741 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200742 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600743 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100744 csv_sep);
745
746 fprintf(output, "%-*s%s",
747 csv_output ? 0 : unit_width,
748 counter->unit, csv_sep);
749
750 fprintf(output, "%*s",
751 csv_output ? 0 : -25,
752 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200753
Stephane Eranian023695d2011-02-14 11:20:01 +0200754 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200755 fprintf(output, "%s%s",
756 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200757
Andi Kleend73515c2015-03-11 07:16:27 -0700758 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200759 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200760 continue;
761 }
762
Stephane Eranian410136f2013-11-12 17:58:49 +0100763 uval = val * counter->scale;
764
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200765 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100766 nsec_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200767 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100768 abs_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200769
Andi Kleend73515c2015-03-11 07:16:27 -0700770 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200771 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700772 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200773
Stephane Eranian4aa90152011-08-15 22:22:33 +0200774 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200775 }
776}
777
Jiri Olsad4f63a42015-06-26 11:29:26 +0200778static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200779{
Jiri Olsa58215222015-07-21 14:31:24 +0200780 FILE *output = stat_config.output;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200781 static int num_print_interval;
782
783 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
784
785 if (num_print_interval == 0 && !csv_output) {
Jiri Olsa421a50f2015-07-21 14:31:22 +0200786 switch (stat_config.aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +0200787 case AGGR_SOCKET:
788 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
789 break;
790 case AGGR_CORE:
791 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
792 break;
793 case AGGR_NONE:
794 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
795 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200796 case AGGR_THREAD:
797 fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit");
798 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200799 case AGGR_GLOBAL:
800 default:
801 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
802 }
803 }
804
805 if (++num_print_interval == 25)
806 num_print_interval = 0;
807}
808
809static void print_header(int argc, const char **argv)
810{
Jiri Olsa58215222015-07-21 14:31:24 +0200811 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200812 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200813
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200814 fflush(stdout);
815
Stephane Eraniand7470b62010-12-01 18:49:05 +0200816 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200817 fprintf(output, "\n");
818 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600819 if (target.system_wide)
820 fprintf(output, "\'system wide");
821 else if (target.cpu_list)
822 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300823 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200824 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200825 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200826 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900827 } else if (target.pid)
828 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200829 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900830 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200831
Stephane Eranian4aa90152011-08-15 22:22:33 +0200832 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200833 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200834 fprintf(output, " (%d runs)", run_count);
835 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200836 }
Jiri Olsad4f63a42015-06-26 11:29:26 +0200837}
838
839static void print_footer(void)
840{
Jiri Olsa58215222015-07-21 14:31:24 +0200841 FILE *output = stat_config.output;
842
Jiri Olsad4f63a42015-06-26 11:29:26 +0200843 if (!null_run)
844 fprintf(output, "\n");
845 fprintf(output, " %17.9f seconds time elapsed",
846 avg_stats(&walltime_nsecs_stats)/1e9);
847 if (run_count > 1) {
848 fprintf(output, " ");
849 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
850 avg_stats(&walltime_nsecs_stats));
851 }
852 fprintf(output, "\n\n");
853}
854
855static void print_counters(struct timespec *ts, int argc, const char **argv)
856{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200857 int interval = stat_config.interval;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200858 struct perf_evsel *counter;
859 char buf[64], *prefix = NULL;
860
861 if (interval)
862 print_interval(prefix = buf, ts);
863 else
864 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200865
Jiri Olsa421a50f2015-07-21 14:31:22 +0200866 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100867 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100868 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +0200869 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100870 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200871 case AGGR_THREAD:
872 evlist__for_each(evsel_list, counter)
873 print_aggr_thread(counter, prefix);
874 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100875 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300876 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200877 print_counter_aggr(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100878 break;
879 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300880 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200881 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100882 break;
883 default:
884 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200885 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200886
Jiri Olsad4f63a42015-06-26 11:29:26 +0200887 if (!interval && !csv_output)
888 print_footer();
889
Jiri Olsa58215222015-07-21 14:31:24 +0200890 fflush(stat_config.output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200891}
892
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200893static volatile int signr = -1;
894
Ingo Molnar52425192009-05-26 09:17:18 +0200895static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200896{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200897 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800898 done = 1;
899
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200900 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200901 /*
902 * render child_pid harmless
903 * won't send SIGTERM to a random
904 * process in case of race condition
905 * and fast PID recycling
906 */
907 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200908}
909
910static void sig_atexit(void)
911{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200912 sigset_t set, oset;
913
914 /*
915 * avoid race condition with SIGCHLD handler
916 * in skip_signal() which is modifying child_pid
917 * goal is to avoid send SIGTERM to a random
918 * process
919 */
920 sigemptyset(&set);
921 sigaddset(&set, SIGCHLD);
922 sigprocmask(SIG_BLOCK, &set, &oset);
923
Chris Wilson933da832009-10-04 01:35:01 +0100924 if (child_pid != -1)
925 kill(child_pid, SIGTERM);
926
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200927 sigprocmask(SIG_SETMASK, &oset, NULL);
928
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200929 if (signr == -1)
930 return;
931
932 signal(signr, SIG_DFL);
933 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200934}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200935
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300936static int stat__set_big_num(const struct option *opt __maybe_unused,
937 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200938{
939 big_num_opt = unset ? 0 : 1;
940 return 0;
941}
942
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100943static int perf_stat_init_aggr_mode(void)
944{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200945 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100946 case AGGR_SOCKET:
947 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
948 perror("cannot build socket map");
949 return -1;
950 }
951 aggr_get_id = cpu_map__get_socket;
952 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100953 case AGGR_CORE:
954 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
955 perror("cannot build core map");
956 return -1;
957 }
958 aggr_get_id = cpu_map__get_core;
959 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100960 case AGGR_NONE:
961 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +0200962 case AGGR_THREAD:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100963 default:
964 break;
965 }
966 return 0;
967}
968
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200969/*
970 * Add default attributes, if there were no attributes specified or
971 * if -d/--detailed, -d -d or -d -d -d is used:
972 */
973static int add_default_attributes(void)
974{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -0300975 struct perf_event_attr default_attrs[] = {
976
977 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
978 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
979 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
980 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
981
982 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
983 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
984 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
985 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
986 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
987 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
988
989};
990
991/*
992 * Detailed stats (-d), covering the L1 and last level data caches:
993 */
994 struct perf_event_attr detailed_attrs[] = {
995
996 { .type = PERF_TYPE_HW_CACHE,
997 .config =
998 PERF_COUNT_HW_CACHE_L1D << 0 |
999 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1000 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1001
1002 { .type = PERF_TYPE_HW_CACHE,
1003 .config =
1004 PERF_COUNT_HW_CACHE_L1D << 0 |
1005 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1006 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1007
1008 { .type = PERF_TYPE_HW_CACHE,
1009 .config =
1010 PERF_COUNT_HW_CACHE_LL << 0 |
1011 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1012 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1013
1014 { .type = PERF_TYPE_HW_CACHE,
1015 .config =
1016 PERF_COUNT_HW_CACHE_LL << 0 |
1017 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1018 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1019};
1020
1021/*
1022 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1023 */
1024 struct perf_event_attr very_detailed_attrs[] = {
1025
1026 { .type = PERF_TYPE_HW_CACHE,
1027 .config =
1028 PERF_COUNT_HW_CACHE_L1I << 0 |
1029 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1030 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1031
1032 { .type = PERF_TYPE_HW_CACHE,
1033 .config =
1034 PERF_COUNT_HW_CACHE_L1I << 0 |
1035 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1036 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1037
1038 { .type = PERF_TYPE_HW_CACHE,
1039 .config =
1040 PERF_COUNT_HW_CACHE_DTLB << 0 |
1041 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1042 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1043
1044 { .type = PERF_TYPE_HW_CACHE,
1045 .config =
1046 PERF_COUNT_HW_CACHE_DTLB << 0 |
1047 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1048 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1049
1050 { .type = PERF_TYPE_HW_CACHE,
1051 .config =
1052 PERF_COUNT_HW_CACHE_ITLB << 0 |
1053 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1054 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1055
1056 { .type = PERF_TYPE_HW_CACHE,
1057 .config =
1058 PERF_COUNT_HW_CACHE_ITLB << 0 |
1059 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1060 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1061
1062};
1063
1064/*
1065 * Very, very detailed stats (-d -d -d), adding prefetch events:
1066 */
1067 struct perf_event_attr very_very_detailed_attrs[] = {
1068
1069 { .type = PERF_TYPE_HW_CACHE,
1070 .config =
1071 PERF_COUNT_HW_CACHE_L1D << 0 |
1072 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1073 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1074
1075 { .type = PERF_TYPE_HW_CACHE,
1076 .config =
1077 PERF_COUNT_HW_CACHE_L1D << 0 |
1078 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1079 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1080};
1081
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001082 /* Set attrs if no event is selected and !null_run: */
1083 if (null_run)
1084 return 0;
1085
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001086 if (transaction_run) {
1087 int err;
1088 if (pmu_have_event("cpu", "cycles-ct") &&
1089 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001090 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001091 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001092 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1093 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001094 fprintf(stderr, "Cannot set up transaction events\n");
1095 return -1;
1096 }
1097 return 0;
1098 }
1099
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001100 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001101 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001102 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001103 }
1104
1105 /* Detailed events get appended to the event list: */
1106
1107 if (detailed_run < 1)
1108 return 0;
1109
1110 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001111 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001112 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001113
1114 if (detailed_run < 2)
1115 return 0;
1116
1117 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001118 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001119 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001120
1121 if (detailed_run < 3)
1122 return 0;
1123
1124 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001125 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001126}
1127
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001128int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001129{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001130 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001131 int output_fd = 0;
1132 const char *output_name = NULL;
1133 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001134 OPT_BOOLEAN('T', "transaction", &transaction_run,
1135 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001136 OPT_CALLBACK('e', "event", &evsel_list, "event",
1137 "event selector. use 'perf list' to list available events",
1138 parse_events_option),
1139 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1140 "event filter", parse_filter),
1141 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1142 "child tasks do not inherit counters"),
1143 OPT_STRING('p', "pid", &target.pid, "pid",
1144 "stat events on existing process id"),
1145 OPT_STRING('t', "tid", &target.tid, "tid",
1146 "stat events on existing thread id"),
1147 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1148 "system-wide collection from all CPUs"),
1149 OPT_BOOLEAN('g', "group", &group,
1150 "put the counters into a counter group"),
Jiri Olsa711a5722015-07-21 14:31:23 +02001151 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001152 OPT_INCR('v', "verbose", &verbose,
1153 "be more verbose (show counter open errors, etc)"),
1154 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001155 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001156 OPT_BOOLEAN('n', "null", &null_run,
1157 "null run - dont start any counters"),
1158 OPT_INCR('d', "detailed", &detailed_run,
1159 "detailed run - start a lot of events"),
1160 OPT_BOOLEAN('S', "sync", &sync_run,
1161 "call sync() before starting a run"),
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001162 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001163 "print large numbers with thousands\' separators",
1164 stat__set_big_num),
1165 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1166 "list of cpus to monitor in system-wide"),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001167 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001168 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001169 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1170 "print counts with custom separator"),
1171 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1172 "monitor event in cgroup name only", parse_cgroups),
1173 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1174 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1175 OPT_INTEGER(0, "log-fd", &output_fd,
1176 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001177 OPT_STRING(0, "pre", &pre_cmd, "command",
1178 "command to run prior to the measured command"),
1179 OPT_STRING(0, "post", &post_cmd, "command",
1180 "command to run after to the measured command"),
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001181 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Stephane Eranian13370a92013-01-29 12:47:44 +01001182 "print counts at regular interval in ms (>= 100)"),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001183 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001184 "aggregate counts per processor socket", AGGR_SOCKET),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001185 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
Stephane Eranian12c08a92013-02-14 13:57:29 +01001186 "aggregate counts per physical processor core", AGGR_CORE),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001187 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
Jiri Olsa32b8af82015-06-26 11:29:27 +02001188 "aggregate counts per thread", AGGR_THREAD),
Andi Kleen41191682013-08-02 17:41:11 -07001189 OPT_UINTEGER('D', "delay", &initial_delay,
1190 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001191 OPT_END()
1192 };
1193 const char * const stat_usage[] = {
1194 "perf stat [<options>] [<command>]",
1195 NULL
1196 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001197 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001198 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001199 FILE *output = stderr;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001200 unsigned int interval;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001201
Stephane Eranian5af52b52010-05-18 15:00:01 +02001202 setlocale(LC_ALL, "");
1203
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001204 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001205 if (evsel_list == NULL)
1206 return -ENOMEM;
1207
Anton Blancharda0541232009-07-22 23:04:12 +10001208 argc = parse_options(argc, argv, options, stat_usage,
1209 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001210
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001211 interval = stat_config.interval;
1212
Stephane Eranian4aa90152011-08-15 22:22:33 +02001213 if (output_name && strcmp(output_name, "-"))
1214 output = NULL;
1215
Jim Cromie56f3bae2011-09-07 17:14:00 -06001216 if (output_name && output_fd) {
1217 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001218 parse_options_usage(stat_usage, options, "o", 1);
1219 parse_options_usage(NULL, options, "log-fd", 0);
1220 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001221 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001222
1223 if (output_fd < 0) {
1224 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001225 parse_options_usage(stat_usage, options, "log-fd", 0);
1226 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001227 }
1228
Stephane Eranian4aa90152011-08-15 22:22:33 +02001229 if (!output) {
1230 struct timespec tm;
1231 mode = append_file ? "a" : "w";
1232
1233 output = fopen(output_name, mode);
1234 if (!output) {
1235 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001236 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001237 }
1238 clock_gettime(CLOCK_REALTIME, &tm);
1239 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001240 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001241 mode = append_file ? "a" : "w";
1242 output = fdopen(output_fd, mode);
1243 if (!output) {
1244 perror("Failed opening logfd");
1245 return -errno;
1246 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001247 }
1248
Jiri Olsa58215222015-07-21 14:31:24 +02001249 stat_config.output = output;
1250
Jim Cromied4ffd042011-09-07 17:14:03 -06001251 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001252 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001253 if (!strcmp(csv_sep, "\\t"))
1254 csv_sep = "\t";
1255 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001256 csv_sep = DEFAULT_SEPARATOR;
1257
1258 /*
1259 * let the spreadsheet do the pretty-printing
1260 */
1261 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001262 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001263 if (big_num_opt == 1) {
1264 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001265 parse_options_usage(stat_usage, options, "B", 1);
1266 parse_options_usage(NULL, options, "x", 1);
1267 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001268 } else /* Nope, so disable big number formatting */
1269 big_num = false;
1270 } else if (big_num_opt == 0) /* User passed --no-big-num */
1271 big_num = false;
1272
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001273 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001274 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001275
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001276 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001277 pr_err("Run count must be a positive number\n");
1278 parse_options_usage(stat_usage, options, "r", 1);
1279 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001280 } else if (run_count == 0) {
1281 forever = true;
1282 run_count = 1;
1283 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001284
Jiri Olsa421a50f2015-07-21 14:31:22 +02001285 if ((stat_config.aggr_mode == AGGR_THREAD) && !target__has_task(&target)) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001286 fprintf(stderr, "The --per-thread option is only available "
1287 "when monitoring via -p -t options.\n");
1288 parse_options_usage(NULL, options, "p", 1);
1289 parse_options_usage(NULL, options, "t", 1);
1290 goto out;
1291 }
1292
1293 /*
1294 * no_aggr, cgroup are for system-wide only
1295 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1296 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001297 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1298 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001299 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001300 fprintf(stderr, "both cgroup and no-aggregation "
1301 "modes only available in system-wide mode\n");
1302
Namhyung Kimcc03c542013-11-01 16:33:15 +09001303 parse_options_usage(stat_usage, options, "G", 1);
1304 parse_options_usage(NULL, options, "A", 1);
1305 parse_options_usage(NULL, options, "a", 1);
1306 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001307 }
1308
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001309 if (add_default_attributes())
1310 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001311
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001312 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001313
Namhyung Kim77a6f012012-05-07 14:09:04 +09001314 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001315 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001316 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001317 parse_options_usage(stat_usage, options, "p", 1);
1318 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001319 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001320 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001321 parse_options_usage(stat_usage, options, "C", 1);
1322 parse_options_usage(NULL, options, "a", 1);
1323 }
1324 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001325 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001326
1327 /*
1328 * Initialize thread_map with comm names,
1329 * so we could print it out on output.
1330 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001331 if (stat_config.aggr_mode == AGGR_THREAD)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001332 thread_map__read_comms(evsel_list->threads);
1333
Stephane Eranian13370a92013-01-29 12:47:44 +01001334 if (interval && interval < 100) {
1335 pr_err("print interval must be >= 100ms\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001336 parse_options_usage(stat_usage, options, "I", 1);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001337 goto out;
Stephane Eranian13370a92013-01-29 12:47:44 +01001338 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001339
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001340 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001341 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001342
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001343 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001344 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001345
Ingo Molnar58d7e992009-05-15 11:03:23 +02001346 /*
1347 * We dont want to block the signals - that would cause
1348 * child tasks to inherit that and Ctrl-C would not work.
1349 * What we want is for Ctrl-C to work in the exec()-ed
1350 * task, but being ignored by perf stat itself:
1351 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001352 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001353 if (!forever)
1354 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001355 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001356 signal(SIGALRM, skip_signal);
1357 signal(SIGABRT, skip_signal);
1358
Ingo Molnar42202dd2009-06-13 14:57:28 +02001359 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001360 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001361 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001362 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1363 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001364
Ingo Molnar42202dd2009-06-13 14:57:28 +02001365 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001366 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001367 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001368 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001369 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001370 }
1371
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001372 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001373 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001374
1375 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001376out:
1377 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001378 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001379}