blob: 2741bcb049fb8307a06ac48b4606c89bb0b2a747 [file] [log] [blame]
Thomas Gleixner91007042019-05-29 07:12:25 -07001// SPDX-License-Identifier: GPL-2.0-only
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02003 * builtin-stat.c
4 *
5 * Builtin stat command: Give a precise performance counters summary
6 * overview about any workload, CPU or specific PID.
7 *
8 * Sample output:
Ingo Molnarddcacfa2009-04-20 15:37:32 +02009
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020010 $ perf stat ./hackbench 10
Ingo Molnarddcacfa2009-04-20 15:37:32 +020011
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020012 Time: 0.118
Ingo Molnarddcacfa2009-04-20 15:37:32 +020013
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020014 Performance counter stats for './hackbench 10':
Ingo Molnarddcacfa2009-04-20 15:37:32 +020015
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020016 1708.761321 task-clock # 11.037 CPUs utilized
17 41,190 context-switches # 0.024 M/sec
18 6,735 CPU-migrations # 0.004 M/sec
19 17,318 page-faults # 0.010 M/sec
20 5,205,202,243 cycles # 3.046 GHz
21 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle
22 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle
23 2,603,501,247 instructions # 0.50 insns per cycle
24 # 1.48 stalled cycles per insn
25 484,357,498 branches # 283.455 M/sec
26 6,388,934 branch-misses # 1.32% of all branches
27
28 0.154822978 seconds time elapsed
Ingo Molnarddcacfa2009-04-20 15:37:32 +020029
Ingo Molnar52425192009-05-26 09:17:18 +020030 *
Ingo Molnar2cba3ff2011-05-19 13:30:56 +020031 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com>
Ingo Molnar52425192009-05-26 09:17:18 +020032 *
33 * Improvements and fixes by:
34 *
35 * Arjan van de Ven <arjan@linux.intel.com>
36 * Yanmin Zhang <yanmin.zhang@intel.com>
37 * Wu Fengguang <fengguang.wu@intel.com>
38 * Mike Galbraith <efault@gmx.de>
39 * Paul Mackerras <paulus@samba.org>
Jaswinder Singh Rajput6e750a8f2009-06-27 03:02:07 +053040 * Jaswinder Singh Rajput <jaswinder@kernel.org>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020041 */
42
Ingo Molnar16f762a2009-05-27 09:10:38 +020043#include "builtin.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030044#include "util/cgroup.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060045#include <subcmd/parse-options.h>
Ingo Molnar52425192009-05-26 09:17:18 +020046#include "util/parse-events.h"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070047#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020048#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020049#include "util/evlist.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020050#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020051#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020052#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080053#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080054#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110055#include "util/cpumap.h"
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030056#include "util/thread.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020057#include "util/thread_map.h"
Jiri Olsad8095602015-08-07 12:51:03 +020058#include "util/counts.h"
Andi Kleen44b1e602016-05-30 12:49:42 -030059#include "util/group.h"
Jiri Olsa4979d0c2015-11-05 15:40:46 +010060#include "util/session.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010061#include "util/tool.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030062#include "util/string2.h"
Andi Kleenb18f3e32017-08-31 12:40:31 -070063#include "util/metricgroup.h"
Arnaldo Carvalho de Meloaeb00b12019-08-22 15:40:29 -030064#include "util/target.h"
Arnaldo Carvalho de Melof3711022019-08-29 15:16:27 -030065#include "util/time-utils.h"
Jiri Olsa9660e082018-06-07 00:15:06 +020066#include "util/top.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010067#include "asm/bug.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020068
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030069#include <linux/time64.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030070#include <linux/zalloc.h>
Andi Kleen44b1e602016-05-30 12:49:42 -030071#include <api/fs/fs.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030072#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030073#include <signal.h>
Peter Zijlstra1f16c572012-10-23 13:40:14 +020074#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020075#include <sys/prctl.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030076#include <inttypes.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020077#include <locale.h>
Andi Kleene3b03b62016-05-05 16:04:03 -070078#include <math.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030079#include <sys/types.h>
80#include <sys/stat.h>
Arnaldo Carvalho de Melo42087352017-04-19 19:06:30 -030081#include <sys/wait.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030082#include <unistd.h>
Jiri Olsa0ce2da12018-06-05 14:13:13 +020083#include <sys/time.h>
84#include <sys/resource.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020085
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030086#include <linux/ctype.h>
Jiri Olsa453fa032019-07-21 13:24:43 +020087#include <perf/evlist.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030088
Stephane Eraniand7470b62010-12-01 18:49:05 +020089#define DEFAULT_SEPARATOR " "
Kan Liangdaefd0b2017-05-26 12:05:38 -070090#define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi"
Stephane Eraniand7470b62010-12-01 18:49:05 +020091
Jiri Olsad4f63a42015-06-26 11:29:26 +020092static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010093
Andi Kleen4cabc3d2013-08-21 16:47:26 -070094/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +020095static const char *transaction_attrs = {
96 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070097 "{"
98 "instructions,"
99 "cycles,"
100 "cpu/cycles-t/,"
101 "cpu/tx-start/,"
102 "cpu/el-start/,"
103 "cpu/cycles-ct/"
104 "}"
105};
106
107/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +0200108static const char * transaction_limited_attrs = {
109 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700110 "{"
111 "instructions,"
112 "cycles,"
113 "cpu/cycles-t/,"
114 "cpu/tx-start/"
115 "}"
116};
117
Andi Kleen44b1e602016-05-30 12:49:42 -0300118static const char * topdown_attrs[] = {
119 "topdown-total-slots",
120 "topdown-slots-retired",
121 "topdown-recovery-bubbles",
122 "topdown-fetch-bubbles",
123 "topdown-slots-issued",
124 NULL,
125};
126
Kan Liangdaefd0b2017-05-26 12:05:38 -0700127static const char *smi_cost_attrs = {
128 "{"
129 "msr/aperf/,"
130 "msr/smi/,"
131 "cycles"
132 "}"
133};
134
Jiri Olsa63503db2019-07-21 13:23:52 +0200135static struct evlist *evsel_list;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200136
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300137static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900138 .uid = UINT_MAX,
139};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530140
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200141#define METRIC_ONLY_LEN 20
142
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200143static volatile pid_t child_pid = -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200144static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700145static bool transaction_run;
Andi Kleen44b1e602016-05-30 12:49:42 -0300146static bool topdown_run = false;
Kan Liangdaefd0b2017-05-26 12:05:38 -0700147static bool smi_cost = false;
148static bool smi_reset = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200149static int big_num_opt = -1;
Lin Ming43bece72011-08-17 18:42:07 +0800150static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200151static const char *pre_cmd = NULL;
152static const char *post_cmd = NULL;
153static bool sync_run = false;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500154static bool forever = false;
Andi Kleen44b1e602016-05-30 12:49:42 -0300155static bool force_metric_only = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100156static struct timespec ref_time;
Jiri Olsae0547312015-11-05 15:40:45 +0100157static bool append_file;
yuzhoujiandb06a262018-01-29 10:25:22 +0100158static bool interval_count;
Jiri Olsae0547312015-11-05 15:40:45 +0100159static const char *output_name;
160static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200161
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100162struct perf_stat {
163 bool record;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100164 struct perf_data data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100165 struct perf_session *session;
166 u64 bytes_written;
Jiri Olsaba6039b62015-11-05 15:40:55 +0100167 struct perf_tool tool;
Jiri Olsa1975d362015-11-05 15:40:56 +0100168 bool maps_allocated;
Jiri Olsaf8548392019-07-21 13:23:49 +0200169 struct perf_cpu_map *cpus;
Jiri Olsa9749b902019-07-21 13:23:50 +0200170 struct perf_thread_map *threads;
Jiri Olsa89af4e02015-11-05 15:41:02 +0100171 enum aggr_mode aggr_mode;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100172};
173
174static struct perf_stat perf_stat;
175#define STAT_RECORD perf_stat.record
176
Liming Wang60666c62009-12-31 16:05:50 +0800177static volatile int done = 0;
178
Jiri Olsa421a50f2015-07-21 14:31:22 +0200179static struct perf_stat_config stat_config = {
Jiri Olsa26893a62018-08-30 08:32:40 +0200180 .aggr_mode = AGGR_GLOBAL,
181 .scale = true,
182 .unit_width = 4, /* strlen("unit") */
183 .run_count = 1,
184 .metric_only_len = METRIC_ONLY_LEN,
185 .walltime_nsecs_stats = &walltime_nsecs_stats,
Jiri Olsa34ff0862018-08-30 08:32:47 +0200186 .big_num = true,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200187};
188
Stephane Eranian13370a92013-01-29 12:47:44 +0100189static inline void diff_timespec(struct timespec *r, struct timespec *a,
190 struct timespec *b)
191{
192 r->tv_sec = a->tv_sec - b->tv_sec;
193 if (a->tv_nsec < b->tv_nsec) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300194 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
Stephane Eranian13370a92013-01-29 12:47:44 +0100195 r->tv_sec--;
196 } else {
197 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
198 }
199}
200
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200201static void perf_stat__reset_stats(void)
202{
Jin Yao56739442017-12-05 22:03:07 +0800203 int i;
204
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200205 perf_evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200206 perf_stat__reset_shadow_stats();
Jin Yao56739442017-12-05 22:03:07 +0800207
208 for (i = 0; i < stat_config.stats_num; i++)
209 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200210}
211
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100212static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100213 union perf_event *event,
214 struct perf_sample *sample __maybe_unused,
215 struct machine *machine __maybe_unused)
216{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100217 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100218 pr_err("failed to write perf data, error: %m\n");
219 return -1;
220 }
221
222 perf_stat.bytes_written += event->header.size;
223 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100224}
225
Jiri Olsa1975d362015-11-05 15:40:56 +0100226static int write_stat_round_event(u64 tm, u64 type)
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100227{
Jiri Olsa1975d362015-11-05 15:40:56 +0100228 return perf_event__synthesize_stat_round(NULL, tm, type,
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100229 process_synthesized_event,
230 NULL);
231}
232
233#define WRITE_STAT_ROUND_EVENT(time, interval) \
234 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
235
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100236#define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
237
238static int
Jiri Olsa32dcd022019-07-21 13:23:51 +0200239perf_evsel__write_stat_event(struct evsel *counter, u32 cpu, u32 thread,
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100240 struct perf_counts_values *count)
241{
242 struct perf_sample_id *sid = SID(counter, cpu, thread);
243
244 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
245 process_synthesized_event, NULL);
246}
247
Jiri Olsa32dcd022019-07-21 13:23:51 +0200248static int read_single_counter(struct evsel *counter, int cpu,
Andi Kleenf0fbb112019-03-26 15:18:21 -0700249 int thread, struct timespec *rs)
250{
251 if (counter->tool_event == PERF_TOOL_DURATION_TIME) {
252 u64 val = rs->tv_nsec + rs->tv_sec*1000000000ULL;
253 struct perf_counts_values *count =
254 perf_counts(counter->counts, cpu, thread);
255 count->ena = count->run = val;
256 count->val = val;
257 return 0;
258 }
259 return perf_evsel__read_counter(counter, cpu, thread);
260}
261
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200262/*
263 * Read out the results of a single counter:
264 * do not aggregate counts across CPUs in system-wide mode
265 */
Jiri Olsa32dcd022019-07-21 13:23:51 +0200266static int read_counter(struct evsel *counter, struct timespec *rs)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200267{
Jiri Olsaa2f354e2019-08-22 13:11:41 +0200268 int nthreads = perf_thread_map__nr(evsel_list->core.threads);
Mark Rutland00e727b2016-07-15 11:08:10 +0100269 int ncpus, cpu, thread;
270
Jin Yao1d9f8d12017-12-05 22:03:10 +0800271 if (target__has_cpu(&target) && !target__has_per_thread(&target))
Mark Rutland00e727b2016-07-15 11:08:10 +0100272 ncpus = perf_evsel__nr_cpus(counter);
273 else
274 ncpus = 1;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200275
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000276 if (!counter->supported)
277 return -ENOENT;
278
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100279 if (counter->system_wide)
280 nthreads = 1;
281
282 for (thread = 0; thread < nthreads; thread++) {
283 for (cpu = 0; cpu < ncpus; cpu++) {
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200284 struct perf_counts_values *count;
285
286 count = perf_counts(counter->counts, cpu, thread);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200287
288 /*
289 * The leader's group read loads data into its group members
290 * (via perf_evsel__read_counter) and sets threir count->loaded.
291 */
Jiri Olsadf1d6852019-07-21 13:23:48 +0200292 if (!perf_counts__is_loaded(counter->counts, cpu, thread) &&
Andi Kleenf0fbb112019-03-26 15:18:21 -0700293 read_single_counter(counter, cpu, thread, rs)) {
Stephane Eraniandb49a712017-04-12 11:23:01 -0700294 counter->counts->scaled = -1;
295 perf_counts(counter->counts, cpu, thread)->ena = 0;
296 perf_counts(counter->counts, cpu, thread)->run = 0;
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100297 return -1;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700298 }
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100299
Jiri Olsadf1d6852019-07-21 13:23:48 +0200300 perf_counts__set_loaded(counter->counts, cpu, thread, false);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200301
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100302 if (STAT_RECORD) {
303 if (perf_evsel__write_stat_event(counter, cpu, thread, count)) {
304 pr_err("failed to write stat event\n");
305 return -1;
306 }
307 }
Andi Kleen0b1abbf2016-04-27 13:00:51 -0700308
309 if (verbose > 1) {
310 fprintf(stat_config.output,
311 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
312 perf_evsel__name(counter),
313 cpu,
314 count->val, count->ena, count->run);
315 }
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100316 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200317 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200318
319 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200320}
321
Andi Kleenf0fbb112019-03-26 15:18:21 -0700322static void read_counters(struct timespec *rs)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200323{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200324 struct evsel *counter;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700325 int ret;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200326
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300327 evlist__for_each_entry(evsel_list, counter) {
Andi Kleenf0fbb112019-03-26 15:18:21 -0700328 ret = read_counter(counter, rs);
Stephane Eraniandb49a712017-04-12 11:23:01 -0700329 if (ret)
Andi Kleen245bad82015-09-01 15:52:46 -0700330 pr_debug("failed to read counter %s\n", counter->name);
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200331
Stephane Eraniandb49a712017-04-12 11:23:01 -0700332 if (ret == 0 && perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200333 pr_warning("failed to process counter %s\n", counter->name);
Jiri Olsa106a94a2015-06-26 11:29:19 +0200334 }
335}
336
Jiri Olsaba411a92015-06-26 11:29:24 +0200337static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100338{
Stephane Eranian13370a92013-01-29 12:47:44 +0100339 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100340
Stephane Eranian13370a92013-01-29 12:47:44 +0100341 clock_gettime(CLOCK_MONOTONIC, &ts);
342 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100343
Andi Kleenf0fbb112019-03-26 15:18:21 -0700344 read_counters(&rs);
345
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100346 if (STAT_RECORD) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300347 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100348 pr_err("failed to write stat round event\n");
349 }
350
Andi Kleenb90f1332017-08-31 12:40:36 -0700351 init_stats(&walltime_nsecs_stats);
352 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000);
Jiri Olsad4f63a42015-06-26 11:29:26 +0200353 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100354}
355
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100356static void enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700357{
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200358 if (stat_config.initial_delay)
359 usleep(stat_config.initial_delay * USEC_PER_MSEC);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100360
361 /*
362 * We need to enable counters only if:
363 * - we don't have tracee (attaching to task or cpu)
364 * - we have initial delay configured
365 */
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200366 if (!target__none(&target) || stat_config.initial_delay)
Jiri Olsa1c87f162019-07-21 13:24:08 +0200367 evlist__enable(evsel_list);
Andi Kleen41191682013-08-02 17:41:11 -0700368}
369
Mark Rutland3df33ef2016-08-09 14:04:29 +0100370static void disable_counters(void)
371{
372 /*
373 * If we don't have tracee (attaching to task or cpu), counters may
374 * still be running. To get accurate group ratios, we must stop groups
375 * from counting before reading their constituent counters.
376 */
377 if (!target__none(&target))
Jiri Olsae74676d2019-07-21 13:24:09 +0200378 evlist__disable(evsel_list);
Mark Rutland3df33ef2016-08-09 14:04:29 +0100379}
380
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300381static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300382
383/*
384 * perf_evlist__prepare_workload will send a SIGUSR1
385 * if the fork fails, since we asked by setting its
386 * want_signal to true.
387 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300388static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
389 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300390{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300391 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300392}
393
Jiri Olsa32dcd022019-07-21 13:23:51 +0200394static bool perf_evsel__should_store_id(struct evsel *counter)
Jiri Olsa82bf3112017-07-26 14:02:06 +0200395{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200396 return STAT_RECORD || counter->core.attr.read_format & PERF_FORMAT_ID;
Jiri Olsa82bf3112017-07-26 14:02:06 +0200397}
398
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200399static bool is_target_alive(struct target *_target,
Jiri Olsa9749b902019-07-21 13:23:50 +0200400 struct perf_thread_map *threads)
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200401{
402 struct stat st;
403 int i;
404
405 if (!target__has_task(_target))
406 return true;
407
408 for (i = 0; i < threads->nr; i++) {
409 char path[PATH_MAX];
410
411 scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(),
412 threads->map[i].pid);
413
414 if (!stat(path, &st))
415 return true;
416 }
417
418 return false;
419}
420
Jiri Olsae55c14a2018-04-23 11:08:21 +0200421static int __run_perf_stat(int argc, const char **argv, int run_idx)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200422{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200423 int interval = stat_config.interval;
yuzhoujiandb06a262018-01-29 10:25:22 +0100424 int times = stat_config.times;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100425 int timeout = stat_config.timeout;
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -0300426 char msg[BUFSIZ];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200427 unsigned long long t0, t1;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200428 struct evsel *counter;
Stephane Eranian13370a92013-01-29 12:47:44 +0100429 struct timespec ts;
Stephane Eranian410136f2013-11-12 17:58:49 +0100430 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200431 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300432 const bool forks = (argc > 0);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100433 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200434
Stephane Eranian13370a92013-01-29 12:47:44 +0100435 if (interval) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300436 ts.tv_sec = interval / USEC_PER_MSEC;
437 ts.tv_nsec = (interval % USEC_PER_MSEC) * NSEC_PER_MSEC;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100438 } else if (timeout) {
439 ts.tv_sec = timeout / USEC_PER_MSEC;
440 ts.tv_nsec = (timeout % USEC_PER_MSEC) * NSEC_PER_MSEC;
Stephane Eranian13370a92013-01-29 12:47:44 +0100441 } else {
442 ts.tv_sec = 1;
443 ts.tv_nsec = 0;
444 }
445
Liming Wang60666c62009-12-31 16:05:50 +0800446 if (forks) {
Jiri Olsa664c98d2015-11-05 15:40:50 +0100447 if (perf_evlist__prepare_workload(evsel_list, &target, argv, is_pipe,
Arnaldo Carvalho de Melo735f7e02014-01-03 14:56:49 -0300448 workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900449 perror("failed to prepare workload");
450 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800451 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900452 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000453 }
454
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200455 if (group)
Arnaldo Carvalho de Melo63dab222012-08-14 16:35:48 -0300456 perf_evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200457
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300458 evlist__for_each_entry(evsel_list, counter) {
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300459try_again:
Jiri Olsad09cefd2018-08-30 08:32:17 +0200460 if (create_perf_stat_counter(counter, &stat_config, &target) < 0) {
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700461
462 /* Weak group failed. Reset the group. */
Andi Kleen35c19802017-09-05 14:13:24 -0700463 if ((errno == EINVAL || errno == EBADF) &&
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700464 counter->leader != counter &&
465 counter->weak_group) {
Andi Kleenc3537fc2018-10-01 12:59:26 -0700466 counter = perf_evlist__reset_weak_group(evsel_list, counter);
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700467 goto try_again;
468 }
469
David Ahern979987a2012-05-08 09:29:16 -0600470 /*
471 * PPC returns ENXIO for HW counters until 2.6.37
472 * (behavior changed with commit b0a873e).
473 */
Anton Blanchard38f6ae12011-12-02 09:38:33 +1100474 if (errno == EINVAL || errno == ENOSYS ||
David Ahern979987a2012-05-08 09:29:16 -0600475 errno == ENOENT || errno == EOPNOTSUPP ||
476 errno == ENXIO) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900477 if (verbose > 0)
David Ahernc63ca0c2011-04-29 16:04:15 -0600478 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo7289f832012-06-12 12:34:58 -0300479 perf_evsel__name(counter));
David Ahern2cee77c2011-05-30 08:55:59 -0600480 counter->supported = false;
Kan Liangcb5ef602015-06-11 02:32:40 -0400481
482 if ((counter->leader != counter) ||
Jiri Olsa5643b1a2019-07-21 13:24:46 +0200483 !(counter->leader->core.nr_members > 1))
Kan Liangcb5ef602015-06-11 02:32:40 -0400484 continue;
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300485 } else if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) {
Namhyung Kimbb963e12017-02-17 17:17:38 +0900486 if (verbose > 0)
Arnaldo Carvalho de Melo42ef8a72016-05-12 16:25:18 -0300487 ui__warning("%s\n", msg);
488 goto try_again;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800489 } else if (target__has_per_thread(&target) &&
Jiri Olsa03617c22019-07-21 13:24:42 +0200490 evsel_list->core.threads &&
491 evsel_list->core.threads->err_thread != -1) {
Jin Yaoab6c79b2018-01-16 23:43:08 +0800492 /*
493 * For global --per-thread case, skip current
494 * error thread.
495 */
Jiri Olsa03617c22019-07-21 13:24:42 +0200496 if (!thread_map__remove(evsel_list->core.threads,
497 evsel_list->core.threads->err_thread)) {
498 evsel_list->core.threads->err_thread = -1;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800499 goto try_again;
500 }
501 }
Ingo Molnarede70292011-04-28 08:48:42 +0200502
Arnaldo Carvalho de Melo56e52e82012-12-13 15:10:58 -0300503 perf_evsel__open_strerror(counter, &target,
504 errno, msg, sizeof(msg));
505 ui__error("%s\n", msg);
506
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200507 if (child_pid != -1)
508 kill(child_pid, SIGTERM);
David Ahernfceda7f2012-08-26 12:24:44 -0600509
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200510 return -1;
511 }
David Ahern2cee77c2011-05-30 08:55:59 -0600512 counter->supported = true;
Stephane Eranian410136f2013-11-12 17:58:49 +0100513
514 l = strlen(counter->unit);
Jiri Olsadf4f7b42018-08-30 08:32:32 +0200515 if (l > stat_config.unit_width)
516 stat_config.unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100517
Jiri Olsa82bf3112017-07-26 14:02:06 +0200518 if (perf_evsel__should_store_id(counter) &&
Jiri Olsa650d6222018-08-30 08:32:16 +0200519 perf_evsel__store_ids(counter, evsel_list))
Jiri Olsa2af46462015-11-05 15:40:49 +0100520 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300521 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200522
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300523 if (perf_evlist__apply_filters(evsel_list, &counter)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300524 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
Arnaldo Carvalho de Melo23d4aad2015-03-24 19:23:47 -0300525 counter->filter, perf_evsel__name(counter), errno,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300526 str_error_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100527 return -1;
528 }
529
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100530 if (STAT_RECORD) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100531 int err, fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100532
Jiri Olsa664c98d2015-11-05 15:40:50 +0100533 if (is_pipe) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100534 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
Jiri Olsa664c98d2015-11-05 15:40:50 +0100535 } else {
536 err = perf_session__write_header(perf_stat.session, evsel_list,
537 fd, false);
538 }
539
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100540 if (err < 0)
541 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100542
Jiri Olsa1c21e982018-08-30 08:32:21 +0200543 err = perf_stat_synthesize_config(&stat_config, NULL, evsel_list,
Jiri Olsac2c247f2018-08-30 08:32:22 +0200544 process_synthesized_event, is_pipe);
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100545 if (err < 0)
546 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100547 }
548
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200549 /*
550 * Enable counters and exec the command:
551 */
552 t0 = rdclock();
Stephane Eranian13370a92013-01-29 12:47:44 +0100553 clock_gettime(CLOCK_MONOTONIC, &ref_time);
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200554
Liming Wang60666c62009-12-31 16:05:50 +0800555 if (forks) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900556 perf_evlist__start_workload(evsel_list);
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100557 enable_counters();
Namhyung Kimacf28922013-03-11 16:43:18 +0900558
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100559 if (interval || timeout) {
Stephane Eranian13370a92013-01-29 12:47:44 +0100560 while (!waitpid(child_pid, &status, WNOHANG)) {
561 nanosleep(&ts, NULL);
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100562 if (timeout)
563 break;
Jiri Olsaba411a92015-06-26 11:29:24 +0200564 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100565 if (interval_count && !(--times))
566 break;
Stephane Eranian13370a92013-01-29 12:47:44 +0100567 }
568 }
Jin Yao8a992552019-01-03 15:40:45 +0800569 if (child_pid != -1)
570 wait4(child_pid, &status, 0, &stat_config.ru_data);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300571
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300572 if (workload_exec_errno) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300573 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300574 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300575 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300576 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300577
Andi Kleen33e49ea2011-09-15 14:31:40 -0700578 if (WIFSIGNALED(status))
579 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800580 } else {
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100581 enable_counters();
Stephane Eranian13370a92013-01-29 12:47:44 +0100582 while (!done) {
583 nanosleep(&ts, NULL);
Jiri Olsa03617c22019-07-21 13:24:42 +0200584 if (!is_target_alive(&target, evsel_list->core.threads))
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200585 break;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100586 if (timeout)
587 break;
yuzhoujiandb06a262018-01-29 10:25:22 +0100588 if (interval) {
Jiri Olsaba411a92015-06-26 11:29:24 +0200589 process_interval();
yuzhoujiandb06a262018-01-29 10:25:22 +0100590 if (interval_count && !(--times))
591 break;
592 }
Stephane Eranian13370a92013-01-29 12:47:44 +0100593 }
Liming Wang60666c62009-12-31 16:05:50 +0800594 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200595
Mark Rutland3df33ef2016-08-09 14:04:29 +0100596 disable_counters();
597
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200598 t1 = rdclock();
599
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200600 if (stat_config.walltime_run_table)
601 stat_config.walltime_run[run_idx] = t1 - t0;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200602
Peter Zijlstra9e9772c2009-09-04 15:36:08 +0200603 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +0200604
Mark Rutland3df33ef2016-08-09 14:04:29 +0100605 /*
606 * Closing a group leader splits the group, and as we only disable
607 * group leaders, results in remaining events becoming enabled. To
608 * avoid arbitrary skew, we must read all counters before closing any
609 * group leaders.
610 */
Andi Kleenf0fbb112019-03-26 15:18:21 -0700611 read_counters(&(struct timespec) { .tv_nsec = t1-t0 });
Jiri Olsa08ef3af2019-07-15 16:21:21 +0200612
613 /*
614 * We need to keep evsel_list alive, because it's processed
615 * later the evsel_list will be closed after.
616 */
617 if (!STAT_RECORD)
Jiri Olsa750b4ed2019-07-21 13:24:07 +0200618 evlist__close(evsel_list);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200619
Ingo Molnar42202dd2009-06-13 14:57:28 +0200620 return WEXITSTATUS(status);
621}
622
Jiri Olsae55c14a2018-04-23 11:08:21 +0200623static int run_perf_stat(int argc, const char **argv, int run_idx)
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200624{
625 int ret;
626
627 if (pre_cmd) {
628 ret = system(pre_cmd);
629 if (ret)
630 return ret;
631 }
632
633 if (sync_run)
634 sync();
635
Jiri Olsae55c14a2018-04-23 11:08:21 +0200636 ret = __run_perf_stat(argc, argv, run_idx);
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200637 if (ret)
638 return ret;
639
640 if (post_cmd) {
641 ret = system(post_cmd);
642 if (ret)
643 return ret;
644 }
645
646 return ret;
647}
648
Jiri Olsaa5a9eac2018-08-30 08:32:24 +0200649static void print_counters(struct timespec *ts, int argc, const char **argv)
650{
Jiri Olsa01748202018-08-30 08:32:25 +0200651 /* Do not print anything if we record to the pipe. */
652 if (STAT_RECORD && perf_stat.data.is_pipe)
653 return;
654
Jiri Olsac512e0e2018-08-30 08:32:33 +0200655 perf_evlist__print_counters(evsel_list, &stat_config, &target,
Jiri Olsab64df7f2018-08-30 08:32:26 +0200656 ts, argc, argv);
Jiri Olsaa5a9eac2018-08-30 08:32:24 +0200657}
658
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200659static volatile int signr = -1;
660
Ingo Molnar52425192009-05-26 09:17:18 +0200661static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200662{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200663 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +0800664 done = 1;
665
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200666 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200667 /*
668 * render child_pid harmless
669 * won't send SIGTERM to a random
670 * process in case of race condition
671 * and fast PID recycling
672 */
673 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200674}
675
676static void sig_atexit(void)
677{
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200678 sigset_t set, oset;
679
680 /*
681 * avoid race condition with SIGCHLD handler
682 * in skip_signal() which is modifying child_pid
683 * goal is to avoid send SIGTERM to a random
684 * process
685 */
686 sigemptyset(&set);
687 sigaddset(&set, SIGCHLD);
688 sigprocmask(SIG_BLOCK, &set, &oset);
689
Chris Wilson933da832009-10-04 01:35:01 +0100690 if (child_pid != -1)
691 kill(child_pid, SIGTERM);
692
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200693 sigprocmask(SIG_SETMASK, &oset, NULL);
694
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200695 if (signr == -1)
696 return;
697
698 signal(signr, SIG_DFL);
699 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +0200700}
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200701
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300702static int stat__set_big_num(const struct option *opt __maybe_unused,
703 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +0200704{
705 big_num_opt = unset ? 0 : 1;
706 return 0;
707}
708
Andi Kleen44b1e602016-05-30 12:49:42 -0300709static int enable_metric_only(const struct option *opt __maybe_unused,
710 const char *s __maybe_unused, int unset)
711{
712 force_metric_only = true;
Jiri Olsa0ce5aa02018-08-30 08:32:31 +0200713 stat_config.metric_only = !unset;
Andi Kleen44b1e602016-05-30 12:49:42 -0300714 return 0;
715}
716
Andi Kleenb18f3e32017-08-31 12:40:31 -0700717static int parse_metric_groups(const struct option *opt,
718 const char *str,
719 int unset __maybe_unused)
720{
Jiri Olsad0192fd2018-08-30 08:32:51 +0200721 return metricgroup__parse_groups(opt, str, &stat_config.metric_events);
Andi Kleenb18f3e32017-08-31 12:40:31 -0700722}
723
Michael Petlan51433ea2018-12-10 11:00:04 -0500724static struct option stat_options[] = {
Jiri Olsae0547312015-11-05 15:40:45 +0100725 OPT_BOOLEAN('T', "transaction", &transaction_run,
726 "hardware transaction statistics"),
727 OPT_CALLBACK('e', "event", &evsel_list, "event",
728 "event selector. use 'perf list' to list available events",
729 parse_events_option),
730 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
731 "event filter", parse_filter),
Jiri Olsa5698f262018-08-30 08:32:12 +0200732 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
Jiri Olsae0547312015-11-05 15:40:45 +0100733 "child tasks do not inherit counters"),
734 OPT_STRING('p', "pid", &target.pid, "pid",
735 "stat events on existing process id"),
736 OPT_STRING('t', "tid", &target.tid, "tid",
737 "stat events on existing thread id"),
738 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
739 "system-wide collection from all CPUs"),
740 OPT_BOOLEAN('g', "group", &group,
741 "put the counters into a counter group"),
Andi Kleen75998bb2019-03-14 15:50:01 -0700742 OPT_BOOLEAN(0, "scale", &stat_config.scale,
743 "Use --no-scale to disable counter scaling for multiplexing"),
Jiri Olsae0547312015-11-05 15:40:45 +0100744 OPT_INCR('v', "verbose", &verbose,
745 "be more verbose (show counter open errors, etc)"),
Jiri Olsad97ae042018-08-30 08:32:36 +0200746 OPT_INTEGER('r', "repeat", &stat_config.run_count,
Jiri Olsae0547312015-11-05 15:40:45 +0100747 "repeat command and print average + stddev (max: 100, forever: 0)"),
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200748 OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table,
Jiri Olsae55c14a2018-04-23 11:08:21 +0200749 "display details about each run (only with -r option)"),
Jiri Olsaaea0dca2018-08-30 08:32:41 +0200750 OPT_BOOLEAN('n', "null", &stat_config.null_run,
Jiri Olsae0547312015-11-05 15:40:45 +0100751 "null run - dont start any counters"),
752 OPT_INCR('d', "detailed", &detailed_run,
753 "detailed run - start a lot of events"),
754 OPT_BOOLEAN('S', "sync", &sync_run,
755 "call sync() before starting a run"),
756 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
757 "print large numbers with thousands\' separators",
758 stat__set_big_num),
759 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
760 "list of cpus to monitor in system-wide"),
761 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
762 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsafdee3352018-08-30 08:32:48 +0200763 OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"),
Jiri Olsafa7070a2018-08-30 08:32:29 +0200764 OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator",
Jiri Olsae0547312015-11-05 15:40:45 +0100765 "print counts with custom separator"),
766 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
767 "monitor event in cgroup name only", parse_cgroups),
768 OPT_STRING('o', "output", &output_name, "file", "output file name"),
769 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
770 OPT_INTEGER(0, "log-fd", &output_fd,
771 "log output to fd, instead of stderr"),
772 OPT_STRING(0, "pre", &pre_cmd, "command",
773 "command to run prior to the measured command"),
774 OPT_STRING(0, "post", &post_cmd, "command",
775 "command to run after to the measured command"),
776 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Alexey Budankov9dc9a952018-04-03 21:18:33 +0300777 "print counts at regular interval in ms "
778 "(overhead is possible for values <= 100ms)"),
yuzhoujiandb06a262018-01-29 10:25:22 +0100779 OPT_INTEGER(0, "interval-count", &stat_config.times,
780 "print counts for fixed number of times"),
Jiri Olsa132c6ba2018-08-30 08:32:30 +0200781 OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear,
Jiri Olsa9660e082018-06-07 00:15:06 +0200782 "clear screen in between new interval"),
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100783 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
784 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
Jiri Olsae0547312015-11-05 15:40:45 +0100785 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
786 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -0700787 OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode,
788 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsae0547312015-11-05 15:40:45 +0100789 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
790 "aggregate counts per physical processor core", AGGR_CORE),
791 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
792 "aggregate counts per thread", AGGR_THREAD),
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200793 OPT_UINTEGER('D', "delay", &stat_config.initial_delay,
Jiri Olsae0547312015-11-05 15:40:45 +0100794 "ms to wait before starting measurement after program start"),
Jiri Olsa0ce5aa02018-08-30 08:32:31 +0200795 OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL,
Andi Kleen44b1e602016-05-30 12:49:42 -0300796 "Only print computed metrics. No raw values", enable_metric_only),
797 OPT_BOOLEAN(0, "topdown", &topdown_run,
798 "measure topdown level 1 statistics"),
Kan Liangdaefd0b2017-05-26 12:05:38 -0700799 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
800 "measure SMI cost"),
Andi Kleenb18f3e32017-08-31 12:40:31 -0700801 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
802 "monitor specified metrics or metric groups (separated by ,)",
803 parse_metric_groups),
Jiri Olsae0547312015-11-05 15:40:45 +0100804 OPT_END()
805};
806
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200807static int perf_stat__get_socket(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +0200808 struct perf_cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200809{
810 return cpu_map__get_socket(map, cpu, NULL);
811}
812
Kan Liangdb5742b2019-06-04 15:50:42 -0700813static int perf_stat__get_die(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +0200814 struct perf_cpu_map *map, int cpu)
Kan Liangdb5742b2019-06-04 15:50:42 -0700815{
816 return cpu_map__get_die(map, cpu, NULL);
817}
818
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200819static int perf_stat__get_core(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +0200820 struct perf_cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200821{
822 return cpu_map__get_core(map, cpu, NULL);
823}
824
Jiri Olsaf8548392019-07-21 13:23:49 +0200825static int cpu_map__get_max(struct perf_cpu_map *map)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100826{
827 int i, max = -1;
828
829 for (i = 0; i < map->nr; i++) {
830 if (map->map[i] > max)
831 max = map->map[i];
832 }
833
834 return max;
835}
836
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200837static int perf_stat__get_aggr(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +0200838 aggr_get_id_t get_id, struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100839{
840 int cpu;
841
842 if (idx >= map->nr)
843 return -1;
844
845 cpu = map->map[idx];
846
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200847 if (config->cpus_aggr_map->map[cpu] == -1)
848 config->cpus_aggr_map->map[cpu] = get_id(config, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100849
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200850 return config->cpus_aggr_map->map[cpu];
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100851}
852
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200853static int perf_stat__get_socket_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +0200854 struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100855{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200856 return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100857}
858
Kan Liangdb5742b2019-06-04 15:50:42 -0700859static int perf_stat__get_die_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +0200860 struct perf_cpu_map *map, int idx)
Kan Liangdb5742b2019-06-04 15:50:42 -0700861{
862 return perf_stat__get_aggr(config, perf_stat__get_die, map, idx);
863}
864
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200865static int perf_stat__get_core_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +0200866 struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100867{
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200868 return perf_stat__get_aggr(config, perf_stat__get_core, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100869}
870
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800871static bool term_percore_set(void)
872{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200873 struct evsel *counter;
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800874
875 evlist__for_each_entry(evsel_list, counter) {
876 if (counter->percore)
877 return true;
878 }
879
880 return false;
881}
882
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100883static int perf_stat_init_aggr_mode(void)
884{
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100885 int nr;
886
Jiri Olsa421a50f2015-07-21 14:31:22 +0200887 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100888 case AGGR_SOCKET:
Jiri Olsaf72f9012019-07-21 13:24:41 +0200889 if (cpu_map__build_socket_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100890 perror("cannot build socket map");
891 return -1;
892 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200893 stat_config.aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100894 break;
Kan Liangdb5742b2019-06-04 15:50:42 -0700895 case AGGR_DIE:
Jiri Olsaf72f9012019-07-21 13:24:41 +0200896 if (cpu_map__build_die_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Kan Liangdb5742b2019-06-04 15:50:42 -0700897 perror("cannot build die map");
898 return -1;
899 }
900 stat_config.aggr_get_id = perf_stat__get_die_cached;
901 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100902 case AGGR_CORE:
Jiri Olsaf72f9012019-07-21 13:24:41 +0200903 if (cpu_map__build_core_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Stephane Eranian12c08a92013-02-14 13:57:29 +0100904 perror("cannot build core map");
905 return -1;
906 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200907 stat_config.aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100908 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100909 case AGGR_NONE:
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800910 if (term_percore_set()) {
Jiri Olsaf72f9012019-07-21 13:24:41 +0200911 if (cpu_map__build_core_map(evsel_list->core.cpus,
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800912 &stat_config.aggr_map)) {
913 perror("cannot build core map");
914 return -1;
915 }
916 stat_config.aggr_get_id = perf_stat__get_core_cached;
917 }
918 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100919 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +0200920 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +0200921 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100922 default:
923 break;
924 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +0100925
926 /*
927 * The evsel_list->cpus is the base we operate on,
928 * taking the highest cpu number to be the size of
929 * the aggregation translate cpumap.
930 */
Jiri Olsaf72f9012019-07-21 13:24:41 +0200931 nr = cpu_map__get_max(evsel_list->core.cpus);
Jiri Olsa315c0a12019-08-22 13:11:39 +0200932 stat_config.cpus_aggr_map = perf_cpu_map__empty_new(nr + 1);
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200933 return stat_config.cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100934}
935
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +0900936static void perf_stat__exit_aggr_mode(void)
937{
Jiri Olsa38f01d82019-07-21 13:24:17 +0200938 perf_cpu_map__put(stat_config.aggr_map);
939 perf_cpu_map__put(stat_config.cpus_aggr_map);
Jiri Olsa6f6b6592018-08-30 08:32:45 +0200940 stat_config.aggr_map = NULL;
941 stat_config.cpus_aggr_map = NULL;
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +0900942}
943
Jiri Olsaf8548392019-07-21 13:23:49 +0200944static inline int perf_env__get_cpu(struct perf_env *env, struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100945{
946 int cpu;
947
948 if (idx > map->nr)
949 return -1;
950
951 cpu = map->map[idx];
952
Jan Stancekda8a58b2017-02-17 12:10:26 +0100953 if (cpu >= env->nr_cpus_avail)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100954 return -1;
955
956 return cpu;
957}
958
Jiri Olsaf8548392019-07-21 13:23:49 +0200959static int perf_env__get_socket(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100960{
961 struct perf_env *env = data;
962 int cpu = perf_env__get_cpu(env, map, idx);
963
964 return cpu == -1 ? -1 : env->cpu[cpu].socket_id;
965}
966
Jiri Olsaf8548392019-07-21 13:23:49 +0200967static int perf_env__get_die(struct perf_cpu_map *map, int idx, void *data)
Kan Liangdb5742b2019-06-04 15:50:42 -0700968{
969 struct perf_env *env = data;
970 int die_id = -1, cpu = perf_env__get_cpu(env, map, idx);
971
972 if (cpu != -1) {
973 /*
974 * Encode socket in bit range 15:8
975 * die_id is relative to socket,
976 * we need a global id. So we combine
977 * socket + die id
978 */
979 if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
980 return -1;
981
982 if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
983 return -1;
984
985 die_id = (env->cpu[cpu].socket_id << 8) | (env->cpu[cpu].die_id & 0xff);
986 }
987
988 return die_id;
989}
990
Jiri Olsaf8548392019-07-21 13:23:49 +0200991static int perf_env__get_core(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa68d702f2015-11-05 15:40:58 +0100992{
993 struct perf_env *env = data;
994 int core = -1, cpu = perf_env__get_cpu(env, map, idx);
995
996 if (cpu != -1) {
Jiri Olsa68d702f2015-11-05 15:40:58 +0100997 /*
Kan Liangdb5742b2019-06-04 15:50:42 -0700998 * Encode socket in bit range 31:24
999 * encode die id in bit range 23:16
1000 * core_id is relative to socket and die,
Jiri Olsa68d702f2015-11-05 15:40:58 +01001001 * we need a global id. So we combine
Kan Liangdb5742b2019-06-04 15:50:42 -07001002 * socket + die id + core id
Jiri Olsa68d702f2015-11-05 15:40:58 +01001003 */
Kan Liangdb5742b2019-06-04 15:50:42 -07001004 if (WARN_ONCE(env->cpu[cpu].socket_id >> 8, "The socket id number is too big.\n"))
1005 return -1;
1006
1007 if (WARN_ONCE(env->cpu[cpu].die_id >> 8, "The die id number is too big.\n"))
1008 return -1;
1009
1010 if (WARN_ONCE(env->cpu[cpu].core_id >> 16, "The core id number is too big.\n"))
1011 return -1;
1012
1013 core = (env->cpu[cpu].socket_id << 24) |
1014 (env->cpu[cpu].die_id << 16) |
1015 (env->cpu[cpu].core_id & 0xffff);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001016 }
1017
1018 return core;
1019}
1020
Jiri Olsaf8548392019-07-21 13:23:49 +02001021static int perf_env__build_socket_map(struct perf_env *env, struct perf_cpu_map *cpus,
1022 struct perf_cpu_map **sockp)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001023{
1024 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
1025}
1026
Jiri Olsaf8548392019-07-21 13:23:49 +02001027static int perf_env__build_die_map(struct perf_env *env, struct perf_cpu_map *cpus,
1028 struct perf_cpu_map **diep)
Kan Liangdb5742b2019-06-04 15:50:42 -07001029{
1030 return cpu_map__build_map(cpus, diep, perf_env__get_die, env);
1031}
1032
Jiri Olsaf8548392019-07-21 13:23:49 +02001033static int perf_env__build_core_map(struct perf_env *env, struct perf_cpu_map *cpus,
1034 struct perf_cpu_map **corep)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001035{
1036 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
1037}
1038
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001039static int perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001040 struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001041{
1042 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
1043}
Kan Liangdb5742b2019-06-04 15:50:42 -07001044static int perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001045 struct perf_cpu_map *map, int idx)
Kan Liangdb5742b2019-06-04 15:50:42 -07001046{
1047 return perf_env__get_die(map, idx, &perf_stat.session->header.env);
1048}
Jiri Olsa68d702f2015-11-05 15:40:58 +01001049
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001050static int perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001051 struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001052{
1053 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
1054}
1055
1056static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
1057{
1058 struct perf_env *env = &st->session->header.env;
1059
1060 switch (stat_config.aggr_mode) {
1061 case AGGR_SOCKET:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001062 if (perf_env__build_socket_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001063 perror("cannot build socket map");
1064 return -1;
1065 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001066 stat_config.aggr_get_id = perf_stat__get_socket_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001067 break;
Kan Liangdb5742b2019-06-04 15:50:42 -07001068 case AGGR_DIE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001069 if (perf_env__build_die_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Kan Liangdb5742b2019-06-04 15:50:42 -07001070 perror("cannot build die map");
1071 return -1;
1072 }
1073 stat_config.aggr_get_id = perf_stat__get_die_file;
1074 break;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001075 case AGGR_CORE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001076 if (perf_env__build_core_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001077 perror("cannot build core map");
1078 return -1;
1079 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001080 stat_config.aggr_get_id = perf_stat__get_core_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001081 break;
1082 case AGGR_NONE:
1083 case AGGR_GLOBAL:
1084 case AGGR_THREAD:
1085 case AGGR_UNSET:
1086 default:
1087 break;
1088 }
1089
1090 return 0;
1091}
1092
Andi Kleen44b1e602016-05-30 12:49:42 -03001093static int topdown_filter_events(const char **attr, char **str, bool use_group)
1094{
1095 int off = 0;
1096 int i;
1097 int len = 0;
1098 char *s;
1099
1100 for (i = 0; attr[i]; i++) {
1101 if (pmu_have_event("cpu", attr[i])) {
1102 len += strlen(attr[i]) + 1;
1103 attr[i - off] = attr[i];
1104 } else
1105 off++;
1106 }
1107 attr[i - off] = NULL;
1108
1109 *str = malloc(len + 1 + 2);
1110 if (!*str)
1111 return -1;
1112 s = *str;
1113 if (i - off == 0) {
1114 *s = 0;
1115 return 0;
1116 }
1117 if (use_group)
1118 *s++ = '{';
1119 for (i = 0; attr[i]; i++) {
1120 strcpy(s, attr[i]);
1121 s += strlen(s);
1122 *s++ = ',';
1123 }
1124 if (use_group) {
1125 s[-1] = '}';
1126 *s = 0;
1127 } else
1128 s[-1] = 0;
1129 return 0;
1130}
1131
1132__weak bool arch_topdown_check_group(bool *warn)
1133{
1134 *warn = false;
1135 return false;
1136}
1137
1138__weak void arch_topdown_group_warn(void)
1139{
1140}
1141
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001142/*
1143 * Add default attributes, if there were no attributes specified or
1144 * if -d/--detailed, -d -d or -d -d -d is used:
1145 */
1146static int add_default_attributes(void)
1147{
Andi Kleen44b1e602016-05-30 12:49:42 -03001148 int err;
Andi Kleen9dec4472016-02-26 16:27:56 -08001149 struct perf_event_attr default_attrs0[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001150
1151 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1152 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1153 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1154 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1155
1156 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Andi Kleen9dec4472016-02-26 16:27:56 -08001157};
1158 struct perf_event_attr frontend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001159 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001160};
1161 struct perf_event_attr backend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001162 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001163};
1164 struct perf_event_attr default_attrs1[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001165 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1166 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1167 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1168
1169};
1170
1171/*
1172 * Detailed stats (-d), covering the L1 and last level data caches:
1173 */
1174 struct perf_event_attr detailed_attrs[] = {
1175
1176 { .type = PERF_TYPE_HW_CACHE,
1177 .config =
1178 PERF_COUNT_HW_CACHE_L1D << 0 |
1179 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1180 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1181
1182 { .type = PERF_TYPE_HW_CACHE,
1183 .config =
1184 PERF_COUNT_HW_CACHE_L1D << 0 |
1185 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1186 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1187
1188 { .type = PERF_TYPE_HW_CACHE,
1189 .config =
1190 PERF_COUNT_HW_CACHE_LL << 0 |
1191 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1192 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1193
1194 { .type = PERF_TYPE_HW_CACHE,
1195 .config =
1196 PERF_COUNT_HW_CACHE_LL << 0 |
1197 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1198 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1199};
1200
1201/*
1202 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1203 */
1204 struct perf_event_attr very_detailed_attrs[] = {
1205
1206 { .type = PERF_TYPE_HW_CACHE,
1207 .config =
1208 PERF_COUNT_HW_CACHE_L1I << 0 |
1209 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1210 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1211
1212 { .type = PERF_TYPE_HW_CACHE,
1213 .config =
1214 PERF_COUNT_HW_CACHE_L1I << 0 |
1215 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1216 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1217
1218 { .type = PERF_TYPE_HW_CACHE,
1219 .config =
1220 PERF_COUNT_HW_CACHE_DTLB << 0 |
1221 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1222 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1223
1224 { .type = PERF_TYPE_HW_CACHE,
1225 .config =
1226 PERF_COUNT_HW_CACHE_DTLB << 0 |
1227 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1228 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1229
1230 { .type = PERF_TYPE_HW_CACHE,
1231 .config =
1232 PERF_COUNT_HW_CACHE_ITLB << 0 |
1233 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1234 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1235
1236 { .type = PERF_TYPE_HW_CACHE,
1237 .config =
1238 PERF_COUNT_HW_CACHE_ITLB << 0 |
1239 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1240 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1241
1242};
1243
1244/*
1245 * Very, very detailed stats (-d -d -d), adding prefetch events:
1246 */
1247 struct perf_event_attr very_very_detailed_attrs[] = {
1248
1249 { .type = PERF_TYPE_HW_CACHE,
1250 .config =
1251 PERF_COUNT_HW_CACHE_L1D << 0 |
1252 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1253 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1254
1255 { .type = PERF_TYPE_HW_CACHE,
1256 .config =
1257 PERF_COUNT_HW_CACHE_L1D << 0 |
1258 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1259 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1260};
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001261 struct parse_events_error errinfo;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001262
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001263 /* Set attrs if no event is selected and !null_run: */
Jiri Olsaaea0dca2018-08-30 08:32:41 +02001264 if (stat_config.null_run)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001265 return 0;
1266
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001267 if (transaction_run) {
Thomas Richter742d92f2018-06-26 09:17:01 +02001268 /* Handle -T as -M transaction. Once platform specific metrics
1269 * support has been added to the json files, all archictures
1270 * will use this approach. To determine transaction support
1271 * on an architecture test for such a metric name.
1272 */
1273 if (metricgroup__has_metric("transaction")) {
1274 struct option opt = { .value = &evsel_list };
1275
1276 return metricgroup__parse_groups(&opt, "transaction",
Jiri Olsad0192fd2018-08-30 08:32:51 +02001277 &stat_config.metric_events);
Thomas Richter742d92f2018-06-26 09:17:01 +02001278 }
1279
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001280 if (pmu_have_event("cpu", "cycles-ct") &&
1281 pmu_have_event("cpu", "el-start"))
Thomas Richterfca323402018-03-08 15:57:35 +01001282 err = parse_events(evsel_list, transaction_attrs,
1283 &errinfo);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001284 else
Thomas Richterfca323402018-03-08 15:57:35 +01001285 err = parse_events(evsel_list,
1286 transaction_limited_attrs,
1287 &errinfo);
Jiri Olsaa4547422015-06-03 16:25:53 +02001288 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001289 fprintf(stderr, "Cannot set up transaction events\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001290 parse_events_print_error(&errinfo, transaction_attrs);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001291 return -1;
1292 }
1293 return 0;
1294 }
1295
Kan Liangdaefd0b2017-05-26 12:05:38 -07001296 if (smi_cost) {
1297 int smi;
1298
1299 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
1300 fprintf(stderr, "freeze_on_smi is not supported.\n");
1301 return -1;
1302 }
1303
1304 if (!smi) {
1305 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
1306 fprintf(stderr, "Failed to set freeze_on_smi.\n");
1307 return -1;
1308 }
1309 smi_reset = true;
1310 }
1311
1312 if (pmu_have_event("msr", "aperf") &&
1313 pmu_have_event("msr", "smi")) {
1314 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001315 stat_config.metric_only = true;
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001316 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001317 } else {
1318 fprintf(stderr, "To measure SMI cost, it needs "
1319 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001320 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001321 return -1;
1322 }
1323 if (err) {
1324 fprintf(stderr, "Cannot set up SMI cost events\n");
1325 return -1;
1326 }
1327 return 0;
1328 }
1329
Andi Kleen44b1e602016-05-30 12:49:42 -03001330 if (topdown_run) {
1331 char *str = NULL;
1332 bool warn = false;
1333
1334 if (stat_config.aggr_mode != AGGR_GLOBAL &&
1335 stat_config.aggr_mode != AGGR_CORE) {
1336 pr_err("top down event configuration requires --per-core mode\n");
1337 return -1;
1338 }
1339 stat_config.aggr_mode = AGGR_CORE;
1340 if (nr_cgroups || !target__has_cpu(&target)) {
1341 pr_err("top down event configuration requires system-wide mode (-a)\n");
1342 return -1;
1343 }
1344
1345 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001346 stat_config.metric_only = true;
Andi Kleen44b1e602016-05-30 12:49:42 -03001347 if (topdown_filter_events(topdown_attrs, &str,
1348 arch_topdown_check_group(&warn)) < 0) {
1349 pr_err("Out of memory\n");
1350 return -1;
1351 }
1352 if (topdown_attrs[0] && str) {
1353 if (warn)
1354 arch_topdown_group_warn();
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001355 err = parse_events(evsel_list, str, &errinfo);
Andi Kleen44b1e602016-05-30 12:49:42 -03001356 if (err) {
1357 fprintf(stderr,
1358 "Cannot set up top down events %s: %d\n",
1359 str, err);
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001360 parse_events_print_error(&errinfo, str);
Leo Yanc74b0502019-07-02 18:34:11 +08001361 free(str);
Andi Kleen44b1e602016-05-30 12:49:42 -03001362 return -1;
1363 }
1364 } else {
1365 fprintf(stderr, "System does not support topdown\n");
1366 return -1;
1367 }
1368 free(str);
1369 }
1370
Jiri Olsa6484d2f2019-07-21 13:24:28 +02001371 if (!evsel_list->core.nr_entries) {
Namhyung Kima1f3d562016-05-13 15:01:03 +09001372 if (target__has_cpu(&target))
1373 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
1374
Andi Kleen9dec4472016-02-26 16:27:56 -08001375 if (perf_evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
1376 return -1;
1377 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
1378 if (perf_evlist__add_default_attrs(evsel_list,
1379 frontend_attrs) < 0)
1380 return -1;
1381 }
1382 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
1383 if (perf_evlist__add_default_attrs(evsel_list,
1384 backend_attrs) < 0)
1385 return -1;
1386 }
1387 if (perf_evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001388 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001389 }
1390
1391 /* Detailed events get appended to the event list: */
1392
1393 if (detailed_run < 1)
1394 return 0;
1395
1396 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001397 if (perf_evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001398 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001399
1400 if (detailed_run < 2)
1401 return 0;
1402
1403 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001404 if (perf_evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001405 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001406
1407 if (detailed_run < 3)
1408 return 0;
1409
1410 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Melo79695e12012-05-30 13:53:54 -03001411 return perf_evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001412}
1413
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001414static const char * const stat_record_usage[] = {
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001415 "perf stat record [<options>]",
1416 NULL,
1417};
1418
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001419static void init_features(struct perf_session *session)
1420{
1421 int feat;
1422
1423 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1424 perf_header__set_feat(&session->header, feat);
1425
Jiri Olsa8002a632019-04-09 12:01:56 +02001426 perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT);
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001427 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1428 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1429 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1430 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1431}
1432
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001433static int __cmd_record(int argc, const char **argv)
1434{
1435 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001436 struct perf_data *data = &perf_stat.data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001437
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001438 argc = parse_options(argc, argv, stat_options, stat_record_usage,
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001439 PARSE_OPT_STOP_AT_NON_OPTION);
1440
1441 if (output_name)
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001442 data->path = output_name;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001443
Jiri Olsad97ae042018-08-30 08:32:36 +02001444 if (stat_config.run_count != 1 || forever) {
Jiri Olsae9d6db8e82015-11-05 15:40:53 +01001445 pr_err("Cannot use -r option with perf stat record.\n");
1446 return -1;
1447 }
1448
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001449 session = perf_session__new(data, false, NULL);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001450 if (session == NULL) {
1451 pr_err("Perf session creation failed.\n");
1452 return -1;
1453 }
1454
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001455 init_features(session);
1456
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001457 session->evlist = evsel_list;
1458 perf_stat.session = session;
1459 perf_stat.record = true;
1460 return argc;
1461}
1462
Jiri Olsa89f16882018-09-13 14:54:03 +02001463static int process_stat_round_event(struct perf_session *session,
1464 union perf_event *event)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001465{
Jiri Olsa72932372019-08-28 15:57:16 +02001466 struct perf_record_stat_round *stat_round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001467 struct evsel *counter;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001468 struct timespec tsh, *ts = NULL;
1469 const char **argv = session->header.env.cmdline_argv;
1470 int argc = session->header.env.nr_cmdline;
1471
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001472 evlist__for_each_entry(evsel_list, counter)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001473 perf_stat_process_counter(&stat_config, counter);
1474
Andi Kleene3b03b62016-05-05 16:04:03 -07001475 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
1476 update_stats(&walltime_nsecs_stats, stat_round->time);
Jiri Olsaa56f9392015-11-05 15:40:59 +01001477
Andi Kleene3b03b62016-05-05 16:04:03 -07001478 if (stat_config.interval && stat_round->time) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -03001479 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
1480 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001481 ts = &tsh;
1482 }
1483
1484 print_counters(ts, argc, argv);
1485 return 0;
1486}
1487
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001488static
Jiri Olsa89f16882018-09-13 14:54:03 +02001489int process_stat_config_event(struct perf_session *session,
1490 union perf_event *event)
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001491{
Jiri Olsa89f16882018-09-13 14:54:03 +02001492 struct perf_tool *tool = session->tool;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001493 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1494
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001495 perf_event__read_stat_config(&stat_config, &event->stat_config);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001496
Jiri Olsa315c0a12019-08-22 13:11:39 +02001497 if (perf_cpu_map__empty(st->cpus)) {
Jiri Olsa89af4e02015-11-05 15:41:02 +01001498 if (st->aggr_mode != AGGR_UNSET)
1499 pr_warning("warning: processing task data, aggregation mode not set\n");
1500 return 0;
1501 }
1502
1503 if (st->aggr_mode != AGGR_UNSET)
1504 stat_config.aggr_mode = st->aggr_mode;
1505
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001506 if (perf_stat.data.is_pipe)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001507 perf_stat_init_aggr_mode();
1508 else
1509 perf_stat_init_aggr_mode_file(st);
1510
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001511 return 0;
1512}
1513
Jiri Olsa1975d362015-11-05 15:40:56 +01001514static int set_maps(struct perf_stat *st)
1515{
1516 if (!st->cpus || !st->threads)
1517 return 0;
1518
1519 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
1520 return -EINVAL;
1521
Jiri Olsa453fa032019-07-21 13:24:43 +02001522 perf_evlist__set_maps(&evsel_list->core, st->cpus, st->threads);
Jiri Olsa1975d362015-11-05 15:40:56 +01001523
1524 if (perf_evlist__alloc_stats(evsel_list, true))
1525 return -ENOMEM;
1526
1527 st->maps_allocated = true;
1528 return 0;
1529}
1530
1531static
Jiri Olsa89f16882018-09-13 14:54:03 +02001532int process_thread_map_event(struct perf_session *session,
1533 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01001534{
Jiri Olsa89f16882018-09-13 14:54:03 +02001535 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01001536 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
1537
1538 if (st->threads) {
1539 pr_warning("Extra thread map event, ignoring.\n");
1540 return 0;
1541 }
1542
1543 st->threads = thread_map__new_event(&event->thread_map);
1544 if (!st->threads)
1545 return -ENOMEM;
1546
1547 return set_maps(st);
1548}
1549
1550static
Jiri Olsa89f16882018-09-13 14:54:03 +02001551int process_cpu_map_event(struct perf_session *session,
1552 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01001553{
Jiri Olsa89f16882018-09-13 14:54:03 +02001554 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01001555 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
Jiri Olsaf8548392019-07-21 13:23:49 +02001556 struct perf_cpu_map *cpus;
Jiri Olsa1975d362015-11-05 15:40:56 +01001557
1558 if (st->cpus) {
1559 pr_warning("Extra cpu map event, ignoring.\n");
1560 return 0;
1561 }
1562
1563 cpus = cpu_map__new_data(&event->cpu_map.data);
1564 if (!cpus)
1565 return -ENOMEM;
1566
1567 st->cpus = cpus;
1568 return set_maps(st);
1569}
1570
Jin Yao56739442017-12-05 22:03:07 +08001571static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
1572{
1573 int i;
1574
1575 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
1576 if (!config->stats)
1577 return -1;
1578
1579 config->stats_num = nthreads;
1580
1581 for (i = 0; i < nthreads; i++)
1582 runtime_stat__init(&config->stats[i]);
1583
1584 return 0;
1585}
1586
1587static void runtime_stat_delete(struct perf_stat_config *config)
1588{
1589 int i;
1590
1591 if (!config->stats)
1592 return;
1593
1594 for (i = 0; i < config->stats_num; i++)
1595 runtime_stat__exit(&config->stats[i]);
1596
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001597 zfree(&config->stats);
Jin Yao56739442017-12-05 22:03:07 +08001598}
1599
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001600static const char * const stat_report_usage[] = {
Jiri Olsaba6039b62015-11-05 15:40:55 +01001601 "perf stat report [<options>]",
1602 NULL,
1603};
1604
1605static struct perf_stat perf_stat = {
1606 .tool = {
1607 .attr = perf_event__process_attr,
Jiri Olsafa6ea782015-11-05 15:41:00 +01001608 .event_update = perf_event__process_event_update,
Jiri Olsa1975d362015-11-05 15:40:56 +01001609 .thread_map = process_thread_map_event,
1610 .cpu_map = process_cpu_map_event,
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001611 .stat_config = process_stat_config_event,
Jiri Olsaa56f9392015-11-05 15:40:59 +01001612 .stat = perf_event__process_stat_event,
1613 .stat_round = process_stat_round_event,
Jiri Olsaba6039b62015-11-05 15:40:55 +01001614 },
Jiri Olsa89af4e02015-11-05 15:41:02 +01001615 .aggr_mode = AGGR_UNSET,
Jiri Olsaba6039b62015-11-05 15:40:55 +01001616};
1617
1618static int __cmd_report(int argc, const char **argv)
1619{
1620 struct perf_session *session;
1621 const struct option options[] = {
1622 OPT_STRING('i', "input", &input_name, "file", "input file name"),
Jiri Olsa89af4e02015-11-05 15:41:02 +01001623 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
1624 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -07001625 OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode,
1626 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsa89af4e02015-11-05 15:41:02 +01001627 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
1628 "aggregate counts per physical processor core", AGGR_CORE),
1629 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
1630 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsaba6039b62015-11-05 15:40:55 +01001631 OPT_END()
1632 };
1633 struct stat st;
1634 int ret;
1635
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001636 argc = parse_options(argc, argv, options, stat_report_usage, 0);
Jiri Olsaba6039b62015-11-05 15:40:55 +01001637
1638 if (!input_name || !strlen(input_name)) {
1639 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
1640 input_name = "-";
1641 else
1642 input_name = "perf.data";
1643 }
1644
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001645 perf_stat.data.path = input_name;
1646 perf_stat.data.mode = PERF_DATA_MODE_READ;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001647
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001648 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
Jiri Olsaba6039b62015-11-05 15:40:55 +01001649 if (session == NULL)
1650 return -1;
1651
1652 perf_stat.session = session;
1653 stat_config.output = stderr;
1654 evsel_list = session->evlist;
1655
1656 ret = perf_session__process_events(session);
1657 if (ret)
1658 return ret;
1659
1660 perf_session__delete(session);
1661 return 0;
1662}
1663
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001664static void setup_system_wide(int forks)
1665{
1666 /*
1667 * Make system wide (-a) the default target if
1668 * no target was specified and one of following
1669 * conditions is met:
1670 *
1671 * - there's no workload specified
1672 * - there is workload specified but all requested
1673 * events are system wide events
1674 */
1675 if (!target__none(&target))
1676 return;
1677
1678 if (!forks)
1679 target.system_wide = true;
1680 else {
Jiri Olsa32dcd022019-07-21 13:23:51 +02001681 struct evsel *counter;
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001682
1683 evlist__for_each_entry(evsel_list, counter) {
1684 if (!counter->system_wide)
1685 return;
1686 }
1687
Jiri Olsa6484d2f2019-07-21 13:24:28 +02001688 if (evsel_list->core.nr_entries)
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001689 target.system_wide = true;
1690 }
1691}
1692
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001693int cmd_stat(int argc, const char **argv)
Ingo Molnar52425192009-05-26 09:17:18 +02001694{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001695 const char * const stat_usage[] = {
1696 "perf stat [<options>] [<command>]",
1697 NULL
1698 };
Namhyung Kimcc03c542013-11-01 16:33:15 +09001699 int status = -EINVAL, run_idx;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001700 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02001701 FILE *output = stderr;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001702 unsigned int interval, timeout;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001703 const char * const stat_subcommands[] = { "record", "report" };
Ingo Molnar42202dd2009-06-13 14:57:28 +02001704
Stephane Eranian5af52b52010-05-18 15:00:01 +02001705 setlocale(LC_ALL, "");
1706
Jiri Olsa0f98b112019-07-21 13:23:55 +02001707 evsel_list = evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02001708 if (evsel_list == NULL)
1709 return -ENOMEM;
1710
Wang Nan1669e502016-02-19 11:43:58 +00001711 parse_events__shrink_config_terms();
Michael Petlan51433ea2018-12-10 11:00:04 -05001712
1713 /* String-parsing callback-based options would segfault when negated */
1714 set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
1715 set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
1716 set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);
1717
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001718 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
1719 (const char **) stat_usage,
1720 PARSE_OPT_STOP_AT_NON_OPTION);
Andi Kleen37932c12017-03-20 13:17:08 -07001721 perf_stat__collect_metric_expr(evsel_list);
Andi Kleenfb4605b2016-03-01 10:57:52 -08001722 perf_stat__init_shadow_stats();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001723
Jiri Olsafa7070a2018-08-30 08:32:29 +02001724 if (stat_config.csv_sep) {
1725 stat_config.csv_output = true;
1726 if (!strcmp(stat_config.csv_sep, "\\t"))
1727 stat_config.csv_sep = "\t";
Jiri Olsa6edb78a2015-11-05 15:41:01 +01001728 } else
Jiri Olsafa7070a2018-08-30 08:32:29 +02001729 stat_config.csv_sep = DEFAULT_SEPARATOR;
Jiri Olsa6edb78a2015-11-05 15:41:01 +01001730
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001731 if (argc && !strncmp(argv[0], "rec", 3)) {
1732 argc = __cmd_record(argc, argv);
1733 if (argc < 0)
1734 return -1;
Jiri Olsaba6039b62015-11-05 15:40:55 +01001735 } else if (argc && !strncmp(argv[0], "rep", 3))
1736 return __cmd_report(argc, argv);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001737
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001738 interval = stat_config.interval;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001739 timeout = stat_config.timeout;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001740
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001741 /*
1742 * For record command the -o is already taken care of.
1743 */
1744 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02001745 output = NULL;
1746
Jim Cromie56f3bae2011-09-07 17:14:00 -06001747 if (output_name && output_fd) {
1748 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001749 parse_options_usage(stat_usage, stat_options, "o", 1);
1750 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001751 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06001752 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001753
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001754 if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) {
Andi Kleen54b50912016-03-03 15:57:36 -08001755 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
1756 goto out;
1757 }
1758
Jiri Olsad97ae042018-08-30 08:32:36 +02001759 if (stat_config.metric_only && stat_config.run_count > 1) {
Andi Kleen54b50912016-03-03 15:57:36 -08001760 fprintf(stderr, "--metric-only is not supported with -r\n");
1761 goto out;
1762 }
1763
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001764 if (stat_config.walltime_run_table && stat_config.run_count <= 1) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02001765 fprintf(stderr, "--table is only supported with -r\n");
1766 parse_options_usage(stat_usage, stat_options, "r", 1);
1767 parse_options_usage(NULL, stat_options, "table", 0);
1768 goto out;
1769 }
1770
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001771 if (output_fd < 0) {
1772 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001773 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001774 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001775 }
1776
Stephane Eranian4aa90152011-08-15 22:22:33 +02001777 if (!output) {
1778 struct timespec tm;
1779 mode = append_file ? "a" : "w";
1780
1781 output = fopen(output_name, mode);
1782 if (!output) {
1783 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06001784 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02001785 }
1786 clock_gettime(CLOCK_REALTIME, &tm);
1787 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02001788 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06001789 mode = append_file ? "a" : "w";
1790 output = fdopen(output_fd, mode);
1791 if (!output) {
1792 perror("Failed opening logfd");
1793 return -errno;
1794 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02001795 }
1796
Jiri Olsa58215222015-07-21 14:31:24 +02001797 stat_config.output = output;
1798
Stephane Eraniand7470b62010-12-01 18:49:05 +02001799 /*
1800 * let the spreadsheet do the pretty-printing
1801 */
Jiri Olsafa7070a2018-08-30 08:32:29 +02001802 if (stat_config.csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06001803 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02001804 if (big_num_opt == 1) {
1805 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001806 parse_options_usage(stat_usage, stat_options, "B", 1);
1807 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001808 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001809 } else /* Nope, so disable big number formatting */
Jiri Olsa34ff0862018-08-30 08:32:47 +02001810 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001811 } else if (big_num_opt == 0) /* User passed --no-big-num */
Jiri Olsa34ff0862018-08-30 08:32:47 +02001812 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02001813
Jiri Olsae3ba76d2017-02-27 10:48:18 +01001814 setup_system_wide(argc);
David Ahernac3063b2013-09-30 07:37:37 -06001815
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001816 /*
1817 * Display user/system times only for single
1818 * run and when there's specified tracee.
1819 */
Jiri Olsad97ae042018-08-30 08:32:36 +02001820 if ((stat_config.run_count == 1) && target__none(&target))
Jiri Olsa8897a892018-08-30 08:32:44 +02001821 stat_config.ru_display = true;
Jiri Olsa0ce2da12018-06-05 14:13:13 +02001822
Jiri Olsad97ae042018-08-30 08:32:36 +02001823 if (stat_config.run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09001824 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001825 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001826 goto out;
Jiri Olsad97ae042018-08-30 08:32:36 +02001827 } else if (stat_config.run_count == 0) {
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001828 forever = true;
Jiri Olsad97ae042018-08-30 08:32:36 +02001829 stat_config.run_count = 1;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001830 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001831
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001832 if (stat_config.walltime_run_table) {
1833 stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0]));
1834 if (!stat_config.walltime_run) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02001835 pr_err("failed to setup -r option");
1836 goto out;
1837 }
1838 }
1839
Jin Yao1d9f8d12017-12-05 22:03:10 +08001840 if ((stat_config.aggr_mode == AGGR_THREAD) &&
1841 !target__has_task(&target)) {
1842 if (!target.system_wide || target.cpu_list) {
1843 fprintf(stderr, "The --per-thread option is only "
1844 "available when monitoring via -p -t -a "
1845 "options or only --per-thread.\n");
1846 parse_options_usage(NULL, stat_options, "p", 1);
1847 parse_options_usage(NULL, stat_options, "t", 1);
1848 goto out;
1849 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001850 }
1851
1852 /*
1853 * no_aggr, cgroup are for system-wide only
1854 * --per-thread is aggregated per thread, we dont mix it with cpu mode
1855 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02001856 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
1857 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001858 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02001859 fprintf(stderr, "both cgroup and no-aggregation "
1860 "modes only available in system-wide mode\n");
1861
Jiri Olsae0547312015-11-05 15:40:45 +01001862 parse_options_usage(stat_usage, stat_options, "G", 1);
1863 parse_options_usage(NULL, stat_options, "A", 1);
1864 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001865 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01001866 }
1867
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001868 if (add_default_attributes())
1869 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001870
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001871 target__validate(&target);
Arnaldo Carvalho de Melo5c98d4662011-01-03 17:53:33 -02001872
Jin Yao1d9f8d12017-12-05 22:03:10 +08001873 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
1874 target.per_thread = true;
1875
Namhyung Kim77a6f012012-05-07 14:09:04 +09001876 if (perf_evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001877 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001878 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01001879 parse_options_usage(stat_usage, stat_options, "p", 1);
1880 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001881 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09001882 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01001883 parse_options_usage(stat_usage, stat_options, "C", 1);
1884 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09001885 }
1886 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02001887 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001888
1889 /*
1890 * Initialize thread_map with comm names,
1891 * so we could print it out on output.
1892 */
Jin Yao56739442017-12-05 22:03:07 +08001893 if (stat_config.aggr_mode == AGGR_THREAD) {
Jiri Olsa03617c22019-07-21 13:24:42 +02001894 thread_map__read_comms(evsel_list->core.threads);
Jin Yao56739442017-12-05 22:03:07 +08001895 if (target.system_wide) {
1896 if (runtime_stat_new(&stat_config,
Jiri Olsaa2f354e2019-08-22 13:11:41 +02001897 perf_thread_map__nr(evsel_list->core.threads))) {
Jin Yao56739442017-12-05 22:03:07 +08001898 goto out;
1899 }
1900 }
1901 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02001902
yuzhoujiandb06a262018-01-29 10:25:22 +01001903 if (stat_config.times && interval)
1904 interval_count = true;
1905 else if (stat_config.times && !interval) {
1906 pr_err("interval-count option should be used together with "
1907 "interval-print.\n");
1908 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
1909 parse_options_usage(stat_usage, stat_options, "I", 1);
1910 goto out;
1911 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02001912
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001913 if (timeout && timeout < 100) {
1914 if (timeout < 10) {
1915 pr_err("timeout must be >= 10ms.\n");
1916 parse_options_usage(stat_usage, stat_options, "timeout", 0);
1917 goto out;
1918 } else
1919 pr_warning("timeout < 100ms. "
1920 "The overhead percentage could be high in some cases. "
1921 "Please proceed with caution.\n");
1922 }
1923 if (timeout && interval) {
1924 pr_err("timeout option is not supported with interval-print.\n");
1925 parse_options_usage(stat_usage, stat_options, "timeout", 0);
1926 parse_options_usage(stat_usage, stat_options, "I", 1);
1927 goto out;
1928 }
1929
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001930 if (perf_evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001931 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03001932
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001933 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03001934 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001935
Ingo Molnar58d7e992009-05-15 11:03:23 +02001936 /*
Jiri Olsa7d9ad162018-08-30 08:32:14 +02001937 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
1938 * while avoiding that older tools show confusing messages.
1939 *
1940 * However for pipe sessions we need to keep it zero,
1941 * because script's perf_evsel__check_attr is triggered
1942 * by attr->sample_type != 0, and we can't run it on
1943 * stat sessions.
1944 */
1945 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
1946
1947 /*
Ingo Molnar58d7e992009-05-15 11:03:23 +02001948 * We dont want to block the signals - that would cause
1949 * child tasks to inherit that and Ctrl-C would not work.
1950 * What we want is for Ctrl-C to work in the exec()-ed
1951 * task, but being ignored by perf stat itself:
1952 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001953 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001954 if (!forever)
1955 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01001956 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02001957 signal(SIGALRM, skip_signal);
1958 signal(SIGABRT, skip_signal);
1959
Ingo Molnar42202dd2009-06-13 14:57:28 +02001960 status = 0;
Jiri Olsad97ae042018-08-30 08:32:36 +02001961 for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) {
1962 if (stat_config.run_count != 1 && verbose > 0)
Stephane Eranian4aa90152011-08-15 22:22:33 +02001963 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
1964 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02001965
Jiri Olsae55c14a2018-04-23 11:08:21 +02001966 status = run_perf_stat(argc, argv, run_idx);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001967 if (forever && status != -1) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02001968 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02001969 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001970 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02001971 }
1972
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05001973 if (!forever && status != -1 && !interval)
Jiri Olsad4f63a42015-06-26 11:29:26 +02001974 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03001975
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001976 if (STAT_RECORD) {
1977 /*
1978 * We synthesize the kernel mmap record just so that older tools
1979 * don't emit warnings about not being able to resolve symbols
1980 * due to /proc/sys/kernel/kptr_restrict settings and instear provide
1981 * a saner message about no samples being in the perf.data file.
1982 *
1983 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01001984 * in header.c at the moment 'perf stat record' gets introduced, which
1985 * is not really needed once we start adding the stat specific PERF_RECORD_
1986 * records, but the need to suppress the kptr_restrict messages in older
1987 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001988 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001989 int fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001990 int err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
1991 process_synthesized_event,
1992 &perf_stat.session->machines.host);
1993 if (err) {
1994 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
1995 "older tools may produce warnings about this file\n.");
1996 }
1997
Jiri Olsa7aad0c32015-11-05 15:40:52 +01001998 if (!interval) {
1999 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
2000 pr_err("failed to write stat round event\n");
2001 }
2002
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002003 if (!perf_stat.data.is_pipe) {
Jiri Olsa664c98d2015-11-05 15:40:50 +01002004 perf_stat.session->header.data_size += perf_stat.bytes_written;
2005 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
2006 }
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002007
Jiri Olsa750b4ed2019-07-21 13:24:07 +02002008 evlist__close(evsel_list);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002009 perf_session__delete(perf_stat.session);
2010 }
2011
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09002012 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03002013 perf_evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02002014out:
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002015 zfree(&stat_config.walltime_run);
Jiri Olsae55c14a2018-04-23 11:08:21 +02002016
Kan Liangdaefd0b2017-05-26 12:05:38 -07002017 if (smi_cost && smi_reset)
2018 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
2019
Jiri Olsac12995a2019-07-21 13:23:56 +02002020 evlist__delete(evsel_list);
Jin Yao56739442017-12-05 22:03:07 +08002021
2022 runtime_stat_delete(&stat_config);
2023
Ingo Molnar42202dd2009-06-13 14:57:28 +02002024 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002025}