blob: 7aa039bd379a42e3d10cdd4e76115fccbc6bb881 [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
103static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200104static bool no_inherit = false;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200105static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000106static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200107static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700108static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200109static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200110static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200111static const char *csv_sep = NULL;
112static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800113static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200114static const char *pre_cmd = NULL;
115static const char *post_cmd = NULL;
116static bool sync_run = false;
Andi Kleen41191682013-08-02 17:41:11 -0700117static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100118static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500119static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100120static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100121static struct cpu_map *aggr_map;
122static int (*aggr_get_id)(struct cpu_map *m, int cpu);
Stephane Eranian5af52b52010-05-18 15:00:01 +0200123
Liming Wang60666c62009-12-31 16:05:50 +0800124static volatile int done = 0;
125
Jiri Olsa421a50f2015-07-21 14:31:22 +0200126static struct perf_stat_config stat_config = {
127 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200128 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200129};
130
Stephane Eranian13370a92013-01-29 12:47:44 +0100131static inline void diff_timespec(struct timespec *r, struct timespec *a,
132 struct timespec *b)
133{
134 r->tv_sec = a->tv_sec - b->tv_sec;
135 if (a->tv_nsec < b->tv_nsec) {
136 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
137 r->tv_sec--;
138 } else {
139 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
140 }
141}
142
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200143static void perf_stat__reset_stats(void)
144{
145 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200146 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200147}
148
Jiri Olsacac21422012-11-12 18:34:00 +0100149static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200150{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200151 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200152
Jiri Olsa711a5722015-07-21 14:31:23 +0200153 if (stat_config.scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200154 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
155 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200156
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200157 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300158
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300159 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300160 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200161
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300162 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200163 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700164 if (!initial_delay)
165 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200166 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300167
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300168 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200169}
170
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200171/*
172 * Does the counter have nsecs as a unit?
173 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200174static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200175{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200176 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
177 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200178 return 1;
179
180 return 0;
181}
182
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200183/*
184 * Read out the results of a single counter:
185 * do not aggregate counts across CPUs in system-wide mode
186 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200187static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200188{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100189 int nthreads = thread_map__nr(evsel_list->threads);
190 int ncpus = perf_evsel__nr_cpus(counter);
191 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200192
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000193 if (!counter->supported)
194 return -ENOENT;
195
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100196 if (counter->system_wide)
197 nthreads = 1;
198
199 for (thread = 0; thread < nthreads; thread++) {
200 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200201 struct perf_counts_values *count;
202
203 count = perf_counts(counter->counts, cpu, thread);
204 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100205 return -1;
206 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200207 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200208
209 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200210}
211
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200212static void read_counters(bool close_counters)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200213{
214 struct perf_evsel *counter;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200215
216 evlist__for_each(evsel_list, counter) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200217 if (read_counter(counter))
218 pr_warning("failed to read counter %s\n", counter->name);
219
Jiri Olsaf80010e2015-07-21 14:31:27 +0200220 if (perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200221 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200222
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200223 if (close_counters) {
Jiri Olsa106a94a2015-06-26 11:29:19 +0200224 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
225 thread_map__nr(evsel_list->threads));
226 }
227 }
228}
229
Jiri Olsaba411a92015-06-26 11:29:24 +0200230static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100231{
Stephane Eranian13370a92013-01-29 12:47:44 +0100232 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100233
Jiri Olsa106a94a2015-06-26 11:29:19 +0200234 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100235
Stephane Eranian13370a92013-01-29 12:47:44 +0100236 clock_gettime(CLOCK_MONOTONIC, &ts);
237 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100238
Jiri Olsad4f63a42015-06-26 11:29:26 +0200239 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100240}
241
Andi Kleen41191682013-08-02 17:41:11 -0700242static void handle_initial_delay(void)
243{
244 struct perf_evsel *counter;
245
246 if (initial_delay) {
247 const int ncpus = cpu_map__nr(evsel_list->cpus),
248 nthreads = thread_map__nr(evsel_list->threads);
249
250 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300251 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700252 perf_evsel__enable(counter, ncpus, nthreads);
253 }
254}
255
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300256static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300257
258/*
259 * perf_evlist__prepare_workload will send a SIGUSR1
260 * if the fork fails, since we asked by setting its
261 * want_signal to true.
262 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300263static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
264 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300265{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300266 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300267}
268
Namhyung Kimacf28922013-03-11 16:43:18 +0900269static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200270{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200271 int interval = stat_config.interval;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300272 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200273 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100274 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100275 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100276 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200277 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300278 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200279
Stephane Eranian13370a92013-01-29 12:47:44 +0100280 if (interval) {
281 ts.tv_sec = interval / 1000;
282 ts.tv_nsec = (interval % 1000) * 1000000;
283 } else {
284 ts.tv_sec = 1;
285 ts.tv_nsec = 0;
286 }
287
Liming Wang60666c62009-12-31 16:05:50 +0800288 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300289 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
290 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900291 perror("failed to prepare workload");
292 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800293 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900294 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000295 }
296
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200297 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300298 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200299
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300300 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100301 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600302 /*
303 * PPC returns ENXIO for HW counters until 2.6.37
304 * (behavior changed with commit b0a873e).
305 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100306 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600307 errno == ENOENT || errno == EOPNOTSUPP ||
308 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600309 if (verbose)
310 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300311 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600312 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400313
314 if ((counter->leader != counter) ||
315 !(counter->leader->nr_members > 1))
316 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600317 }
Ingo Molnarede70292011-04-28 08:48:42 +0200318
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300319 perf_evsel__open_strerror(counter, &target,
320 errno, msg, sizeof(msg));
321 ui__error("%s\n", msg);
322
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200323 if (child_pid != -1)
324 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600325
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200326 return -1;
327 }
David Ahern2cee77c2011-05-30 08:55:59 -0600328 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100329
330 l = strlen(counter->unit);
331 if (l > unit_width)
332 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300333 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200334
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300335 if (perf_evlist__apply_filters(evsel_list, &counter)) {
336 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
337 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000338 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100339 return -1;
340 }
341
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200342 /*
343 * Enable counters and exec the command:
344 */
345 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100346 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200347
Liming Wang60666c62009-12-31 16:05:50 +0800348 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900349 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700350 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900351
Stephane Eranian13370a92013-01-29 12:47:44 +0100352 if (interval) {
353 while (!waitpid(child_pid, &status, WNOHANG)) {
354 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200355 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100356 }
357 }
Liming Wang60666c62009-12-31 16:05:50 +0800358 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300359
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300360 if (workload_exec_errno) {
361 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
362 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300363 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300364 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300365
Andi Kleen33e49ea2011-09-15 14:31:40 -0700366 if (WIFSIGNALED(status))
367 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800368 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700369 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100370 while (!done) {
371 nanosleep(&ts, NULL);
372 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200373 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100374 }
Liming Wang60666c62009-12-31 16:05:50 +0800375 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200376
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200377 t1 = rdclock();
378
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200379 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200380
Jiri Olsa106a94a2015-06-26 11:29:19 +0200381 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200382
Ingo Molnar42202dd2009-06-13 14:57:28 +0200383 return WEXITSTATUS(status);
384}
385
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300386static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200387{
388 int ret;
389
390 if (pre_cmd) {
391 ret = system(pre_cmd);
392 if (ret)
393 return ret;
394 }
395
396 if (sync_run)
397 sync();
398
399 ret = __run_perf_stat(argc, argv);
400 if (ret)
401 return ret;
402
403 if (post_cmd) {
404 ret = system(post_cmd);
405 if (ret)
406 return ret;
407 }
408
409 return ret;
410}
411
Andi Kleend73515c2015-03-11 07:16:27 -0700412static void print_running(u64 run, u64 ena)
413{
414 if (csv_output) {
Jiri Olsa58215222015-07-21 14:31:24 +0200415 fprintf(stat_config.output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700416 csv_sep,
417 run,
418 csv_sep,
419 ena ? 100.0 * run / ena : 100.0);
420 } else if (run != ena) {
Jiri Olsa58215222015-07-21 14:31:24 +0200421 fprintf(stat_config.output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700422 }
423}
424
Ingo Molnarf99844c2011-04-27 05:35:39 +0200425static void print_noise_pct(double total, double avg)
426{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800427 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200428
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700429 if (csv_output)
Jiri Olsa58215222015-07-21 14:31:24 +0200430 fprintf(stat_config.output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600431 else if (pct)
Jiri Olsa58215222015-07-21 14:31:24 +0200432 fprintf(stat_config.output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200433}
434
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200435static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200436{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200437 struct perf_stat *ps;
438
Peter Zijlstra849abde2009-09-04 18:23:38 +0200439 if (run_count == 1)
440 return;
441
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200442 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200443 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200444}
445
Stephane Eranian12c08a92013-02-14 13:57:29 +0100446static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200447{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200448 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100449 case AGGR_CORE:
Jiri Olsa58215222015-07-21 14:31:24 +0200450 fprintf(stat_config.output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100451 cpu_map__id_to_socket(id),
452 csv_output ? 0 : -8,
453 cpu_map__id_to_cpu(id),
454 csv_sep,
455 csv_output ? 0 : 4,
456 nr,
457 csv_sep);
458 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100459 case AGGR_SOCKET:
Jiri Olsa58215222015-07-21 14:31:24 +0200460 fprintf(stat_config.output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100461 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100462 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100463 csv_sep,
464 csv_output ? 0 : 4,
465 nr,
466 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100467 break;
468 case AGGR_NONE:
Jiri Olsa58215222015-07-21 14:31:24 +0200469 fprintf(stat_config.output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200470 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100471 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100472 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200473 case AGGR_THREAD:
Jiri Olsa58215222015-07-21 14:31:24 +0200474 fprintf(stat_config.output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200475 csv_output ? 0 : 16,
476 thread_map__comm(evsel->threads, id),
477 csv_output ? 0 : -8,
478 thread_map__pid(evsel->threads, id),
479 csv_sep);
480 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100481 case AGGR_GLOBAL:
482 default:
483 break;
484 }
485}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200486
Andi Kleenda88c7f2014-09-24 13:50:46 -0700487static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100488{
Jiri Olsa58215222015-07-21 14:31:24 +0200489 FILE *output = stat_config.output;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100490 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100491 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600492 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100493
Stephane Eranian410136f2013-11-12 17:58:49 +0100494 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
495 fmt_n = csv_output ? "%s" : "%-25s";
496
Andi Kleenda88c7f2014-09-24 13:50:46 -0700497 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100498
David Ahern4bbe5a62013-09-28 14:28:00 -0600499 scnprintf(name, sizeof(name), "%s%s",
500 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100501
502 fprintf(output, fmt_v, msecs, csv_sep);
503
504 if (csv_output)
505 fprintf(output, "%s%s", evsel->unit, csv_sep);
506 else
507 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
508
509 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200510
Stephane Eranian023695d2011-02-14 11:20:01 +0200511 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200512 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200513
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200514 if (csv_output || stat_config.interval)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200515 return;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200516
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200517 if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Stephane Eranian4aa90152011-08-15 22:22:33 +0200518 fprintf(output, " # %8.3f CPUs utilized ",
519 avg / avg_stats(&walltime_nsecs_stats));
Namhyung Kim9dac6a22012-02-06 16:44:45 +0900520 else
521 fprintf(output, " ");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200522}
523
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200524static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
525{
Jiri Olsa58215222015-07-21 14:31:24 +0200526 FILE *output = stat_config.output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200527 double sc = evsel->scale;
528 const char *fmt;
529 int cpu = cpu_map__id_to_cpu(id);
530
531 if (csv_output) {
532 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
533 } else {
534 if (big_num)
535 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
536 else
537 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
538 }
539
540 aggr_printout(evsel, id, nr);
541
Jiri Olsa421a50f2015-07-21 14:31:22 +0200542 if (stat_config.aggr_mode == AGGR_GLOBAL)
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200543 cpu = 0;
544
545 fprintf(output, fmt, avg, csv_sep);
546
547 if (evsel->unit)
548 fprintf(output, "%-*s%s",
549 csv_output ? 0 : unit_width,
550 evsel->unit, csv_sep);
551
552 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
553
554 if (evsel->cgrp)
555 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
556
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200557 if (csv_output || stat_config.interval)
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200558 return;
559
Jiri Olsa421a50f2015-07-21 14:31:22 +0200560 perf_stat__print_shadow_stats(output, evsel, avg, cpu,
561 stat_config.aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200562}
563
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100564static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100565{
Jiri Olsa58215222015-07-21 14:31:24 +0200566 FILE *output = stat_config.output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100567 struct perf_evsel *counter;
Stephane Eranian582ec0822013-07-05 19:06:45 +0200568 int cpu, cpu2, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100569 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100570 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100571
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100572 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100573 return;
574
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100575 for (s = 0; s < aggr_map->nr; s++) {
576 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300577 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100578 val = ena = run = 0;
579 nr = 0;
580 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200581 cpu2 = perf_evsel__cpus(counter)->map[cpu];
582 s2 = aggr_get_id(evsel_list->cpus, cpu2);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100583 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100584 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200585 val += perf_counts(counter->counts, cpu, 0)->val;
586 ena += perf_counts(counter->counts, cpu, 0)->ena;
587 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100588 nr++;
589 }
590 if (prefix)
591 fprintf(output, "%s", prefix);
592
593 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200594 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100595
Stephane Eranian410136f2013-11-12 17:58:49 +0100596 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100597 csv_output ? 0 : 18,
598 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100599 csv_sep);
600
601 fprintf(output, "%-*s%s",
602 csv_output ? 0 : unit_width,
603 counter->unit, csv_sep);
604
605 fprintf(output, "%*s",
606 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100607 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100608
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100609 if (counter->cgrp)
610 fprintf(output, "%s%s",
611 csv_sep, counter->cgrp->name);
612
Andi Kleend73515c2015-03-11 07:16:27 -0700613 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100614 fputc('\n', output);
615 continue;
616 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100617 uval = val * counter->scale;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100618
619 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100620 nsec_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100621 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100622 abs_printout(id, nr, counter, uval);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100623
Andi Kleend73515c2015-03-11 07:16:27 -0700624 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100625 print_noise(counter, 1.0);
626
Andi Kleend73515c2015-03-11 07:16:27 -0700627 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100628 fputc('\n', output);
629 }
630 }
631}
632
Jiri Olsa32b8af82015-06-26 11:29:27 +0200633static void print_aggr_thread(struct perf_evsel *counter, char *prefix)
634{
Jiri Olsa58215222015-07-21 14:31:24 +0200635 FILE *output = stat_config.output;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200636 int nthreads = thread_map__nr(counter->threads);
637 int ncpus = cpu_map__nr(counter->cpus);
638 int cpu, thread;
639 double uval;
640
641 for (thread = 0; thread < nthreads; thread++) {
642 u64 ena = 0, run = 0, val = 0;
643
644 for (cpu = 0; cpu < ncpus; cpu++) {
645 val += perf_counts(counter->counts, cpu, thread)->val;
646 ena += perf_counts(counter->counts, cpu, thread)->ena;
647 run += perf_counts(counter->counts, cpu, thread)->run;
648 }
649
650 if (prefix)
651 fprintf(output, "%s", prefix);
652
653 uval = val * counter->scale;
654
655 if (nsec_counter(counter))
656 nsec_printout(thread, 0, counter, uval);
657 else
658 abs_printout(thread, 0, counter, uval);
659
660 if (!csv_output)
661 print_noise(counter, 1.0);
662
663 print_running(run, ena);
664 fputc('\n', output);
665 }
666}
667
Ingo Molnar42202dd2009-06-13 14:57:28 +0200668/*
669 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200670 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200671 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100672static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200673{
Jiri Olsa58215222015-07-21 14:31:24 +0200674 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200675 struct perf_stat *ps = counter->priv;
676 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200677 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100678 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700679 double avg_enabled, avg_running;
680
681 avg_enabled = avg_stats(&ps->res_stats[1]);
682 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200683
Stephane Eranian13370a92013-01-29 12:47:44 +0100684 if (prefix)
685 fprintf(output, "%s", prefix);
686
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000687 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100688 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200689 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600690 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100691 csv_sep);
692 fprintf(output, "%-*s%s",
693 csv_output ? 0 : unit_width,
694 counter->unit, csv_sep);
695 fprintf(output, "%*s",
696 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300697 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200698
699 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200700 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200701
Andi Kleend73515c2015-03-11 07:16:27 -0700702 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200703 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200704 return;
705 }
706
Stephane Eranian410136f2013-11-12 17:58:49 +0100707 uval = avg * counter->scale;
708
Ingo Molnar42202dd2009-06-13 14:57:28 +0200709 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100710 nsec_printout(-1, 0, counter, uval);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200711 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100712 abs_printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200713
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700714 print_noise(counter, avg);
715
Andi Kleend73515c2015-03-11 07:16:27 -0700716 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200717 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200718}
719
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200720/*
721 * Print out the results of a single counter:
722 * does not use aggregated count in system-wide
723 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100724static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200725{
Jiri Olsa58215222015-07-21 14:31:24 +0200726 FILE *output = stat_config.output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200727 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100728 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200729 int cpu;
730
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800731 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200732 val = perf_counts(counter->counts, cpu, 0)->val;
733 ena = perf_counts(counter->counts, cpu, 0)->ena;
734 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100735
736 if (prefix)
737 fprintf(output, "%s", prefix);
738
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200739 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100740 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200741 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800742 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200743 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600744 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100745 csv_sep);
746
747 fprintf(output, "%-*s%s",
748 csv_output ? 0 : unit_width,
749 counter->unit, csv_sep);
750
751 fprintf(output, "%*s",
752 csv_output ? 0 : -25,
753 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200754
Stephane Eranian023695d2011-02-14 11:20:01 +0200755 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200756 fprintf(output, "%s%s",
757 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200758
Andi Kleend73515c2015-03-11 07:16:27 -0700759 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200760 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200761 continue;
762 }
763
Stephane Eranian410136f2013-11-12 17:58:49 +0100764 uval = val * counter->scale;
765
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200766 if (nsec_counter(counter))
Stephane Eranian410136f2013-11-12 17:58:49 +0100767 nsec_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200768 else
Stephane Eranian410136f2013-11-12 17:58:49 +0100769 abs_printout(cpu, 0, counter, uval);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200770
Andi Kleend73515c2015-03-11 07:16:27 -0700771 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200772 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700773 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200774
Stephane Eranian4aa90152011-08-15 22:22:33 +0200775 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200776 }
777}
778
Jiri Olsad4f63a42015-06-26 11:29:26 +0200779static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200780{
Jiri Olsa58215222015-07-21 14:31:24 +0200781 FILE *output = stat_config.output;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200782 static int num_print_interval;
783
784 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
785
786 if (num_print_interval == 0 && !csv_output) {
Jiri Olsa421a50f2015-07-21 14:31:22 +0200787 switch (stat_config.aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +0200788 case AGGR_SOCKET:
789 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
790 break;
791 case AGGR_CORE:
792 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
793 break;
794 case AGGR_NONE:
795 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
796 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200797 case AGGR_THREAD:
798 fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit");
799 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200800 case AGGR_GLOBAL:
801 default:
802 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
803 }
804 }
805
806 if (++num_print_interval == 25)
807 num_print_interval = 0;
808}
809
810static void print_header(int argc, const char **argv)
811{
Jiri Olsa58215222015-07-21 14:31:24 +0200812 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200813 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200814
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200815 fflush(stdout);
816
Stephane Eraniand7470b62010-12-01 18:49:05 +0200817 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200818 fprintf(output, "\n");
819 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600820 if (target.system_wide)
821 fprintf(output, "\'system wide");
822 else if (target.cpu_list)
823 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300824 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200825 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200826 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200827 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900828 } else if (target.pid)
829 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200830 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900831 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200832
Stephane Eranian4aa90152011-08-15 22:22:33 +0200833 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200834 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200835 fprintf(output, " (%d runs)", run_count);
836 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200837 }
Jiri Olsad4f63a42015-06-26 11:29:26 +0200838}
839
840static void print_footer(void)
841{
Jiri Olsa58215222015-07-21 14:31:24 +0200842 FILE *output = stat_config.output;
843
Jiri Olsad4f63a42015-06-26 11:29:26 +0200844 if (!null_run)
845 fprintf(output, "\n");
846 fprintf(output, " %17.9f seconds time elapsed",
847 avg_stats(&walltime_nsecs_stats)/1e9);
848 if (run_count > 1) {
849 fprintf(output, " ");
850 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
851 avg_stats(&walltime_nsecs_stats));
852 }
853 fprintf(output, "\n\n");
854}
855
856static void print_counters(struct timespec *ts, int argc, const char **argv)
857{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200858 int interval = stat_config.interval;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200859 struct perf_evsel *counter;
860 char buf[64], *prefix = NULL;
861
862 if (interval)
863 print_interval(prefix = buf, ts);
864 else
865 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200866
Jiri Olsa421a50f2015-07-21 14:31:22 +0200867 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100868 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100869 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +0200870 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100871 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200872 case AGGR_THREAD:
873 evlist__for_each(evsel_list, counter)
874 print_aggr_thread(counter, prefix);
875 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100876 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300877 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200878 print_counter_aggr(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100879 break;
880 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300881 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200882 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100883 break;
884 default:
885 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200886 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200887
Jiri Olsad4f63a42015-06-26 11:29:26 +0200888 if (!interval && !csv_output)
889 print_footer();
890
Jiri Olsa58215222015-07-21 14:31:24 +0200891 fflush(stat_config.output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200892}
893
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200894static volatile int signr = -1;
895
Ingo Molnar52425192009-05-26 09:17:18 +0200896static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200897{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200898 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800899 done = 1;
900
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200901 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200902 /*
903 * render child_pid harmless
904 * won't send SIGTERM to a random
905 * process in case of race condition
906 * and fast PID recycling
907 */
908 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200909}
910
911static void sig_atexit(void)
912{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200913 sigset_t set, oset;
914
915 /*
916 * avoid race condition with SIGCHLD handler
917 * in skip_signal() which is modifying child_pid
918 * goal is to avoid send SIGTERM to a random
919 * process
920 */
921 sigemptyset(&set);
922 sigaddset(&set, SIGCHLD);
923 sigprocmask(SIG_BLOCK, &set, &oset);
924
Chris Wilson933da832009-10-04 01:35:01 +0100925 if (child_pid != -1)
926 kill(child_pid, SIGTERM);
927
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200928 sigprocmask(SIG_SETMASK, &oset, NULL);
929
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200930 if (signr == -1)
931 return;
932
933 signal(signr, SIG_DFL);
934 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200935}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200936
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300937static int stat__set_big_num(const struct option *opt __maybe_unused,
938 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200939{
940 big_num_opt = unset ? 0 : 1;
941 return 0;
942}
943
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100944static int perf_stat_init_aggr_mode(void)
945{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200946 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100947 case AGGR_SOCKET:
948 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
949 perror("cannot build socket map");
950 return -1;
951 }
952 aggr_get_id = cpu_map__get_socket;
953 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100954 case AGGR_CORE:
955 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
956 perror("cannot build core map");
957 return -1;
958 }
959 aggr_get_id = cpu_map__get_core;
960 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100961 case AGGR_NONE:
962 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +0200963 case AGGR_THREAD:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100964 default:
965 break;
966 }
967 return 0;
968}
969
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200970/*
971 * Add default attributes, if there were no attributes specified or
972 * if -d/--detailed, -d -d or -d -d -d is used:
973 */
974static int add_default_attributes(void)
975{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -0300976 struct perf_event_attr default_attrs[] = {
977
978 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
979 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
980 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
981 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
982
983 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
984 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
985 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
986 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
987 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
988 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
989
990};
991
992/*
993 * Detailed stats (-d), covering the L1 and last level data caches:
994 */
995 struct perf_event_attr detailed_attrs[] = {
996
997 { .type = PERF_TYPE_HW_CACHE,
998 .config =
999 PERF_COUNT_HW_CACHE_L1D << 0 |
1000 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1001 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1002
1003 { .type = PERF_TYPE_HW_CACHE,
1004 .config =
1005 PERF_COUNT_HW_CACHE_L1D << 0 |
1006 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1007 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1008
1009 { .type = PERF_TYPE_HW_CACHE,
1010 .config =
1011 PERF_COUNT_HW_CACHE_LL << 0 |
1012 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1013 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1014
1015 { .type = PERF_TYPE_HW_CACHE,
1016 .config =
1017 PERF_COUNT_HW_CACHE_LL << 0 |
1018 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1019 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1020};
1021
1022/*
1023 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1024 */
1025 struct perf_event_attr very_detailed_attrs[] = {
1026
1027 { .type = PERF_TYPE_HW_CACHE,
1028 .config =
1029 PERF_COUNT_HW_CACHE_L1I << 0 |
1030 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1031 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1032
1033 { .type = PERF_TYPE_HW_CACHE,
1034 .config =
1035 PERF_COUNT_HW_CACHE_L1I << 0 |
1036 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1037 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1038
1039 { .type = PERF_TYPE_HW_CACHE,
1040 .config =
1041 PERF_COUNT_HW_CACHE_DTLB << 0 |
1042 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1043 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1044
1045 { .type = PERF_TYPE_HW_CACHE,
1046 .config =
1047 PERF_COUNT_HW_CACHE_DTLB << 0 |
1048 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1049 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1050
1051 { .type = PERF_TYPE_HW_CACHE,
1052 .config =
1053 PERF_COUNT_HW_CACHE_ITLB << 0 |
1054 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1055 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1056
1057 { .type = PERF_TYPE_HW_CACHE,
1058 .config =
1059 PERF_COUNT_HW_CACHE_ITLB << 0 |
1060 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1061 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1062
1063};
1064
1065/*
1066 * Very, very detailed stats (-d -d -d), adding prefetch events:
1067 */
1068 struct perf_event_attr very_very_detailed_attrs[] = {
1069
1070 { .type = PERF_TYPE_HW_CACHE,
1071 .config =
1072 PERF_COUNT_HW_CACHE_L1D << 0 |
1073 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1074 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1075
1076 { .type = PERF_TYPE_HW_CACHE,
1077 .config =
1078 PERF_COUNT_HW_CACHE_L1D << 0 |
1079 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1080 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1081};
1082
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001083 /* Set attrs if no event is selected and !null_run: */
1084 if (null_run)
1085 return 0;
1086
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001087 if (transaction_run) {
1088 int err;
1089 if (pmu_have_event("cpu", "cycles-ct") &&
1090 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001091 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001092 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001093 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1094 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001095 fprintf(stderr, "Cannot set up transaction events\n");
1096 return -1;
1097 }
1098 return 0;
1099 }
1100
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001101 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001102 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001103 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001104 }
1105
1106 /* Detailed events get appended to the event list: */
1107
1108 if (detailed_run < 1)
1109 return 0;
1110
1111 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001112 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001113 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001114
1115 if (detailed_run < 2)
1116 return 0;
1117
1118 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001119 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001120 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001121
1122 if (detailed_run < 3)
1123 return 0;
1124
1125 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001126 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001127}
1128
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001129int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001130{
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001131 bool append_file = false;
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001132 int output_fd = 0;
1133 const char *output_name = NULL;
1134 const struct option options[] = {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001135 OPT_BOOLEAN('T', "transaction", &transaction_run,
1136 "hardware transaction statistics"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001137 OPT_CALLBACK('e', "event", &evsel_list, "event",
1138 "event selector. use 'perf list' to list available events",
1139 parse_events_option),
1140 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1141 "event filter", parse_filter),
1142 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1143 "child tasks do not inherit counters"),
1144 OPT_STRING('p', "pid", &target.pid, "pid",
1145 "stat events on existing process id"),
1146 OPT_STRING('t', "tid", &target.tid, "tid",
1147 "stat events on existing thread id"),
1148 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1149 "system-wide collection from all CPUs"),
1150 OPT_BOOLEAN('g', "group", &group,
1151 "put the counters into a counter group"),
Jiri Olsa711a5722015-07-21 14:31:23 +02001152 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001153 OPT_INCR('v', "verbose", &verbose,
1154 "be more verbose (show counter open errors, etc)"),
1155 OPT_INTEGER('r', "repeat", &run_count,
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001156 "repeat command and print average + stddev (max: 100, forever: 0)"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001157 OPT_BOOLEAN('n', "null", &null_run,
1158 "null run - dont start any counters"),
1159 OPT_INCR('d', "detailed", &detailed_run,
1160 "detailed run - start a lot of events"),
1161 OPT_BOOLEAN('S', "sync", &sync_run,
1162 "call sync() before starting a run"),
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001163 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001164 "print large numbers with thousands\' separators",
1165 stat__set_big_num),
1166 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1167 "list of cpus to monitor in system-wide"),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001168 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001169 "disable CPU count aggregation", AGGR_NONE),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001170 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1171 "print counts with custom separator"),
1172 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1173 "monitor event in cgroup name only", parse_cgroups),
1174 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1175 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1176 OPT_INTEGER(0, "log-fd", &output_fd,
1177 "log output to fd, instead of stderr"),
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001178 OPT_STRING(0, "pre", &pre_cmd, "command",
1179 "command to run prior to the measured command"),
1180 OPT_STRING(0, "post", &post_cmd, "command",
1181 "command to run after to the measured command"),
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001182 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Stephane Eranian13370a92013-01-29 12:47:44 +01001183 "print counts at regular interval in ms (>= 100)"),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001184 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001185 "aggregate counts per processor socket", AGGR_SOCKET),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001186 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
Stephane Eranian12c08a92013-02-14 13:57:29 +01001187 "aggregate counts per physical processor core", AGGR_CORE),
Jiri Olsa421a50f2015-07-21 14:31:22 +02001188 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
Jiri Olsa32b8af82015-06-26 11:29:27 +02001189 "aggregate counts per thread", AGGR_THREAD),
Andi Kleen41191682013-08-02 17:41:11 -07001190 OPT_UINTEGER('D', "delay", &initial_delay,
1191 "ms to wait before starting measurement after program start"),
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001192 OPT_END()
1193 };
1194 const char * const stat_usage[] = {
1195 "perf stat [<options>] [<command>]",
1196 NULL
1197 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001198 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001199 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001200 FILE *output = stderr;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001201 unsigned int interval;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001202
Stephane Eranian5af52b52010-05-18 15:00:01 +02001203 setlocale(LC_ALL, "");
1204
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001205 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001206 if (evsel_list == NULL)
1207 return -ENOMEM;
1208
Anton Blancharda0541232009-07-22 23:04:12 +10001209 argc = parse_options(argc, argv, options, stat_usage,
1210 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001211
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001212 interval = stat_config.interval;
1213
Stephane Eranian4aa90152011-08-15 22:22:33 +02001214 if (output_name && strcmp(output_name, "-"))
1215 output = NULL;
1216
Jim Cromie56f3bae2011-09-07 17:14:00 -06001217 if (output_name && output_fd) {
1218 fprintf(stderr, "cannot use both --output and --log-fd\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001219 parse_options_usage(stat_usage, options, "o", 1);
1220 parse_options_usage(NULL, options, "log-fd", 0);
1221 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001222 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001223
1224 if (output_fd < 0) {
1225 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001226 parse_options_usage(stat_usage, options, "log-fd", 0);
1227 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001228 }
1229
Stephane Eranian4aa90152011-08-15 22:22:33 +02001230 if (!output) {
1231 struct timespec tm;
1232 mode = append_file ? "a" : "w";
1233
1234 output = fopen(output_name, mode);
1235 if (!output) {
1236 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001237 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001238 }
1239 clock_gettime(CLOCK_REALTIME, &tm);
1240 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001241 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001242 mode = append_file ? "a" : "w";
1243 output = fdopen(output_fd, mode);
1244 if (!output) {
1245 perror("Failed opening logfd");
1246 return -errno;
1247 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001248 }
1249
Jiri Olsa58215222015-07-21 14:31:24 +02001250 stat_config.output = output;
1251
Jim Cromied4ffd042011-09-07 17:14:03 -06001252 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001253 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001254 if (!strcmp(csv_sep, "\\t"))
1255 csv_sep = "\t";
1256 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001257 csv_sep = DEFAULT_SEPARATOR;
1258
1259 /*
1260 * let the spreadsheet do the pretty-printing
1261 */
1262 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001263 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001264 if (big_num_opt == 1) {
1265 fprintf(stderr, "-B option not supported with -x\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001266 parse_options_usage(stat_usage, options, "B", 1);
1267 parse_options_usage(NULL, options, "x", 1);
1268 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001269 } else /* Nope, so disable big number formatting */
1270 big_num = false;
1271 } else if (big_num_opt == 0) /* User passed --no-big-num */
1272 big_num = false;
1273
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001274 if (!argc && target__none(&target))
Ingo Molnar52425192009-05-26 09:17:18 +02001275 usage_with_options(stat_usage, options);
David Ahernac3063b2013-09-30 07:37:37 -06001276
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001277 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001278 pr_err("Run count must be a positive number\n");
1279 parse_options_usage(stat_usage, options, "r", 1);
1280 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001281 } else if (run_count == 0) {
1282 forever = true;
1283 run_count = 1;
1284 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001285
Jiri Olsa421a50f2015-07-21 14:31:22 +02001286 if ((stat_config.aggr_mode == AGGR_THREAD) && !target__has_task(&target)) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001287 fprintf(stderr, "The --per-thread option is only available "
1288 "when monitoring via -p -t options.\n");
1289 parse_options_usage(NULL, options, "p", 1);
1290 parse_options_usage(NULL, options, "t", 1);
1291 goto out;
1292 }
1293
1294 /*
1295 * no_aggr, cgroup are for system-wide only
1296 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1297 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001298 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1299 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001300 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001301 fprintf(stderr, "both cgroup and no-aggregation "
1302 "modes only available in system-wide mode\n");
1303
Namhyung Kimcc03c542013-11-01 16:33:15 +09001304 parse_options_usage(stat_usage, options, "G", 1);
1305 parse_options_usage(NULL, options, "A", 1);
1306 parse_options_usage(NULL, options, "a", 1);
1307 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001308 }
1309
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001310 if (add_default_attributes())
1311 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001312
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001313 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001314
Namhyung Kim77a6f012012-05-07 14:09:04 +09001315 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001316 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001317 pr_err("Problems finding threads of monitor\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001318 parse_options_usage(stat_usage, options, "p", 1);
1319 parse_options_usage(NULL, options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001320 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001321 perror("failed to parse CPUs map");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001322 parse_options_usage(stat_usage, options, "C", 1);
1323 parse_options_usage(NULL, options, "a", 1);
1324 }
1325 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001326 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001327
1328 /*
1329 * Initialize thread_map with comm names,
1330 * so we could print it out on output.
1331 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001332 if (stat_config.aggr_mode == AGGR_THREAD)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001333 thread_map__read_comms(evsel_list->threads);
1334
Stephane Eranian13370a92013-01-29 12:47:44 +01001335 if (interval && interval < 100) {
1336 pr_err("print interval must be >= 100ms\n");
Namhyung Kimcc03c542013-11-01 16:33:15 +09001337 parse_options_usage(stat_usage, options, "I", 1);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001338 goto out;
Stephane Eranian13370a92013-01-29 12:47:44 +01001339 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001340
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001341 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001342 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001343
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001344 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001345 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001346
Ingo Molnar58d7e992009-05-15 11:03:23 +02001347 /*
1348 * We dont want to block the signals - that would cause
1349 * child tasks to inherit that and Ctrl-C would not work.
1350 * What we want is for Ctrl-C to work in the exec()-ed
1351 * task, but being ignored by perf stat itself:
1352 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001353 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001354 if (!forever)
1355 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001356 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001357 signal(SIGALRM, skip_signal);
1358 signal(SIGABRT, skip_signal);
1359
Ingo Molnar42202dd2009-06-13 14:57:28 +02001360 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001361 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001362 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001363 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1364 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001365
Ingo Molnar42202dd2009-06-13 14:57:28 +02001366 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001367 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001368 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001369 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001370 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001371 }
1372
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001373 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001374 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001375
1376 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001377out:
1378 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001379 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001380}