blob: 39d0c30f0f598fbdf681e2bae9565c9b87a3c020 [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"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060048#include <subcmd/parse-options.h>
Ingo Molnar52425192009-05-26 09:17:18 +020049#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"
Jiri Olsa4979d0c2015-11-05 15:40:46 +010062#include "util/session.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020063
Peter Zijlstra1f16c572012-10-23 13:40:14 +020064#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020065#include <sys/prctl.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020066#include <locale.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020067
Stephane Eraniand7470b62010-12-01 18:49:05 +020068#define DEFAULT_SEPARATOR " "
David Ahern2cee77c2011-05-30 08:55:59 -060069#define CNTR_NOT_SUPPORTED "<not supported>"
70#define CNTR_NOT_COUNTED "<not counted>"
Stephane Eraniand7470b62010-12-01 18:49:05 +020071
Jiri Olsad4f63a42015-06-26 11:29:26 +020072static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010073
Andi Kleen4cabc3d2013-08-21 16:47:26 -070074/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020075static const char *transaction_attrs = {
76 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070077 "{"
78 "instructions,"
79 "cycles,"
80 "cpu/cycles-t/,"
81 "cpu/tx-start/,"
82 "cpu/el-start/,"
83 "cpu/cycles-ct/"
84 "}"
85};
86
87/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +020088static const char * transaction_limited_attrs = {
89 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070090 "{"
91 "instructions,"
92 "cycles,"
93 "cpu/cycles-t/,"
94 "cpu/tx-start/"
95 "}"
96};
97
Robert Richter666e6d42012-04-05 18:26:27 +020098static struct perf_evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020099
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300100static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900101 .uid = UINT_MAX,
102};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530103
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100104typedef int (*aggr_get_id_t)(struct cpu_map *m, int cpu);
105
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530106static int run_count = 1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200107static bool no_inherit = false;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200108static volatile pid_t child_pid = -1;
Ian Munsiec0555642010-04-13 18:37:33 +1000109static bool null_run = false;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200110static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700111static bool transaction_run;
Arnaldo Carvalho de Melo201e0b02010-12-01 17:53:27 -0200112static bool big_num = true;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200113static int big_num_opt = -1;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200114static const char *csv_sep = NULL;
115static bool csv_output = false;
Lin Ming43bece72011-08-17 18:42:07 +0800116static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200117static const char *pre_cmd = NULL;
118static const char *post_cmd = NULL;
119static bool sync_run = false;
Andi Kleen41191682013-08-02 17:41:11 -0700120static unsigned int initial_delay = 0;
Stephane Eranian410136f2013-11-12 17:58:49 +0100121static unsigned int unit_width = 4; /* strlen("unit") */
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500122static bool forever = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100123static struct timespec ref_time;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100124static struct cpu_map *aggr_map;
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100125static aggr_get_id_t aggr_get_id;
Jiri Olsae0547312015-11-05 15:40:45 +0100126static bool append_file;
127static const char *output_name;
128static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200129
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100130struct perf_stat {
131 bool record;
132 struct perf_data_file file;
133 struct perf_session *session;
134 u64 bytes_written;
135};
136
137static struct perf_stat perf_stat;
138#define STAT_RECORD perf_stat.record
139
Liming Wang60666c62009-12-31 16:05:50 +0800140static volatile int done = 0;
141
Jiri Olsa421a50f2015-07-21 14:31:22 +0200142static struct perf_stat_config stat_config = {
143 .aggr_mode = AGGR_GLOBAL,
Jiri Olsa711a5722015-07-21 14:31:23 +0200144 .scale = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200145};
146
Stephane Eranian13370a92013-01-29 12:47:44 +0100147static inline void diff_timespec(struct timespec *r, struct timespec *a,
148 struct timespec *b)
149{
150 r->tv_sec = a->tv_sec - b->tv_sec;
151 if (a->tv_nsec < b->tv_nsec) {
152 r->tv_nsec = a->tv_nsec + 1000000000L - b->tv_nsec;
153 r->tv_sec--;
154 } else {
155 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
156 }
157}
158
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200159static void perf_stat__reset_stats(void)
160{
161 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200162 perf_stat__reset_shadow_stats();
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200163}
164
Jiri Olsacac21422012-11-12 18:34:00 +0100165static int create_perf_stat_counter(struct perf_evsel *evsel)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200166{
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200167 struct perf_event_attr *attr = &evsel->attr;
Arnaldo Carvalho de Melo727ab042011-10-25 10:42:19 -0200168
Jiri Olsa711a5722015-07-21 14:31:23 +0200169 if (stat_config.scale)
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200170 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
171 PERF_FORMAT_TOTAL_TIME_RUNNING;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200172
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200173 attr->inherit = !no_inherit;
Arnaldo Carvalho de Melo5d2cd902011-04-14 11:20:14 -0300174
Jiri Olsa6acd8e92015-11-25 16:36:54 +0100175 /*
176 * Some events get initialized with sample_(period/type) set,
177 * like tracepoints. Clear it up for counting.
178 */
179 attr->sample_period = 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100180 /*
181 * But set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
182 * while avoiding that older tools show confusing messages.
183 */
184 attr->sample_type = PERF_SAMPLE_IDENTIFIER;
Jiri Olsa6acd8e92015-11-25 16:36:54 +0100185
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100186 /*
187 * Disabling all counters initially, they will be enabled
188 * either manually by us or by kernel via enable_on_exec
189 * set later.
190 */
Jiri Olsac8280cec2015-12-03 10:06:45 +0100191 if (perf_evsel__is_group_leader(evsel)) {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100192 attr->disabled = 1;
193
Jiri Olsac8280cec2015-12-03 10:06:45 +0100194 /*
195 * In case of initial_delay we enable tracee
196 * events manually.
197 */
198 if (target__none(&target) && !initial_delay)
199 attr->enable_on_exec = 1;
200 }
201
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300202 if (target__has_cpu(&target))
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300203 return perf_evsel__open_per_cpu(evsel, perf_evsel__cpus(evsel));
Stephane Eranian5622c072012-04-27 14:45:38 +0200204
Arnaldo Carvalho de Melo594ac612012-12-13 13:13:07 -0300205 return perf_evsel__open_per_thread(evsel, evsel_list->threads);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200206}
207
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200208/*
209 * Does the counter have nsecs as a unit?
210 */
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200211static inline int nsec_counter(struct perf_evsel *evsel)
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200212{
Arnaldo Carvalho de Melodaec78a2011-01-03 16:49:44 -0200213 if (perf_evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) ||
214 perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK))
Ingo Molnarc04f5e52009-05-29 09:10:54 +0200215 return 1;
216
217 return 0;
218}
219
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100220static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100221 union perf_event *event,
222 struct perf_sample *sample __maybe_unused,
223 struct machine *machine __maybe_unused)
224{
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100225 if (perf_data_file__write(&perf_stat.file, event, event->header.size) < 0) {
226 pr_err("failed to write perf data, error: %m\n");
227 return -1;
228 }
229
230 perf_stat.bytes_written += event->header.size;
231 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100232}
233
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200234/*
235 * Read out the results of a single counter:
236 * do not aggregate counts across CPUs in system-wide mode
237 */
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200238static int read_counter(struct perf_evsel *counter)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200239{
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100240 int nthreads = thread_map__nr(evsel_list->threads);
241 int ncpus = perf_evsel__nr_cpus(counter);
242 int cpu, thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200243
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000244 if (!counter->supported)
245 return -ENOENT;
246
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100247 if (counter->system_wide)
248 nthreads = 1;
249
250 for (thread = 0; thread < nthreads; thread++) {
251 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200252 struct perf_counts_values *count;
253
254 count = perf_counts(counter->counts, cpu, thread);
255 if (perf_evsel__read(counter, cpu, thread, count))
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100256 return -1;
257 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200258 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200259
260 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200261}
262
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200263static void read_counters(bool close_counters)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200264{
265 struct perf_evsel *counter;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200266
267 evlist__for_each(evsel_list, counter) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200268 if (read_counter(counter))
Andi Kleen245bad82015-09-01 15:52:46 -0700269 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200270
Jiri Olsaf80010e2015-07-21 14:31:27 +0200271 if (perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200272 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200273
Jiri Olsa5fc472a2015-07-08 13:17:31 +0200274 if (close_counters) {
Jiri Olsa106a94a2015-06-26 11:29:19 +0200275 perf_evsel__close_fd(counter, perf_evsel__nr_cpus(counter),
276 thread_map__nr(evsel_list->threads));
277 }
278 }
279}
280
Jiri Olsaba411a92015-06-26 11:29:24 +0200281static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100282{
Stephane Eranian13370a92013-01-29 12:47:44 +0100283 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100284
Jiri Olsa106a94a2015-06-26 11:29:19 +0200285 read_counters(false);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100286
Stephane Eranian13370a92013-01-29 12:47:44 +0100287 clock_gettime(CLOCK_MONOTONIC, &ts);
288 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100289
Jiri Olsad4f63a42015-06-26 11:29:26 +0200290 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100291}
292
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100293static void enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700294{
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100295 if (initial_delay)
Andi Kleen41191682013-08-02 17:41:11 -0700296 usleep(initial_delay * 1000);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100297
298 /*
299 * We need to enable counters only if:
300 * - we don't have tracee (attaching to task or cpu)
301 * - we have initial delay configured
302 */
303 if (!target__none(&target) || initial_delay)
Jiri Olsaab46db02015-12-03 10:06:43 +0100304 perf_evlist__enable(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700305}
306
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300307static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300308
309/*
310 * perf_evlist__prepare_workload will send a SIGUSR1
311 * if the fork fails, since we asked by setting its
312 * want_signal to true.
313 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300314static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
315 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300316{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300317 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300318}
319
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100320static int perf_stat_synthesize_config(void)
321{
322 int err;
323
324 err = perf_event__synthesize_thread_map2(NULL, evsel_list->threads,
325 process_synthesized_event,
326 NULL);
327 if (err < 0) {
328 pr_err("Couldn't synthesize thread map.\n");
329 return err;
330 }
331
332 err = perf_event__synthesize_cpu_map(NULL, evsel_list->cpus,
333 process_synthesized_event, NULL);
334 if (err < 0) {
335 pr_err("Couldn't synthesize thread map.\n");
336 return err;
337 }
338
339 err = perf_event__synthesize_stat_config(NULL, &stat_config,
340 process_synthesized_event, NULL);
341 if (err < 0) {
342 pr_err("Couldn't synthesize config.\n");
343 return err;
344 }
345
346 return 0;
347}
348
Jiri Olsa2af46462015-11-05 15:40:49 +0100349#define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
350
351static int __store_counter_ids(struct perf_evsel *counter,
352 struct cpu_map *cpus,
353 struct thread_map *threads)
354{
355 int cpu, thread;
356
357 for (cpu = 0; cpu < cpus->nr; cpu++) {
358 for (thread = 0; thread < threads->nr; thread++) {
359 int fd = FD(counter, cpu, thread);
360
361 if (perf_evlist__id_add_fd(evsel_list, counter,
362 cpu, thread, fd) < 0)
363 return -1;
364 }
365 }
366
367 return 0;
368}
369
370static int store_counter_ids(struct perf_evsel *counter)
371{
372 struct cpu_map *cpus = counter->cpus;
373 struct thread_map *threads = counter->threads;
374
375 if (perf_evsel__alloc_id(counter, cpus->nr, threads->nr))
376 return -ENOMEM;
377
378 return __store_counter_ids(counter, cpus, threads);
379}
380
Namhyung Kimacf28922013-03-11 16:43:18 +0900381static int __run_perf_stat(int argc, const char **argv)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200382{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200383 int interval = stat_config.interval;
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300384 char msg[512];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200385 unsigned long long t0, t1;
Jiri Olsacac21422012-11-12 18:34:00 +0100386 struct perf_evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100387 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100388 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200389 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300390 const bool forks = (argc > 0);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200391
Stephane Eranian13370a92013-01-29 12:47:44 +0100392 if (interval) {
393 ts.tv_sec = interval / 1000;
394 ts.tv_nsec = (interval % 1000) * 1000000;
395 } else {
396 ts.tv_sec = 1;
397 ts.tv_nsec = 0;
398 }
399
Liming Wang60666c62009-12-31 16:05:50 +0800400 if (forks) {
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300401 if (perf_evlist__prepare_workload(evsel_list, &target, argv, false,
402 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900403 perror("failed to prepare workload");
404 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800405 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900406 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000407 }
408
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200409 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300410 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200411
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300412 evlist__for_each(evsel_list, counter) {
Jiri Olsacac21422012-11-12 18:34:00 +0100413 if (create_perf_stat_counter(counter) < 0) {
David Ahern979987a2012-05-08 09:29:16 -0600414 /*
415 * PPC returns ENXIO for HW counters until 2.6.37
416 * (behavior changed with commit b0a873e).
417 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100418 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600419 errno == ENOENT || errno == EOPNOTSUPP ||
420 errno == ENXIO) {
David Ahernc63ca0c2011-04-29 16:04:15 -0600421 if (verbose)
422 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300423 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600424 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400425
426 if ((counter->leader != counter) ||
427 !(counter->leader->nr_members > 1))
428 continue;
David Ahernc63ca0c2011-04-29 16:04:15 -0600429 }
Ingo Molnarede70292011-04-28 08:48:42 +0200430
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300431 perf_evsel__open_strerror(counter, &target,
432 errno, msg, sizeof(msg));
433 ui__error("%s\n", msg);
434
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200435 if (child_pid != -1)
436 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600437
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200438 return -1;
439 }
David Ahern2cee77c2011-05-30 08:55:59 -0600440 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100441
442 l = strlen(counter->unit);
443 if (l > unit_width)
444 unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100445
446 if (STAT_RECORD && store_counter_ids(counter))
447 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300448 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200449
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300450 if (perf_evlist__apply_filters(evsel_list, &counter)) {
451 error("failed to set filter \"%s\" on event %s with %d (%s)\n",
452 counter->filter, perf_evsel__name(counter), errno,
Masami Hiramatsu759e6122014-08-14 02:22:55 +0000453 strerror_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100454 return -1;
455 }
456
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100457 if (STAT_RECORD) {
458 int err, fd = perf_data_file__fd(&perf_stat.file);
459
460 err = perf_session__write_header(perf_stat.session, evsel_list,
461 fd, false);
462 if (err < 0)
463 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100464
465 err = perf_stat_synthesize_config();
466 if (err < 0)
467 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100468 }
469
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200470 /*
471 * Enable counters and exec the command:
472 */
473 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100474 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200475
Liming Wang60666c62009-12-31 16:05:50 +0800476 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900477 perf_evlist__start_workload(evsel_list);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100478 enable_counters();
Namhyung Kimacf28922013-03-11 16:43:18 +0900479
Stephane Eranian13370a92013-01-29 12:47:44 +0100480 if (interval) {
481 while (!waitpid(child_pid, &status, WNOHANG)) {
482 nanosleep(&ts, NULL);
Jiri Olsaba411a92015-06-26 11:29:24 +0200483 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100484 }
485 }
Liming Wang60666c62009-12-31 16:05:50 +0800486 wait(&status);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300487
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300488 if (workload_exec_errno) {
489 const char *emsg = strerror_r(workload_exec_errno, msg, sizeof(msg));
490 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300491 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300492 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300493
Andi Kleen33e49ea2011-09-15 14:31:40 -0700494 if (WIFSIGNALED(status))
495 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800496 } else {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100497 enable_counters();
Stephane Eranian13370a92013-01-29 12:47:44 +0100498 while (!done) {
499 nanosleep(&ts, NULL);
500 if (interval)
Jiri Olsaba411a92015-06-26 11:29:24 +0200501 process_interval();
Stephane Eranian13370a92013-01-29 12:47:44 +0100502 }
Liming Wang60666c62009-12-31 16:05:50 +0800503 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200504
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200505 t1 = rdclock();
506
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200507 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200508
Jiri Olsa106a94a2015-06-26 11:29:19 +0200509 read_counters(true);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200510
Ingo Molnar42202dd2009-06-13 14:57:28 +0200511 return WEXITSTATUS(status);
512}
513
Arnaldo Carvalho de Melo41cde472014-01-03 17:34:42 -0300514static int run_perf_stat(int argc, const char **argv)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200515{
516 int ret;
517
518 if (pre_cmd) {
519 ret = system(pre_cmd);
520 if (ret)
521 return ret;
522 }
523
524 if (sync_run)
525 sync();
526
527 ret = __run_perf_stat(argc, argv);
528 if (ret)
529 return ret;
530
531 if (post_cmd) {
532 ret = system(post_cmd);
533 if (ret)
534 return ret;
535 }
536
537 return ret;
538}
539
Andi Kleend73515c2015-03-11 07:16:27 -0700540static void print_running(u64 run, u64 ena)
541{
542 if (csv_output) {
Jiri Olsa58215222015-07-21 14:31:24 +0200543 fprintf(stat_config.output, "%s%" PRIu64 "%s%.2f",
Andi Kleend73515c2015-03-11 07:16:27 -0700544 csv_sep,
545 run,
546 csv_sep,
547 ena ? 100.0 * run / ena : 100.0);
548 } else if (run != ena) {
Jiri Olsa58215222015-07-21 14:31:24 +0200549 fprintf(stat_config.output, " (%.2f%%)", 100.0 * run / ena);
Andi Kleend73515c2015-03-11 07:16:27 -0700550 }
551}
552
Ingo Molnarf99844c2011-04-27 05:35:39 +0200553static void print_noise_pct(double total, double avg)
554{
Xiao Guangrong0007ece2012-09-17 16:31:14 +0800555 double pct = rel_stddev_stats(total, avg);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200556
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700557 if (csv_output)
Jiri Olsa58215222015-07-21 14:31:24 +0200558 fprintf(stat_config.output, "%s%.2f%%", csv_sep, pct);
Jim Cromiea1bca6c2011-09-07 17:14:02 -0600559 else if (pct)
Jiri Olsa58215222015-07-21 14:31:24 +0200560 fprintf(stat_config.output, " ( +-%6.2f%% )", pct);
Ingo Molnarf99844c2011-04-27 05:35:39 +0200561}
562
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200563static void print_noise(struct perf_evsel *evsel, double avg)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200564{
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200565 struct perf_stat_evsel *ps;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200566
Peter Zijlstra849abde2009-09-04 18:23:38 +0200567 if (run_count == 1)
568 return;
569
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200570 ps = evsel->priv;
Ingo Molnarf99844c2011-04-27 05:35:39 +0200571 print_noise_pct(stddev_stats(&ps->res_stats[0]), avg);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200572}
573
Stephane Eranian12c08a92013-02-14 13:57:29 +0100574static void aggr_printout(struct perf_evsel *evsel, int id, int nr)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200575{
Jiri Olsa421a50f2015-07-21 14:31:22 +0200576 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100577 case AGGR_CORE:
Jiri Olsa58215222015-07-21 14:31:24 +0200578 fprintf(stat_config.output, "S%d-C%*d%s%*d%s",
Stephane Eranian12c08a92013-02-14 13:57:29 +0100579 cpu_map__id_to_socket(id),
580 csv_output ? 0 : -8,
581 cpu_map__id_to_cpu(id),
582 csv_sep,
583 csv_output ? 0 : 4,
584 nr,
585 csv_sep);
586 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100587 case AGGR_SOCKET:
Jiri Olsa58215222015-07-21 14:31:24 +0200588 fprintf(stat_config.output, "S%*d%s%*d%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100589 csv_output ? 0 : -5,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100590 id,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100591 csv_sep,
592 csv_output ? 0 : 4,
593 nr,
594 csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100595 break;
596 case AGGR_NONE:
Jiri Olsa58215222015-07-21 14:31:24 +0200597 fprintf(stat_config.output, "CPU%*d%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200598 csv_output ? 0 : -4,
Stephane Eranian12c08a92013-02-14 13:57:29 +0100599 perf_evsel__cpus(evsel)->map[id], csv_sep);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100600 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200601 case AGGR_THREAD:
Jiri Olsa58215222015-07-21 14:31:24 +0200602 fprintf(stat_config.output, "%*s-%*d%s",
Jiri Olsa32b8af82015-06-26 11:29:27 +0200603 csv_output ? 0 : 16,
604 thread_map__comm(evsel->threads, id),
605 csv_output ? 0 : -8,
606 thread_map__pid(evsel->threads, id),
607 csv_sep);
608 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100609 case AGGR_GLOBAL:
Jiri Olsa208df992015-10-16 12:41:04 +0200610 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100611 default:
612 break;
613 }
614}
Stephane Eraniand7470b62010-12-01 18:49:05 +0200615
Andi Kleenda88c7f2014-09-24 13:50:46 -0700616static void nsec_printout(int id, int nr, struct perf_evsel *evsel, double avg)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100617{
Jiri Olsa58215222015-07-21 14:31:24 +0200618 FILE *output = stat_config.output;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100619 double msecs = avg / 1e6;
Stephane Eranian410136f2013-11-12 17:58:49 +0100620 const char *fmt_v, *fmt_n;
David Ahern4bbe5a62013-09-28 14:28:00 -0600621 char name[25];
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100622
Stephane Eranian410136f2013-11-12 17:58:49 +0100623 fmt_v = csv_output ? "%.6f%s" : "%18.6f%s";
624 fmt_n = csv_output ? "%s" : "%-25s";
625
Andi Kleenda88c7f2014-09-24 13:50:46 -0700626 aggr_printout(evsel, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100627
David Ahern4bbe5a62013-09-28 14:28:00 -0600628 scnprintf(name, sizeof(name), "%s%s",
629 perf_evsel__name(evsel), csv_output ? "" : " (msec)");
Stephane Eranian410136f2013-11-12 17:58:49 +0100630
631 fprintf(output, fmt_v, msecs, csv_sep);
632
633 if (csv_output)
634 fprintf(output, "%s%s", evsel->unit, csv_sep);
635 else
636 fprintf(output, "%-*s%s", unit_width, evsel->unit, csv_sep);
637
638 fprintf(output, fmt_n, name);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200639
Stephane Eranian023695d2011-02-14 11:20:01 +0200640 if (evsel->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200641 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200642}
643
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200644static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg)
645{
Jiri Olsa58215222015-07-21 14:31:24 +0200646 FILE *output = stat_config.output;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200647 double sc = evsel->scale;
648 const char *fmt;
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200649
650 if (csv_output) {
651 fmt = sc != 1.0 ? "%.2f%s" : "%.0f%s";
652 } else {
653 if (big_num)
654 fmt = sc != 1.0 ? "%'18.2f%s" : "%'18.0f%s";
655 else
656 fmt = sc != 1.0 ? "%18.2f%s" : "%18.0f%s";
657 }
658
659 aggr_printout(evsel, id, nr);
660
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200661 fprintf(output, fmt, avg, csv_sep);
662
663 if (evsel->unit)
664 fprintf(output, "%-*s%s",
665 csv_output ? 0 : unit_width,
666 evsel->unit, csv_sep);
667
668 fprintf(output, "%-*s", csv_output ? 0 : 25, perf_evsel__name(evsel));
669
670 if (evsel->cgrp)
671 fprintf(output, "%s%s", csv_sep, evsel->cgrp->name);
Andi Kleeneedfcb42015-11-02 17:50:21 -0800672}
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200673
Andi Kleeneedfcb42015-11-02 17:50:21 -0800674static void printout(int id, int nr, struct perf_evsel *counter, double uval)
675{
676 int cpu = cpu_map__id_to_cpu(id);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200677
Andi Kleeneedfcb42015-11-02 17:50:21 -0800678 if (stat_config.aggr_mode == AGGR_GLOBAL)
679 cpu = 0;
680
681 if (nsec_counter(counter))
682 nsec_printout(id, nr, counter, uval);
683 else
684 abs_printout(id, nr, counter, uval);
685
686 if (!csv_output && !stat_config.interval)
687 perf_stat__print_shadow_stats(stat_config.output, counter,
688 uval, cpu,
689 stat_config.aggr_mode);
Jiri Olsa556b1fb2015-06-03 16:25:56 +0200690}
691
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100692static void print_aggr(char *prefix)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100693{
Jiri Olsa58215222015-07-21 14:31:24 +0200694 FILE *output = stat_config.output;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100695 struct perf_evsel *counter;
Kan Liang601083c2015-07-02 03:08:43 -0400696 int cpu, s, s2, id, nr;
Stephane Eranian410136f2013-11-12 17:58:49 +0100697 double uval;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100698 u64 ena, run, val;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100699
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100700 if (!(aggr_map || aggr_get_id))
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100701 return;
702
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100703 for (s = 0; s < aggr_map->nr; s++) {
704 id = aggr_map->map[s];
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300705 evlist__for_each(evsel_list, counter) {
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100706 val = ena = run = 0;
707 nr = 0;
708 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Kan Liang601083c2015-07-02 03:08:43 -0400709 s2 = aggr_get_id(perf_evsel__cpus(counter), cpu);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100710 if (s2 != id)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100711 continue;
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200712 val += perf_counts(counter->counts, cpu, 0)->val;
713 ena += perf_counts(counter->counts, cpu, 0)->ena;
714 run += perf_counts(counter->counts, cpu, 0)->run;
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100715 nr++;
716 }
717 if (prefix)
718 fprintf(output, "%s", prefix);
719
720 if (run == 0 || ena == 0) {
Stephane Eranian582ec0822013-07-05 19:06:45 +0200721 aggr_printout(counter, id, nr);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100722
Stephane Eranian410136f2013-11-12 17:58:49 +0100723 fprintf(output, "%*s%s",
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100724 csv_output ? 0 : 18,
725 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100726 csv_sep);
727
728 fprintf(output, "%-*s%s",
729 csv_output ? 0 : unit_width,
730 counter->unit, csv_sep);
731
732 fprintf(output, "%*s",
733 csv_output ? 0 : -25,
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100734 perf_evsel__name(counter));
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100735
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100736 if (counter->cgrp)
737 fprintf(output, "%s%s",
738 csv_sep, counter->cgrp->name);
739
Andi Kleend73515c2015-03-11 07:16:27 -0700740 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100741 fputc('\n', output);
742 continue;
743 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100744 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800745 printout(id, nr, counter, uval);
Andi Kleend73515c2015-03-11 07:16:27 -0700746 if (!csv_output)
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100747 print_noise(counter, 1.0);
748
Andi Kleend73515c2015-03-11 07:16:27 -0700749 print_running(run, ena);
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100750 fputc('\n', output);
751 }
752 }
753}
754
Jiri Olsa32b8af82015-06-26 11:29:27 +0200755static void print_aggr_thread(struct perf_evsel *counter, char *prefix)
756{
Jiri Olsa58215222015-07-21 14:31:24 +0200757 FILE *output = stat_config.output;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200758 int nthreads = thread_map__nr(counter->threads);
759 int ncpus = cpu_map__nr(counter->cpus);
760 int cpu, thread;
761 double uval;
762
763 for (thread = 0; thread < nthreads; thread++) {
764 u64 ena = 0, run = 0, val = 0;
765
766 for (cpu = 0; cpu < ncpus; cpu++) {
767 val += perf_counts(counter->counts, cpu, thread)->val;
768 ena += perf_counts(counter->counts, cpu, thread)->ena;
769 run += perf_counts(counter->counts, cpu, thread)->run;
770 }
771
772 if (prefix)
773 fprintf(output, "%s", prefix);
774
775 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800776 printout(thread, 0, counter, uval);
Jiri Olsa32b8af82015-06-26 11:29:27 +0200777
778 if (!csv_output)
779 print_noise(counter, 1.0);
780
781 print_running(run, ena);
782 fputc('\n', output);
783 }
784}
785
Ingo Molnar42202dd2009-06-13 14:57:28 +0200786/*
787 * Print out the results of a single counter:
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200788 * aggregated counts in system-wide mode
Ingo Molnar42202dd2009-06-13 14:57:28 +0200789 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100790static void print_counter_aggr(struct perf_evsel *counter, char *prefix)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200791{
Jiri Olsa58215222015-07-21 14:31:24 +0200792 FILE *output = stat_config.output;
Jiri Olsa581cc8a2015-10-16 12:41:03 +0200793 struct perf_stat_evsel *ps = counter->priv;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200794 double avg = avg_stats(&ps->res_stats[0]);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200795 int scaled = counter->counts->scaled;
Stephane Eranian410136f2013-11-12 17:58:49 +0100796 double uval;
Andi Kleend73515c2015-03-11 07:16:27 -0700797 double avg_enabled, avg_running;
798
799 avg_enabled = avg_stats(&ps->res_stats[1]);
800 avg_running = avg_stats(&ps->res_stats[2]);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200801
Stephane Eranian13370a92013-01-29 12:47:44 +0100802 if (prefix)
803 fprintf(output, "%s", prefix);
804
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000805 if (scaled == -1 || !counter->supported) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100806 fprintf(output, "%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200807 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600808 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100809 csv_sep);
810 fprintf(output, "%-*s%s",
811 csv_output ? 0 : unit_width,
812 counter->unit, csv_sep);
813 fprintf(output, "%*s",
814 csv_output ? 0 : -25,
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300815 perf_evsel__name(counter));
Stephane Eranian023695d2011-02-14 11:20:01 +0200816
817 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200818 fprintf(output, "%s%s", csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200819
Andi Kleend73515c2015-03-11 07:16:27 -0700820 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200821 fputc('\n', output);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200822 return;
823 }
824
Stephane Eranian410136f2013-11-12 17:58:49 +0100825 uval = avg * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800826 printout(-1, 0, counter, uval);
Peter Zijlstra849abde2009-09-04 18:23:38 +0200827
Zhengyu He3ae9a34d2011-06-23 13:45:42 -0700828 print_noise(counter, avg);
829
Andi Kleend73515c2015-03-11 07:16:27 -0700830 print_running(avg_running, avg_enabled);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200831 fprintf(output, "\n");
Ingo Molnar42202dd2009-06-13 14:57:28 +0200832}
833
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200834/*
835 * Print out the results of a single counter:
836 * does not use aggregated count in system-wide
837 */
Stephane Eranian13370a92013-01-29 12:47:44 +0100838static void print_counter(struct perf_evsel *counter, char *prefix)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200839{
Jiri Olsa58215222015-07-21 14:31:24 +0200840 FILE *output = stat_config.output;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200841 u64 ena, run, val;
Stephane Eranian410136f2013-11-12 17:58:49 +0100842 double uval;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200843 int cpu;
844
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800845 for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
Jiri Olsaa6fa0032015-06-26 11:29:11 +0200846 val = perf_counts(counter->counts, cpu, 0)->val;
847 ena = perf_counts(counter->counts, cpu, 0)->ena;
848 run = perf_counts(counter->counts, cpu, 0)->run;
Stephane Eranian13370a92013-01-29 12:47:44 +0100849
850 if (prefix)
851 fprintf(output, "%s", prefix);
852
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200853 if (run == 0 || ena == 0) {
Stephane Eranian410136f2013-11-12 17:58:49 +0100854 fprintf(output, "CPU%*d%s%*s%s",
Stephane Eraniand7470b62010-12-01 18:49:05 +0200855 csv_output ? 0 : -4,
Yan, Zheng7ae92e72012-09-10 15:53:50 +0800856 perf_evsel__cpus(counter)->map[cpu], csv_sep,
Stephane Eraniand7470b62010-12-01 18:49:05 +0200857 csv_output ? 0 : 18,
David Ahern2cee77c2011-05-30 08:55:59 -0600858 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
Stephane Eranian410136f2013-11-12 17:58:49 +0100859 csv_sep);
860
861 fprintf(output, "%-*s%s",
862 csv_output ? 0 : unit_width,
863 counter->unit, csv_sep);
864
865 fprintf(output, "%*s",
866 csv_output ? 0 : -25,
867 perf_evsel__name(counter));
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200868
Stephane Eranian023695d2011-02-14 11:20:01 +0200869 if (counter->cgrp)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200870 fprintf(output, "%s%s",
871 csv_sep, counter->cgrp->name);
Stephane Eranian023695d2011-02-14 11:20:01 +0200872
Andi Kleend73515c2015-03-11 07:16:27 -0700873 print_running(run, ena);
Stephane Eranian4aa90152011-08-15 22:22:33 +0200874 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200875 continue;
876 }
877
Stephane Eranian410136f2013-11-12 17:58:49 +0100878 uval = val * counter->scale;
Andi Kleeneedfcb42015-11-02 17:50:21 -0800879 printout(cpu, 0, counter, uval);
Andi Kleend73515c2015-03-11 07:16:27 -0700880 if (!csv_output)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200881 print_noise(counter, 1.0);
Andi Kleend73515c2015-03-11 07:16:27 -0700882 print_running(run, ena);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200883
Stephane Eranian4aa90152011-08-15 22:22:33 +0200884 fputc('\n', output);
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200885 }
886}
887
Jiri Olsad4f63a42015-06-26 11:29:26 +0200888static void print_interval(char *prefix, struct timespec *ts)
Ingo Molnar42202dd2009-06-13 14:57:28 +0200889{
Jiri Olsa58215222015-07-21 14:31:24 +0200890 FILE *output = stat_config.output;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200891 static int num_print_interval;
892
893 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep);
894
895 if (num_print_interval == 0 && !csv_output) {
Jiri Olsa421a50f2015-07-21 14:31:22 +0200896 switch (stat_config.aggr_mode) {
Jiri Olsad4f63a42015-06-26 11:29:26 +0200897 case AGGR_SOCKET:
898 fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit");
899 break;
900 case AGGR_CORE:
901 fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit");
902 break;
903 case AGGR_NONE:
904 fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit");
905 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200906 case AGGR_THREAD:
907 fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit");
908 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200909 case AGGR_GLOBAL:
910 default:
911 fprintf(output, "# time counts %*s events\n", unit_width, "unit");
Jiri Olsa208df992015-10-16 12:41:04 +0200912 case AGGR_UNSET:
913 break;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200914 }
915 }
916
917 if (++num_print_interval == 25)
918 num_print_interval = 0;
919}
920
921static void print_header(int argc, const char **argv)
922{
Jiri Olsa58215222015-07-21 14:31:24 +0200923 FILE *output = stat_config.output;
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -0200924 int i;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200925
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200926 fflush(stdout);
927
Stephane Eraniand7470b62010-12-01 18:49:05 +0200928 if (!csv_output) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200929 fprintf(output, "\n");
930 fprintf(output, " Performance counter stats for ");
David Ahern62d3b612013-09-28 14:27:58 -0600931 if (target.system_wide)
932 fprintf(output, "\'system wide");
933 else if (target.cpu_list)
934 fprintf(output, "\'CPU(s) %s", target.cpu_list);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300935 else if (!target__has_task(&target)) {
Stephane Eranian4aa90152011-08-15 22:22:33 +0200936 fprintf(output, "\'%s", argv[0]);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200937 for (i = 1; i < argc; i++)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200938 fprintf(output, " %s", argv[i]);
Namhyung Kim20f946b2012-04-26 14:15:16 +0900939 } else if (target.pid)
940 fprintf(output, "process id \'%s", target.pid);
Stephane Eraniand7470b62010-12-01 18:49:05 +0200941 else
Namhyung Kim20f946b2012-04-26 14:15:16 +0900942 fprintf(output, "thread id \'%s", target.tid);
Ingo Molnar44db76c2009-06-03 19:36:07 +0200943
Stephane Eranian4aa90152011-08-15 22:22:33 +0200944 fprintf(output, "\'");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200945 if (run_count > 1)
Stephane Eranian4aa90152011-08-15 22:22:33 +0200946 fprintf(output, " (%d runs)", run_count);
947 fprintf(output, ":\n\n");
Stephane Eraniand7470b62010-12-01 18:49:05 +0200948 }
Jiri Olsad4f63a42015-06-26 11:29:26 +0200949}
950
951static void print_footer(void)
952{
Jiri Olsa58215222015-07-21 14:31:24 +0200953 FILE *output = stat_config.output;
954
Jiri Olsad4f63a42015-06-26 11:29:26 +0200955 if (!null_run)
956 fprintf(output, "\n");
957 fprintf(output, " %17.9f seconds time elapsed",
958 avg_stats(&walltime_nsecs_stats)/1e9);
959 if (run_count > 1) {
960 fprintf(output, " ");
961 print_noise_pct(stddev_stats(&walltime_nsecs_stats),
962 avg_stats(&walltime_nsecs_stats));
963 }
964 fprintf(output, "\n\n");
965}
966
967static void print_counters(struct timespec *ts, int argc, const char **argv)
968{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200969 int interval = stat_config.interval;
Jiri Olsad4f63a42015-06-26 11:29:26 +0200970 struct perf_evsel *counter;
971 char buf[64], *prefix = NULL;
972
973 if (interval)
974 print_interval(prefix = buf, ts);
975 else
976 print_header(argc, argv);
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200977
Jiri Olsa421a50f2015-07-21 14:31:22 +0200978 switch (stat_config.aggr_mode) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100979 case AGGR_CORE:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100980 case AGGR_SOCKET:
Jiri Olsad4f63a42015-06-26 11:29:26 +0200981 print_aggr(prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100982 break;
Jiri Olsa32b8af82015-06-26 11:29:27 +0200983 case AGGR_THREAD:
984 evlist__for_each(evsel_list, counter)
985 print_aggr_thread(counter, prefix);
986 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100987 case AGGR_GLOBAL:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300988 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200989 print_counter_aggr(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100990 break;
991 case AGGR_NONE:
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300992 evlist__for_each(evsel_list, counter)
Jiri Olsad4f63a42015-06-26 11:29:26 +0200993 print_counter(counter, prefix);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100994 break;
Jiri Olsa208df992015-10-16 12:41:04 +0200995 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100996 default:
997 break;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200998 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200999
Jiri Olsad4f63a42015-06-26 11:29:26 +02001000 if (!interval && !csv_output)
1001 print_footer();
1002
Jiri Olsa58215222015-07-21 14:31:24 +02001003 fflush(stat_config.output);
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001004}
1005
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001006static volatile int signr = -1;
1007
Ingo Molnar52425192009-05-26 09:17:18 +02001008static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001009{
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001010 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +08001011 done = 1;
1012
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001013 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001014 /*
1015 * render child_pid harmless
1016 * won't send SIGTERM to a random
1017 * process in case of race condition
1018 * and fast PID recycling
1019 */
1020 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001021}
1022
1023static void sig_atexit(void)
1024{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001025 sigset_t set, oset;
1026
1027 /*
1028 * avoid race condition with SIGCHLD handler
1029 * in skip_signal() which is modifying child_pid
1030 * goal is to avoid send SIGTERM to a random
1031 * process
1032 */
1033 sigemptyset(&set);
1034 sigaddset(&set, SIGCHLD);
1035 sigprocmask(SIG_BLOCK, &set, &oset);
1036
Chris Wilson933da832009-10-04 01:35:01 +01001037 if (child_pid != -1)
1038 kill(child_pid, SIGTERM);
1039
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001040 sigprocmask(SIG_SETMASK, &oset, NULL);
1041
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001042 if (signr == -1)
1043 return;
1044
1045 signal(signr, SIG_DFL);
1046 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001047}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001048
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001049static int stat__set_big_num(const struct option *opt __maybe_unused,
1050 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001051{
1052 big_num_opt = unset ? 0 : 1;
1053 return 0;
1054}
1055
Jiri Olsae0547312015-11-05 15:40:45 +01001056static const struct option stat_options[] = {
1057 OPT_BOOLEAN('T', "transaction", &transaction_run,
1058 "hardware transaction statistics"),
1059 OPT_CALLBACK('e', "event", &evsel_list, "event",
1060 "event selector. use 'perf list' to list available events",
1061 parse_events_option),
1062 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1063 "event filter", parse_filter),
1064 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
1065 "child tasks do not inherit counters"),
1066 OPT_STRING('p', "pid", &target.pid, "pid",
1067 "stat events on existing process id"),
1068 OPT_STRING('t', "tid", &target.tid, "tid",
1069 "stat events on existing thread id"),
1070 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1071 "system-wide collection from all CPUs"),
1072 OPT_BOOLEAN('g', "group", &group,
1073 "put the counters into a counter group"),
1074 OPT_BOOLEAN('c', "scale", &stat_config.scale, "scale/normalize counters"),
1075 OPT_INCR('v', "verbose", &verbose,
1076 "be more verbose (show counter open errors, etc)"),
1077 OPT_INTEGER('r', "repeat", &run_count,
1078 "repeat command and print average + stddev (max: 100, forever: 0)"),
1079 OPT_BOOLEAN('n', "null", &null_run,
1080 "null run - dont start any counters"),
1081 OPT_INCR('d', "detailed", &detailed_run,
1082 "detailed run - start a lot of events"),
1083 OPT_BOOLEAN('S', "sync", &sync_run,
1084 "call sync() before starting a run"),
1085 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1086 "print large numbers with thousands\' separators",
1087 stat__set_big_num),
1088 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1089 "list of cpus to monitor in system-wide"),
1090 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
1091 "disable CPU count aggregation", AGGR_NONE),
1092 OPT_STRING('x', "field-separator", &csv_sep, "separator",
1093 "print counts with custom separator"),
1094 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
1095 "monitor event in cgroup name only", parse_cgroups),
1096 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1097 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1098 OPT_INTEGER(0, "log-fd", &output_fd,
1099 "log output to fd, instead of stderr"),
1100 OPT_STRING(0, "pre", &pre_cmd, "command",
1101 "command to run prior to the measured command"),
1102 OPT_STRING(0, "post", &post_cmd, "command",
1103 "command to run after to the measured command"),
1104 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
1105 "print counts at regular interval in ms (>= 10)"),
1106 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
1107 "aggregate counts per processor socket", AGGR_SOCKET),
1108 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
1109 "aggregate counts per physical processor core", AGGR_CORE),
1110 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
1111 "aggregate counts per thread", AGGR_THREAD),
1112 OPT_UINTEGER('D', "delay", &initial_delay,
1113 "ms to wait before starting measurement after program start"),
1114 OPT_END()
1115};
1116
Jiri Olsa1fe7a302015-10-16 12:41:15 +02001117static int perf_stat__get_socket(struct cpu_map *map, int cpu)
1118{
1119 return cpu_map__get_socket(map, cpu, NULL);
1120}
1121
1122static int perf_stat__get_core(struct cpu_map *map, int cpu)
1123{
1124 return cpu_map__get_core(map, cpu, NULL);
1125}
1126
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001127static int cpu_map__get_max(struct cpu_map *map)
1128{
1129 int i, max = -1;
1130
1131 for (i = 0; i < map->nr; i++) {
1132 if (map->map[i] > max)
1133 max = map->map[i];
1134 }
1135
1136 return max;
1137}
1138
1139static struct cpu_map *cpus_aggr_map;
1140
1141static int perf_stat__get_aggr(aggr_get_id_t get_id, struct cpu_map *map, int idx)
1142{
1143 int cpu;
1144
1145 if (idx >= map->nr)
1146 return -1;
1147
1148 cpu = map->map[idx];
1149
1150 if (cpus_aggr_map->map[cpu] == -1)
1151 cpus_aggr_map->map[cpu] = get_id(map, idx);
1152
1153 return cpus_aggr_map->map[cpu];
1154}
1155
1156static int perf_stat__get_socket_cached(struct cpu_map *map, int idx)
1157{
1158 return perf_stat__get_aggr(perf_stat__get_socket, map, idx);
1159}
1160
1161static int perf_stat__get_core_cached(struct cpu_map *map, int idx)
1162{
1163 return perf_stat__get_aggr(perf_stat__get_core, map, idx);
1164}
1165
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001166static int perf_stat_init_aggr_mode(void)
1167{
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001168 int nr;
1169
Jiri Olsa421a50f2015-07-21 14:31:22 +02001170 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001171 case AGGR_SOCKET:
1172 if (cpu_map__build_socket_map(evsel_list->cpus, &aggr_map)) {
1173 perror("cannot build socket map");
1174 return -1;
1175 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001176 aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001177 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001178 case AGGR_CORE:
1179 if (cpu_map__build_core_map(evsel_list->cpus, &aggr_map)) {
1180 perror("cannot build core map");
1181 return -1;
1182 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001183 aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001184 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001185 case AGGR_NONE:
1186 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02001187 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +02001188 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001189 default:
1190 break;
1191 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001192
1193 /*
1194 * The evsel_list->cpus is the base we operate on,
1195 * taking the highest cpu number to be the size of
1196 * the aggregation translate cpumap.
1197 */
1198 nr = cpu_map__get_max(evsel_list->cpus);
1199 cpus_aggr_map = cpu_map__empty_new(nr + 1);
1200 return cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001201}
1202
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09001203static void perf_stat__exit_aggr_mode(void)
1204{
1205 cpu_map__put(aggr_map);
1206 cpu_map__put(cpus_aggr_map);
1207 aggr_map = NULL;
1208 cpus_aggr_map = NULL;
1209}
1210
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001211/*
1212 * Add default attributes, if there were no attributes specified or
1213 * if -d/--detailed, -d -d or -d -d -d is used:
1214 */
1215static int add_default_attributes(void)
1216{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001217 struct perf_event_attr default_attrs[] = {
1218
1219 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1220 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1221 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1222 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1223
1224 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
1225 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
1226 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
1227 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1228 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1229 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1230
1231};
1232
1233/*
1234 * Detailed stats (-d), covering the L1 and last level data caches:
1235 */
1236 struct perf_event_attr detailed_attrs[] = {
1237
1238 { .type = PERF_TYPE_HW_CACHE,
1239 .config =
1240 PERF_COUNT_HW_CACHE_L1D << 0 |
1241 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1242 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1243
1244 { .type = PERF_TYPE_HW_CACHE,
1245 .config =
1246 PERF_COUNT_HW_CACHE_L1D << 0 |
1247 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1248 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1249
1250 { .type = PERF_TYPE_HW_CACHE,
1251 .config =
1252 PERF_COUNT_HW_CACHE_LL << 0 |
1253 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1254 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1255
1256 { .type = PERF_TYPE_HW_CACHE,
1257 .config =
1258 PERF_COUNT_HW_CACHE_LL << 0 |
1259 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1260 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1261};
1262
1263/*
1264 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1265 */
1266 struct perf_event_attr very_detailed_attrs[] = {
1267
1268 { .type = PERF_TYPE_HW_CACHE,
1269 .config =
1270 PERF_COUNT_HW_CACHE_L1I << 0 |
1271 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1272 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1273
1274 { .type = PERF_TYPE_HW_CACHE,
1275 .config =
1276 PERF_COUNT_HW_CACHE_L1I << 0 |
1277 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1278 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1279
1280 { .type = PERF_TYPE_HW_CACHE,
1281 .config =
1282 PERF_COUNT_HW_CACHE_DTLB << 0 |
1283 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1284 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1285
1286 { .type = PERF_TYPE_HW_CACHE,
1287 .config =
1288 PERF_COUNT_HW_CACHE_DTLB << 0 |
1289 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1290 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1291
1292 { .type = PERF_TYPE_HW_CACHE,
1293 .config =
1294 PERF_COUNT_HW_CACHE_ITLB << 0 |
1295 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1296 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1297
1298 { .type = PERF_TYPE_HW_CACHE,
1299 .config =
1300 PERF_COUNT_HW_CACHE_ITLB << 0 |
1301 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1302 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1303
1304};
1305
1306/*
1307 * Very, very detailed stats (-d -d -d), adding prefetch events:
1308 */
1309 struct perf_event_attr very_very_detailed_attrs[] = {
1310
1311 { .type = PERF_TYPE_HW_CACHE,
1312 .config =
1313 PERF_COUNT_HW_CACHE_L1D << 0 |
1314 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1315 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1316
1317 { .type = PERF_TYPE_HW_CACHE,
1318 .config =
1319 PERF_COUNT_HW_CACHE_L1D << 0 |
1320 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1321 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1322};
1323
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001324 /* Set attrs if no event is selected and !null_run: */
1325 if (null_run)
1326 return 0;
1327
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001328 if (transaction_run) {
1329 int err;
1330 if (pmu_have_event("cpu", "cycles-ct") &&
1331 pmu_have_event("cpu", "el-start"))
Jiri Olsaa4547422015-06-03 16:25:53 +02001332 err = parse_events(evsel_list, transaction_attrs, NULL);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001333 else
Jiri Olsaa4547422015-06-03 16:25:53 +02001334 err = parse_events(evsel_list, transaction_limited_attrs, NULL);
1335 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001336 fprintf(stderr, "Cannot set up transaction events\n");
1337 return -1;
1338 }
1339 return 0;
1340 }
1341
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001342 if (!evsel_list->nr_entries) {
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001343 if (perf_evlist__add_default_attrs(evsel_list, default_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001344 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001345 }
1346
1347 /* Detailed events get appended to the event list: */
1348
1349 if (detailed_run < 1)
1350 return 0;
1351
1352 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001353 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001354 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001355
1356 if (detailed_run < 2)
1357 return 0;
1358
1359 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001360 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001361 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001362
1363 if (detailed_run < 3)
1364 return 0;
1365
1366 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001367 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001368}
1369
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001370static const char * const recort_usage[] = {
1371 "perf stat record [<options>]",
1372 NULL,
1373};
1374
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001375static void init_features(struct perf_session *session)
1376{
1377 int feat;
1378
1379 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1380 perf_header__set_feat(&session->header, feat);
1381
1382 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1383 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1384 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1385 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1386}
1387
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001388static int __cmd_record(int argc, const char **argv)
1389{
1390 struct perf_session *session;
1391 struct perf_data_file *file = &perf_stat.file;
1392
1393 argc = parse_options(argc, argv, stat_options, record_usage,
1394 PARSE_OPT_STOP_AT_NON_OPTION);
1395
1396 if (output_name)
1397 file->path = output_name;
1398
1399 session = perf_session__new(file, false, NULL);
1400 if (session == NULL) {
1401 pr_err("Perf session creation failed.\n");
1402 return -1;
1403 }
1404
1405 /* No pipe support ATM */
1406 if (perf_stat.file.is_pipe)
1407 return -EINVAL;
1408
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001409 init_features(session);
1410
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001411 session->evlist = evsel_list;
1412 perf_stat.session = session;
1413 perf_stat.record = true;
1414 return argc;
1415}
1416
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001417int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar52425192009-05-26 09:17:18 +02001418{
Arnaldo Carvalho de Melob070a5472012-10-01 15:20:58 -03001419 const char * const stat_usage[] = {
1420 "perf stat [<options>] [<command>]",
1421 NULL
1422 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001423 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001424 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001425 FILE *output = stderr;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001426 unsigned int interval;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001427 const char * const stat_subcommands[] = { "record" };
Ingo Molnar42202dd2009-06-13 14:57:28 +02001428
Stephane Eranian5af52b52010-05-18 15:00:01 +02001429 setlocale(LC_ALL, "");
1430
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001431 evsel_list = perf_evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001432 if (evsel_list == NULL)
1433 return -ENOMEM;
1434
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001435 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
1436 (const char **) stat_usage,
1437 PARSE_OPT_STOP_AT_NON_OPTION);
1438
1439 if (argc && !strncmp(argv[0], "rec", 3)) {
1440 argc = __cmd_record(argc, argv);
1441 if (argc < 0)
1442 return -1;
1443 }
Stephane Eraniand7470b62010-12-01 18:49:05 +02001444
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001445 interval = stat_config.interval;
1446
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001447 /*
1448 * For record command the -o is already taken care of.
1449 */
1450 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02001451 output = NULL;
1452
Jim Cromie56f3bae2011-09-07 17:14:00 -06001453 if (output_name && output_fd) {
1454 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001455 parse_options_usage(stat_usage, stat_options, "o", 1);
1456 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001457 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001458 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001459
1460 if (output_fd < 0) {
1461 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001462 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001463 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001464 }
1465
Stephane Eranian4aa90152011-08-15 22:22:33 +02001466 if (!output) {
1467 struct timespec tm;
1468 mode = append_file ? "a" : "w";
1469
1470 output = fopen(output_name, mode);
1471 if (!output) {
1472 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001473 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001474 }
1475 clock_gettime(CLOCK_REALTIME, &tm);
1476 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001477 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001478 mode = append_file ? "a" : "w";
1479 output = fdopen(output_fd, mode);
1480 if (!output) {
1481 perror("Failed opening logfd");
1482 return -errno;
1483 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001484 }
1485
Jiri Olsa58215222015-07-21 14:31:24 +02001486 stat_config.output = output;
1487
Jim Cromied4ffd042011-09-07 17:14:03 -06001488 if (csv_sep) {
Stephane Eraniand7470b62010-12-01 18:49:05 +02001489 csv_output = true;
Jim Cromied4ffd042011-09-07 17:14:03 -06001490 if (!strcmp(csv_sep, "\\t"))
1491 csv_sep = "\t";
1492 } else
Stephane Eraniand7470b62010-12-01 18:49:05 +02001493 csv_sep = DEFAULT_SEPARATOR;
1494
1495 /*
1496 * let the spreadsheet do the pretty-printing
1497 */
1498 if (csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001499 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001500 if (big_num_opt == 1) {
1501 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001502 parse_options_usage(stat_usage, stat_options, "B", 1);
1503 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001504 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001505 } else /* Nope, so disable big number formatting */
1506 big_num = false;
1507 } else if (big_num_opt == 0) /* User passed --no-big-num */
1508 big_num = false;
1509
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001510 if (!argc && target__none(&target))
Jiri Olsae0547312015-11-05 15:40:45 +01001511 usage_with_options(stat_usage, stat_options);
David Ahernac3063b2013-09-30 07:37:37 -06001512
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001513 if (run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001514 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001515 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001516 goto out;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001517 } else if (run_count == 0) {
1518 forever = true;
1519 run_count = 1;
1520 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001521
Jiri Olsa421a50f2015-07-21 14:31:22 +02001522 if ((stat_config.aggr_mode == AGGR_THREAD) && !target__has_task(&target)) {
Jiri Olsa32b8af82015-06-26 11:29:27 +02001523 fprintf(stderr, "The --per-thread option is only available "
1524 "when monitoring via -p -t options.\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001525 parse_options_usage(NULL, stat_options, "p", 1);
1526 parse_options_usage(NULL, stat_options, "t", 1);
Jiri Olsa32b8af82015-06-26 11:29:27 +02001527 goto out;
1528 }
1529
1530 /*
1531 * no_aggr, cgroup are for system-wide only
1532 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1533 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001534 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1535 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001536 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001537 fprintf(stderr, "both cgroup and no-aggregation "
1538 "modes only available in system-wide mode\n");
1539
Jiri Olsae0547312015-11-05 15:40:45 +01001540 parse_options_usage(stat_usage, stat_options, "G", 1);
1541 parse_options_usage(NULL, stat_options, "A", 1);
1542 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001543 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001544 }
1545
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001546 if (add_default_attributes())
1547 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001548
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001549 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001550
Namhyung Kim77a6f012012-05-07 14:09:04 +09001551 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001552 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001553 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001554 parse_options_usage(stat_usage, stat_options, "p", 1);
1555 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001556 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001557 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01001558 parse_options_usage(stat_usage, stat_options, "C", 1);
1559 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001560 }
1561 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001562 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001563
1564 /*
1565 * Initialize thread_map with comm names,
1566 * so we could print it out on output.
1567 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001568 if (stat_config.aggr_mode == AGGR_THREAD)
Jiri Olsa32b8af82015-06-26 11:29:27 +02001569 thread_map__read_comms(evsel_list->threads);
1570
Stephane Eranian13370a92013-01-29 12:47:44 +01001571 if (interval && interval < 100) {
Kan Liang19afd102015-10-02 05:04:34 -04001572 if (interval < 10) {
1573 pr_err("print interval must be >= 10ms\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001574 parse_options_usage(stat_usage, stat_options, "I", 1);
Kan Liang19afd102015-10-02 05:04:34 -04001575 goto out;
1576 } else
1577 pr_warning("print interval < 100ms. "
1578 "The overhead percentage could be high in some cases. "
1579 "Please proceed with caution.\n");
Stephane Eranian13370a92013-01-29 12:47:44 +01001580 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001581
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001582 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001583 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001584
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001585 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001586 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001587
Ingo Molnar58d7e992009-05-15 11:03:23 +02001588 /*
1589 * We dont want to block the signals - that would cause
1590 * child tasks to inherit that and Ctrl-C would not work.
1591 * What we want is for Ctrl-C to work in the exec()-ed
1592 * task, but being ignored by perf stat itself:
1593 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001594 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001595 if (!forever)
1596 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001597 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001598 signal(SIGALRM, skip_signal);
1599 signal(SIGABRT, skip_signal);
1600
Ingo Molnar42202dd2009-06-13 14:57:28 +02001601 status = 0;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001602 for (run_idx = 0; forever || run_idx < run_count; run_idx++) {
Ingo Molnar42202dd2009-06-13 14:57:28 +02001603 if (run_count != 1 && verbose)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001604 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1605 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001606
Ingo Molnar42202dd2009-06-13 14:57:28 +02001607 status = run_perf_stat(argc, argv);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001608 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001609 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001610 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001611 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001612 }
1613
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001614 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001615 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001616
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001617 if (STAT_RECORD) {
1618 /*
1619 * We synthesize the kernel mmap record just so that older tools
1620 * don't emit warnings about not being able to resolve symbols
1621 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
1622 * a saner message about no samples being in the perf.data file.
1623 *
1624 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01001625 * in header.c at the moment 'perf stat record' gets introduced, which
1626 * is not really needed once we start adding the stat specific PERF_RECORD_
1627 * records, but the need to suppress the kptr_restrict messages in older
1628 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001629 */
1630 int fd = perf_data_file__fd(&perf_stat.file);
1631 int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
1632 process_synthesized_event,
1633 &perf_stat.session->machines.host);
1634 if (err) {
1635 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
1636 "older tools may produce warnings about this file\n.");
1637 }
1638
1639 perf_stat.session->header.data_size += perf_stat.bytes_written;
1640 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
1641
1642 perf_session__delete(perf_stat.session);
1643 }
1644
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09001645 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001646 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02001647out:
1648 perf_evlist__delete(evsel_list);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001649 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001650}