blob: e77880b5094ded75ac4975d4212f9e35bb9cfa2f [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 Weisbecker8f28827a2009-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 Weisbecker8f28827a2009-08-16 22:05:48 +020054#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020055#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080056#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080057#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110058#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030059#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020060#include "util/thread_map.h"
Jiri Olsad8095602015-08-07 12:51:03 +020061#include "util/counts.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020062
Peter Zijlstra1f16c572012-10-23 13:40:14 +020063#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020064#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020065#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020066
Stephane Eraniand7470b62010-12-01 18:49:05 +020067#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060068#define CNTR_NOT_SUPPORTED "<not supported>"
69#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020070
Jiri Olsad4f63a42015-06-26 11:29:26 +020071static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010072
Andi Kleen4cabc3d2013-08-21 16:47:26 -070073/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020074static const char *transaction_attrs = {
75 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070076 "{"
77 "instructions,"
78 "cycles,"
79 "cpu/cycles-t/,"
80 "cpu/tx-start/,"
81 "cpu/el-start/,"
82 "cpu/cycles-ct/"
83 "}"
84};
85
86/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +020087static const char * transaction_limited_attrs = {
88 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070089 "{"
90 "instructions,"
91 "cycles,"
92 "cpu/cycles-t/,"
93 "cpu/tx-start/"
94 "}"
95};
96
Robert Richter666e6d42012-04-05 18:26:27 +020097static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020098
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -030099static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900100 .uid = UINT_MAX,
101};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530102
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100103typedef int (*aggr_get_id_t)(struct cpu_map *m, int cpu);
104
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530105static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200106static bool no_inherit = false;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200107static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000108static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200109static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700110static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200111static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200112static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200113static const char *csv_sep = NULL;
114static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800115static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200116static const char *pre_cmd = NULL;
117static const char *post_cmd = NULL;
118static bool sync_run = false;
Andi Kleen41191682013-08-02 17:41:11 -0700119static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100120static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500121static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100122static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100123static struct cpu_map *aggr_map;
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100124static aggr_get_id_t aggr_get_id;
Jiri Olsae0547312015-11-05 15:40:45 +0100125static bool append_file;
126static const char *output_name;
127static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200128
Liming Wang60666c62009-12-31 16:05:50 +0800129static volatile int done = 0;
130
Jiri Olsa421a50f2015-07-21 14:31:22 +0200131static struct perf_stat_config stat_config = {
132 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200133 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200134};
135
Stephane Eranian13370a92013-01-29 12:47:44 +0100136static inline void diff_timespec(struct timespec *r, struct timespec *a,
137 struct timespec *b)
138{
139 r->tv_sec = a->tv_sec - b->tv_sec;
140 if (a->tv_nsec < b->tv_nsec) {
141 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
142 r->tv_sec--;
143 } else {
144 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
145 }
146}
147
Jiri Olsa254ecbc2015-06-26 11:29:13 +0200148static void perf_stat__reset_stats(void)
149{
150 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200151 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200152}
153
Jiri Olsacac21422012-11-12 18:34:00 +0100154static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200155{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200156 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200157
Jiri Olsa711a5722015-07-21 14:31:23 +0200158 if (stat_config.scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200159 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
160 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200161
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200162 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300163
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300164 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300165 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200166
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300167 if (!target__has_task(&target) && perf_evsel__is_group_leader(evsel)) {
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200168 attr->disabled = 1;
Andi Kleen41191682013-08-02 17:41:11 -0700169 if (!initial_delay)
170 attr->enable_on_exec = 1;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200171 }
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300172
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300173 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200174}
175
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200176/*
177 * Does the counter have nsecs as a unit?
178 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200179static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200180{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200181 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
182 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200183 return 1;
184
185 return 0;
186}
187
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200188/*
189 * Read out the results of a single counter:
190 * do not aggregate counts across CPUs in system-wide mode
191 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200192static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200193{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100194 int nthreads = thread_map__nr(evsel_list->threads);
195 int ncpus = perf_evsel__nr_cpus(counter);
196 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200197
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000198 if (!counter->supported)
199 return -ENOENT;
200
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100201 if (counter->system_wide)
202 nthreads = 1;
203
204 for (thread = 0; thread < nthreads; thread++) {
205 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200206 struct perf_counts_values *count;
207
208 count = perf_counts(counter->counts, cpu, thread);
209 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100210 return -1;
211 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200212 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200213
214 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200215}
216
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200217static void read_counters(bool close_counters)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200218{
219 struct perf_evsel *counter;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200220
221 evlist__for_each(evsel_list, counter) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200222 if (read_counter(counter))
Andi Kleen245bad82015-09-01 15:52:46 -0700223 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200224
Jiri Olsaf80010e2015-07-21 14:31:27 +0200225 if (perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200226 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200227
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200228 if (close_counters) {
Jiri Olsa106a94a2015-06-26 11:29:19 +0200229 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
230 thread_map__nr(evsel_list->threads));
231 }
232 }
233}
234
Jiri Olsaba411a92015-06-26 11:29:24 +0200235static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100236{
Stephane Eranian13370a92013-01-29 12:47:44 +0100237 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100238
Jiri Olsa106a94a2015-06-26 11:29:19 +0200239 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100240
Stephane Eranian13370a92013-01-29 12:47:44 +0100241 clock_gettime(CLOCK_MONOTONIC, &ts);
242 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100243
Jiri Olsad4f63a42015-06-26 11:29:26 +0200244 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100245}
246
Andi Kleen41191682013-08-02 17:41:11 -0700247static void handle_initial_delay(void)
248{
249 struct perf_evsel *counter;
250
251 if (initial_delay) {
252 const int ncpus = cpu_map__nr(evsel_list->cpus),
253 nthreads = thread_map__nr(evsel_list->threads);
254
255 usleep(initial_delay * 1000);
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300256 evlist__for_each(evsel_list, counter)
Andi Kleen41191682013-08-02 17:41:11 -0700257 perf_evsel__enable(counter, ncpus, nthreads);
258 }
259}
260
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300261static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300262
263/*
264 * perf_evlist__prepare_workload will send a SIGUSR1
265 * if the fork fails, since we asked by setting its
266 * want_signal to true.
267 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300268static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
269 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300270{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300271 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300272}
273
Namhyung Kimacf28922013-03-11 16:43:18 +0900274static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200275{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200276 int interval = stat_config.interval;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300277 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200278 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100279 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100280 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100281 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200282 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300283 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200284
Stephane Eranian13370a92013-01-29 12:47:44 +0100285 if (interval) {
286 ts.tv_sec = interval / 1000;
287 ts.tv_nsec = (interval % 1000) * 1000000;
288 } else {
289 ts.tv_sec = 1;
290 ts.tv_nsec = 0;
291 }
292
Liming Wang60666c62009-12-31 16:05:50 +0800293 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300294 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
295 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900296 perror("failed to prepare workload");
297 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800298 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900299 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000300 }
301
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200302 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300303 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200304
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300305 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100306 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600307 /*
308 * PPC returns ENXIO for HW counters until 2.6.37
309 * (behavior changed with commit b0a873e).
310 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100311 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600312 errno == ENOENT || errno == EOPNOTSUPP ||
313 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600314 if (verbose)
315 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300316 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600317 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400318
319 if ((counter->leader != counter) ||
320 !(counter->leader->nr_members > 1))
321 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600322 }
Ingo Molnarede70292011-04-28 08:48:42 +0200323
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300324 perf_evsel__open_strerror(counter, &target,
325 errno, msg, sizeof(msg));
326 ui__error("%s\n", msg);
327
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200328 if (child_pid != -1)
329 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600330
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200331 return -1;
332 }
David Ahern2cee77c2011-05-30 08:55:59 -0600333 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100334
335 l = strlen(counter->unit);
336 if (l > unit_width)
337 unit_width = l;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300338 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200339
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300340 if (perf_evlist__apply_filters(evsel_list, &counter)) {
341 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
342 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000343 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100344 return -1;
345 }
346
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200347 /*
348 * Enable counters and exec the command:
349 */
350 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100351 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200352
Liming Wang60666c62009-12-31 16:05:50 +0800353 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900354 perf_evlist__start_workload(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700355 handle_initial_delay();
Namhyung Kimacf28922013-03-11 16:43:18 +0900356
Stephane Eranian13370a92013-01-29 12:47:44 +0100357 if (interval) {
358 while (!waitpid(child_pid, &status, WNOHANG)) {
359 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200360 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100361 }
362 }
Liming Wang60666c62009-12-31 16:05:50 +0800363 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300364
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300365 if (workload_exec_errno) {
366 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
367 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300368 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300369 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300370
Andi Kleen33e49ea2011-09-15 14:31:40 -0700371 if (WIFSIGNALED(status))
372 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800373 } else {
Andi Kleen41191682013-08-02 17:41:11 -0700374 handle_initial_delay();
Stephane Eranian13370a92013-01-29 12:47:44 +0100375 while (!done) {
376 nanosleep(&ts, NULL);
377 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200378 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100379 }
Liming Wang60666c62009-12-31 16:05:50 +0800380 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200381
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200382 t1 = rdclock();
383
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200384 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200385
Jiri Olsa106a94a2015-06-26 11:29:19 +0200386 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200387
Ingo Molnar42202dd2009-06-13 14:57:28 +0200388 return WEXITSTATUS(status);
389}
390
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300391static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200392{
393 int ret;
394
395 if (pre_cmd) {
396 ret = system(pre_cmd);
397 if (ret)
398 return ret;
399 }
400
401 if (sync_run)
402 sync();
403
404 ret = __run_perf_stat(argc, argv);
405 if (ret)
406 return ret;
407
408 if (post_cmd) {
409 ret = system(post_cmd);
410 if (ret)
411 return ret;
412 }
413
414 return ret;
415}
416
Andi Kleend73515c2015-03-11 07:16:27 -0700417static void print_running(u64 run, u64 ena)
418{
419 if (csv_output) {
Jiri Olsa58215222015-07-21 14:31:24 +0200420 fprintf(stat_config.output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700421 csv_sep,
422 run,
423 csv_sep,
424 ena ? 100.0 * run / ena : 100.0);
425 } else if (run != ena) {
Jiri Olsa58215222015-07-21 14:31:24 +0200426 fprintf(stat_config.output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700427 }
428}
429
Ingo Molnarf99844c2011-04-27 05:35:39 +0200430static void print_noise_pct(double total, double avg)
431{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800432 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200433
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700434 if (csv_output)
Jiri Olsa58215222015-07-21 14:31:24 +0200435 fprintf(stat_config.output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600436 else if (pct)
Jiri Olsa58215222015-07-21 14:31:24 +0200437 fprintf(stat_config.output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200438}
439
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200440static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200441{
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200442 struct perf_stat_evsel *ps;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200443
Peter Zijlstra849abde2009-09-04 18:23:38 +0200444 if (run_count == 1)
445 return;
446
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200447 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200448 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200449}
450
Stephane Eranian12c08a92013-02-14 13:57:29 +0100451static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200452{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200453 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100454 case AGGR_CORE:
Jiri Olsa58215222015-07-21 14:31:24 +0200455 fprintf(stat_config.output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100456 cpu_map__id_to_socket(id),
457 csv_output ? 0 : -8,
458 cpu_map__id_to_cpu(id),
459 csv_sep,
460 csv_output ? 0 : 4,
461 nr,
462 csv_sep);
463 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100464 case AGGR_SOCKET:
Jiri Olsa58215222015-07-21 14:31:24 +0200465 fprintf(stat_config.output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100466 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100467 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100468 csv_sep,
469 csv_output ? 0 : 4,
470 nr,
471 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100472 break;
473 case AGGR_NONE:
Jiri Olsa58215222015-07-21 14:31:24 +0200474 fprintf(stat_config.output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200475 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100476 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100477 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200478 case AGGR_THREAD:
Jiri Olsa58215222015-07-21 14:31:24 +0200479 fprintf(stat_config.output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200480 csv_output ? 0 : 16,
481 thread_map__comm(evsel->threads, id),
482 csv_output ? 0 : -8,
483 thread_map__pid(evsel->threads, id),
484 csv_sep);
485 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100486 case AGGR_GLOBAL:
Jiri Olsa208df992015-10-16 12:41:04 +0200487 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100488 default:
489 break;
490 }
491}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200492
Andi Kleenda88c7f2014-09-24 13:50:46 -0700493static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100494{
Jiri Olsa58215222015-07-21 14:31:24 +0200495 FILE *output = stat_config.output;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100496 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100497 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600498 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100499
Stephane Eranian410136f2013-11-12 17:58:49 +0100500 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
501 fmt_n = csv_output ? "%s" : "%-25s";
502
Andi Kleenda88c7f2014-09-24 13:50:46 -0700503 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100504
David Ahern4bbe5a62013-09-28 14:28:00 -0600505 scnprintf(name, sizeof(name), "%s%s",
506 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100507
508 fprintf(output, fmt_v, msecs, csv_sep);
509
510 if (csv_output)
511 fprintf(output, "%s%s", evsel->unit, csv_sep);
512 else
513 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
514
515 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200516
Stephane Eranian023695d2011-02-14 11:20:01 +0200517 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200518 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200519}
520
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200521static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
522{
Jiri Olsa58215222015-07-21 14:31:24 +0200523 FILE *output = stat_config.output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200524 double sc = evsel->scale;
525 const char *fmt;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200526
527 if (csv_output) {
528 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
529 } else {
530 if (big_num)
531 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
532 else
533 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
534 }
535
536 aggr_printout(evsel, id, nr);
537
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200538 fprintf(output, fmt, avg, csv_sep);
539
540 if (evsel->unit)
541 fprintf(output, "%-*s%s",
542 csv_output ? 0 : unit_width,
543 evsel->unit, csv_sep);
544
545 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
546
547 if (evsel->cgrp)
548 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Andi Kleeneedfcb42015-11-02 17:50:21 -0800549}
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200550
Andi Kleeneedfcb42015-11-02 17:50:21 -0800551static void printout(int id, int nr, struct perf_evsel *counter, double uval)
552{
553 int cpu = cpu_map__id_to_cpu(id);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200554
Andi Kleeneedfcb42015-11-02 17:50:21 -0800555 if (stat_config.aggr_mode == AGGR_GLOBAL)
556 cpu = 0;
557
558 if (nsec_counter(counter))
559 nsec_printout(id, nr, counter, uval);
560 else
561 abs_printout(id, nr, counter, uval);
562
563 if (!csv_output && !stat_config.interval)
564 perf_stat__print_shadow_stats(stat_config.output, counter,
565 uval, cpu,
566 stat_config.aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200567}
568
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100569static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100570{
Jiri Olsa58215222015-07-21 14:31:24 +0200571 FILE *output = stat_config.output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100572 struct perf_evsel *counter;
Kan Liang601083c2015-07-02 03:08:43 -0400573 int cpu, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100574 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100575 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100576
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100577 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100578 return;
579
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100580 for (s = 0; s < aggr_map->nr; s++) {
581 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300582 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100583 val = ena = run = 0;
584 nr = 0;
585 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Kan Liang601083c2015-07-02 03:08:43 -0400586 s2 = aggr_get_id(perf_evsel__cpus(counter), cpu);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100587 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100588 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200589 val += perf_counts(counter->counts, cpu, 0)->val;
590 ena += perf_counts(counter->counts, cpu, 0)->ena;
591 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100592 nr++;
593 }
594 if (prefix)
595 fprintf(output, "%s", prefix);
596
597 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200598 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100599
Stephane Eranian410136f2013-11-12 17:58:49 +0100600 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100601 csv_output ? 0 : 18,
602 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100603 csv_sep);
604
605 fprintf(output, "%-*s%s",
606 csv_output ? 0 : unit_width,
607 counter->unit, csv_sep);
608
609 fprintf(output, "%*s",
610 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100611 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100612
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100613 if (counter->cgrp)
614 fprintf(output, "%s%s",
615 csv_sep, counter->cgrp->name);
616
Andi Kleend73515c2015-03-11 07:16:27 -0700617 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100618 fputc('\n', output);
619 continue;
620 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100621 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800622 printout(id, nr, counter, uval);
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;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800653 printout(thread, 0, counter, uval);
Jiri Olsa32b8af82015-06-26 11:29:27 +0200654
655 if (!csv_output)
656 print_noise(counter, 1.0);
657
658 print_running(run, ena);
659 fputc('\n', output);
660 }
661}
662
Ingo Molnar42202dd2009-06-13 14:57:28 +0200663/*
664 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200665 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200666 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100667static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200668{
Jiri Olsa58215222015-07-21 14:31:24 +0200669 FILE *output = stat_config.output;
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200670 struct perf_stat_evsel *ps = counter->priv;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200671 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200672 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100673 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700674 double avg_enabled, avg_running;
675
676 avg_enabled = avg_stats(&ps->res_stats[1]);
677 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200678
Stephane Eranian13370a92013-01-29 12:47:44 +0100679 if (prefix)
680 fprintf(output, "%s", prefix);
681
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000682 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100683 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200684 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600685 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100686 csv_sep);
687 fprintf(output, "%-*s%s",
688 csv_output ? 0 : unit_width,
689 counter->unit, csv_sep);
690 fprintf(output, "%*s",
691 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300692 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200693
694 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200695 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200696
Andi Kleend73515c2015-03-11 07:16:27 -0700697 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200698 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200699 return;
700 }
701
Stephane Eranian410136f2013-11-12 17:58:49 +0100702 uval = avg * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800703 printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200704
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700705 print_noise(counter, avg);
706
Andi Kleend73515c2015-03-11 07:16:27 -0700707 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200708 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200709}
710
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200711/*
712 * Print out the results of a single counter:
713 * does not use aggregated count in system-wide
714 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100715static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200716{
Jiri Olsa58215222015-07-21 14:31:24 +0200717 FILE *output = stat_config.output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200718 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100719 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200720 int cpu;
721
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800722 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200723 val = perf_counts(counter->counts, cpu, 0)->val;
724 ena = perf_counts(counter->counts, cpu, 0)->ena;
725 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100726
727 if (prefix)
728 fprintf(output, "%s", prefix);
729
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200730 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100731 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200732 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800733 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200734 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600735 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100736 csv_sep);
737
738 fprintf(output, "%-*s%s",
739 csv_output ? 0 : unit_width,
740 counter->unit, csv_sep);
741
742 fprintf(output, "%*s",
743 csv_output ? 0 : -25,
744 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200745
Stephane Eranian023695d2011-02-14 11:20:01 +0200746 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200747 fprintf(output, "%s%s",
748 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200749
Andi Kleend73515c2015-03-11 07:16:27 -0700750 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200751 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200752 continue;
753 }
754
Stephane Eranian410136f2013-11-12 17:58:49 +0100755 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800756 printout(cpu, 0, counter, uval);
Andi Kleend73515c2015-03-11 07:16:27 -0700757 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200758 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700759 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200760
Stephane Eranian4aa90152011-08-15 22:22:33 +0200761 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200762 }
763}
764
Jiri Olsad4f63a42015-06-26 11:29:26 +0200765static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200766{
Jiri Olsa58215222015-07-21 14:31:24 +0200767 FILE *output = stat_config.output;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200768 static int num_print_interval;
769
770 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
771
772 if (num_print_interval == 0 && !csv_output) {
Jiri Olsa421a50f2015-07-21 14:31:22 +0200773 switch (stat_config.aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +0200774 case AGGR_SOCKET:
775 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
776 break;
777 case AGGR_CORE:
778 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
779 break;
780 case AGGR_NONE:
781 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
782 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200783 case AGGR_THREAD:
784 fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit");
785 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200786 case AGGR_GLOBAL:
787 default:
788 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
Jiri Olsa208df992015-10-16 12:41:04 +0200789 case AGGR_UNSET:
790 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200791 }
792 }
793
794 if (++num_print_interval == 25)
795 num_print_interval = 0;
796}
797
798static void print_header(int argc, const char **argv)
799{
Jiri Olsa58215222015-07-21 14:31:24 +0200800 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200801 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200802
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200803 fflush(stdout);
804
Stephane Eraniand7470b62010-12-01 18:49:05 +0200805 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200806 fprintf(output, "\n");
807 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600808 if (target.system_wide)
809 fprintf(output, "\'system wide");
810 else if (target.cpu_list)
811 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300812 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200813 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200814 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200815 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900816 } else if (target.pid)
817 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200818 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900819 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200820
Stephane Eranian4aa90152011-08-15 22:22:33 +0200821 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200822 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200823 fprintf(output, " (%d runs)", run_count);
824 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200825 }
Jiri Olsad4f63a42015-06-26 11:29:26 +0200826}
827
828static void print_footer(void)
829{
Jiri Olsa58215222015-07-21 14:31:24 +0200830 FILE *output = stat_config.output;
831
Jiri Olsad4f63a42015-06-26 11:29:26 +0200832 if (!null_run)
833 fprintf(output, "\n");
834 fprintf(output, " %17.9f seconds time elapsed",
835 avg_stats(&walltime_nsecs_stats)/1e9);
836 if (run_count > 1) {
837 fprintf(output, " ");
838 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
839 avg_stats(&walltime_nsecs_stats));
840 }
841 fprintf(output, "\n\n");
842}
843
844static void print_counters(struct timespec *ts, int argc, const char **argv)
845{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200846 int interval = stat_config.interval;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200847 struct perf_evsel *counter;
848 char buf[64], *prefix = NULL;
849
850 if (interval)
851 print_interval(prefix = buf, ts);
852 else
853 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200854
Jiri Olsa421a50f2015-07-21 14:31:22 +0200855 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100856 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100857 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +0200858 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100859 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200860 case AGGR_THREAD:
861 evlist__for_each(evsel_list, counter)
862 print_aggr_thread(counter, prefix);
863 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100864 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300865 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200866 print_counter_aggr(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100867 break;
868 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300869 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200870 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100871 break;
Jiri Olsa208df992015-10-16 12:41:04 +0200872 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100873 default:
874 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200875 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200876
Jiri Olsad4f63a42015-06-26 11:29:26 +0200877 if (!interval && !csv_output)
878 print_footer();
879
Jiri Olsa58215222015-07-21 14:31:24 +0200880 fflush(stat_config.output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200881}
882
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200883static volatile int signr = -1;
884
Ingo Molnar52425192009-05-26 09:17:18 +0200885static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200886{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200887 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800888 done = 1;
889
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200890 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200891 /*
892 * render child_pid harmless
893 * won't send SIGTERM to a random
894 * process in case of race condition
895 * and fast PID recycling
896 */
897 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200898}
899
900static void sig_atexit(void)
901{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200902 sigset_t set, oset;
903
904 /*
905 * avoid race condition with SIGCHLD handler
906 * in skip_signal() which is modifying child_pid
907 * goal is to avoid send SIGTERM to a random
908 * process
909 */
910 sigemptyset(&set);
911 sigaddset(&set, SIGCHLD);
912 sigprocmask(SIG_BLOCK, &set, &oset);
913
Chris Wilson933da832009-10-04 01:35:01 +0100914 if (child_pid != -1)
915 kill(child_pid, SIGTERM);
916
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200917 sigprocmask(SIG_SETMASK, &oset, NULL);
918
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200919 if (signr == -1)
920 return;
921
922 signal(signr, SIG_DFL);
923 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200924}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200925
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300926static int stat__set_big_num(const struct option *opt __maybe_unused,
927 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200928{
929 big_num_opt = unset ? 0 : 1;
930 return 0;
931}
932
Jiri Olsae0547312015-11-05 15:40:45 +0100933static const struct option stat_options[] = {
934 OPT_BOOLEAN('T', "transaction", &transaction_run,
935 "hardware transaction statistics"),
936 OPT_CALLBACK('e', "event", &evsel_list, "event",
937 "event selector. use 'perf list' to list available events",
938 parse_events_option),
939 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
940 "event filter", parse_filter),
941 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
942 "child tasks do not inherit counters"),
943 OPT_STRING('p', "pid", &target.pid, "pid",
944 "stat events on existing process id"),
945 OPT_STRING('t', "tid", &target.tid, "tid",
946 "stat events on existing thread id"),
947 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
948 "system-wide collection from all CPUs"),
949 OPT_BOOLEAN('g', "group", &group,
950 "put the counters into a counter group"),
951 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
952 OPT_INCR('v', "verbose", &verbose,
953 "be more verbose (show counter open errors, etc)"),
954 OPT_INTEGER('r', "repeat", &run_count,
955 "repeat command and print average + stddev (max: 100, forever: 0)"),
956 OPT_BOOLEAN('n', "null", &null_run,
957 "null run - dont start any counters"),
958 OPT_INCR('d', "detailed", &detailed_run,
959 "detailed run - start a lot of events"),
960 OPT_BOOLEAN('S', "sync", &sync_run,
961 "call sync() before starting a run"),
962 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
963 "print large numbers with thousands\' separators",
964 stat__set_big_num),
965 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
966 "list of cpus to monitor in system-wide"),
967 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
968 "disable CPU count aggregation", AGGR_NONE),
969 OPT_STRING('x', "field-separator", &csv_sep, "separator",
970 "print counts with custom separator"),
971 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
972 "monitor event in cgroup name only", parse_cgroups),
973 OPT_STRING('o', "output", &output_name, "file", "output file name"),
974 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
975 OPT_INTEGER(0, "log-fd", &output_fd,
976 "log output to fd, instead of stderr"),
977 OPT_STRING(0, "pre", &pre_cmd, "command",
978 "command to run prior to the measured command"),
979 OPT_STRING(0, "post", &post_cmd, "command",
980 "command to run after to the measured command"),
981 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
982 "print counts at regular interval in ms (>= 10)"),
983 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
984 "aggregate counts per processor socket", AGGR_SOCKET),
985 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
986 "aggregate counts per physical processor core", AGGR_CORE),
987 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
988 "aggregate counts per thread", AGGR_THREAD),
989 OPT_UINTEGER('D', "delay", &initial_delay,
990 "ms to wait before starting measurement after program start"),
991 OPT_END()
992};
993
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200994static int perf_stat__get_socket(struct cpu_map *map, int cpu)
995{
996 return cpu_map__get_socket(map, cpu, NULL);
997}
998
999static int perf_stat__get_core(struct cpu_map *map, int cpu)
1000{
1001 return cpu_map__get_core(map, cpu, NULL);
1002}
1003
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001004static int cpu_map__get_max(struct cpu_map *map)
1005{
1006 int i, max = -1;
1007
1008 for (i = 0; i < map->nr; i++) {
1009 if (map->map[i] > max)
1010 max = map->map[i];
1011 }
1012
1013 return max;
1014}
1015
1016static struct cpu_map *cpus_aggr_map;
1017
1018static int perf_stat__get_aggr(aggr_get_id_t get_id, struct cpu_map *map, int idx)
1019{
1020 int cpu;
1021
1022 if (idx >= map->nr)
1023 return -1;
1024
1025 cpu = map->map[idx];
1026
1027 if (cpus_aggr_map->map[cpu] == -1)
1028 cpus_aggr_map->map[cpu] = get_id(map, idx);
1029
1030 return cpus_aggr_map->map[cpu];
1031}
1032
1033static int perf_stat__get_socket_cached(struct cpu_map *map, int idx)
1034{
1035 return perf_stat__get_aggr(perf_stat__get_socket, map, idx);
1036}
1037
1038static int perf_stat__get_core_cached(struct cpu_map *map, int idx)
1039{
1040 return perf_stat__get_aggr(perf_stat__get_core, map, idx);
1041}
1042
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001043static int perf_stat_init_aggr_mode(void)
1044{
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001045 int nr;
1046
Jiri Olsa421a50f2015-07-21 14:31:22 +02001047 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001048 case AGGR_SOCKET:
1049 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1050 perror("cannot build socket map");
1051 return -1;
1052 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001053 aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001054 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001055 case AGGR_CORE:
1056 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1057 perror("cannot build core map");
1058 return -1;
1059 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001060 aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001061 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001062 case AGGR_NONE:
1063 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02001064 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +02001065 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001066 default:
1067 break;
1068 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001069
1070 /*
1071 * The evsel_list->cpus is the base we operate on,
1072 * taking the highest cpu number to be the size of
1073 * the aggregation translate cpumap.
1074 */
1075 nr = cpu_map__get_max(evsel_list->cpus);
1076 cpus_aggr_map = cpu_map__empty_new(nr + 1);
1077 return cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001078}
1079
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001080/*
1081 * Add default attributes, if there were no attributes specified or
1082 * if -d/--detailed, -d -d or -d -d -d is used:
1083 */
1084static int add_default_attributes(void)
1085{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001086 struct perf_event_attr default_attrs[] = {
1087
1088 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1089 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1090 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1091 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1092
1093 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1094 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1095 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1096 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1097 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1098 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1099
1100};
1101
1102/*
1103 * Detailed stats (-d), covering the L1 and last level data caches:
1104 */
1105 struct perf_event_attr detailed_attrs[] = {
1106
1107 { .type = PERF_TYPE_HW_CACHE,
1108 .config =
1109 PERF_COUNT_HW_CACHE_L1D << 0 |
1110 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1111 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1112
1113 { .type = PERF_TYPE_HW_CACHE,
1114 .config =
1115 PERF_COUNT_HW_CACHE_L1D << 0 |
1116 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1117 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1118
1119 { .type = PERF_TYPE_HW_CACHE,
1120 .config =
1121 PERF_COUNT_HW_CACHE_LL << 0 |
1122 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1123 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1124
1125 { .type = PERF_TYPE_HW_CACHE,
1126 .config =
1127 PERF_COUNT_HW_CACHE_LL << 0 |
1128 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1129 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1130};
1131
1132/*
1133 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1134 */
1135 struct perf_event_attr very_detailed_attrs[] = {
1136
1137 { .type = PERF_TYPE_HW_CACHE,
1138 .config =
1139 PERF_COUNT_HW_CACHE_L1I << 0 |
1140 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1141 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1142
1143 { .type = PERF_TYPE_HW_CACHE,
1144 .config =
1145 PERF_COUNT_HW_CACHE_L1I << 0 |
1146 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1147 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1148
1149 { .type = PERF_TYPE_HW_CACHE,
1150 .config =
1151 PERF_COUNT_HW_CACHE_DTLB << 0 |
1152 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1153 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1154
1155 { .type = PERF_TYPE_HW_CACHE,
1156 .config =
1157 PERF_COUNT_HW_CACHE_DTLB << 0 |
1158 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1159 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1160
1161 { .type = PERF_TYPE_HW_CACHE,
1162 .config =
1163 PERF_COUNT_HW_CACHE_ITLB << 0 |
1164 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1165 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1166
1167 { .type = PERF_TYPE_HW_CACHE,
1168 .config =
1169 PERF_COUNT_HW_CACHE_ITLB << 0 |
1170 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1171 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1172
1173};
1174
1175/*
1176 * Very, very detailed stats (-d -d -d), adding prefetch events:
1177 */
1178 struct perf_event_attr very_very_detailed_attrs[] = {
1179
1180 { .type = PERF_TYPE_HW_CACHE,
1181 .config =
1182 PERF_COUNT_HW_CACHE_L1D << 0 |
1183 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1184 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1185
1186 { .type = PERF_TYPE_HW_CACHE,
1187 .config =
1188 PERF_COUNT_HW_CACHE_L1D << 0 |
1189 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1190 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1191};
1192
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001193 /* Set attrs if no event is selected and !null_run: */
1194 if (null_run)
1195 return 0;
1196
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001197 if (transaction_run) {
1198 int err;
1199 if (pmu_have_event("cpu", "cycles-ct") &&
1200 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001201 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001202 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001203 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1204 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001205 fprintf(stderr, "Cannot set up transaction events\n");
1206 return -1;
1207 }
1208 return 0;
1209 }
1210
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001211 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001212 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001213 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001214 }
1215
1216 /* Detailed events get appended to the event list: */
1217
1218 if (detailed_run < 1)
1219 return 0;
1220
1221 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001222 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001223 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001224
1225 if (detailed_run < 2)
1226 return 0;
1227
1228 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001229 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001230 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001231
1232 if (detailed_run < 3)
1233 return 0;
1234
1235 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001236 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001237}
1238
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001239int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001240{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001241 const char * const stat_usage[] = {
1242 "perf stat [<options>] [<command>]",
1243 NULL
1244 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001245 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001246 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001247 FILE *output = stderr;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001248 unsigned int interval;
Ingo Molnar42202dd2009-06-13 14:57:28 +02001249
Stephane Eranian5af52b52010-05-18 15:00:01 +02001250 setlocale(LC_ALL, "");
1251
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001252 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001253 if (evsel_list == NULL)
1254 return -ENOMEM;
1255
Jiri Olsae0547312015-11-05 15:40:45 +01001256 argc = parse_options(argc, argv, stat_options, stat_usage,
Anton Blancharda0541232009-07-22 23:04:12 +10001257 PARSE_OPT_STOP_AT_NON_OPTION);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001258
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001259 interval = stat_config.interval;
1260
Stephane Eranian4aa90152011-08-15 22:22:33 +02001261 if (output_name && strcmp(output_name, "-"))
1262 output = NULL;
1263
Jim Cromie56f3bae2011-09-07 17:14:00 -06001264 if (output_name && output_fd) {
1265 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001266 parse_options_usage(stat_usage, stat_options, "o", 1);
1267 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001268 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001269 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001270
1271 if (output_fd < 0) {
1272 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001273 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001274 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001275 }
1276
Stephane Eranian4aa90152011-08-15 22:22:33 +02001277 if (!output) {
1278 struct timespec tm;
1279 mode = append_file ? "a" : "w";
1280
1281 output = fopen(output_name, mode);
1282 if (!output) {
1283 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001284 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001285 }
1286 clock_gettime(CLOCK_REALTIME, &tm);
1287 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001288 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001289 mode = append_file ? "a" : "w";
1290 output = fdopen(output_fd, mode);
1291 if (!output) {
1292 perror("Failed opening logfd");
1293 return -errno;
1294 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001295 }
1296
Jiri Olsa58215222015-07-21 14:31:24 +02001297 stat_config.output = output;
1298
Jim Cromied4ffd042011-09-07 17:14:03 -06001299 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001300 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001301 if (!strcmp(csv_sep, "\\t"))
1302 csv_sep = "\t";
1303 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001304 csv_sep = DEFAULT_SEPARATOR;
1305
1306 /*
1307 * let the spreadsheet do the pretty-printing
1308 */
1309 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001310 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001311 if (big_num_opt == 1) {
1312 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001313 parse_options_usage(stat_usage, stat_options, "B", 1);
1314 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001315 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001316 } else /* Nope, so disable big number formatting */
1317 big_num = false;
1318 } else if (big_num_opt == 0) /* User passed --no-big-num */
1319 big_num = false;
1320
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001321 if (!argc && target__none(&target))
Jiri Olsae0547312015-11-05 15:40:45 +01001322 usage_with_options(stat_usage, stat_options);
David Ahernac3063b2013-09-30 07:37:37 -06001323
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001324 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001325 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001326 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001327 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001328 } else if (run_count == 0) {
1329 forever = true;
1330 run_count = 1;
1331 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001332
Jiri Olsa421a50f2015-07-21 14:31:22 +02001333 if ((stat_config.aggr_mode == AGGR_THREAD) && !target__has_task(&target)) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001334 fprintf(stderr, "The --per-thread option is only available "
1335 "when monitoring via -p -t options.\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001336 parse_options_usage(NULL, stat_options, "p", 1);
1337 parse_options_usage(NULL, stat_options, "t", 1);
Jiri Olsa32b8af82015-06-26 11:29:27 +02001338 goto out;
1339 }
1340
1341 /*
1342 * no_aggr, cgroup are for system-wide only
1343 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1344 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001345 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1346 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001347 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001348 fprintf(stderr, "both cgroup and no-aggregation "
1349 "modes only available in system-wide mode\n");
1350
Jiri Olsae0547312015-11-05 15:40:45 +01001351 parse_options_usage(stat_usage, stat_options, "G", 1);
1352 parse_options_usage(NULL, stat_options, "A", 1);
1353 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001354 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001355 }
1356
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001357 if (add_default_attributes())
1358 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001359
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001360 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001361
Namhyung Kim77a6f012012-05-07 14:09:04 +09001362 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001363 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001364 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001365 parse_options_usage(stat_usage, stat_options, "p", 1);
1366 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001367 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001368 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01001369 parse_options_usage(stat_usage, stat_options, "C", 1);
1370 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001371 }
1372 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001373 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001374
1375 /*
1376 * Initialize thread_map with comm names,
1377 * so we could print it out on output.
1378 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001379 if (stat_config.aggr_mode == AGGR_THREAD)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001380 thread_map__read_comms(evsel_list->threads);
1381
Stephane Eranian13370a92013-01-29 12:47:44 +01001382 if (interval && interval < 100) {
Kan Liang19afd102015-10-02 05:04:34 -04001383 if (interval < 10) {
1384 pr_err("print interval must be >= 10ms\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001385 parse_options_usage(stat_usage, stat_options, "I", 1);
Kan Liang19afd102015-10-02 05:04:34 -04001386 goto out;
1387 } else
1388 pr_warning("print interval < 100ms. "
1389 "The overhead percentage could be high in some cases. "
1390 "Please proceed with caution.\n");
Stephane Eranian13370a92013-01-29 12:47:44 +01001391 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001392
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001393 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001394 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001395
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001396 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001397 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001398
Ingo Molnar58d7e992009-05-15 11:03:23 +02001399 /*
1400 * We dont want to block the signals - that would cause
1401 * child tasks to inherit that and Ctrl-C would not work.
1402 * What we want is for Ctrl-C to work in the exec()-ed
1403 * task, but being ignored by perf stat itself:
1404 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001405 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001406 if (!forever)
1407 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001408 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001409 signal(SIGALRM, skip_signal);
1410 signal(SIGABRT, skip_signal);
1411
Ingo Molnar42202dd2009-06-13 14:57:28 +02001412 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001413 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001414 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001415 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1416 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001417
Ingo Molnar42202dd2009-06-13 14:57:28 +02001418 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001419 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001420 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc2015-06-26 11:29:13 +02001421 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001422 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001423 }
1424
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001425 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001426 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001427
1428 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001429out:
1430 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001431 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001432}