blob: f9f74a5143159ffbcc0d322604fc8ccfb35a1b97 [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 Meloc1a604d2019-08-29 15:20:59 -030044#include "perf.h"
Arnaldo Carvalho de Melof14d5702014-10-17 12:17:40 -030045#include "util/cgroup.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060046#include <subcmd/parse-options.h>
Ingo Molnar52425192009-05-26 09:17:18 +020047#include "util/parse-events.h"
Andi Kleen4cabc3d2013-08-21 16:47:26 -070048#include "util/pmu.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020049#include "util/event.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020050#include "util/evlist.h"
Jin Yao660e5332021-04-27 15:01:29 +080051#include "util/evlist-hybrid.h"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020052#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020053#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020054#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080055#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080056#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110057#include "util/cpumap.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020058#include "util/thread_map.h"
Jiri Olsad8095602015-08-07 12:51:03 +020059#include "util/counts.h"
Kan Liang687986b2020-09-11 07:48:05 -070060#include "util/topdown.h"
Jiri Olsa4979d0c2015-11-05 15:40:46 +010061#include "util/session.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010062#include "util/tool.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030063#include "util/string2.h"
Andi Kleenb18f3e32017-08-31 12:40:31 -070064#include "util/metricgroup.h"
Arnaldo Carvalho de Meloea49e012019-09-18 11:36:13 -030065#include "util/synthetic-events.h"
Arnaldo Carvalho de Meloaeb00b12019-08-22 15:40:29 -030066#include "util/target.h"
Arnaldo Carvalho de Melof3711022019-08-29 15:16:27 -030067#include "util/time-utils.h"
Jiri Olsa9660e082018-06-07 00:15:06 +020068#include "util/top.h"
Andi Kleen4804e012019-11-20 16:15:19 -080069#include "util/affinity.h"
Stephane Eranian70943492020-05-05 11:29:43 -070070#include "util/pfm.h"
Song Liufa853c42020-12-29 13:42:14 -080071#include "util/bpf_counter.h"
Alexander Antonovf07952b2021-04-19 12:41:44 +030072#include "util/iostat.h"
Jin Yao12279422021-04-27 15:01:20 +080073#include "util/pmu-hybrid.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010074#include "asm/bug.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020075
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030076#include <linux/time64.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030077#include <linux/zalloc.h>
Andi Kleen44b1e602016-05-30 12:49:42 -030078#include <api/fs/fs.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030079#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030080#include <signal.h>
Peter Zijlstra1f16c572012-10-23 13:40:14 +020081#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020082#include <sys/prctl.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030083#include <inttypes.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020084#include <locale.h>
Andi Kleene3b03b62016-05-05 16:04:03 -070085#include <math.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030086#include <sys/types.h>
87#include <sys/stat.h>
Arnaldo Carvalho de Melo42087352017-04-19 19:06:30 -030088#include <sys/wait.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030089#include <unistd.h>
Jiri Olsa0ce2da12018-06-05 14:13:13 +020090#include <sys/time.h>
91#include <sys/resource.h>
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053092#include <linux/err.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020093
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030094#include <linux/ctype.h>
Jiri Olsa453fa032019-07-21 13:24:43 +020095#include <perf/evlist.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030096
Stephane Eraniand7470b62010-12-01 18:49:05 +020097#define DEFAULT_SEPARATOR " "
Kan Liangdaefd0b2017-05-26 12:05:38 -070098#define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi"
Stephane Eraniand7470b62010-12-01 18:49:05 +020099
Jiri Olsad4f63a42015-06-26 11:29:26 +0200100static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +0100101
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700102/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +0200103static const char *transaction_attrs = {
104 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700105 "{"
106 "instructions,"
107 "cycles,"
108 "cpu/cycles-t/,"
109 "cpu/tx-start/,"
110 "cpu/el-start/,"
111 "cpu/cycles-ct/"
112 "}"
113};
114
115/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +0200116static const char * transaction_limited_attrs = {
117 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700118 "{"
119 "instructions,"
120 "cycles,"
121 "cpu/cycles-t/,"
122 "cpu/tx-start/"
123 "}"
124};
125
Andi Kleen44b1e602016-05-30 12:49:42 -0300126static const char * topdown_attrs[] = {
127 "topdown-total-slots",
128 "topdown-slots-retired",
129 "topdown-recovery-bubbles",
130 "topdown-fetch-bubbles",
131 "topdown-slots-issued",
132 NULL,
133};
134
Andi Kleen55c36a92020-09-11 07:48:07 -0700135static const char *topdown_metric_attrs[] = {
136 "slots",
137 "topdown-retiring",
138 "topdown-bad-spec",
139 "topdown-fe-bound",
140 "topdown-be-bound",
141 NULL,
142};
143
Kan Liang63e39aa2021-02-02 12:09:12 -0800144static const char *topdown_metric_L2_attrs[] = {
145 "slots",
146 "topdown-retiring",
147 "topdown-bad-spec",
148 "topdown-fe-bound",
149 "topdown-be-bound",
150 "topdown-heavy-ops",
151 "topdown-br-mispredict",
152 "topdown-fetch-lat",
153 "topdown-mem-bound",
154 NULL,
155};
156
Kan Liangdaefd0b2017-05-26 12:05:38 -0700157static const char *smi_cost_attrs = {
158 "{"
159 "msr/aperf/,"
160 "msr/smi/,"
161 "cycles"
162 "}"
163};
164
Jiri Olsa63503db2019-07-21 13:23:52 +0200165static struct evlist *evsel_list;
Song Liu112cb562021-04-25 14:43:31 -0700166static bool all_counters_use_bpf = true;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200167
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300168static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900169 .uid = UINT_MAX,
170};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530171
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200172#define METRIC_ONLY_LEN 20
173
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200174static volatile pid_t child_pid = -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200175static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700176static bool transaction_run;
Andi Kleen44b1e602016-05-30 12:49:42 -0300177static bool topdown_run = false;
Kan Liangdaefd0b2017-05-26 12:05:38 -0700178static bool smi_cost = false;
179static bool smi_reset = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200180static int big_num_opt = -1;
Lin Ming43bece72011-08-17 18:42:07 +0800181static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200182static const char *pre_cmd = NULL;
183static const char *post_cmd = NULL;
184static bool sync_run = false;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500185static bool forever = false;
Andi Kleen44b1e602016-05-30 12:49:42 -0300186static bool force_metric_only = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100187static struct timespec ref_time;
Jiri Olsae0547312015-11-05 15:40:45 +0100188static bool append_file;
yuzhoujiandb06a262018-01-29 10:25:22 +0100189static bool interval_count;
Jiri Olsae0547312015-11-05 15:40:45 +0100190static const char *output_name;
191static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200192
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100193struct perf_stat {
194 bool record;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100195 struct perf_data data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100196 struct perf_session *session;
197 u64 bytes_written;
Jiri Olsaba6039b62015-11-05 15:40:55 +0100198 struct perf_tool tool;
Jiri Olsa1975d362015-11-05 15:40:56 +0100199 bool maps_allocated;
Jiri Olsaf8548392019-07-21 13:23:49 +0200200 struct perf_cpu_map *cpus;
Jiri Olsa9749b902019-07-21 13:23:50 +0200201 struct perf_thread_map *threads;
Jiri Olsa89af4e02015-11-05 15:41:02 +0100202 enum aggr_mode aggr_mode;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100203};
204
205static struct perf_stat perf_stat;
206#define STAT_RECORD perf_stat.record
207
Liming Wang60666c62009-12-31 16:05:50 +0800208static volatile int done = 0;
209
Jiri Olsa421a50f2015-07-21 14:31:22 +0200210static struct perf_stat_config stat_config = {
Jiri Olsa26893a62018-08-30 08:32:40 +0200211 .aggr_mode = AGGR_GLOBAL,
212 .scale = true,
213 .unit_width = 4, /* strlen("unit") */
214 .run_count = 1,
215 .metric_only_len = METRIC_ONLY_LEN,
216 .walltime_nsecs_stats = &walltime_nsecs_stats,
Jiri Olsa34ff0862018-08-30 08:32:47 +0200217 .big_num = true,
Alexey Budankov27e97692020-07-17 10:05:41 +0300218 .ctl_fd = -1,
Alexander Antonovf07952b2021-04-19 12:41:44 +0300219 .ctl_fd_ack = -1,
220 .iostat_run = false,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200221};
222
Jiri Olsaa9a179022020-06-02 12:17:36 +0200223static bool cpus_map_matched(struct evsel *a, struct evsel *b)
224{
225 if (!a->core.cpus && !b->core.cpus)
226 return true;
227
228 if (!a->core.cpus || !b->core.cpus)
229 return false;
230
231 if (a->core.cpus->nr != b->core.cpus->nr)
232 return false;
233
234 for (int i = 0; i < a->core.cpus->nr; i++) {
235 if (a->core.cpus->map[i] != b->core.cpus->map[i])
236 return false;
237 }
238
239 return true;
240}
241
242static void evlist__check_cpu_maps(struct evlist *evlist)
243{
244 struct evsel *evsel, *pos, *leader;
245 char buf[1024];
246
Jin Yao660e5332021-04-27 15:01:29 +0800247 if (evlist__has_hybrid(evlist))
248 evlist__warn_hybrid_group(evlist);
249
Jiri Olsaa9a179022020-06-02 12:17:36 +0200250 evlist__for_each_entry(evlist, evsel) {
251 leader = evsel->leader;
252
253 /* Check that leader matches cpus with each member. */
254 if (leader == evsel)
255 continue;
256 if (cpus_map_matched(leader, evsel))
257 continue;
258
259 /* If there's mismatch disable the group and warn user. */
260 WARN_ONCE(1, "WARNING: grouped events cpus do not match, disabling group:\n");
261 evsel__group_desc(leader, buf, sizeof(buf));
262 pr_warning(" %s\n", buf);
263
264 if (verbose) {
265 cpu_map__snprint(leader->core.cpus, buf, sizeof(buf));
266 pr_warning(" %s: %s\n", leader->name, buf);
267 cpu_map__snprint(evsel->core.cpus, buf, sizeof(buf));
268 pr_warning(" %s: %s\n", evsel->name, buf);
269 }
270
271 for_each_group_evsel(pos, leader) {
272 pos->leader = pos;
273 pos->core.nr_members = 0;
274 }
275 evsel->leader->core.nr_members = 0;
276 }
277}
278
Stephane Eranian13370a92013-01-29 12:47:44 +0100279static inline void diff_timespec(struct timespec *r, struct timespec *a,
280 struct timespec *b)
281{
282 r->tv_sec = a->tv_sec - b->tv_sec;
283 if (a->tv_nsec < b->tv_nsec) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300284 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
Stephane Eranian13370a92013-01-29 12:47:44 +0100285 r->tv_sec--;
286 } else {
287 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
288 }
289}
290
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200291static void perf_stat__reset_stats(void)
292{
Jin Yao56739442017-12-05 22:03:07 +0800293 int i;
294
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -0300295 evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200296 perf_stat__reset_shadow_stats();
Jin Yao56739442017-12-05 22:03:07 +0800297
298 for (i = 0; i < stat_config.stats_num; i++)
299 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200300}
301
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100302static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100303 union perf_event *event,
304 struct perf_sample *sample __maybe_unused,
305 struct machine *machine __maybe_unused)
306{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100307 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100308 pr_err("failed to write perf data, error: %m\n");
309 return -1;
310 }
311
312 perf_stat.bytes_written += event->header.size;
313 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100314}
315
Jiri Olsa1975d362015-11-05 15:40:56 +0100316static int write_stat_round_event(u64 tm, u64 type)
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100317{
Jiri Olsa1975d362015-11-05 15:40:56 +0100318 return perf_event__synthesize_stat_round(NULL, tm, type,
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100319 process_synthesized_event,
320 NULL);
321}
322
323#define WRITE_STAT_ROUND_EVENT(time, interval) \
324 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
325
Jiri Olsa8cd36f32019-09-02 22:04:12 +0200326#define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y)
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100327
Arnaldo Carvalho de Meloddc69992020-05-04 13:46:34 -0300328static int evsel__write_stat_event(struct evsel *counter, u32 cpu, u32 thread,
329 struct perf_counts_values *count)
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100330{
331 struct perf_sample_id *sid = SID(counter, cpu, thread);
332
333 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
334 process_synthesized_event, NULL);
335}
336
Jiri Olsa32dcd022019-07-21 13:23:51 +0200337static int read_single_counter(struct evsel *counter, int cpu,
Andi Kleenf0fbb112019-03-26 15:18:21 -0700338 int thread, struct timespec *rs)
339{
340 if (counter->tool_event == PERF_TOOL_DURATION_TIME) {
341 u64 val = rs->tv_nsec + rs->tv_sec*1000000000ULL;
342 struct perf_counts_values *count =
343 perf_counts(counter->counts, cpu, thread);
344 count->ena = count->run = val;
345 count->val = val;
346 return 0;
347 }
Arnaldo Carvalho de Meloea089692020-04-30 11:00:53 -0300348 return evsel__read_counter(counter, cpu, thread);
Andi Kleenf0fbb112019-03-26 15:18:21 -0700349}
350
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200351/*
352 * Read out the results of a single counter:
353 * do not aggregate counts across CPUs in system-wide mode
354 */
Andi Kleen4b49ab72019-11-20 16:15:20 -0800355static int read_counter_cpu(struct evsel *counter, struct timespec *rs, int cpu)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200356{
Jiri Olsaa2f354e2019-08-22 13:11:41 +0200357 int nthreads = perf_thread_map__nr(evsel_list->core.threads);
Andi Kleen4b49ab72019-11-20 16:15:20 -0800358 int thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200359
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000360 if (!counter->supported)
361 return -ENOENT;
362
Jiri Olsa648b5af2019-08-06 11:35:19 +0200363 if (counter->core.system_wide)
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100364 nthreads = 1;
365
366 for (thread = 0; thread < nthreads; thread++) {
Andi Kleen4b49ab72019-11-20 16:15:20 -0800367 struct perf_counts_values *count;
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200368
Andi Kleen4b49ab72019-11-20 16:15:20 -0800369 count = perf_counts(counter->counts, cpu, thread);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200370
Andi Kleen4b49ab72019-11-20 16:15:20 -0800371 /*
372 * The leader's group read loads data into its group members
Arnaldo Carvalho de Meloea089692020-04-30 11:00:53 -0300373 * (via evsel__read_counter()) and sets their count->loaded.
Andi Kleen4b49ab72019-11-20 16:15:20 -0800374 */
375 if (!perf_counts__is_loaded(counter->counts, cpu, thread) &&
376 read_single_counter(counter, cpu, thread, rs)) {
377 counter->counts->scaled = -1;
378 perf_counts(counter->counts, cpu, thread)->ena = 0;
379 perf_counts(counter->counts, cpu, thread)->run = 0;
380 return -1;
381 }
382
383 perf_counts__set_loaded(counter->counts, cpu, thread, false);
384
385 if (STAT_RECORD) {
Arnaldo Carvalho de Meloddc69992020-05-04 13:46:34 -0300386 if (evsel__write_stat_event(counter, cpu, thread, count)) {
Andi Kleen4b49ab72019-11-20 16:15:20 -0800387 pr_err("failed to write stat event\n");
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100388 return -1;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700389 }
Andi Kleen4b49ab72019-11-20 16:15:20 -0800390 }
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100391
Andi Kleen4b49ab72019-11-20 16:15:20 -0800392 if (verbose > 1) {
393 fprintf(stat_config.output,
394 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300395 evsel__name(counter),
Andi Kleen4b49ab72019-11-20 16:15:20 -0800396 cpu,
397 count->val, count->ena, count->run);
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100398 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200399 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200400
401 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200402}
403
Jin Yaoc7e5b322020-05-20 12:27:37 +0800404static int read_affinity_counters(struct timespec *rs)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200405{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200406 struct evsel *counter;
Andi Kleen4b49ab72019-11-20 16:15:20 -0800407 struct affinity affinity;
408 int i, ncpus, cpu;
409
Song Liu112cb562021-04-25 14:43:31 -0700410 if (all_counters_use_bpf)
411 return 0;
412
Andi Kleen4b49ab72019-11-20 16:15:20 -0800413 if (affinity__setup(&affinity) < 0)
Jin Yaoc7e5b322020-05-20 12:27:37 +0800414 return -1;
Andi Kleen4b49ab72019-11-20 16:15:20 -0800415
416 ncpus = perf_cpu_map__nr(evsel_list->core.all_cpus);
417 if (!target__has_cpu(&target) || target__has_per_thread(&target))
418 ncpus = 1;
419 evlist__for_each_cpu(evsel_list, i, cpu) {
420 if (i >= ncpus)
421 break;
422 affinity__set(&affinity, cpu);
423
424 evlist__for_each_entry(evsel_list, counter) {
425 if (evsel__cpu_iter_skip(counter, cpu))
426 continue;
Song Liu112cb562021-04-25 14:43:31 -0700427 if (evsel__is_bpf(counter))
428 continue;
Andi Kleen4b49ab72019-11-20 16:15:20 -0800429 if (!counter->err) {
430 counter->err = read_counter_cpu(counter, rs,
431 counter->cpu_iter - 1);
432 }
433 }
434 }
435 affinity__cleanup(&affinity);
Jin Yaoc7e5b322020-05-20 12:27:37 +0800436 return 0;
437}
438
Song Liufa853c42020-12-29 13:42:14 -0800439static int read_bpf_map_counters(void)
440{
441 struct evsel *counter;
442 int err;
443
444 evlist__for_each_entry(evsel_list, counter) {
Song Liu112cb562021-04-25 14:43:31 -0700445 if (!evsel__is_bpf(counter))
446 continue;
447
Song Liufa853c42020-12-29 13:42:14 -0800448 err = bpf_counter__read(counter);
449 if (err)
450 return err;
451 }
452 return 0;
453}
454
Jin Yaoc7e5b322020-05-20 12:27:37 +0800455static void read_counters(struct timespec *rs)
456{
457 struct evsel *counter;
458
Song Liufa853c42020-12-29 13:42:14 -0800459 if (!stat_config.stop_read_counter) {
Song Liu112cb562021-04-25 14:43:31 -0700460 if (read_bpf_map_counters() ||
461 read_affinity_counters(rs))
Song Liufa853c42020-12-29 13:42:14 -0800462 return;
463 }
Jiri Olsa106a94a2015-06-26 11:29:19 +0200464
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300465 evlist__for_each_entry(evsel_list, counter) {
Andi Kleen4b49ab72019-11-20 16:15:20 -0800466 if (counter->err)
Andi Kleen245bad82015-09-01 15:52:46 -0700467 pr_debug("failed to read counter %s\n", counter->name);
Andi Kleen4b49ab72019-11-20 16:15:20 -0800468 if (counter->err == 0 && perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200469 pr_warning("failed to process counter %s\n", counter->name);
Andi Kleen4b49ab72019-11-20 16:15:20 -0800470 counter->err = 0;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200471 }
472}
473
Jin Yao72f02a92020-05-20 12:27:33 +0800474static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
475{
476 int i;
477
478 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
479 if (!config->stats)
480 return -1;
481
482 config->stats_num = nthreads;
483
484 for (i = 0; i < nthreads; i++)
485 runtime_stat__init(&config->stats[i]);
486
487 return 0;
488}
489
490static void runtime_stat_delete(struct perf_stat_config *config)
491{
492 int i;
493
494 if (!config->stats)
495 return;
496
497 for (i = 0; i < config->stats_num; i++)
498 runtime_stat__exit(&config->stats[i]);
499
500 zfree(&config->stats);
501}
502
503static void runtime_stat_reset(struct perf_stat_config *config)
504{
505 int i;
506
507 if (!config->stats)
508 return;
509
510 for (i = 0; i < config->stats_num; i++)
511 perf_stat__reset_shadow_per_stat(&config->stats[i]);
512}
513
Jiri Olsaba411a92015-06-26 11:29:24 +0200514static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100515{
Stephane Eranian13370a92013-01-29 12:47:44 +0100516 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100517
Stephane Eranian13370a92013-01-29 12:47:44 +0100518 clock_gettime(CLOCK_MONOTONIC, &ts);
519 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100520
Jin Yao197ba862020-04-20 22:54:17 +0800521 perf_stat__reset_shadow_per_stat(&rt_stat);
Jin Yao72f02a92020-05-20 12:27:33 +0800522 runtime_stat_reset(&stat_config);
Andi Kleenf0fbb112019-03-26 15:18:21 -0700523 read_counters(&rs);
524
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100525 if (STAT_RECORD) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300526 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100527 pr_err("failed to write stat round event\n");
528 }
529
Andi Kleenb90f1332017-08-31 12:40:36 -0700530 init_stats(&walltime_nsecs_stats);
Jiri Olsaea9eb1f2020-05-18 15:14:45 +0200531 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000ULL);
Jiri Olsad4f63a42015-06-26 11:29:26 +0200532 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100533}
534
Alexey Budankovdece3a42020-07-17 10:02:08 +0300535static bool handle_interval(unsigned int interval, int *times)
536{
537 if (interval) {
538 process_interval();
539 if (interval_count && !(--(*times)))
540 return true;
541 }
542 return false;
543}
544
Song Liufa853c42020-12-29 13:42:14 -0800545static int enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700546{
Song Liufa853c42020-12-29 13:42:14 -0800547 struct evsel *evsel;
548 int err;
549
Song Liu112cb562021-04-25 14:43:31 -0700550 evlist__for_each_entry(evsel_list, evsel) {
551 if (!evsel__is_bpf(evsel))
552 continue;
553
554 err = bpf_counter__enable(evsel);
555 if (err)
556 return err;
Song Liufa853c42020-12-29 13:42:14 -0800557 }
558
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300559 if (stat_config.initial_delay < 0) {
560 pr_info(EVLIST_DISABLED_MSG);
Song Liufa853c42020-12-29 13:42:14 -0800561 return 0;
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300562 }
563
564 if (stat_config.initial_delay > 0) {
565 pr_info(EVLIST_DISABLED_MSG);
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200566 usleep(stat_config.initial_delay * USEC_PER_MSEC);
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300567 }
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100568
569 /*
570 * We need to enable counters only if:
571 * - we don't have tracee (attaching to task or cpu)
572 * - we have initial delay configured
573 */
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300574 if (!target__none(&target) || stat_config.initial_delay) {
Song Liuf8b61bd2021-05-11 23:51:16 -0700575 if (!all_counters_use_bpf)
576 evlist__enable(evsel_list);
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300577 if (stat_config.initial_delay > 0)
578 pr_info(EVLIST_ENABLED_MSG);
579 }
Song Liufa853c42020-12-29 13:42:14 -0800580 return 0;
Andi Kleen41191682013-08-02 17:41:11 -0700581}
582
Mark Rutland3df33ef2016-08-09 14:04:29 +0100583static void disable_counters(void)
584{
Song Liuf8b61bd2021-05-11 23:51:16 -0700585 struct evsel *counter;
586
Mark Rutland3df33ef2016-08-09 14:04:29 +0100587 /*
588 * If we don't have tracee (attaching to task or cpu), counters may
589 * still be running. To get accurate group ratios, we must stop groups
590 * from counting before reading their constituent counters.
591 */
Song Liuf8b61bd2021-05-11 23:51:16 -0700592 if (!target__none(&target)) {
593 evlist__for_each_entry(evsel_list, counter)
594 bpf_counter__disable(counter);
595 if (!all_counters_use_bpf)
596 evlist__disable(evsel_list);
597 }
Mark Rutland3df33ef2016-08-09 14:04:29 +0100598}
599
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300600static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300601
602/*
Arnaldo Carvalho de Melo7b392ef2020-11-30 09:26:54 -0300603 * evlist__prepare_workload will send a SIGUSR1
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300604 * if the fork fails, since we asked by setting its
605 * want_signal to true.
606 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300607static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
608 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300609{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300610 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300611}
612
Arnaldo Carvalho de Meloddc69992020-05-04 13:46:34 -0300613static bool evsel__should_store_id(struct evsel *counter)
Jiri Olsa82bf3112017-07-26 14:02:06 +0200614{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200615 return STAT_RECORD || counter->core.attr.read_format & PERF_FORMAT_ID;
Jiri Olsa82bf3112017-07-26 14:02:06 +0200616}
617
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200618static bool is_target_alive(struct target *_target,
Jiri Olsa9749b902019-07-21 13:23:50 +0200619 struct perf_thread_map *threads)
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200620{
621 struct stat st;
622 int i;
623
624 if (!target__has_task(_target))
625 return true;
626
627 for (i = 0; i < threads->nr; i++) {
628 char path[PATH_MAX];
629
630 scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(),
631 threads->map[i].pid);
632
633 if (!stat(path, &st))
634 return true;
635 }
636
637 return false;
638}
639
Alexey Budankovbee328c2020-07-17 10:05:06 +0300640static void process_evlist(struct evlist *evlist, unsigned int interval)
641{
642 enum evlist_ctl_cmd cmd = EVLIST_CTL_CMD_UNSUPPORTED;
643
644 if (evlist__ctlfd_process(evlist, &cmd) > 0) {
645 switch (cmd) {
646 case EVLIST_CTL_CMD_ENABLE:
Alexey Budankovbee328c2020-07-17 10:05:06 +0300647 if (interval)
648 process_interval();
649 break;
650 case EVLIST_CTL_CMD_DISABLE:
651 if (interval)
652 process_interval();
Alexey Budankovbee328c2020-07-17 10:05:06 +0300653 break;
Adrian Hunterd20aff12020-09-01 12:37:57 +0300654 case EVLIST_CTL_CMD_SNAPSHOT:
Alexey Budankovbee328c2020-07-17 10:05:06 +0300655 case EVLIST_CTL_CMD_ACK:
656 case EVLIST_CTL_CMD_UNSUPPORTED:
Jiri Olsa142544a2020-12-27 00:20:36 +0100657 case EVLIST_CTL_CMD_EVLIST:
Jiri Olsaf186cd62020-12-27 00:20:37 +0100658 case EVLIST_CTL_CMD_STOP:
Jiri Olsa47fddcb2020-12-27 00:20:38 +0100659 case EVLIST_CTL_CMD_PING:
Alexey Budankovbee328c2020-07-17 10:05:06 +0300660 default:
661 break;
662 }
663 }
664}
665
666static void compute_tts(struct timespec *time_start, struct timespec *time_stop,
667 int *time_to_sleep)
668{
669 int tts = *time_to_sleep;
670 struct timespec time_diff;
671
672 diff_timespec(&time_diff, time_stop, time_start);
673
674 tts -= time_diff.tv_sec * MSEC_PER_SEC +
675 time_diff.tv_nsec / NSEC_PER_MSEC;
676
677 if (tts < 0)
678 tts = 0;
679
680 *time_to_sleep = tts;
681}
682
683static int dispatch_events(bool forks, int timeout, int interval, int *times)
Alexey Budankov987b8232020-07-17 10:04:02 +0300684{
685 int child_exited = 0, status = 0;
Alexey Budankovbee328c2020-07-17 10:05:06 +0300686 int time_to_sleep, sleep_time;
687 struct timespec time_start, time_stop;
688
689 if (interval)
690 sleep_time = interval;
691 else if (timeout)
692 sleep_time = timeout;
693 else
694 sleep_time = 1000;
695
696 time_to_sleep = sleep_time;
Alexey Budankov987b8232020-07-17 10:04:02 +0300697
698 while (!done) {
699 if (forks)
700 child_exited = waitpid(child_pid, &status, WNOHANG);
701 else
702 child_exited = !is_target_alive(&target, evsel_list->core.threads) ? 1 : 0;
703
704 if (child_exited)
705 break;
706
Alexey Budankovbee328c2020-07-17 10:05:06 +0300707 clock_gettime(CLOCK_MONOTONIC, &time_start);
708 if (!(evlist__poll(evsel_list, time_to_sleep) > 0)) { /* poll timeout or EINTR */
709 if (timeout || handle_interval(interval, times))
710 break;
711 time_to_sleep = sleep_time;
712 } else { /* fd revent */
713 process_evlist(evsel_list, interval);
714 clock_gettime(CLOCK_MONOTONIC, &time_stop);
715 compute_tts(&time_start, &time_stop, &time_to_sleep);
716 }
Alexey Budankov987b8232020-07-17 10:04:02 +0300717 }
718
719 return status;
720}
721
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800722enum counter_recovery {
723 COUNTER_SKIP,
724 COUNTER_RETRY,
725 COUNTER_FATAL,
726};
727
728static enum counter_recovery stat_handle_error(struct evsel *counter)
729{
730 char msg[BUFSIZ];
731 /*
732 * PPC returns ENXIO for HW counters until 2.6.37
733 * (behavior changed with commit b0a873e).
734 */
735 if (errno == EINVAL || errno == ENOSYS ||
736 errno == ENOENT || errno == EOPNOTSUPP ||
737 errno == ENXIO) {
738 if (verbose > 0)
739 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300740 evsel__name(counter));
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800741 counter->supported = false;
Andi Kleen4804e012019-11-20 16:15:19 -0800742 /*
743 * errored is a sticky flag that means one of the counter's
744 * cpu event had a problem and needs to be reexamined.
745 */
746 counter->errored = true;
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800747
748 if ((counter->leader != counter) ||
749 !(counter->leader->core.nr_members > 1))
750 return COUNTER_SKIP;
Arnaldo Carvalho de Meloae430892020-04-30 11:46:15 -0300751 } else if (evsel__fallback(counter, errno, msg, sizeof(msg))) {
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800752 if (verbose > 0)
753 ui__warning("%s\n", msg);
754 return COUNTER_RETRY;
755 } else if (target__has_per_thread(&target) &&
756 evsel_list->core.threads &&
757 evsel_list->core.threads->err_thread != -1) {
758 /*
759 * For global --per-thread case, skip current
760 * error thread.
761 */
762 if (!thread_map__remove(evsel_list->core.threads,
763 evsel_list->core.threads->err_thread)) {
764 evsel_list->core.threads->err_thread = -1;
765 return COUNTER_RETRY;
766 }
767 }
768
Arnaldo Carvalho de Melo2bb72db2020-05-04 13:43:03 -0300769 evsel__open_strerror(counter, &target, errno, msg, sizeof(msg));
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800770 ui__error("%s\n", msg);
771
772 if (child_pid != -1)
773 kill(child_pid, SIGTERM);
774 return COUNTER_FATAL;
775}
776
Jiri Olsae55c14a2018-04-23 11:08:21 +0200777static int __run_perf_stat(int argc, const char **argv, int run_idx)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200778{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200779 int interval = stat_config.interval;
yuzhoujiandb06a262018-01-29 10:25:22 +0100780 int times = stat_config.times;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100781 int timeout = stat_config.timeout;
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -0300782 char msg[BUFSIZ];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200783 unsigned long long t0, t1;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200784 struct evsel *counter;
Stephane Eranian410136f2013-11-12 17:58:49 +0100785 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200786 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300787 const bool forks = (argc > 0);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100788 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
Andi Kleen4804e012019-11-20 16:15:19 -0800789 struct affinity affinity;
Song Liufa853c42020-12-29 13:42:14 -0800790 int i, cpu, err;
Andi Kleen4804e012019-11-20 16:15:19 -0800791 bool second_pass = false;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200792
Liming Wang60666c62009-12-31 16:05:50 +0800793 if (forks) {
Arnaldo Carvalho de Melo7b392ef2020-11-30 09:26:54 -0300794 if (evlist__prepare_workload(evsel_list, &target, argv, is_pipe, workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900795 perror("failed to prepare workload");
796 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800797 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900798 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000799 }
800
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200801 if (group)
Arnaldo Carvalho de Meloa622eaf2020-11-30 09:22:07 -0300802 evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200803
Andi Kleen4804e012019-11-20 16:15:19 -0800804 if (affinity__setup(&affinity) < 0)
805 return -1;
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700806
Song Liu112cb562021-04-25 14:43:31 -0700807 evlist__for_each_entry(evsel_list, counter) {
808 if (bpf_counter__load(counter, &target))
809 return -1;
810 if (!evsel__is_bpf(counter))
811 all_counters_use_bpf = false;
Song Liufa853c42020-12-29 13:42:14 -0800812 }
813
Andi Kleen4804e012019-11-20 16:15:19 -0800814 evlist__for_each_cpu (evsel_list, i, cpu) {
Song Liu7fac83a2021-03-16 14:18:35 -0700815 /*
816 * bperf calls evsel__open_per_cpu() in bperf__load(), so
817 * no need to call it again here.
818 */
819 if (target.use_bpf)
820 break;
Andi Kleen4804e012019-11-20 16:15:19 -0800821 affinity__set(&affinity, cpu);
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700822
Andi Kleen4804e012019-11-20 16:15:19 -0800823 evlist__for_each_entry(evsel_list, counter) {
824 if (evsel__cpu_iter_skip(counter, cpu))
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800825 continue;
Andi Kleen4804e012019-11-20 16:15:19 -0800826 if (counter->reset_group || counter->errored)
827 continue;
Song Liu112cb562021-04-25 14:43:31 -0700828 if (evsel__is_bpf(counter))
829 continue;
Andi Kleen4804e012019-11-20 16:15:19 -0800830try_again:
831 if (create_perf_stat_counter(counter, &stat_config, &target,
832 counter->cpu_iter - 1) < 0) {
833
834 /*
835 * Weak group failed. We cannot just undo this here
836 * because earlier CPUs might be in group mode, and the kernel
837 * doesn't support mixing group and non group reads. Defer
838 * it to later.
839 * Don't close here because we're in the wrong affinity.
840 */
841 if ((errno == EINVAL || errno == EBADF) &&
842 counter->leader != counter &&
843 counter->weak_group) {
Arnaldo Carvalho de Melo64b47782020-11-30 14:58:32 -0300844 evlist__reset_weak_group(evsel_list, counter, false);
Andi Kleen4804e012019-11-20 16:15:19 -0800845 assert(counter->reset_group);
846 second_pass = true;
847 continue;
848 }
849
850 switch (stat_handle_error(counter)) {
851 case COUNTER_FATAL:
852 return -1;
853 case COUNTER_RETRY:
854 goto try_again;
855 case COUNTER_SKIP:
856 continue;
857 default:
858 break;
859 }
860
861 }
862 counter->supported = true;
863 }
864 }
865
866 if (second_pass) {
867 /*
868 * Now redo all the weak group after closing them,
869 * and also close errored counters.
870 */
871
872 evlist__for_each_cpu(evsel_list, i, cpu) {
873 affinity__set(&affinity, cpu);
874 /* First close errored or weak retry */
875 evlist__for_each_entry(evsel_list, counter) {
876 if (!counter->reset_group && !counter->errored)
877 continue;
878 if (evsel__cpu_iter_skip_no_inc(counter, cpu))
879 continue;
880 perf_evsel__close_cpu(&counter->core, counter->cpu_iter);
881 }
882 /* Now reopen weak */
883 evlist__for_each_entry(evsel_list, counter) {
884 if (!counter->reset_group && !counter->errored)
885 continue;
886 if (evsel__cpu_iter_skip(counter, cpu))
887 continue;
888 if (!counter->reset_group)
889 continue;
890try_again_reset:
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300891 pr_debug2("reopening weak %s\n", evsel__name(counter));
Andi Kleen4804e012019-11-20 16:15:19 -0800892 if (create_perf_stat_counter(counter, &stat_config, &target,
893 counter->cpu_iter - 1) < 0) {
894
895 switch (stat_handle_error(counter)) {
896 case COUNTER_FATAL:
897 return -1;
898 case COUNTER_RETRY:
899 goto try_again_reset;
900 case COUNTER_SKIP:
901 continue;
902 default:
903 break;
904 }
905 }
906 counter->supported = true;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800907 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200908 }
Andi Kleen4804e012019-11-20 16:15:19 -0800909 }
910 affinity__cleanup(&affinity);
911
912 evlist__for_each_entry(evsel_list, counter) {
913 if (!counter->supported) {
914 perf_evsel__free_fd(&counter->core);
915 continue;
916 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100917
918 l = strlen(counter->unit);
Jiri Olsadf4f7b42018-08-30 08:32:32 +0200919 if (l > stat_config.unit_width)
920 stat_config.unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100921
Arnaldo Carvalho de Meloddc69992020-05-04 13:46:34 -0300922 if (evsel__should_store_id(counter) &&
Arnaldo Carvalho de Melo34397752020-05-04 13:45:19 -0300923 evsel__store_ids(counter, evsel_list))
Jiri Olsa2af46462015-11-05 15:40:49 +0100924 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300925 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200926
Arnaldo Carvalho de Melo24bf91a2020-11-30 09:38:02 -0300927 if (evlist__apply_filters(evsel_list, &counter)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300928 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300929 counter->filter, evsel__name(counter), errno,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300930 str_error_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100931 return -1;
932 }
933
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100934 if (STAT_RECORD) {
Song Liufa853c42020-12-29 13:42:14 -0800935 int fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100936
Jiri Olsa664c98d2015-11-05 15:40:50 +0100937 if (is_pipe) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100938 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
Jiri Olsa664c98d2015-11-05 15:40:50 +0100939 } else {
940 err = perf_session__write_header(perf_stat.session, evsel_list,
941 fd, false);
942 }
943
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100944 if (err < 0)
945 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100946
Arnaldo Carvalho de Melob2518922019-09-10 17:17:33 +0100947 err = perf_event__synthesize_stat_events(&stat_config, NULL, evsel_list,
948 process_synthesized_event, is_pipe);
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100949 if (err < 0)
950 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100951 }
952
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200953 /*
954 * Enable counters and exec the command:
955 */
Liming Wang60666c62009-12-31 16:05:50 +0800956 if (forks) {
Arnaldo Carvalho de Melo7b392ef2020-11-30 09:26:54 -0300957 evlist__start_workload(evsel_list);
Song Liufa853c42020-12-29 13:42:14 -0800958 err = enable_counters();
959 if (err)
960 return -1;
Namhyung Kimacf28922013-03-11 16:43:18 +0900961
Song Liu435b46e2021-03-16 14:18:36 -0700962 t0 = rdclock();
963 clock_gettime(CLOCK_MONOTONIC, &ref_time);
964
Alexey Budankov27e97692020-07-17 10:05:41 +0300965 if (interval || timeout || evlist__ctlfd_initialized(evsel_list))
Alexey Budankovbee328c2020-07-17 10:05:06 +0300966 status = dispatch_events(forks, timeout, interval, &times);
Arnaldo Carvalho de Melocfbd41b2020-04-15 12:31:26 -0300967 if (child_pid != -1) {
968 if (timeout)
969 kill(child_pid, SIGTERM);
Jin Yao8a992552019-01-03 15:40:45 +0800970 wait4(child_pid, &status, 0, &stat_config.ru_data);
Arnaldo Carvalho de Melocfbd41b2020-04-15 12:31:26 -0300971 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300972
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300973 if (workload_exec_errno) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300974 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300975 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300976 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300977 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300978
Andi Kleen33e49ea2011-09-15 14:31:40 -0700979 if (WIFSIGNALED(status))
980 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800981 } else {
Song Liufa853c42020-12-29 13:42:14 -0800982 err = enable_counters();
983 if (err)
984 return -1;
Song Liu435b46e2021-03-16 14:18:36 -0700985
986 t0 = rdclock();
987 clock_gettime(CLOCK_MONOTONIC, &ref_time);
988
Alexey Budankovbee328c2020-07-17 10:05:06 +0300989 status = dispatch_events(forks, timeout, interval, &times);
Liming Wang60666c62009-12-31 16:05:50 +0800990 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200991
Mark Rutland3df33ef2016-08-09 14:04:29 +0100992 disable_counters();
993
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200994 t1 = rdclock();
995
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200996 if (stat_config.walltime_run_table)
997 stat_config.walltime_run[run_idx] = t1 - t0;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200998
Jin Yaoee6a9612020-09-03 09:01:13 +0800999 if (interval && stat_config.summary) {
Jin Yaoc7e5b322020-05-20 12:27:37 +08001000 stat_config.interval = 0;
Jin Yaoee6a9612020-09-03 09:01:13 +08001001 stat_config.stop_read_counter = true;
Jin Yaoc7e5b322020-05-20 12:27:37 +08001002 init_stats(&walltime_nsecs_stats);
1003 update_stats(&walltime_nsecs_stats, t1 - t0);
1004
1005 if (stat_config.aggr_mode == AGGR_GLOBAL)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03001006 evlist__save_aggr_prev_raw_counts(evsel_list);
Jin Yaoc7e5b322020-05-20 12:27:37 +08001007
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03001008 evlist__copy_prev_raw_counts(evsel_list);
1009 evlist__reset_prev_raw_counts(evsel_list);
Jin Yaoc7e5b322020-05-20 12:27:37 +08001010 runtime_stat_reset(&stat_config);
1011 perf_stat__reset_shadow_per_stat(&rt_stat);
1012 } else
1013 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001014
Mark Rutland3df33ef2016-08-09 14:04:29 +01001015 /*
1016 * Closing a group leader splits the group, and as we only disable
1017 * group leaders, results in remaining events becoming enabled. To
1018 * avoid arbitrary skew, we must read all counters before closing any
1019 * group leaders.
1020 */
Andi Kleenf0fbb112019-03-26 15:18:21 -07001021 read_counters(&(struct timespec) { .tv_nsec = t1-t0 });
Jiri Olsa08ef3af2019-07-15 16:21:21 +02001022
1023 /*
1024 * We need to keep evsel_list alive, because it's processed
1025 * later the evsel_list will be closed after.
1026 */
1027 if (!STAT_RECORD)
Jiri Olsa750b4ed2019-07-21 13:24:07 +02001028 evlist__close(evsel_list);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001029
Ingo Molnar42202dd2009-06-13 14:57:28 +02001030 return WEXITSTATUS(status);
1031}
1032
Jiri Olsae55c14a2018-04-23 11:08:21 +02001033static int run_perf_stat(int argc, const char **argv, int run_idx)
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001034{
1035 int ret;
1036
1037 if (pre_cmd) {
1038 ret = system(pre_cmd);
1039 if (ret)
1040 return ret;
1041 }
1042
1043 if (sync_run)
1044 sync();
1045
Jiri Olsae55c14a2018-04-23 11:08:21 +02001046 ret = __run_perf_stat(argc, argv, run_idx);
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001047 if (ret)
1048 return ret;
1049
1050 if (post_cmd) {
1051 ret = system(post_cmd);
1052 if (ret)
1053 return ret;
1054 }
1055
1056 return ret;
1057}
1058
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001059static void print_counters(struct timespec *ts, int argc, const char **argv)
1060{
Jiri Olsa01748202018-08-30 08:32:25 +02001061 /* Do not print anything if we record to the pipe. */
1062 if (STAT_RECORD && perf_stat.data.is_pipe)
1063 return;
Andi Kleen55a4de92020-10-26 17:27:36 -07001064 if (stat_config.quiet)
1065 return;
Jiri Olsa01748202018-08-30 08:32:25 +02001066
Arnaldo Carvalho de Melo71273722020-11-30 14:55:12 -03001067 evlist__print_counters(evsel_list, &stat_config, &target, ts, argc, argv);
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001068}
1069
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001070static volatile int signr = -1;
1071
Ingo Molnar52425192009-05-26 09:17:18 +02001072static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001073{
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001074 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +08001075 done = 1;
1076
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001077 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001078 /*
1079 * render child_pid harmless
1080 * won't send SIGTERM to a random
1081 * process in case of race condition
1082 * and fast PID recycling
1083 */
1084 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001085}
1086
1087static void sig_atexit(void)
1088{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001089 sigset_t set, oset;
1090
1091 /*
1092 * avoid race condition with SIGCHLD handler
1093 * in skip_signal() which is modifying child_pid
1094 * goal is to avoid send SIGTERM to a random
1095 * process
1096 */
1097 sigemptyset(&set);
1098 sigaddset(&set, SIGCHLD);
1099 sigprocmask(SIG_BLOCK, &set, &oset);
1100
Chris Wilson933da832009-10-04 01:35:01 +01001101 if (child_pid != -1)
1102 kill(child_pid, SIGTERM);
1103
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001104 sigprocmask(SIG_SETMASK, &oset, NULL);
1105
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001106 if (signr == -1)
1107 return;
1108
1109 signal(signr, SIG_DFL);
1110 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001111}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001112
Paul A. Clarked778a772020-05-20 11:23:35 -05001113void perf_stat__set_big_num(int set)
1114{
1115 stat_config.big_num = (set != 0);
1116}
1117
Jin Yao0bdad972021-03-19 15:01:55 +08001118void perf_stat__set_no_csv_summary(int set)
1119{
1120 stat_config.no_csv_summary = (set != 0);
1121}
1122
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001123static int stat__set_big_num(const struct option *opt __maybe_unused,
1124 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001125{
1126 big_num_opt = unset ? 0 : 1;
Paul A. Clarked778a772020-05-20 11:23:35 -05001127 perf_stat__set_big_num(!unset);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001128 return 0;
1129}
1130
Andi Kleen44b1e602016-05-30 12:49:42 -03001131static int enable_metric_only(const struct option *opt __maybe_unused,
1132 const char *s __maybe_unused, int unset)
1133{
1134 force_metric_only = true;
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001135 stat_config.metric_only = !unset;
Andi Kleen44b1e602016-05-30 12:49:42 -03001136 return 0;
1137}
1138
Andi Kleenb18f3e32017-08-31 12:40:31 -07001139static int parse_metric_groups(const struct option *opt,
1140 const char *str,
1141 int unset __maybe_unused)
1142{
Ian Rogers05530a72020-05-20 11:20:10 -07001143 return metricgroup__parse_groups(opt, str,
1144 stat_config.metric_no_group,
1145 stat_config.metric_no_merge,
1146 &stat_config.metric_events);
Andi Kleenb18f3e32017-08-31 12:40:31 -07001147}
1148
Alexey Budankov27e97692020-07-17 10:05:41 +03001149static int parse_control_option(const struct option *opt,
1150 const char *str,
1151 int unset __maybe_unused)
1152{
Adrian Hunter9864a662020-09-01 12:37:53 +03001153 struct perf_stat_config *config = opt->value;
Alexey Budankov27e97692020-07-17 10:05:41 +03001154
Adrian Huntera8fcbd22020-09-02 13:57:07 +03001155 return evlist__parse_control(str, &config->ctl_fd, &config->ctl_fd_ack, &config->ctl_fd_close);
1156}
1157
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09001158static int parse_stat_cgroups(const struct option *opt,
1159 const char *str, int unset)
1160{
1161 if (stat_config.cgroup_list) {
1162 pr_err("--cgroup and --for-each-cgroup cannot be used together\n");
1163 return -1;
1164 }
1165
1166 return parse_cgroups(opt, str, unset);
1167}
1168
Michael Petlan51433ea2018-12-10 11:00:04 -05001169static struct option stat_options[] = {
Jiri Olsae0547312015-11-05 15:40:45 +01001170 OPT_BOOLEAN('T', "transaction", &transaction_run,
1171 "hardware transaction statistics"),
1172 OPT_CALLBACK('e', "event", &evsel_list, "event",
1173 "event selector. use 'perf list' to list available events",
1174 parse_events_option),
1175 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1176 "event filter", parse_filter),
Jiri Olsa5698f262018-08-30 08:32:12 +02001177 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
Jiri Olsae0547312015-11-05 15:40:45 +01001178 "child tasks do not inherit counters"),
1179 OPT_STRING('p', "pid", &target.pid, "pid",
1180 "stat events on existing process id"),
1181 OPT_STRING('t', "tid", &target.tid, "tid",
1182 "stat events on existing thread id"),
Song Liufa853c42020-12-29 13:42:14 -08001183#ifdef HAVE_BPF_SKEL
1184 OPT_STRING('b', "bpf-prog", &target.bpf_str, "bpf-prog-id",
1185 "stat events on existing bpf program id"),
Song Liu7fac83a2021-03-16 14:18:35 -07001186 OPT_BOOLEAN(0, "bpf-counters", &target.use_bpf,
1187 "use bpf program to count events"),
1188 OPT_STRING(0, "bpf-attr-map", &target.attr_map, "attr-map-path",
1189 "path to perf_event_attr map"),
Song Liufa853c42020-12-29 13:42:14 -08001190#endif
Jiri Olsae0547312015-11-05 15:40:45 +01001191 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1192 "system-wide collection from all CPUs"),
1193 OPT_BOOLEAN('g', "group", &group,
1194 "put the counters into a counter group"),
Andi Kleen75998bb2019-03-14 15:50:01 -07001195 OPT_BOOLEAN(0, "scale", &stat_config.scale,
1196 "Use --no-scale to disable counter scaling for multiplexing"),
Jiri Olsae0547312015-11-05 15:40:45 +01001197 OPT_INCR('v', "verbose", &verbose,
1198 "be more verbose (show counter open errors, etc)"),
Jiri Olsad97ae042018-08-30 08:32:36 +02001199 OPT_INTEGER('r', "repeat", &stat_config.run_count,
Jiri Olsae0547312015-11-05 15:40:45 +01001200 "repeat command and print average + stddev (max: 100, forever: 0)"),
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001201 OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table,
Jiri Olsae55c14a2018-04-23 11:08:21 +02001202 "display details about each run (only with -r option)"),
Jiri Olsaaea0dca2018-08-30 08:32:41 +02001203 OPT_BOOLEAN('n', "null", &stat_config.null_run,
Jiri Olsae0547312015-11-05 15:40:45 +01001204 "null run - dont start any counters"),
1205 OPT_INCR('d', "detailed", &detailed_run,
1206 "detailed run - start a lot of events"),
1207 OPT_BOOLEAN('S', "sync", &sync_run,
1208 "call sync() before starting a run"),
1209 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1210 "print large numbers with thousands\' separators",
1211 stat__set_big_num),
1212 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1213 "list of cpus to monitor in system-wide"),
1214 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
1215 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsafdee3352018-08-30 08:32:48 +02001216 OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"),
Jiri Olsafa7070a2018-08-30 08:32:29 +02001217 OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator",
Jiri Olsae0547312015-11-05 15:40:45 +01001218 "print counts with custom separator"),
1219 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09001220 "monitor event in cgroup name only", parse_stat_cgroups),
1221 OPT_STRING(0, "for-each-cgroup", &stat_config.cgroup_list, "name",
1222 "expand events for each cgroup"),
Jiri Olsae0547312015-11-05 15:40:45 +01001223 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1224 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1225 OPT_INTEGER(0, "log-fd", &output_fd,
1226 "log output to fd, instead of stderr"),
1227 OPT_STRING(0, "pre", &pre_cmd, "command",
1228 "command to run prior to the measured command"),
1229 OPT_STRING(0, "post", &post_cmd, "command",
1230 "command to run after to the measured command"),
1231 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Alexey Budankov9dc9a952018-04-03 21:18:33 +03001232 "print counts at regular interval in ms "
1233 "(overhead is possible for values <= 100ms)"),
yuzhoujiandb06a262018-01-29 10:25:22 +01001234 OPT_INTEGER(0, "interval-count", &stat_config.times,
1235 "print counts for fixed number of times"),
Jiri Olsa132c6ba2018-08-30 08:32:30 +02001236 OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear,
Jiri Olsa9660e082018-06-07 00:15:06 +02001237 "clear screen in between new interval"),
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001238 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
1239 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
Jiri Olsae0547312015-11-05 15:40:45 +01001240 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
1241 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -07001242 OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode,
1243 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsae0547312015-11-05 15:40:45 +01001244 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
1245 "aggregate counts per physical processor core", AGGR_CORE),
1246 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
1247 "aggregate counts per thread", AGGR_THREAD),
Jiri Olsa86895b42019-08-28 10:17:43 +02001248 OPT_SET_UINT(0, "per-node", &stat_config.aggr_mode,
1249 "aggregate counts per numa node", AGGR_NODE),
Alexey Budankov2162b9c2020-07-17 10:04:33 +03001250 OPT_INTEGER('D', "delay", &stat_config.initial_delay,
1251 "ms to wait before starting measurement after program start (-1: start with events disabled)"),
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001252 OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL,
Andi Kleen44b1e602016-05-30 12:49:42 -03001253 "Only print computed metrics. No raw values", enable_metric_only),
Ian Rogers05530a72020-05-20 11:20:10 -07001254 OPT_BOOLEAN(0, "metric-no-group", &stat_config.metric_no_group,
1255 "don't group metric events, impacts multiplexing"),
1256 OPT_BOOLEAN(0, "metric-no-merge", &stat_config.metric_no_merge,
1257 "don't try to share events between metrics in a group"),
Andi Kleen44b1e602016-05-30 12:49:42 -03001258 OPT_BOOLEAN(0, "topdown", &topdown_run,
Kan Liang63e39aa2021-02-02 12:09:12 -08001259 "measure top-down statistics"),
1260 OPT_UINTEGER(0, "td-level", &stat_config.topdown_level,
1261 "Set the metrics level for the top-down statistics (0: max level)"),
Kan Liangdaefd0b2017-05-26 12:05:38 -07001262 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
1263 "measure SMI cost"),
Andi Kleenb18f3e32017-08-31 12:40:31 -07001264 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
1265 "monitor specified metrics or metric groups (separated by ,)",
1266 parse_metric_groups),
Jin Yaodd071022019-10-11 13:05:45 +08001267 OPT_BOOLEAN_FLAG(0, "all-kernel", &stat_config.all_kernel,
1268 "Configure all used events to run in kernel space.",
1269 PARSE_OPT_EXCLUSIVE),
1270 OPT_BOOLEAN_FLAG(0, "all-user", &stat_config.all_user,
1271 "Configure all used events to run in user space.",
1272 PARSE_OPT_EXCLUSIVE),
Jin Yao1af62ce2020-02-14 16:04:52 +08001273 OPT_BOOLEAN(0, "percore-show-thread", &stat_config.percore_show_thread,
1274 "Use with 'percore' event qualifier to show the event "
1275 "counts of one hardware thread by sum up total hardware "
1276 "threads of same physical core"),
Jin Yaoee6a9612020-09-03 09:01:13 +08001277 OPT_BOOLEAN(0, "summary", &stat_config.summary,
1278 "print summary for interval mode"),
Jin Yao0bdad972021-03-19 15:01:55 +08001279 OPT_BOOLEAN(0, "no-csv-summary", &stat_config.no_csv_summary,
1280 "don't print 'summary' for CSV summary output"),
Andi Kleen55a4de92020-10-26 17:27:36 -07001281 OPT_BOOLEAN(0, "quiet", &stat_config.quiet,
1282 "don't print output (useful with record)"),
Stephane Eranian70943492020-05-05 11:29:43 -07001283#ifdef HAVE_LIBPFM
1284 OPT_CALLBACK(0, "pfm-events", &evsel_list, "event",
1285 "libpfm4 event selector. use 'perf list' to list available events",
1286 parse_libpfm_events_option),
1287#endif
Adrian Huntera8fcbd22020-09-02 13:57:07 +03001288 OPT_CALLBACK(0, "control", &stat_config, "fd:ctl-fd[,ack-fd] or fifo:ctl-fifo[,ack-fifo]",
Alexey Budankov27e97692020-07-17 10:05:41 +03001289 "Listen on ctl-fd descriptor for command to control measurement ('enable': enable events, 'disable': disable events).\n"
Adrian Huntera8fcbd22020-09-02 13:57:07 +03001290 "\t\t\t Optionally send control command completion ('ack\\n') to ack-fd descriptor.\n"
1291 "\t\t\t Alternatively, ctl-fifo / ack-fifo will be opened and used as ctl-fd / ack-fd.",
Alexey Budankov27e97692020-07-17 10:05:41 +03001292 parse_control_option),
Alexander Antonovf07952b2021-04-19 12:41:44 +03001293 OPT_CALLBACK_OPTARG(0, "iostat", &evsel_list, &stat_config, "default",
1294 "measure I/O performance metrics provided by arch/platform",
1295 iostat_parse),
Jiri Olsae0547312015-11-05 15:40:45 +01001296 OPT_END()
1297};
1298
James Clark2760f5a12020-11-26 16:13:20 +02001299static struct aggr_cpu_id perf_stat__get_socket(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001300 struct perf_cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +02001301{
1302 return cpu_map__get_socket(map, cpu, NULL);
1303}
1304
James Clark2760f5a12020-11-26 16:13:20 +02001305static struct aggr_cpu_id perf_stat__get_die(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001306 struct perf_cpu_map *map, int cpu)
Kan Liangdb5742b2019-06-04 15:50:42 -07001307{
1308 return cpu_map__get_die(map, cpu, NULL);
1309}
1310
James Clark2760f5a12020-11-26 16:13:20 +02001311static struct aggr_cpu_id perf_stat__get_core(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001312 struct perf_cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +02001313{
1314 return cpu_map__get_core(map, cpu, NULL);
1315}
1316
James Clark2760f5a12020-11-26 16:13:20 +02001317static struct aggr_cpu_id perf_stat__get_node(struct perf_stat_config *config __maybe_unused,
Jiri Olsa86895b42019-08-28 10:17:43 +02001318 struct perf_cpu_map *map, int cpu)
1319{
1320 return cpu_map__get_node(map, cpu, NULL);
1321}
1322
James Clark2760f5a12020-11-26 16:13:20 +02001323static struct aggr_cpu_id perf_stat__get_aggr(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +02001324 aggr_get_id_t get_id, struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001325{
1326 int cpu;
James Clark2760f5a12020-11-26 16:13:20 +02001327 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001328
1329 if (idx >= map->nr)
James Clark2760f5a12020-11-26 16:13:20 +02001330 return id;
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001331
1332 cpu = map->map[idx];
1333
James Clarkff523292020-11-26 16:13:23 +02001334 if (cpu_map__aggr_cpu_id_is_empty(config->cpus_aggr_map->map[cpu]))
1335 config->cpus_aggr_map->map[cpu] = get_id(config, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001336
James Clarkff523292020-11-26 16:13:23 +02001337 id = config->cpus_aggr_map->map[cpu];
James Clark2760f5a12020-11-26 16:13:20 +02001338 return id;
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001339}
1340
James Clark2760f5a12020-11-26 16:13:20 +02001341static struct aggr_cpu_id perf_stat__get_socket_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +02001342 struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001343{
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001344 return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001345}
1346
James Clark2760f5a12020-11-26 16:13:20 +02001347static struct aggr_cpu_id perf_stat__get_die_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +02001348 struct perf_cpu_map *map, int idx)
Kan Liangdb5742b2019-06-04 15:50:42 -07001349{
1350 return perf_stat__get_aggr(config, perf_stat__get_die, map, idx);
1351}
1352
James Clark2760f5a12020-11-26 16:13:20 +02001353static struct aggr_cpu_id perf_stat__get_core_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +02001354 struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001355{
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001356 return perf_stat__get_aggr(config, perf_stat__get_core, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001357}
1358
James Clark2760f5a12020-11-26 16:13:20 +02001359static struct aggr_cpu_id perf_stat__get_node_cached(struct perf_stat_config *config,
Jiri Olsa86895b42019-08-28 10:17:43 +02001360 struct perf_cpu_map *map, int idx)
1361{
1362 return perf_stat__get_aggr(config, perf_stat__get_node, map, idx);
1363}
1364
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001365static bool term_percore_set(void)
1366{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001367 struct evsel *counter;
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001368
1369 evlist__for_each_entry(evsel_list, counter) {
1370 if (counter->percore)
1371 return true;
1372 }
1373
1374 return false;
1375}
1376
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001377static int perf_stat_init_aggr_mode(void)
1378{
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001379 int nr;
1380
Jiri Olsa421a50f2015-07-21 14:31:22 +02001381 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001382 case AGGR_SOCKET:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001383 if (cpu_map__build_socket_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001384 perror("cannot build socket map");
1385 return -1;
1386 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001387 stat_config.aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001388 break;
Kan Liangdb5742b2019-06-04 15:50:42 -07001389 case AGGR_DIE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001390 if (cpu_map__build_die_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Kan Liangdb5742b2019-06-04 15:50:42 -07001391 perror("cannot build die map");
1392 return -1;
1393 }
1394 stat_config.aggr_get_id = perf_stat__get_die_cached;
1395 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001396 case AGGR_CORE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001397 if (cpu_map__build_core_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Stephane Eranian12c08a92013-02-14 13:57:29 +01001398 perror("cannot build core map");
1399 return -1;
1400 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001401 stat_config.aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001402 break;
Jiri Olsa86895b42019-08-28 10:17:43 +02001403 case AGGR_NODE:
1404 if (cpu_map__build_node_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
1405 perror("cannot build core map");
1406 return -1;
1407 }
1408 stat_config.aggr_get_id = perf_stat__get_node_cached;
1409 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001410 case AGGR_NONE:
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001411 if (term_percore_set()) {
Jiri Olsaf72f9012019-07-21 13:24:41 +02001412 if (cpu_map__build_core_map(evsel_list->core.cpus,
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001413 &stat_config.aggr_map)) {
1414 perror("cannot build core map");
1415 return -1;
1416 }
1417 stat_config.aggr_get_id = perf_stat__get_core_cached;
1418 }
1419 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001420 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02001421 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +02001422 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001423 default:
1424 break;
1425 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001426
1427 /*
1428 * The evsel_list->cpus is the base we operate on,
1429 * taking the highest cpu number to be the size of
1430 * the aggregation translate cpumap.
1431 */
Jiri Olsa4256d432019-09-02 14:12:53 +02001432 nr = perf_cpu_map__max(evsel_list->core.cpus);
James Clarkd526e1a2020-11-26 16:13:22 +02001433 stat_config.cpus_aggr_map = cpu_aggr_map__empty_new(nr + 1);
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001434 return stat_config.cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001435}
1436
James Clarkd526e1a2020-11-26 16:13:22 +02001437static void cpu_aggr_map__delete(struct cpu_aggr_map *map)
1438{
1439 if (map) {
1440 WARN_ONCE(refcount_read(&map->refcnt) != 0,
1441 "cpu_aggr_map refcnt unbalanced\n");
1442 free(map);
1443 }
1444}
1445
1446static void cpu_aggr_map__put(struct cpu_aggr_map *map)
1447{
1448 if (map && refcount_dec_and_test(&map->refcnt))
1449 cpu_aggr_map__delete(map);
1450}
1451
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09001452static void perf_stat__exit_aggr_mode(void)
1453{
James Clarkd526e1a2020-11-26 16:13:22 +02001454 cpu_aggr_map__put(stat_config.aggr_map);
1455 cpu_aggr_map__put(stat_config.cpus_aggr_map);
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001456 stat_config.aggr_map = NULL;
1457 stat_config.cpus_aggr_map = NULL;
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09001458}
1459
Jiri Olsaf8548392019-07-21 13:23:49 +02001460static inline int perf_env__get_cpu(struct perf_env *env, struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001461{
1462 int cpu;
1463
1464 if (idx > map->nr)
1465 return -1;
1466
1467 cpu = map->map[idx];
1468
Jan Stancekda8a58b2017-02-17 12:10:26 +01001469 if (cpu >= env->nr_cpus_avail)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001470 return -1;
1471
1472 return cpu;
1473}
1474
James Clark2760f5a12020-11-26 16:13:20 +02001475static struct aggr_cpu_id perf_env__get_socket(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001476{
1477 struct perf_env *env = data;
1478 int cpu = perf_env__get_cpu(env, map, idx);
James Clark2760f5a12020-11-26 16:13:20 +02001479 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Jiri Olsa68d702f2015-11-05 15:40:58 +01001480
James Clark2760f5a12020-11-26 16:13:20 +02001481 if (cpu != -1)
James Clark1a270cb2020-11-26 16:13:25 +02001482 id.socket = env->cpu[cpu].socket_id;
James Clark2760f5a12020-11-26 16:13:20 +02001483
1484 return id;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001485}
1486
James Clark2760f5a12020-11-26 16:13:20 +02001487static struct aggr_cpu_id perf_env__get_die(struct perf_cpu_map *map, int idx, void *data)
Kan Liangdb5742b2019-06-04 15:50:42 -07001488{
1489 struct perf_env *env = data;
James Clark2760f5a12020-11-26 16:13:20 +02001490 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
1491 int cpu = perf_env__get_cpu(env, map, idx);
Kan Liangdb5742b2019-06-04 15:50:42 -07001492
1493 if (cpu != -1) {
1494 /*
James Clark1a270cb2020-11-26 16:13:25 +02001495 * die_id is relative to socket, so start
1496 * with the socket ID and then add die to
1497 * make a unique ID.
Kan Liangdb5742b2019-06-04 15:50:42 -07001498 */
James Clark1a270cb2020-11-26 16:13:25 +02001499 id.socket = env->cpu[cpu].socket_id;
James Clarkba2ee162020-11-26 16:13:26 +02001500 id.die = env->cpu[cpu].die_id;
Kan Liangdb5742b2019-06-04 15:50:42 -07001501 }
1502
James Clark2760f5a12020-11-26 16:13:20 +02001503 return id;
Kan Liangdb5742b2019-06-04 15:50:42 -07001504}
1505
James Clark2760f5a12020-11-26 16:13:20 +02001506static struct aggr_cpu_id perf_env__get_core(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001507{
1508 struct perf_env *env = data;
James Clark2760f5a12020-11-26 16:13:20 +02001509 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
1510 int cpu = perf_env__get_cpu(env, map, idx);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001511
1512 if (cpu != -1) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001513 /*
Kan Liangdb5742b2019-06-04 15:50:42 -07001514 * core_id is relative to socket and die,
James Clarkb9933812020-11-26 16:13:27 +02001515 * we need a global id. So we set
1516 * socket, die id and core id
Jiri Olsa68d702f2015-11-05 15:40:58 +01001517 */
James Clark1a270cb2020-11-26 16:13:25 +02001518 id.socket = env->cpu[cpu].socket_id;
James Clarkba2ee162020-11-26 16:13:26 +02001519 id.die = env->cpu[cpu].die_id;
James Clarkb9933812020-11-26 16:13:27 +02001520 id.core = env->cpu[cpu].core_id;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001521 }
1522
James Clark2760f5a12020-11-26 16:13:20 +02001523 return id;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001524}
1525
James Clark2760f5a12020-11-26 16:13:20 +02001526static struct aggr_cpu_id perf_env__get_node(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa86895b42019-08-28 10:17:43 +02001527{
1528 int cpu = perf_env__get_cpu(data, map, idx);
James Clark2760f5a12020-11-26 16:13:20 +02001529 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Jiri Olsa86895b42019-08-28 10:17:43 +02001530
James Clarkfcd83a32020-11-26 16:13:24 +02001531 id.node = perf_env__numa_node(data, cpu);
James Clark2760f5a12020-11-26 16:13:20 +02001532 return id;
Jiri Olsa86895b42019-08-28 10:17:43 +02001533}
1534
Jiri Olsaf8548392019-07-21 13:23:49 +02001535static int perf_env__build_socket_map(struct perf_env *env, struct perf_cpu_map *cpus,
James Clarkd526e1a2020-11-26 16:13:22 +02001536 struct cpu_aggr_map **sockp)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001537{
1538 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
1539}
1540
Jiri Olsaf8548392019-07-21 13:23:49 +02001541static int perf_env__build_die_map(struct perf_env *env, struct perf_cpu_map *cpus,
James Clarkd526e1a2020-11-26 16:13:22 +02001542 struct cpu_aggr_map **diep)
Kan Liangdb5742b2019-06-04 15:50:42 -07001543{
1544 return cpu_map__build_map(cpus, diep, perf_env__get_die, env);
1545}
1546
Jiri Olsaf8548392019-07-21 13:23:49 +02001547static int perf_env__build_core_map(struct perf_env *env, struct perf_cpu_map *cpus,
James Clarkd526e1a2020-11-26 16:13:22 +02001548 struct cpu_aggr_map **corep)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001549{
1550 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
1551}
1552
Jiri Olsa86895b42019-08-28 10:17:43 +02001553static int perf_env__build_node_map(struct perf_env *env, struct perf_cpu_map *cpus,
James Clarkd526e1a2020-11-26 16:13:22 +02001554 struct cpu_aggr_map **nodep)
Jiri Olsa86895b42019-08-28 10:17:43 +02001555{
1556 return cpu_map__build_map(cpus, nodep, perf_env__get_node, env);
1557}
1558
James Clark2760f5a12020-11-26 16:13:20 +02001559static struct aggr_cpu_id perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001560 struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001561{
1562 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
1563}
James Clark2760f5a12020-11-26 16:13:20 +02001564static struct aggr_cpu_id perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001565 struct perf_cpu_map *map, int idx)
Kan Liangdb5742b2019-06-04 15:50:42 -07001566{
1567 return perf_env__get_die(map, idx, &perf_stat.session->header.env);
1568}
Jiri Olsa68d702f2015-11-05 15:40:58 +01001569
James Clark2760f5a12020-11-26 16:13:20 +02001570static struct aggr_cpu_id perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001571 struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001572{
1573 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
1574}
1575
James Clark2760f5a12020-11-26 16:13:20 +02001576static struct aggr_cpu_id perf_stat__get_node_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsa86895b42019-08-28 10:17:43 +02001577 struct perf_cpu_map *map, int idx)
1578{
1579 return perf_env__get_node(map, idx, &perf_stat.session->header.env);
1580}
1581
Jiri Olsa68d702f2015-11-05 15:40:58 +01001582static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
1583{
1584 struct perf_env *env = &st->session->header.env;
1585
1586 switch (stat_config.aggr_mode) {
1587 case AGGR_SOCKET:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001588 if (perf_env__build_socket_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001589 perror("cannot build socket map");
1590 return -1;
1591 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001592 stat_config.aggr_get_id = perf_stat__get_socket_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001593 break;
Kan Liangdb5742b2019-06-04 15:50:42 -07001594 case AGGR_DIE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001595 if (perf_env__build_die_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Kan Liangdb5742b2019-06-04 15:50:42 -07001596 perror("cannot build die map");
1597 return -1;
1598 }
1599 stat_config.aggr_get_id = perf_stat__get_die_file;
1600 break;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001601 case AGGR_CORE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001602 if (perf_env__build_core_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001603 perror("cannot build core map");
1604 return -1;
1605 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001606 stat_config.aggr_get_id = perf_stat__get_core_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001607 break;
Jiri Olsa86895b42019-08-28 10:17:43 +02001608 case AGGR_NODE:
1609 if (perf_env__build_node_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
1610 perror("cannot build core map");
1611 return -1;
1612 }
1613 stat_config.aggr_get_id = perf_stat__get_node_file;
1614 break;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001615 case AGGR_NONE:
1616 case AGGR_GLOBAL:
1617 case AGGR_THREAD:
1618 case AGGR_UNSET:
1619 default:
1620 break;
1621 }
1622
1623 return 0;
1624}
1625
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001626/*
1627 * Add default attributes, if there were no attributes specified or
1628 * if -d/--detailed, -d -d or -d -d -d is used:
1629 */
1630static int add_default_attributes(void)
1631{
Andi Kleen44b1e602016-05-30 12:49:42 -03001632 int err;
Andi Kleen9dec4472016-02-26 16:27:56 -08001633 struct perf_event_attr default_attrs0[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001634
1635 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1636 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1637 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1638 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1639
1640 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Andi Kleen9dec4472016-02-26 16:27:56 -08001641};
1642 struct perf_event_attr frontend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001643 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001644};
1645 struct perf_event_attr backend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001646 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001647};
1648 struct perf_event_attr default_attrs1[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001649 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1650 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1651 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1652
1653};
Jin Yaoac2dc292021-04-27 15:01:27 +08001654 struct perf_event_attr default_sw_attrs[] = {
1655 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1656 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1657 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1658 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1659};
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001660
1661/*
1662 * Detailed stats (-d), covering the L1 and last level data caches:
1663 */
1664 struct perf_event_attr detailed_attrs[] = {
1665
1666 { .type = PERF_TYPE_HW_CACHE,
1667 .config =
1668 PERF_COUNT_HW_CACHE_L1D << 0 |
1669 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1670 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1671
1672 { .type = PERF_TYPE_HW_CACHE,
1673 .config =
1674 PERF_COUNT_HW_CACHE_L1D << 0 |
1675 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1676 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1677
1678 { .type = PERF_TYPE_HW_CACHE,
1679 .config =
1680 PERF_COUNT_HW_CACHE_LL << 0 |
1681 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1682 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1683
1684 { .type = PERF_TYPE_HW_CACHE,
1685 .config =
1686 PERF_COUNT_HW_CACHE_LL << 0 |
1687 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1688 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1689};
1690
1691/*
1692 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1693 */
1694 struct perf_event_attr very_detailed_attrs[] = {
1695
1696 { .type = PERF_TYPE_HW_CACHE,
1697 .config =
1698 PERF_COUNT_HW_CACHE_L1I << 0 |
1699 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1700 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1701
1702 { .type = PERF_TYPE_HW_CACHE,
1703 .config =
1704 PERF_COUNT_HW_CACHE_L1I << 0 |
1705 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1706 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1707
1708 { .type = PERF_TYPE_HW_CACHE,
1709 .config =
1710 PERF_COUNT_HW_CACHE_DTLB << 0 |
1711 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1712 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1713
1714 { .type = PERF_TYPE_HW_CACHE,
1715 .config =
1716 PERF_COUNT_HW_CACHE_DTLB << 0 |
1717 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1718 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1719
1720 { .type = PERF_TYPE_HW_CACHE,
1721 .config =
1722 PERF_COUNT_HW_CACHE_ITLB << 0 |
1723 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1724 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1725
1726 { .type = PERF_TYPE_HW_CACHE,
1727 .config =
1728 PERF_COUNT_HW_CACHE_ITLB << 0 |
1729 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1730 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1731
1732};
1733
1734/*
1735 * Very, very detailed stats (-d -d -d), adding prefetch events:
1736 */
1737 struct perf_event_attr very_very_detailed_attrs[] = {
1738
1739 { .type = PERF_TYPE_HW_CACHE,
1740 .config =
1741 PERF_COUNT_HW_CACHE_L1D << 0 |
1742 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1743 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1744
1745 { .type = PERF_TYPE_HW_CACHE,
1746 .config =
1747 PERF_COUNT_HW_CACHE_L1D << 0 |
1748 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1749 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1750};
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001751 struct parse_events_error errinfo;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001752
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001753 /* Set attrs if no event is selected and !null_run: */
Jiri Olsaaea0dca2018-08-30 08:32:41 +02001754 if (stat_config.null_run)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001755 return 0;
1756
Ian Rogersa910e462019-11-15 23:46:52 -08001757 bzero(&errinfo, sizeof(errinfo));
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001758 if (transaction_run) {
Thomas Richter742d92f2018-06-26 09:17:01 +02001759 /* Handle -T as -M transaction. Once platform specific metrics
Ingo Molnar4d39c892021-03-23 17:09:15 +01001760 * support has been added to the json files, all architectures
Thomas Richter742d92f2018-06-26 09:17:01 +02001761 * will use this approach. To determine transaction support
1762 * on an architecture test for such a metric name.
1763 */
1764 if (metricgroup__has_metric("transaction")) {
1765 struct option opt = { .value = &evsel_list };
1766
1767 return metricgroup__parse_groups(&opt, "transaction",
Ian Rogers05530a72020-05-20 11:20:10 -07001768 stat_config.metric_no_group,
1769 stat_config.metric_no_merge,
Jiri Olsad0192fd2018-08-30 08:32:51 +02001770 &stat_config.metric_events);
Thomas Richter742d92f2018-06-26 09:17:01 +02001771 }
1772
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001773 if (pmu_have_event("cpu", "cycles-ct") &&
1774 pmu_have_event("cpu", "el-start"))
Thomas Richterfca323402018-03-08 15:57:35 +01001775 err = parse_events(evsel_list, transaction_attrs,
1776 &errinfo);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001777 else
Thomas Richterfca323402018-03-08 15:57:35 +01001778 err = parse_events(evsel_list,
1779 transaction_limited_attrs,
1780 &errinfo);
Jiri Olsaa4547422015-06-03 16:25:53 +02001781 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001782 fprintf(stderr, "Cannot set up transaction events\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001783 parse_events_print_error(&errinfo, transaction_attrs);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001784 return -1;
1785 }
1786 return 0;
1787 }
1788
Kan Liangdaefd0b2017-05-26 12:05:38 -07001789 if (smi_cost) {
1790 int smi;
1791
1792 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
1793 fprintf(stderr, "freeze_on_smi is not supported.\n");
1794 return -1;
1795 }
1796
1797 if (!smi) {
1798 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
1799 fprintf(stderr, "Failed to set freeze_on_smi.\n");
1800 return -1;
1801 }
1802 smi_reset = true;
1803 }
1804
1805 if (pmu_have_event("msr", "aperf") &&
1806 pmu_have_event("msr", "smi")) {
1807 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001808 stat_config.metric_only = true;
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001809 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001810 } else {
1811 fprintf(stderr, "To measure SMI cost, it needs "
1812 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001813 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001814 return -1;
1815 }
1816 if (err) {
Ian Rogersa910e462019-11-15 23:46:52 -08001817 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001818 fprintf(stderr, "Cannot set up SMI cost events\n");
1819 return -1;
1820 }
1821 return 0;
1822 }
1823
Andi Kleen44b1e602016-05-30 12:49:42 -03001824 if (topdown_run) {
Kan Liang63e39aa2021-02-02 12:09:12 -08001825 const char **metric_attrs = topdown_metric_attrs;
1826 unsigned int max_level = 1;
Andi Kleen44b1e602016-05-30 12:49:42 -03001827 char *str = NULL;
1828 bool warn = false;
1829
Andi Kleen55c36a92020-09-11 07:48:07 -07001830 if (!force_metric_only)
1831 stat_config.metric_only = true;
1832
Kan Liang63e39aa2021-02-02 12:09:12 -08001833 if (pmu_have_event("cpu", topdown_metric_L2_attrs[5])) {
1834 metric_attrs = topdown_metric_L2_attrs;
1835 max_level = 2;
1836 }
1837
1838 if (stat_config.topdown_level > max_level) {
1839 pr_err("Invalid top-down metrics level. The max level is %u.\n", max_level);
1840 return -1;
1841 } else if (!stat_config.topdown_level)
1842 stat_config.topdown_level = max_level;
1843
1844 if (topdown_filter_events(metric_attrs, &str, 1) < 0) {
Andi Kleen55c36a92020-09-11 07:48:07 -07001845 pr_err("Out of memory\n");
1846 return -1;
1847 }
Kan Liang63e39aa2021-02-02 12:09:12 -08001848 if (metric_attrs[0] && str) {
Andi Kleen55c36a92020-09-11 07:48:07 -07001849 if (!stat_config.interval && !stat_config.metric_only) {
1850 fprintf(stat_config.output,
1851 "Topdown accuracy may decrease when measuring long periods.\n"
1852 "Please print the result regularly, e.g. -I1000\n");
1853 }
1854 goto setup_metrics;
1855 }
1856
1857 zfree(&str);
1858
Andi Kleen44b1e602016-05-30 12:49:42 -03001859 if (stat_config.aggr_mode != AGGR_GLOBAL &&
1860 stat_config.aggr_mode != AGGR_CORE) {
1861 pr_err("top down event configuration requires --per-core mode\n");
1862 return -1;
1863 }
1864 stat_config.aggr_mode = AGGR_CORE;
1865 if (nr_cgroups || !target__has_cpu(&target)) {
1866 pr_err("top down event configuration requires system-wide mode (-a)\n");
1867 return -1;
1868 }
1869
Andi Kleen44b1e602016-05-30 12:49:42 -03001870 if (topdown_filter_events(topdown_attrs, &str,
1871 arch_topdown_check_group(&warn)) < 0) {
1872 pr_err("Out of memory\n");
1873 return -1;
1874 }
1875 if (topdown_attrs[0] && str) {
1876 if (warn)
1877 arch_topdown_group_warn();
Andi Kleen55c36a92020-09-11 07:48:07 -07001878setup_metrics:
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001879 err = parse_events(evsel_list, str, &errinfo);
Andi Kleen44b1e602016-05-30 12:49:42 -03001880 if (err) {
1881 fprintf(stderr,
1882 "Cannot set up top down events %s: %d\n",
1883 str, err);
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001884 parse_events_print_error(&errinfo, str);
Leo Yanc74b0502019-07-02 18:34:11 +08001885 free(str);
Andi Kleen44b1e602016-05-30 12:49:42 -03001886 return -1;
1887 }
1888 } else {
1889 fprintf(stderr, "System does not support topdown\n");
1890 return -1;
1891 }
1892 free(str);
1893 }
1894
Jiri Olsa6484d2f2019-07-21 13:24:28 +02001895 if (!evsel_list->core.nr_entries) {
Jin Yaoac2dc292021-04-27 15:01:27 +08001896 if (perf_pmu__has_hybrid()) {
1897 const char *hybrid_str = "cycles,instructions,branches,branch-misses";
1898
1899 if (target__has_cpu(&target))
1900 default_sw_attrs[0].config = PERF_COUNT_SW_CPU_CLOCK;
1901
1902 if (evlist__add_default_attrs(evsel_list,
1903 default_sw_attrs) < 0) {
1904 return -1;
1905 }
1906
1907 err = parse_events(evsel_list, hybrid_str, &errinfo);
1908 if (err) {
1909 fprintf(stderr,
1910 "Cannot set up hybrid events %s: %d\n",
1911 hybrid_str, err);
1912 parse_events_print_error(&errinfo, hybrid_str);
1913 return -1;
1914 }
1915 return err;
1916 }
1917
Namhyung Kima1f3d562016-05-13 15:01:03 +09001918 if (target__has_cpu(&target))
1919 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
1920
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001921 if (evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
Andi Kleen9dec4472016-02-26 16:27:56 -08001922 return -1;
1923 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001924 if (evlist__add_default_attrs(evsel_list, frontend_attrs) < 0)
Andi Kleen9dec4472016-02-26 16:27:56 -08001925 return -1;
1926 }
1927 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001928 if (evlist__add_default_attrs(evsel_list, backend_attrs) < 0)
Andi Kleen9dec4472016-02-26 16:27:56 -08001929 return -1;
1930 }
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001931 if (evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001932 return -1;
Kan Liang42641d62021-01-21 05:37:52 -08001933
1934 if (arch_evlist__add_default_attrs(evsel_list) < 0)
1935 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001936 }
1937
1938 /* Detailed events get appended to the event list: */
1939
1940 if (detailed_run < 1)
1941 return 0;
1942
1943 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001944 if (evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001945 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001946
1947 if (detailed_run < 2)
1948 return 0;
1949
1950 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001951 if (evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001952 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001953
1954 if (detailed_run < 3)
1955 return 0;
1956
1957 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001958 return evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001959}
1960
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001961static const char * const stat_record_usage[] = {
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001962 "perf stat record [<options>]",
1963 NULL,
1964};
1965
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001966static void init_features(struct perf_session *session)
1967{
1968 int feat;
1969
1970 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1971 perf_header__set_feat(&session->header, feat);
1972
Jiri Olsa8002a632019-04-09 12:01:56 +02001973 perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT);
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001974 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1975 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1976 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1977 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1978}
1979
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001980static int __cmd_record(int argc, const char **argv)
1981{
1982 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001983 struct perf_data *data = &perf_stat.data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001984
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001985 argc = parse_options(argc, argv, stat_options, stat_record_usage,
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001986 PARSE_OPT_STOP_AT_NON_OPTION);
1987
1988 if (output_name)
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001989 data->path = output_name;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001990
Jiri Olsad97ae042018-08-30 08:32:36 +02001991 if (stat_config.run_count != 1 || forever) {
Jiri Olsae9d6db8e82015-11-05 15:40:53 +01001992 pr_err("Cannot use -r option with perf stat record.\n");
1993 return -1;
1994 }
1995
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001996 session = perf_session__new(data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05301997 if (IS_ERR(session)) {
1998 pr_err("Perf session creation failed\n");
1999 return PTR_ERR(session);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002000 }
2001
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01002002 init_features(session);
2003
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002004 session->evlist = evsel_list;
2005 perf_stat.session = session;
2006 perf_stat.record = true;
2007 return argc;
2008}
2009
Jiri Olsa89f16882018-09-13 14:54:03 +02002010static int process_stat_round_event(struct perf_session *session,
2011 union perf_event *event)
Jiri Olsaa56f9392015-11-05 15:40:59 +01002012{
Jiri Olsa72932372019-08-28 15:57:16 +02002013 struct perf_record_stat_round *stat_round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002014 struct evsel *counter;
Jiri Olsaa56f9392015-11-05 15:40:59 +01002015 struct timespec tsh, *ts = NULL;
2016 const char **argv = session->header.env.cmdline_argv;
2017 int argc = session->header.env.nr_cmdline;
2018
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002019 evlist__for_each_entry(evsel_list, counter)
Jiri Olsaa56f9392015-11-05 15:40:59 +01002020 perf_stat_process_counter(&stat_config, counter);
2021
Andi Kleene3b03b62016-05-05 16:04:03 -07002022 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
2023 update_stats(&walltime_nsecs_stats, stat_round->time);
Jiri Olsaa56f9392015-11-05 15:40:59 +01002024
Andi Kleene3b03b62016-05-05 16:04:03 -07002025 if (stat_config.interval && stat_round->time) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -03002026 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
2027 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
Jiri Olsaa56f9392015-11-05 15:40:59 +01002028 ts = &tsh;
2029 }
2030
2031 print_counters(ts, argc, argv);
2032 return 0;
2033}
2034
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002035static
Jiri Olsa89f16882018-09-13 14:54:03 +02002036int process_stat_config_event(struct perf_session *session,
2037 union perf_event *event)
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002038{
Jiri Olsa89f16882018-09-13 14:54:03 +02002039 struct perf_tool *tool = session->tool;
Jiri Olsa68d702f2015-11-05 15:40:58 +01002040 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2041
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002042 perf_event__read_stat_config(&stat_config, &event->stat_config);
Jiri Olsa68d702f2015-11-05 15:40:58 +01002043
Jiri Olsa315c0a12019-08-22 13:11:39 +02002044 if (perf_cpu_map__empty(st->cpus)) {
Jiri Olsa89af4e02015-11-05 15:41:02 +01002045 if (st->aggr_mode != AGGR_UNSET)
2046 pr_warning("warning: processing task data, aggregation mode not set\n");
2047 return 0;
2048 }
2049
2050 if (st->aggr_mode != AGGR_UNSET)
2051 stat_config.aggr_mode = st->aggr_mode;
2052
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002053 if (perf_stat.data.is_pipe)
Jiri Olsa68d702f2015-11-05 15:40:58 +01002054 perf_stat_init_aggr_mode();
2055 else
2056 perf_stat_init_aggr_mode_file(st);
2057
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002058 return 0;
2059}
2060
Jiri Olsa1975d362015-11-05 15:40:56 +01002061static int set_maps(struct perf_stat *st)
2062{
2063 if (!st->cpus || !st->threads)
2064 return 0;
2065
2066 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
2067 return -EINVAL;
2068
Jiri Olsa453fa032019-07-21 13:24:43 +02002069 perf_evlist__set_maps(&evsel_list->core, st->cpus, st->threads);
Jiri Olsa1975d362015-11-05 15:40:56 +01002070
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03002071 if (evlist__alloc_stats(evsel_list, true))
Jiri Olsa1975d362015-11-05 15:40:56 +01002072 return -ENOMEM;
2073
2074 st->maps_allocated = true;
2075 return 0;
2076}
2077
2078static
Jiri Olsa89f16882018-09-13 14:54:03 +02002079int process_thread_map_event(struct perf_session *session,
2080 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01002081{
Jiri Olsa89f16882018-09-13 14:54:03 +02002082 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01002083 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2084
2085 if (st->threads) {
2086 pr_warning("Extra thread map event, ignoring.\n");
2087 return 0;
2088 }
2089
2090 st->threads = thread_map__new_event(&event->thread_map);
2091 if (!st->threads)
2092 return -ENOMEM;
2093
2094 return set_maps(st);
2095}
2096
2097static
Jiri Olsa89f16882018-09-13 14:54:03 +02002098int process_cpu_map_event(struct perf_session *session,
2099 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01002100{
Jiri Olsa89f16882018-09-13 14:54:03 +02002101 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01002102 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
Jiri Olsaf8548392019-07-21 13:23:49 +02002103 struct perf_cpu_map *cpus;
Jiri Olsa1975d362015-11-05 15:40:56 +01002104
2105 if (st->cpus) {
2106 pr_warning("Extra cpu map event, ignoring.\n");
2107 return 0;
2108 }
2109
2110 cpus = cpu_map__new_data(&event->cpu_map.data);
2111 if (!cpus)
2112 return -ENOMEM;
2113
2114 st->cpus = cpus;
2115 return set_maps(st);
2116}
2117
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002118static const char * const stat_report_usage[] = {
Jiri Olsaba6039b62015-11-05 15:40:55 +01002119 "perf stat report [<options>]",
2120 NULL,
2121};
2122
2123static struct perf_stat perf_stat = {
2124 .tool = {
2125 .attr = perf_event__process_attr,
Jiri Olsafa6ea782015-11-05 15:41:00 +01002126 .event_update = perf_event__process_event_update,
Jiri Olsa1975d362015-11-05 15:40:56 +01002127 .thread_map = process_thread_map_event,
2128 .cpu_map = process_cpu_map_event,
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002129 .stat_config = process_stat_config_event,
Jiri Olsaa56f9392015-11-05 15:40:59 +01002130 .stat = perf_event__process_stat_event,
2131 .stat_round = process_stat_round_event,
Jiri Olsaba6039b62015-11-05 15:40:55 +01002132 },
Jiri Olsa89af4e02015-11-05 15:41:02 +01002133 .aggr_mode = AGGR_UNSET,
Jiri Olsaba6039b62015-11-05 15:40:55 +01002134};
2135
2136static int __cmd_report(int argc, const char **argv)
2137{
2138 struct perf_session *session;
2139 const struct option options[] = {
2140 OPT_STRING('i', "input", &input_name, "file", "input file name"),
Jiri Olsa89af4e02015-11-05 15:41:02 +01002141 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
2142 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -07002143 OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode,
2144 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsa89af4e02015-11-05 15:41:02 +01002145 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
2146 "aggregate counts per physical processor core", AGGR_CORE),
Jiri Olsa86895b42019-08-28 10:17:43 +02002147 OPT_SET_UINT(0, "per-node", &perf_stat.aggr_mode,
2148 "aggregate counts per numa node", AGGR_NODE),
Jiri Olsa89af4e02015-11-05 15:41:02 +01002149 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
2150 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsaba6039b62015-11-05 15:40:55 +01002151 OPT_END()
2152 };
2153 struct stat st;
2154 int ret;
2155
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002156 argc = parse_options(argc, argv, options, stat_report_usage, 0);
Jiri Olsaba6039b62015-11-05 15:40:55 +01002157
2158 if (!input_name || !strlen(input_name)) {
2159 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
2160 input_name = "-";
2161 else
2162 input_name = "perf.data";
2163 }
2164
Jiri Olsa2d4f2792019-02-21 10:41:30 +01002165 perf_stat.data.path = input_name;
2166 perf_stat.data.mode = PERF_DATA_MODE_READ;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002167
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002168 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05302169 if (IS_ERR(session))
2170 return PTR_ERR(session);
Jiri Olsaba6039b62015-11-05 15:40:55 +01002171
2172 perf_stat.session = session;
2173 stat_config.output = stderr;
2174 evsel_list = session->evlist;
2175
2176 ret = perf_session__process_events(session);
2177 if (ret)
2178 return ret;
2179
2180 perf_session__delete(session);
2181 return 0;
2182}
2183
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002184static void setup_system_wide(int forks)
2185{
2186 /*
2187 * Make system wide (-a) the default target if
2188 * no target was specified and one of following
2189 * conditions is met:
2190 *
2191 * - there's no workload specified
2192 * - there is workload specified but all requested
2193 * events are system wide events
2194 */
2195 if (!target__none(&target))
2196 return;
2197
2198 if (!forks)
2199 target.system_wide = true;
2200 else {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002201 struct evsel *counter;
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002202
2203 evlist__for_each_entry(evsel_list, counter) {
Jin Yao002a3d62020-09-22 09:50:04 +08002204 if (!counter->core.system_wide &&
2205 strcmp(counter->name, "duration_time")) {
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002206 return;
Jin Yao002a3d62020-09-22 09:50:04 +08002207 }
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002208 }
2209
Jiri Olsa6484d2f2019-07-21 13:24:28 +02002210 if (evsel_list->core.nr_entries)
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002211 target.system_wide = true;
2212 }
2213}
2214
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002215int cmd_stat(int argc, const char **argv)
Ingo Molnar52425192009-05-26 09:17:18 +02002216{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002217 const char * const stat_usage[] = {
2218 "perf stat [<options>] [<command>]",
2219 NULL
2220 };
Song Liufa853c42020-12-29 13:42:14 -08002221 int status = -EINVAL, run_idx, err;
Stephane Eranian4aa90152011-08-15 22:22:33 +02002222 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02002223 FILE *output = stderr;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002224 unsigned int interval, timeout;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002225 const char * const stat_subcommands[] = { "record", "report" };
Song Liufa853c42020-12-29 13:42:14 -08002226 char errbuf[BUFSIZ];
Ingo Molnar42202dd2009-06-13 14:57:28 +02002227
Stephane Eranian5af52b52010-05-18 15:00:01 +02002228 setlocale(LC_ALL, "");
2229
Jiri Olsa0f98b112019-07-21 13:23:55 +02002230 evsel_list = evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02002231 if (evsel_list == NULL)
2232 return -ENOMEM;
2233
Wang Nan1669e502016-02-19 11:43:58 +00002234 parse_events__shrink_config_terms();
Michael Petlan51433ea2018-12-10 11:00:04 -05002235
2236 /* String-parsing callback-based options would segfault when negated */
2237 set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
2238 set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
2239 set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);
2240
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002241 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
2242 (const char **) stat_usage,
2243 PARSE_OPT_STOP_AT_NON_OPTION);
Andi Kleen37932c12017-03-20 13:17:08 -07002244 perf_stat__collect_metric_expr(evsel_list);
Andi Kleenfb4605b2016-03-01 10:57:52 -08002245 perf_stat__init_shadow_stats();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002246
Jiri Olsafa7070a2018-08-30 08:32:29 +02002247 if (stat_config.csv_sep) {
2248 stat_config.csv_output = true;
2249 if (!strcmp(stat_config.csv_sep, "\\t"))
2250 stat_config.csv_sep = "\t";
Jiri Olsa6edb78a2015-11-05 15:41:01 +01002251 } else
Jiri Olsafa7070a2018-08-30 08:32:29 +02002252 stat_config.csv_sep = DEFAULT_SEPARATOR;
Jiri Olsa6edb78a2015-11-05 15:41:01 +01002253
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002254 if (argc && !strncmp(argv[0], "rec", 3)) {
2255 argc = __cmd_record(argc, argv);
2256 if (argc < 0)
2257 return -1;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002258 } else if (argc && !strncmp(argv[0], "rep", 3))
2259 return __cmd_report(argc, argv);
Stephane Eraniand7470b62010-12-01 18:49:05 +02002260
Jiri Olsaec0d3d12015-07-21 14:31:25 +02002261 interval = stat_config.interval;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002262 timeout = stat_config.timeout;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02002263
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002264 /*
2265 * For record command the -o is already taken care of.
2266 */
2267 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02002268 output = NULL;
2269
Jim Cromie56f3bae2011-09-07 17:14:00 -06002270 if (output_name && output_fd) {
2271 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002272 parse_options_usage(stat_usage, stat_options, "o", 1);
2273 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002274 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06002275 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002276
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02002277 if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) {
Andi Kleen54b50912016-03-03 15:57:36 -08002278 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
2279 goto out;
2280 }
2281
Jiri Olsad97ae042018-08-30 08:32:36 +02002282 if (stat_config.metric_only && stat_config.run_count > 1) {
Andi Kleen54b50912016-03-03 15:57:36 -08002283 fprintf(stderr, "--metric-only is not supported with -r\n");
2284 goto out;
2285 }
2286
Jiri Olsa54ac0b12018-08-30 08:32:50 +02002287 if (stat_config.walltime_run_table && stat_config.run_count <= 1) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02002288 fprintf(stderr, "--table is only supported with -r\n");
2289 parse_options_usage(stat_usage, stat_options, "r", 1);
2290 parse_options_usage(NULL, stat_options, "table", 0);
2291 goto out;
2292 }
2293
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002294 if (output_fd < 0) {
2295 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002296 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002297 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002298 }
2299
Andi Kleen55a4de92020-10-26 17:27:36 -07002300 if (!output && !stat_config.quiet) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02002301 struct timespec tm;
2302 mode = append_file ? "a" : "w";
2303
2304 output = fopen(output_name, mode);
2305 if (!output) {
2306 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06002307 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02002308 }
2309 clock_gettime(CLOCK_REALTIME, &tm);
2310 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002311 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06002312 mode = append_file ? "a" : "w";
2313 output = fdopen(output_fd, mode);
2314 if (!output) {
2315 perror("Failed opening logfd");
2316 return -errno;
2317 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02002318 }
2319
Jiri Olsa58215222015-07-21 14:31:24 +02002320 stat_config.output = output;
2321
Stephane Eraniand7470b62010-12-01 18:49:05 +02002322 /*
2323 * let the spreadsheet do the pretty-printing
2324 */
Jiri Olsafa7070a2018-08-30 08:32:29 +02002325 if (stat_config.csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06002326 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02002327 if (big_num_opt == 1) {
2328 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002329 parse_options_usage(stat_usage, stat_options, "B", 1);
2330 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002331 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02002332 } else /* Nope, so disable big number formatting */
Jiri Olsa34ff0862018-08-30 08:32:47 +02002333 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02002334 } else if (big_num_opt == 0) /* User passed --no-big-num */
Jiri Olsa34ff0862018-08-30 08:32:47 +02002335 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02002336
Song Liufa853c42020-12-29 13:42:14 -08002337 err = target__validate(&target);
2338 if (err) {
2339 target__strerror(&target, err, errbuf, BUFSIZ);
2340 pr_warning("%s\n", errbuf);
2341 }
2342
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002343 setup_system_wide(argc);
David Ahernac3063b2013-09-30 07:37:37 -06002344
Jiri Olsa0ce2da12018-06-05 14:13:13 +02002345 /*
2346 * Display user/system times only for single
2347 * run and when there's specified tracee.
2348 */
Jiri Olsad97ae042018-08-30 08:32:36 +02002349 if ((stat_config.run_count == 1) && target__none(&target))
Jiri Olsa8897a892018-08-30 08:32:44 +02002350 stat_config.ru_display = true;
Jiri Olsa0ce2da12018-06-05 14:13:13 +02002351
Jiri Olsad97ae042018-08-30 08:32:36 +02002352 if (stat_config.run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09002353 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002354 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002355 goto out;
Jiri Olsad97ae042018-08-30 08:32:36 +02002356 } else if (stat_config.run_count == 0) {
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002357 forever = true;
Jiri Olsad97ae042018-08-30 08:32:36 +02002358 stat_config.run_count = 1;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002359 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002360
Jiri Olsa54ac0b12018-08-30 08:32:50 +02002361 if (stat_config.walltime_run_table) {
2362 stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0]));
2363 if (!stat_config.walltime_run) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02002364 pr_err("failed to setup -r option");
2365 goto out;
2366 }
2367 }
2368
Jin Yao1d9f8d12017-12-05 22:03:10 +08002369 if ((stat_config.aggr_mode == AGGR_THREAD) &&
2370 !target__has_task(&target)) {
2371 if (!target.system_wide || target.cpu_list) {
2372 fprintf(stderr, "The --per-thread option is only "
2373 "available when monitoring via -p -t -a "
2374 "options or only --per-thread.\n");
2375 parse_options_usage(NULL, stat_options, "p", 1);
2376 parse_options_usage(NULL, stat_options, "t", 1);
2377 goto out;
2378 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002379 }
2380
2381 /*
2382 * no_aggr, cgroup are for system-wide only
2383 * --per-thread is aggregated per thread, we dont mix it with cpu mode
2384 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02002385 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
2386 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002387 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02002388 fprintf(stderr, "both cgroup and no-aggregation "
2389 "modes only available in system-wide mode\n");
2390
Jiri Olsae0547312015-11-05 15:40:45 +01002391 parse_options_usage(stat_usage, stat_options, "G", 1);
2392 parse_options_usage(NULL, stat_options, "A", 1);
2393 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002394 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01002395 }
2396
Alexander Antonovf07952b2021-04-19 12:41:44 +03002397 if (stat_config.iostat_run) {
2398 status = iostat_prepare(evsel_list, &stat_config);
2399 if (status)
2400 goto out;
2401 if (iostat_mode == IOSTAT_LIST) {
2402 iostat_list(evsel_list, &stat_config);
2403 goto out;
2404 } else if (verbose)
2405 iostat_list(evsel_list, &stat_config);
2406 }
2407
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002408 if (add_default_attributes())
2409 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002410
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09002411 if (stat_config.cgroup_list) {
2412 if (nr_cgroups > 0) {
2413 pr_err("--cgroup and --for-each-cgroup cannot be used together\n");
2414 parse_options_usage(stat_usage, stat_options, "G", 1);
2415 parse_options_usage(NULL, stat_options, "for-each-cgroup", 0);
2416 goto out;
2417 }
2418
Namhyung Kimb214ba82020-09-24 21:44:53 +09002419 if (evlist__expand_cgroup(evsel_list, stat_config.cgroup_list,
Namhyung Kimbb1c15b2020-10-27 16:28:55 +09002420 &stat_config.metric_events, true) < 0) {
2421 parse_options_usage(stat_usage, stat_options,
2422 "for-each-cgroup", 0);
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09002423 goto out;
Namhyung Kimbb1c15b2020-10-27 16:28:55 +09002424 }
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09002425 }
2426
Jin Yao1d9f8d12017-12-05 22:03:10 +08002427 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
2428 target.per_thread = true;
2429
Arnaldo Carvalho de Melo7748bb72020-11-30 14:56:52 -03002430 if (evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002431 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09002432 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002433 parse_options_usage(stat_usage, stat_options, "p", 1);
2434 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002435 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09002436 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01002437 parse_options_usage(stat_usage, stat_options, "C", 1);
2438 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002439 }
2440 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02002441 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002442
Jiri Olsaa9a179022020-06-02 12:17:36 +02002443 evlist__check_cpu_maps(evsel_list);
2444
Jin Yao12279422021-04-27 15:01:20 +08002445 if (perf_pmu__has_hybrid())
2446 stat_config.no_merge = true;
2447
Jiri Olsa32b8af82015-06-26 11:29:27 +02002448 /*
2449 * Initialize thread_map with comm names,
2450 * so we could print it out on output.
2451 */
Jin Yao56739442017-12-05 22:03:07 +08002452 if (stat_config.aggr_mode == AGGR_THREAD) {
Jiri Olsa03617c22019-07-21 13:24:42 +02002453 thread_map__read_comms(evsel_list->core.threads);
Jin Yao56739442017-12-05 22:03:07 +08002454 if (target.system_wide) {
2455 if (runtime_stat_new(&stat_config,
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002456 perf_thread_map__nr(evsel_list->core.threads))) {
Jin Yao56739442017-12-05 22:03:07 +08002457 goto out;
2458 }
2459 }
2460 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002461
Jiri Olsa86895b42019-08-28 10:17:43 +02002462 if (stat_config.aggr_mode == AGGR_NODE)
2463 cpu__setup_cpunode_map();
2464
yuzhoujiandb06a262018-01-29 10:25:22 +01002465 if (stat_config.times && interval)
2466 interval_count = true;
2467 else if (stat_config.times && !interval) {
2468 pr_err("interval-count option should be used together with "
2469 "interval-print.\n");
2470 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
2471 parse_options_usage(stat_usage, stat_options, "I", 1);
2472 goto out;
2473 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02002474
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002475 if (timeout && timeout < 100) {
2476 if (timeout < 10) {
2477 pr_err("timeout must be >= 10ms.\n");
2478 parse_options_usage(stat_usage, stat_options, "timeout", 0);
2479 goto out;
2480 } else
2481 pr_warning("timeout < 100ms. "
2482 "The overhead percentage could be high in some cases. "
2483 "Please proceed with caution.\n");
2484 }
2485 if (timeout && interval) {
2486 pr_err("timeout option is not supported with interval-print.\n");
2487 parse_options_usage(stat_usage, stat_options, "timeout", 0);
2488 parse_options_usage(stat_usage, stat_options, "I", 1);
2489 goto out;
2490 }
2491
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03002492 if (evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03002493 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03002494
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002495 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03002496 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002497
Ingo Molnar58d7e992009-05-15 11:03:23 +02002498 /*
Jiri Olsa7d9ad162018-08-30 08:32:14 +02002499 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
2500 * while avoiding that older tools show confusing messages.
2501 *
2502 * However for pipe sessions we need to keep it zero,
2503 * because script's perf_evsel__check_attr is triggered
2504 * by attr->sample_type != 0, and we can't run it on
2505 * stat sessions.
2506 */
2507 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
2508
2509 /*
Ingo Molnar58d7e992009-05-15 11:03:23 +02002510 * We dont want to block the signals - that would cause
2511 * child tasks to inherit that and Ctrl-C would not work.
2512 * What we want is for Ctrl-C to work in the exec()-ed
2513 * task, but being ignored by perf stat itself:
2514 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02002515 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002516 if (!forever)
2517 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01002518 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02002519 signal(SIGALRM, skip_signal);
2520 signal(SIGABRT, skip_signal);
2521
Alexey Budankov27e97692020-07-17 10:05:41 +03002522 if (evlist__initialize_ctlfd(evsel_list, stat_config.ctl_fd, stat_config.ctl_fd_ack))
2523 goto out;
2524
Ingo Molnar42202dd2009-06-13 14:57:28 +02002525 status = 0;
Jiri Olsad97ae042018-08-30 08:32:36 +02002526 for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) {
2527 if (stat_config.run_count != 1 && verbose > 0)
Stephane Eranian4aa90152011-08-15 22:22:33 +02002528 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
2529 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02002530
Srikar Dronamrajub63fd112019-09-04 15:17:37 +05302531 if (run_idx != 0)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03002532 evlist__reset_prev_raw_counts(evsel_list);
Srikar Dronamrajub63fd112019-09-04 15:17:37 +05302533
Jiri Olsae55c14a2018-04-23 11:08:21 +02002534 status = run_perf_stat(argc, argv, run_idx);
Srikar Dronamraju443f2d52019-09-04 15:17:38 +05302535 if (forever && status != -1 && !interval) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02002536 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02002537 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002538 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02002539 }
2540
Jin Yaoc7e5b322020-05-20 12:27:37 +08002541 if (!forever && status != -1 && (!interval || stat_config.summary))
Jiri Olsad4f63a42015-06-26 11:29:26 +02002542 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03002543
Alexey Budankov27e97692020-07-17 10:05:41 +03002544 evlist__finalize_ctlfd(evsel_list);
2545
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002546 if (STAT_RECORD) {
2547 /*
2548 * We synthesize the kernel mmap record just so that older tools
2549 * don't emit warnings about not being able to resolve symbols
Ingo Molnar4d39c892021-03-23 17:09:15 +01002550 * due to /proc/sys/kernel/kptr_restrict settings and instead provide
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002551 * a saner message about no samples being in the perf.data file.
2552 *
2553 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01002554 * in header.c at the moment 'perf stat record' gets introduced, which
2555 * is not really needed once we start adding the stat specific PERF_RECORD_
2556 * records, but the need to suppress the kptr_restrict messages in older
2557 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002558 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002559 int fd = perf_data__fd(&perf_stat.data);
Song Liufa853c42020-12-29 13:42:14 -08002560
2561 err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
2562 process_synthesized_event,
2563 &perf_stat.session->machines.host);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002564 if (err) {
2565 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
2566 "older tools may produce warnings about this file\n.");
2567 }
2568
Jiri Olsa7aad0c32015-11-05 15:40:52 +01002569 if (!interval) {
2570 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
2571 pr_err("failed to write stat round event\n");
2572 }
2573
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002574 if (!perf_stat.data.is_pipe) {
Jiri Olsa664c98d2015-11-05 15:40:50 +01002575 perf_stat.session->header.data_size += perf_stat.bytes_written;
2576 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
2577 }
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002578
Jiri Olsa750b4ed2019-07-21 13:24:07 +02002579 evlist__close(evsel_list);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002580 perf_session__delete(perf_stat.session);
2581 }
2582
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09002583 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03002584 evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02002585out:
Alexander Antonovf07952b2021-04-19 12:41:44 +03002586 if (stat_config.iostat_run)
2587 iostat_release(evsel_list);
2588
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002589 zfree(&stat_config.walltime_run);
Jiri Olsae55c14a2018-04-23 11:08:21 +02002590
Kan Liangdaefd0b2017-05-26 12:05:38 -07002591 if (smi_cost && smi_reset)
2592 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
2593
Jiri Olsac12995a2019-07-21 13:23:56 +02002594 evlist__delete(evsel_list);
Jin Yao56739442017-12-05 22:03:07 +08002595
Jiri Olsa9afe5652020-06-02 23:47:38 +02002596 metricgroup__rblist_exit(&stat_config.metric_events);
Jin Yao56739442017-12-05 22:03:07 +08002597 runtime_stat_delete(&stat_config);
Adrian Hunteree7fe312020-09-03 15:29:37 +03002598 evlist__close_control(stat_config.ctl_fd, stat_config.ctl_fd_ack, &stat_config.ctl_fd_close);
Jin Yao56739442017-12-05 22:03:07 +08002599
Ingo Molnar42202dd2009-06-13 14:57:28 +02002600 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002601}