blob: 5ec2190e45cd04f7dd16ebc1ee38a4f0146f91b5 [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"
Arnaldo Carvalho de Melo69aad6f2011-01-03 16:39:04 -020051#include "util/evsel.h"
Frederic Weisbecker8f288272009-08-16 22:05:48 +020052#include "util/debug.h"
Ingo Molnara5d243d2011-04-27 05:39:24 +020053#include "util/color.h"
Xiao Guangrong0007ece2012-09-17 16:31:14 +080054#include "util/stat.h"
Liming Wang60666c62009-12-31 16:05:50 +080055#include "util/header.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110056#include "util/cpumap.h"
Arnaldo Carvalho de Melofd782602011-01-18 15:15:24 -020057#include "util/thread_map.h"
Jiri Olsad8095602015-08-07 12:51:03 +020058#include "util/counts.h"
Kan Liang687986b2020-09-11 07:48:05 -070059#include "util/topdown.h"
Jiri Olsa4979d0c2015-11-05 15:40:46 +010060#include "util/session.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010061#include "util/tool.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030062#include "util/string2.h"
Andi Kleenb18f3e32017-08-31 12:40:31 -070063#include "util/metricgroup.h"
Arnaldo Carvalho de Meloea49e012019-09-18 11:36:13 -030064#include "util/synthetic-events.h"
Arnaldo Carvalho de Meloaeb00b12019-08-22 15:40:29 -030065#include "util/target.h"
Arnaldo Carvalho de Melof3711022019-08-29 15:16:27 -030066#include "util/time-utils.h"
Jiri Olsa9660e082018-06-07 00:15:06 +020067#include "util/top.h"
Andi Kleen4804e012019-11-20 16:15:19 -080068#include "util/affinity.h"
Stephane Eranian70943492020-05-05 11:29:43 -070069#include "util/pfm.h"
Song Liufa853c42020-12-29 13:42:14 -080070#include "util/bpf_counter.h"
Alexander Antonovf07952b2021-04-19 12:41:44 +030071#include "util/iostat.h"
Jiri Olsaba6039b62015-11-05 15:40:55 +010072#include "asm/bug.h"
Ingo Molnarddcacfa2009-04-20 15:37:32 +020073
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030074#include <linux/time64.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030075#include <linux/zalloc.h>
Andi Kleen44b1e602016-05-30 12:49:42 -030076#include <api/fs/fs.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030077#include <errno.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030078#include <signal.h>
Peter Zijlstra1f16c572012-10-23 13:40:14 +020079#include <stdlib.h>
Ingo Molnarddcacfa2009-04-20 15:37:32 +020080#include <sys/prctl.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030081#include <inttypes.h>
Stephane Eranian5af52b52010-05-18 15:00:01 +020082#include <locale.h>
Andi Kleene3b03b62016-05-05 16:04:03 -070083#include <math.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030084#include <sys/types.h>
85#include <sys/stat.h>
Arnaldo Carvalho de Melo42087352017-04-19 19:06:30 -030086#include <sys/wait.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030087#include <unistd.h>
Jiri Olsa0ce2da12018-06-05 14:13:13 +020088#include <sys/time.h>
89#include <sys/resource.h>
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053090#include <linux/err.h>
Peter Zijlstra16c8a102009-05-05 17:50:27 +020091
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030092#include <linux/ctype.h>
Jiri Olsa453fa032019-07-21 13:24:43 +020093#include <perf/evlist.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030094
Stephane Eraniand7470b62010-12-01 18:49:05 +020095#define DEFAULT_SEPARATOR " "
Kan Liangdaefd0b2017-05-26 12:05:38 -070096#define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi"
Stephane Eraniand7470b62010-12-01 18:49:05 +020097
Jiri Olsad4f63a42015-06-26 11:29:26 +020098static void print_counters(struct timespec *ts, int argc, const char **argv);
Stephane Eranian13370a92013-01-29 12:47:44 +010099
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700100/* Default events used for perf stat -T */
Jiri Olsaa4547422015-06-03 16:25:53 +0200101static const char *transaction_attrs = {
102 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700103 "{"
104 "instructions,"
105 "cycles,"
106 "cpu/cycles-t/,"
107 "cpu/tx-start/,"
108 "cpu/el-start/,"
109 "cpu/cycles-ct/"
110 "}"
111};
112
113/* More limited version when the CPU does not have all events. */
Jiri Olsaa4547422015-06-03 16:25:53 +0200114static const char * transaction_limited_attrs = {
115 "task-clock,"
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700116 "{"
117 "instructions,"
118 "cycles,"
119 "cpu/cycles-t/,"
120 "cpu/tx-start/"
121 "}"
122};
123
Andi Kleen44b1e602016-05-30 12:49:42 -0300124static const char * topdown_attrs[] = {
125 "topdown-total-slots",
126 "topdown-slots-retired",
127 "topdown-recovery-bubbles",
128 "topdown-fetch-bubbles",
129 "topdown-slots-issued",
130 NULL,
131};
132
Andi Kleen55c36a92020-09-11 07:48:07 -0700133static const char *topdown_metric_attrs[] = {
134 "slots",
135 "topdown-retiring",
136 "topdown-bad-spec",
137 "topdown-fe-bound",
138 "topdown-be-bound",
139 NULL,
140};
141
Kan Liang63e39aa2021-02-02 12:09:12 -0800142static const char *topdown_metric_L2_attrs[] = {
143 "slots",
144 "topdown-retiring",
145 "topdown-bad-spec",
146 "topdown-fe-bound",
147 "topdown-be-bound",
148 "topdown-heavy-ops",
149 "topdown-br-mispredict",
150 "topdown-fetch-lat",
151 "topdown-mem-bound",
152 NULL,
153};
154
Kan Liangdaefd0b2017-05-26 12:05:38 -0700155static const char *smi_cost_attrs = {
156 "{"
157 "msr/aperf/,"
158 "msr/smi/,"
159 "cycles"
160 "}"
161};
162
Jiri Olsa63503db2019-07-21 13:23:52 +0200163static struct evlist *evsel_list;
Song Liu112cb562021-04-25 14:43:31 -0700164static bool all_counters_use_bpf = true;
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -0200165
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -0300166static struct target target = {
Namhyung Kim77a6f012012-05-07 14:09:04 +0900167 .uid = UINT_MAX,
168};
Jaswinder Singh Rajput3d632592009-06-24 18:19:34 +0530169
Jiri Olsac1a1f5d2018-06-07 00:15:09 +0200170#define METRIC_ONLY_LEN 20
171
Stephane Eraniand07f0b12013-06-04 17:44:26 +0200172static volatile pid_t child_pid = -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +0200173static int detailed_run = 0;
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700174static bool transaction_run;
Andi Kleen44b1e602016-05-30 12:49:42 -0300175static bool topdown_run = false;
Kan Liangdaefd0b2017-05-26 12:05:38 -0700176static bool smi_cost = false;
177static bool smi_reset = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +0200178static int big_num_opt = -1;
Lin Ming43bece72011-08-17 18:42:07 +0800179static bool group = false;
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200180static const char *pre_cmd = NULL;
181static const char *post_cmd = NULL;
182static bool sync_run = false;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500183static bool forever = false;
Andi Kleen44b1e602016-05-30 12:49:42 -0300184static bool force_metric_only = false;
Stephane Eranian13370a92013-01-29 12:47:44 +0100185static struct timespec ref_time;
Jiri Olsae0547312015-11-05 15:40:45 +0100186static bool append_file;
yuzhoujiandb06a262018-01-29 10:25:22 +0100187static bool interval_count;
Jiri Olsae0547312015-11-05 15:40:45 +0100188static const char *output_name;
189static int output_fd;
Stephane Eranian5af52b52010-05-18 15:00:01 +0200190
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100191struct perf_stat {
192 bool record;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100193 struct perf_data data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100194 struct perf_session *session;
195 u64 bytes_written;
Jiri Olsaba6039b62015-11-05 15:40:55 +0100196 struct perf_tool tool;
Jiri Olsa1975d362015-11-05 15:40:56 +0100197 bool maps_allocated;
Jiri Olsaf8548392019-07-21 13:23:49 +0200198 struct perf_cpu_map *cpus;
Jiri Olsa9749b902019-07-21 13:23:50 +0200199 struct perf_thread_map *threads;
Jiri Olsa89af4e02015-11-05 15:41:02 +0100200 enum aggr_mode aggr_mode;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100201};
202
203static struct perf_stat perf_stat;
204#define STAT_RECORD perf_stat.record
205
Liming Wang60666c62009-12-31 16:05:50 +0800206static volatile int done = 0;
207
Jiri Olsa421a50f2015-07-21 14:31:22 +0200208static struct perf_stat_config stat_config = {
Jiri Olsa26893a62018-08-30 08:32:40 +0200209 .aggr_mode = AGGR_GLOBAL,
210 .scale = true,
211 .unit_width = 4, /* strlen("unit") */
212 .run_count = 1,
213 .metric_only_len = METRIC_ONLY_LEN,
214 .walltime_nsecs_stats = &walltime_nsecs_stats,
Jiri Olsa34ff0862018-08-30 08:32:47 +0200215 .big_num = true,
Alexey Budankov27e97692020-07-17 10:05:41 +0300216 .ctl_fd = -1,
Alexander Antonovf07952b2021-04-19 12:41:44 +0300217 .ctl_fd_ack = -1,
218 .iostat_run = false,
Jiri Olsa421a50f2015-07-21 14:31:22 +0200219};
220
Jiri Olsaa9a179022020-06-02 12:17:36 +0200221static bool cpus_map_matched(struct evsel *a, struct evsel *b)
222{
223 if (!a->core.cpus && !b->core.cpus)
224 return true;
225
226 if (!a->core.cpus || !b->core.cpus)
227 return false;
228
229 if (a->core.cpus->nr != b->core.cpus->nr)
230 return false;
231
232 for (int i = 0; i < a->core.cpus->nr; i++) {
233 if (a->core.cpus->map[i] != b->core.cpus->map[i])
234 return false;
235 }
236
237 return true;
238}
239
240static void evlist__check_cpu_maps(struct evlist *evlist)
241{
242 struct evsel *evsel, *pos, *leader;
243 char buf[1024];
244
245 evlist__for_each_entry(evlist, evsel) {
246 leader = evsel->leader;
247
248 /* Check that leader matches cpus with each member. */
249 if (leader == evsel)
250 continue;
251 if (cpus_map_matched(leader, evsel))
252 continue;
253
254 /* If there's mismatch disable the group and warn user. */
255 WARN_ONCE(1, "WARNING: grouped events cpus do not match, disabling group:\n");
256 evsel__group_desc(leader, buf, sizeof(buf));
257 pr_warning(" %s\n", buf);
258
259 if (verbose) {
260 cpu_map__snprint(leader->core.cpus, buf, sizeof(buf));
261 pr_warning(" %s: %s\n", leader->name, buf);
262 cpu_map__snprint(evsel->core.cpus, buf, sizeof(buf));
263 pr_warning(" %s: %s\n", evsel->name, buf);
264 }
265
266 for_each_group_evsel(pos, leader) {
267 pos->leader = pos;
268 pos->core.nr_members = 0;
269 }
270 evsel->leader->core.nr_members = 0;
271 }
272}
273
Stephane Eranian13370a92013-01-29 12:47:44 +0100274static inline void diff_timespec(struct timespec *r, struct timespec *a,
275 struct timespec *b)
276{
277 r->tv_sec = a->tv_sec - b->tv_sec;
278 if (a->tv_nsec < b->tv_nsec) {
Arnaldo Carvalho de Melo310ebb92016-08-08 14:57:04 -0300279 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec;
Stephane Eranian13370a92013-01-29 12:47:44 +0100280 r->tv_sec--;
281 } else {
282 r->tv_nsec = a->tv_nsec - b->tv_nsec ;
283 }
284}
285
Jiri Olsa254ecbc72015-06-26 11:29:13 +0200286static void perf_stat__reset_stats(void)
287{
Jin Yao56739442017-12-05 22:03:07 +0800288 int i;
289
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -0300290 evlist__reset_stats(evsel_list);
Jiri Olsaf87027b2015-06-03 16:25:59 +0200291 perf_stat__reset_shadow_stats();
Jin Yao56739442017-12-05 22:03:07 +0800292
293 for (i = 0; i < stat_config.stats_num; i++)
294 perf_stat__reset_shadow_per_stat(&stat_config.stats[i]);
Jiri Olsa1eda3b22015-06-03 16:25:55 +0200295}
296
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100297static int process_synthesized_event(struct perf_tool *tool __maybe_unused,
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100298 union perf_event *event,
299 struct perf_sample *sample __maybe_unused,
300 struct machine *machine __maybe_unused)
301{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100302 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) {
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100303 pr_err("failed to write perf data, error: %m\n");
304 return -1;
305 }
306
307 perf_stat.bytes_written += event->header.size;
308 return 0;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100309}
310
Jiri Olsa1975d362015-11-05 15:40:56 +0100311static int write_stat_round_event(u64 tm, u64 type)
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100312{
Jiri Olsa1975d362015-11-05 15:40:56 +0100313 return perf_event__synthesize_stat_round(NULL, tm, type,
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100314 process_synthesized_event,
315 NULL);
316}
317
318#define WRITE_STAT_ROUND_EVENT(time, interval) \
319 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval)
320
Jiri Olsa8cd36f32019-09-02 22:04:12 +0200321#define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y)
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100322
Arnaldo Carvalho de Meloddc69992020-05-04 13:46:34 -0300323static int evsel__write_stat_event(struct evsel *counter, u32 cpu, u32 thread,
324 struct perf_counts_values *count)
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100325{
326 struct perf_sample_id *sid = SID(counter, cpu, thread);
327
328 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count,
329 process_synthesized_event, NULL);
330}
331
Jiri Olsa32dcd022019-07-21 13:23:51 +0200332static int read_single_counter(struct evsel *counter, int cpu,
Andi Kleenf0fbb112019-03-26 15:18:21 -0700333 int thread, struct timespec *rs)
334{
335 if (counter->tool_event == PERF_TOOL_DURATION_TIME) {
336 u64 val = rs->tv_nsec + rs->tv_sec*1000000000ULL;
337 struct perf_counts_values *count =
338 perf_counts(counter->counts, cpu, thread);
339 count->ena = count->run = val;
340 count->val = val;
341 return 0;
342 }
Arnaldo Carvalho de Meloea089692020-04-30 11:00:53 -0300343 return evsel__read_counter(counter, cpu, thread);
Andi Kleenf0fbb112019-03-26 15:18:21 -0700344}
345
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200346/*
347 * Read out the results of a single counter:
348 * do not aggregate counts across CPUs in system-wide mode
349 */
Andi Kleen4b49ab72019-11-20 16:15:20 -0800350static int read_counter_cpu(struct evsel *counter, struct timespec *rs, int cpu)
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200351{
Jiri Olsaa2f354e2019-08-22 13:11:41 +0200352 int nthreads = perf_thread_map__nr(evsel_list->core.threads);
Andi Kleen4b49ab72019-11-20 16:15:20 -0800353 int thread;
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200354
Suzuki K. Poulose3b4331d2015-02-13 18:40:58 +0000355 if (!counter->supported)
356 return -ENOENT;
357
Jiri Olsa648b5af2019-08-06 11:35:19 +0200358 if (counter->core.system_wide)
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100359 nthreads = 1;
360
361 for (thread = 0; thread < nthreads; thread++) {
Andi Kleen4b49ab72019-11-20 16:15:20 -0800362 struct perf_counts_values *count;
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200363
Andi Kleen4b49ab72019-11-20 16:15:20 -0800364 count = perf_counts(counter->counts, cpu, thread);
Jiri Olsa82bf3112017-07-26 14:02:06 +0200365
Andi Kleen4b49ab72019-11-20 16:15:20 -0800366 /*
367 * The leader's group read loads data into its group members
Arnaldo Carvalho de Meloea089692020-04-30 11:00:53 -0300368 * (via evsel__read_counter()) and sets their count->loaded.
Andi Kleen4b49ab72019-11-20 16:15:20 -0800369 */
370 if (!perf_counts__is_loaded(counter->counts, cpu, thread) &&
371 read_single_counter(counter, cpu, thread, rs)) {
372 counter->counts->scaled = -1;
373 perf_counts(counter->counts, cpu, thread)->ena = 0;
374 perf_counts(counter->counts, cpu, thread)->run = 0;
375 return -1;
376 }
377
378 perf_counts__set_loaded(counter->counts, cpu, thread, false);
379
380 if (STAT_RECORD) {
Arnaldo Carvalho de Meloddc69992020-05-04 13:46:34 -0300381 if (evsel__write_stat_event(counter, cpu, thread, count)) {
Andi Kleen4b49ab72019-11-20 16:15:20 -0800382 pr_err("failed to write stat event\n");
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100383 return -1;
Stephane Eraniandb49a712017-04-12 11:23:01 -0700384 }
Andi Kleen4b49ab72019-11-20 16:15:20 -0800385 }
Jiri Olsa5a6ea812015-11-05 15:40:51 +0100386
Andi Kleen4b49ab72019-11-20 16:15:20 -0800387 if (verbose > 1) {
388 fprintf(stat_config.output,
389 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300390 evsel__name(counter),
Andi Kleen4b49ab72019-11-20 16:15:20 -0800391 cpu,
392 count->val, count->ena, count->run);
Jiri Olsa9bf1a522014-11-21 10:31:09 +0100393 }
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200394 }
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -0200395
396 return 0;
Ingo Molnar2996f5d2009-05-29 09:10:54 +0200397}
398
Jin Yaoc7e5b322020-05-20 12:27:37 +0800399static int read_affinity_counters(struct timespec *rs)
Jiri Olsa106a94a2015-06-26 11:29:19 +0200400{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200401 struct evsel *counter;
Andi Kleen4b49ab72019-11-20 16:15:20 -0800402 struct affinity affinity;
403 int i, ncpus, cpu;
404
Song Liu112cb562021-04-25 14:43:31 -0700405 if (all_counters_use_bpf)
406 return 0;
407
Andi Kleen4b49ab72019-11-20 16:15:20 -0800408 if (affinity__setup(&affinity) < 0)
Jin Yaoc7e5b322020-05-20 12:27:37 +0800409 return -1;
Andi Kleen4b49ab72019-11-20 16:15:20 -0800410
411 ncpus = perf_cpu_map__nr(evsel_list->core.all_cpus);
412 if (!target__has_cpu(&target) || target__has_per_thread(&target))
413 ncpus = 1;
414 evlist__for_each_cpu(evsel_list, i, cpu) {
415 if (i >= ncpus)
416 break;
417 affinity__set(&affinity, cpu);
418
419 evlist__for_each_entry(evsel_list, counter) {
420 if (evsel__cpu_iter_skip(counter, cpu))
421 continue;
Song Liu112cb562021-04-25 14:43:31 -0700422 if (evsel__is_bpf(counter))
423 continue;
Andi Kleen4b49ab72019-11-20 16:15:20 -0800424 if (!counter->err) {
425 counter->err = read_counter_cpu(counter, rs,
426 counter->cpu_iter - 1);
427 }
428 }
429 }
430 affinity__cleanup(&affinity);
Jin Yaoc7e5b322020-05-20 12:27:37 +0800431 return 0;
432}
433
Song Liufa853c42020-12-29 13:42:14 -0800434static int read_bpf_map_counters(void)
435{
436 struct evsel *counter;
437 int err;
438
439 evlist__for_each_entry(evsel_list, counter) {
Song Liu112cb562021-04-25 14:43:31 -0700440 if (!evsel__is_bpf(counter))
441 continue;
442
Song Liufa853c42020-12-29 13:42:14 -0800443 err = bpf_counter__read(counter);
444 if (err)
445 return err;
446 }
447 return 0;
448}
449
Jin Yaoc7e5b322020-05-20 12:27:37 +0800450static void read_counters(struct timespec *rs)
451{
452 struct evsel *counter;
453
Song Liufa853c42020-12-29 13:42:14 -0800454 if (!stat_config.stop_read_counter) {
Song Liu112cb562021-04-25 14:43:31 -0700455 if (read_bpf_map_counters() ||
456 read_affinity_counters(rs))
Song Liufa853c42020-12-29 13:42:14 -0800457 return;
458 }
Jiri Olsa106a94a2015-06-26 11:29:19 +0200459
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300460 evlist__for_each_entry(evsel_list, counter) {
Andi Kleen4b49ab72019-11-20 16:15:20 -0800461 if (counter->err)
Andi Kleen245bad82015-09-01 15:52:46 -0700462 pr_debug("failed to read counter %s\n", counter->name);
Andi Kleen4b49ab72019-11-20 16:15:20 -0800463 if (counter->err == 0 && perf_stat_process_counter(&stat_config, counter))
Jiri Olsa3b3eb042015-06-26 11:29:20 +0200464 pr_warning("failed to process counter %s\n", counter->name);
Andi Kleen4b49ab72019-11-20 16:15:20 -0800465 counter->err = 0;
Jiri Olsa106a94a2015-06-26 11:29:19 +0200466 }
467}
468
Jin Yao72f02a92020-05-20 12:27:33 +0800469static int runtime_stat_new(struct perf_stat_config *config, int nthreads)
470{
471 int i;
472
473 config->stats = calloc(nthreads, sizeof(struct runtime_stat));
474 if (!config->stats)
475 return -1;
476
477 config->stats_num = nthreads;
478
479 for (i = 0; i < nthreads; i++)
480 runtime_stat__init(&config->stats[i]);
481
482 return 0;
483}
484
485static void runtime_stat_delete(struct perf_stat_config *config)
486{
487 int i;
488
489 if (!config->stats)
490 return;
491
492 for (i = 0; i < config->stats_num; i++)
493 runtime_stat__exit(&config->stats[i]);
494
495 zfree(&config->stats);
496}
497
498static void runtime_stat_reset(struct perf_stat_config *config)
499{
500 int i;
501
502 if (!config->stats)
503 return;
504
505 for (i = 0; i < config->stats_num; i++)
506 perf_stat__reset_shadow_per_stat(&config->stats[i]);
507}
508
Jiri Olsaba411a92015-06-26 11:29:24 +0200509static void process_interval(void)
Stephane Eranian13370a92013-01-29 12:47:44 +0100510{
Stephane Eranian13370a92013-01-29 12:47:44 +0100511 struct timespec ts, rs;
Stephane Eranian13370a92013-01-29 12:47:44 +0100512
Stephane Eranian13370a92013-01-29 12:47:44 +0100513 clock_gettime(CLOCK_MONOTONIC, &ts);
514 diff_timespec(&rs, &ts, &ref_time);
Stephane Eranian13370a92013-01-29 12:47:44 +0100515
Jin Yao197ba862020-04-20 22:54:17 +0800516 perf_stat__reset_shadow_per_stat(&rt_stat);
Jin Yao72f02a92020-05-20 12:27:33 +0800517 runtime_stat_reset(&stat_config);
Andi Kleenf0fbb112019-03-26 15:18:21 -0700518 read_counters(&rs);
519
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100520 if (STAT_RECORD) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300521 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL))
Jiri Olsa7aad0c32015-11-05 15:40:52 +0100522 pr_err("failed to write stat round event\n");
523 }
524
Andi Kleenb90f1332017-08-31 12:40:36 -0700525 init_stats(&walltime_nsecs_stats);
Jiri Olsaea9eb1f2020-05-18 15:14:45 +0200526 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000ULL);
Jiri Olsad4f63a42015-06-26 11:29:26 +0200527 print_counters(&rs, 0, NULL);
Stephane Eranian13370a92013-01-29 12:47:44 +0100528}
529
Alexey Budankovdece3a42020-07-17 10:02:08 +0300530static bool handle_interval(unsigned int interval, int *times)
531{
532 if (interval) {
533 process_interval();
534 if (interval_count && !(--(*times)))
535 return true;
536 }
537 return false;
538}
539
Song Liufa853c42020-12-29 13:42:14 -0800540static int enable_counters(void)
Andi Kleen41191682013-08-02 17:41:11 -0700541{
Song Liufa853c42020-12-29 13:42:14 -0800542 struct evsel *evsel;
543 int err;
544
Song Liu112cb562021-04-25 14:43:31 -0700545 evlist__for_each_entry(evsel_list, evsel) {
546 if (!evsel__is_bpf(evsel))
547 continue;
548
549 err = bpf_counter__enable(evsel);
550 if (err)
551 return err;
Song Liufa853c42020-12-29 13:42:14 -0800552 }
553
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300554 if (stat_config.initial_delay < 0) {
555 pr_info(EVLIST_DISABLED_MSG);
Song Liufa853c42020-12-29 13:42:14 -0800556 return 0;
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300557 }
558
559 if (stat_config.initial_delay > 0) {
560 pr_info(EVLIST_DISABLED_MSG);
Jiri Olsa728c0ee2018-08-30 08:32:11 +0200561 usleep(stat_config.initial_delay * USEC_PER_MSEC);
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300562 }
Jiri Olsa67ccdec2015-12-03 10:06:44 +0100563
564 /*
565 * We need to enable counters only if:
566 * - we don't have tracee (attaching to task or cpu)
567 * - we have initial delay configured
568 */
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300569 if (!target__none(&target) || stat_config.initial_delay) {
Jiri Olsa1c87f162019-07-21 13:24:08 +0200570 evlist__enable(evsel_list);
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300571 if (stat_config.initial_delay > 0)
572 pr_info(EVLIST_ENABLED_MSG);
573 }
Song Liufa853c42020-12-29 13:42:14 -0800574 return 0;
Andi Kleen41191682013-08-02 17:41:11 -0700575}
576
Mark Rutland3df33ef2016-08-09 14:04:29 +0100577static void disable_counters(void)
578{
579 /*
580 * If we don't have tracee (attaching to task or cpu), counters may
581 * still be running. To get accurate group ratios, we must stop groups
582 * from counting before reading their constituent counters.
583 */
584 if (!target__none(&target))
Jiri Olsae74676d2019-07-21 13:24:09 +0200585 evlist__disable(evsel_list);
Mark Rutland3df33ef2016-08-09 14:04:29 +0100586}
587
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300588static volatile int workload_exec_errno;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300589
590/*
Arnaldo Carvalho de Melo7b392ef2020-11-30 09:26:54 -0300591 * evlist__prepare_workload will send a SIGUSR1
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300592 * if the fork fails, since we asked by setting its
593 * want_signal to true.
594 */
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300595static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info,
596 void *ucontext __maybe_unused)
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300597{
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300598 workload_exec_errno = info->si_value.sival_int;
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300599}
600
Arnaldo Carvalho de Meloddc69992020-05-04 13:46:34 -0300601static bool evsel__should_store_id(struct evsel *counter)
Jiri Olsa82bf3112017-07-26 14:02:06 +0200602{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200603 return STAT_RECORD || counter->core.attr.read_format & PERF_FORMAT_ID;
Jiri Olsa82bf3112017-07-26 14:02:06 +0200604}
605
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200606static bool is_target_alive(struct target *_target,
Jiri Olsa9749b902019-07-21 13:23:50 +0200607 struct perf_thread_map *threads)
Jiri Olsacbb5df7e2018-10-22 11:30:15 +0200608{
609 struct stat st;
610 int i;
611
612 if (!target__has_task(_target))
613 return true;
614
615 for (i = 0; i < threads->nr; i++) {
616 char path[PATH_MAX];
617
618 scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(),
619 threads->map[i].pid);
620
621 if (!stat(path, &st))
622 return true;
623 }
624
625 return false;
626}
627
Alexey Budankovbee328c2020-07-17 10:05:06 +0300628static void process_evlist(struct evlist *evlist, unsigned int interval)
629{
630 enum evlist_ctl_cmd cmd = EVLIST_CTL_CMD_UNSUPPORTED;
631
632 if (evlist__ctlfd_process(evlist, &cmd) > 0) {
633 switch (cmd) {
634 case EVLIST_CTL_CMD_ENABLE:
Alexey Budankovbee328c2020-07-17 10:05:06 +0300635 if (interval)
636 process_interval();
637 break;
638 case EVLIST_CTL_CMD_DISABLE:
639 if (interval)
640 process_interval();
Alexey Budankovbee328c2020-07-17 10:05:06 +0300641 break;
Adrian Hunterd20aff12020-09-01 12:37:57 +0300642 case EVLIST_CTL_CMD_SNAPSHOT:
Alexey Budankovbee328c2020-07-17 10:05:06 +0300643 case EVLIST_CTL_CMD_ACK:
644 case EVLIST_CTL_CMD_UNSUPPORTED:
Jiri Olsa142544a2020-12-27 00:20:36 +0100645 case EVLIST_CTL_CMD_EVLIST:
Jiri Olsaf186cd62020-12-27 00:20:37 +0100646 case EVLIST_CTL_CMD_STOP:
Jiri Olsa47fddcb2020-12-27 00:20:38 +0100647 case EVLIST_CTL_CMD_PING:
Alexey Budankovbee328c2020-07-17 10:05:06 +0300648 default:
649 break;
650 }
651 }
652}
653
654static void compute_tts(struct timespec *time_start, struct timespec *time_stop,
655 int *time_to_sleep)
656{
657 int tts = *time_to_sleep;
658 struct timespec time_diff;
659
660 diff_timespec(&time_diff, time_stop, time_start);
661
662 tts -= time_diff.tv_sec * MSEC_PER_SEC +
663 time_diff.tv_nsec / NSEC_PER_MSEC;
664
665 if (tts < 0)
666 tts = 0;
667
668 *time_to_sleep = tts;
669}
670
671static int dispatch_events(bool forks, int timeout, int interval, int *times)
Alexey Budankov987b8232020-07-17 10:04:02 +0300672{
673 int child_exited = 0, status = 0;
Alexey Budankovbee328c2020-07-17 10:05:06 +0300674 int time_to_sleep, sleep_time;
675 struct timespec time_start, time_stop;
676
677 if (interval)
678 sleep_time = interval;
679 else if (timeout)
680 sleep_time = timeout;
681 else
682 sleep_time = 1000;
683
684 time_to_sleep = sleep_time;
Alexey Budankov987b8232020-07-17 10:04:02 +0300685
686 while (!done) {
687 if (forks)
688 child_exited = waitpid(child_pid, &status, WNOHANG);
689 else
690 child_exited = !is_target_alive(&target, evsel_list->core.threads) ? 1 : 0;
691
692 if (child_exited)
693 break;
694
Alexey Budankovbee328c2020-07-17 10:05:06 +0300695 clock_gettime(CLOCK_MONOTONIC, &time_start);
696 if (!(evlist__poll(evsel_list, time_to_sleep) > 0)) { /* poll timeout or EINTR */
697 if (timeout || handle_interval(interval, times))
698 break;
699 time_to_sleep = sleep_time;
700 } else { /* fd revent */
701 process_evlist(evsel_list, interval);
702 clock_gettime(CLOCK_MONOTONIC, &time_stop);
703 compute_tts(&time_start, &time_stop, &time_to_sleep);
704 }
Alexey Budankov987b8232020-07-17 10:04:02 +0300705 }
706
707 return status;
708}
709
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800710enum counter_recovery {
711 COUNTER_SKIP,
712 COUNTER_RETRY,
713 COUNTER_FATAL,
714};
715
716static enum counter_recovery stat_handle_error(struct evsel *counter)
717{
718 char msg[BUFSIZ];
719 /*
720 * PPC returns ENXIO for HW counters until 2.6.37
721 * (behavior changed with commit b0a873e).
722 */
723 if (errno == EINVAL || errno == ENOSYS ||
724 errno == ENOENT || errno == EOPNOTSUPP ||
725 errno == ENXIO) {
726 if (verbose > 0)
727 ui__warning("%s event is not supported by the kernel.\n",
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300728 evsel__name(counter));
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800729 counter->supported = false;
Andi Kleen4804e012019-11-20 16:15:19 -0800730 /*
731 * errored is a sticky flag that means one of the counter's
732 * cpu event had a problem and needs to be reexamined.
733 */
734 counter->errored = true;
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800735
736 if ((counter->leader != counter) ||
737 !(counter->leader->core.nr_members > 1))
738 return COUNTER_SKIP;
Arnaldo Carvalho de Meloae430892020-04-30 11:46:15 -0300739 } else if (evsel__fallback(counter, errno, msg, sizeof(msg))) {
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800740 if (verbose > 0)
741 ui__warning("%s\n", msg);
742 return COUNTER_RETRY;
743 } else if (target__has_per_thread(&target) &&
744 evsel_list->core.threads &&
745 evsel_list->core.threads->err_thread != -1) {
746 /*
747 * For global --per-thread case, skip current
748 * error thread.
749 */
750 if (!thread_map__remove(evsel_list->core.threads,
751 evsel_list->core.threads->err_thread)) {
752 evsel_list->core.threads->err_thread = -1;
753 return COUNTER_RETRY;
754 }
755 }
756
Arnaldo Carvalho de Melo2bb72db2020-05-04 13:43:03 -0300757 evsel__open_strerror(counter, &target, errno, msg, sizeof(msg));
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800758 ui__error("%s\n", msg);
759
760 if (child_pid != -1)
761 kill(child_pid, SIGTERM);
762 return COUNTER_FATAL;
763}
764
Jiri Olsae55c14a2018-04-23 11:08:21 +0200765static int __run_perf_stat(int argc, const char **argv, int run_idx)
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200766{
Jiri Olsaec0d3d12015-07-21 14:31:25 +0200767 int interval = stat_config.interval;
yuzhoujiandb06a262018-01-29 10:25:22 +0100768 int times = stat_config.times;
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100769 int timeout = stat_config.timeout;
Arnaldo Carvalho de Melod6195a62017-02-13 16:45:24 -0300770 char msg[BUFSIZ];
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200771 unsigned long long t0, t1;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200772 struct evsel *counter;
Stephane Eranian410136f2013-11-12 17:58:49 +0100773 size_t l;
Ingo Molnar42202dd2009-06-13 14:57:28 +0200774 int status = 0;
Zhang, Yanmin6be28502010-03-18 11:36:03 -0300775 const bool forks = (argc > 0);
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100776 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false;
Andi Kleen4804e012019-11-20 16:15:19 -0800777 struct affinity affinity;
Song Liufa853c42020-12-29 13:42:14 -0800778 int i, cpu, err;
Andi Kleen4804e012019-11-20 16:15:19 -0800779 bool second_pass = false;
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200780
Liming Wang60666c62009-12-31 16:05:50 +0800781 if (forks) {
Arnaldo Carvalho de Melo7b392ef2020-11-30 09:26:54 -0300782 if (evlist__prepare_workload(evsel_list, &target, argv, is_pipe, workload_exec_failed_signal) < 0) {
Namhyung Kimacf28922013-03-11 16:43:18 +0900783 perror("failed to prepare workload");
784 return -1;
Liming Wang60666c62009-12-31 16:05:50 +0800785 }
Namhyung Kimd20a47e2013-09-30 18:01:11 +0900786 child_pid = evsel_list->workload.pid;
Paul Mackerras051ae7f2009-06-29 21:13:21 +1000787 }
788
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200789 if (group)
Arnaldo Carvalho de Meloa622eaf2020-11-30 09:22:07 -0300790 evlist__set_leader(evsel_list);
Jiri Olsa6a4bb042012-08-08 12:22:36 +0200791
Andi Kleen4804e012019-11-20 16:15:19 -0800792 if (affinity__setup(&affinity) < 0)
793 return -1;
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700794
Song Liu112cb562021-04-25 14:43:31 -0700795 evlist__for_each_entry(evsel_list, counter) {
796 if (bpf_counter__load(counter, &target))
797 return -1;
798 if (!evsel__is_bpf(counter))
799 all_counters_use_bpf = false;
Song Liufa853c42020-12-29 13:42:14 -0800800 }
801
Andi Kleen4804e012019-11-20 16:15:19 -0800802 evlist__for_each_cpu (evsel_list, i, cpu) {
Song Liu7fac83a2021-03-16 14:18:35 -0700803 /*
804 * bperf calls evsel__open_per_cpu() in bperf__load(), so
805 * no need to call it again here.
806 */
807 if (target.use_bpf)
808 break;
Andi Kleen4804e012019-11-20 16:15:19 -0800809 affinity__set(&affinity, cpu);
Andi Kleen5a5dfe42017-08-31 12:40:26 -0700810
Andi Kleen4804e012019-11-20 16:15:19 -0800811 evlist__for_each_entry(evsel_list, counter) {
812 if (evsel__cpu_iter_skip(counter, cpu))
Andi Kleene0e6a6c2019-11-20 16:15:18 -0800813 continue;
Andi Kleen4804e012019-11-20 16:15:19 -0800814 if (counter->reset_group || counter->errored)
815 continue;
Song Liu112cb562021-04-25 14:43:31 -0700816 if (evsel__is_bpf(counter))
817 continue;
Andi Kleen4804e012019-11-20 16:15:19 -0800818try_again:
819 if (create_perf_stat_counter(counter, &stat_config, &target,
820 counter->cpu_iter - 1) < 0) {
821
822 /*
823 * Weak group failed. We cannot just undo this here
824 * because earlier CPUs might be in group mode, and the kernel
825 * doesn't support mixing group and non group reads. Defer
826 * it to later.
827 * Don't close here because we're in the wrong affinity.
828 */
829 if ((errno == EINVAL || errno == EBADF) &&
830 counter->leader != counter &&
831 counter->weak_group) {
Arnaldo Carvalho de Melo64b47782020-11-30 14:58:32 -0300832 evlist__reset_weak_group(evsel_list, counter, false);
Andi Kleen4804e012019-11-20 16:15:19 -0800833 assert(counter->reset_group);
834 second_pass = true;
835 continue;
836 }
837
838 switch (stat_handle_error(counter)) {
839 case COUNTER_FATAL:
840 return -1;
841 case COUNTER_RETRY:
842 goto try_again;
843 case COUNTER_SKIP:
844 continue;
845 default:
846 break;
847 }
848
849 }
850 counter->supported = true;
851 }
852 }
853
854 if (second_pass) {
855 /*
856 * Now redo all the weak group after closing them,
857 * and also close errored counters.
858 */
859
860 evlist__for_each_cpu(evsel_list, i, cpu) {
861 affinity__set(&affinity, cpu);
862 /* First close errored or weak retry */
863 evlist__for_each_entry(evsel_list, counter) {
864 if (!counter->reset_group && !counter->errored)
865 continue;
866 if (evsel__cpu_iter_skip_no_inc(counter, cpu))
867 continue;
868 perf_evsel__close_cpu(&counter->core, counter->cpu_iter);
869 }
870 /* Now reopen weak */
871 evlist__for_each_entry(evsel_list, counter) {
872 if (!counter->reset_group && !counter->errored)
873 continue;
874 if (evsel__cpu_iter_skip(counter, cpu))
875 continue;
876 if (!counter->reset_group)
877 continue;
878try_again_reset:
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300879 pr_debug2("reopening weak %s\n", evsel__name(counter));
Andi Kleen4804e012019-11-20 16:15:19 -0800880 if (create_perf_stat_counter(counter, &stat_config, &target,
881 counter->cpu_iter - 1) < 0) {
882
883 switch (stat_handle_error(counter)) {
884 case COUNTER_FATAL:
885 return -1;
886 case COUNTER_RETRY:
887 goto try_again_reset;
888 case COUNTER_SKIP:
889 continue;
890 default:
891 break;
892 }
893 }
894 counter->supported = true;
Jin Yaoab6c79b2018-01-16 23:43:08 +0800895 }
Arnaldo Carvalho de Melo48290602011-01-03 17:48:12 -0200896 }
Andi Kleen4804e012019-11-20 16:15:19 -0800897 }
898 affinity__cleanup(&affinity);
899
900 evlist__for_each_entry(evsel_list, counter) {
901 if (!counter->supported) {
902 perf_evsel__free_fd(&counter->core);
903 continue;
904 }
Stephane Eranian410136f2013-11-12 17:58:49 +0100905
906 l = strlen(counter->unit);
Jiri Olsadf4f7b42018-08-30 08:32:32 +0200907 if (l > stat_config.unit_width)
908 stat_config.unit_width = l;
Jiri Olsa2af46462015-11-05 15:40:49 +0100909
Arnaldo Carvalho de Meloddc69992020-05-04 13:46:34 -0300910 if (evsel__should_store_id(counter) &&
Arnaldo Carvalho de Melo34397752020-05-04 13:45:19 -0300911 evsel__store_ids(counter, evsel_list))
Jiri Olsa2af46462015-11-05 15:40:49 +0100912 return -1;
Arnaldo Carvalho de Melo084ab9f2010-03-22 13:10:28 -0300913 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200914
Arnaldo Carvalho de Melo24bf91a2020-11-30 09:38:02 -0300915 if (evlist__apply_filters(evsel_list, &counter)) {
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -0300916 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n",
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300917 counter->filter, evsel__name(counter), errno,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300918 str_error_r(errno, msg, sizeof(msg)));
Frederic Weisbeckercfd748a2011-03-14 16:40:30 +0100919 return -1;
920 }
921
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100922 if (STAT_RECORD) {
Song Liufa853c42020-12-29 13:42:14 -0800923 int fd = perf_data__fd(&perf_stat.data);
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100924
Jiri Olsa664c98d2015-11-05 15:40:50 +0100925 if (is_pipe) {
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100926 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data));
Jiri Olsa664c98d2015-11-05 15:40:50 +0100927 } else {
928 err = perf_session__write_header(perf_stat.session, evsel_list,
929 fd, false);
930 }
931
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100932 if (err < 0)
933 return err;
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100934
Arnaldo Carvalho de Melob2518922019-09-10 17:17:33 +0100935 err = perf_event__synthesize_stat_events(&stat_config, NULL, evsel_list,
936 process_synthesized_event, is_pipe);
Jiri Olsa8b99b1a2015-11-05 15:40:48 +0100937 if (err < 0)
938 return err;
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100939 }
940
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200941 /*
942 * Enable counters and exec the command:
943 */
Liming Wang60666c62009-12-31 16:05:50 +0800944 if (forks) {
Arnaldo Carvalho de Melo7b392ef2020-11-30 09:26:54 -0300945 evlist__start_workload(evsel_list);
Song Liufa853c42020-12-29 13:42:14 -0800946 err = enable_counters();
947 if (err)
948 return -1;
Namhyung Kimacf28922013-03-11 16:43:18 +0900949
Song Liu435b46e2021-03-16 14:18:36 -0700950 t0 = rdclock();
951 clock_gettime(CLOCK_MONOTONIC, &ref_time);
952
Alexey Budankov27e97692020-07-17 10:05:41 +0300953 if (interval || timeout || evlist__ctlfd_initialized(evsel_list))
Alexey Budankovbee328c2020-07-17 10:05:06 +0300954 status = dispatch_events(forks, timeout, interval, &times);
Arnaldo Carvalho de Melocfbd41b2020-04-15 12:31:26 -0300955 if (child_pid != -1) {
956 if (timeout)
957 kill(child_pid, SIGTERM);
Jin Yao8a992552019-01-03 15:40:45 +0800958 wait4(child_pid, &status, 0, &stat_config.ru_data);
Arnaldo Carvalho de Melocfbd41b2020-04-15 12:31:26 -0300959 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300960
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300961 if (workload_exec_errno) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300962 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg));
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300963 pr_err("Workload failed: %s\n", emsg);
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300964 return -1;
Arnaldo Carvalho de Melof33cbe72014-01-02 15:11:25 -0300965 }
Arnaldo Carvalho de Melo6af206f2013-12-28 15:45:08 -0300966
Andi Kleen33e49ea2011-09-15 14:31:40 -0700967 if (WIFSIGNALED(status))
968 psignal(WTERMSIG(status), argv[0]);
Liming Wang60666c62009-12-31 16:05:50 +0800969 } else {
Song Liufa853c42020-12-29 13:42:14 -0800970 err = enable_counters();
971 if (err)
972 return -1;
Song Liu435b46e2021-03-16 14:18:36 -0700973
974 t0 = rdclock();
975 clock_gettime(CLOCK_MONOTONIC, &ref_time);
976
Alexey Budankovbee328c2020-07-17 10:05:06 +0300977 status = dispatch_events(forks, timeout, interval, &times);
Liming Wang60666c62009-12-31 16:05:50 +0800978 }
Ingo Molnar44db76c2009-06-03 19:36:07 +0200979
Mark Rutland3df33ef2016-08-09 14:04:29 +0100980 disable_counters();
981
Ingo Molnarddcacfa2009-04-20 15:37:32 +0200982 t1 = rdclock();
983
Jiri Olsa54ac0b12018-08-30 08:32:50 +0200984 if (stat_config.walltime_run_table)
985 stat_config.walltime_run[run_idx] = t1 - t0;
Jiri Olsae55c14a2018-04-23 11:08:21 +0200986
Jin Yaoee6a9612020-09-03 09:01:13 +0800987 if (interval && stat_config.summary) {
Jin Yaoc7e5b322020-05-20 12:27:37 +0800988 stat_config.interval = 0;
Jin Yaoee6a9612020-09-03 09:01:13 +0800989 stat_config.stop_read_counter = true;
Jin Yaoc7e5b322020-05-20 12:27:37 +0800990 init_stats(&walltime_nsecs_stats);
991 update_stats(&walltime_nsecs_stats, t1 - t0);
992
993 if (stat_config.aggr_mode == AGGR_GLOBAL)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -0300994 evlist__save_aggr_prev_raw_counts(evsel_list);
Jin Yaoc7e5b322020-05-20 12:27:37 +0800995
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -0300996 evlist__copy_prev_raw_counts(evsel_list);
997 evlist__reset_prev_raw_counts(evsel_list);
Jin Yaoc7e5b322020-05-20 12:27:37 +0800998 runtime_stat_reset(&stat_config);
999 perf_stat__reset_shadow_per_stat(&rt_stat);
1000 } else
1001 update_stats(&walltime_nsecs_stats, t1 - t0);
Ingo Molnar42202dd2009-06-13 14:57:28 +02001002
Mark Rutland3df33ef2016-08-09 14:04:29 +01001003 /*
1004 * Closing a group leader splits the group, and as we only disable
1005 * group leaders, results in remaining events becoming enabled. To
1006 * avoid arbitrary skew, we must read all counters before closing any
1007 * group leaders.
1008 */
Andi Kleenf0fbb112019-03-26 15:18:21 -07001009 read_counters(&(struct timespec) { .tv_nsec = t1-t0 });
Jiri Olsa08ef3af2019-07-15 16:21:21 +02001010
1011 /*
1012 * We need to keep evsel_list alive, because it's processed
1013 * later the evsel_list will be closed after.
1014 */
1015 if (!STAT_RECORD)
Jiri Olsa750b4ed2019-07-21 13:24:07 +02001016 evlist__close(evsel_list);
Arnaldo Carvalho de Meloc52b12e2011-01-03 17:45:52 -02001017
Ingo Molnar42202dd2009-06-13 14:57:28 +02001018 return WEXITSTATUS(status);
1019}
1020
Jiri Olsae55c14a2018-04-23 11:08:21 +02001021static int run_perf_stat(int argc, const char **argv, int run_idx)
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001022{
1023 int ret;
1024
1025 if (pre_cmd) {
1026 ret = system(pre_cmd);
1027 if (ret)
1028 return ret;
1029 }
1030
1031 if (sync_run)
1032 sync();
1033
Jiri Olsae55c14a2018-04-23 11:08:21 +02001034 ret = __run_perf_stat(argc, argv, run_idx);
Peter Zijlstra1f16c572012-10-23 13:40:14 +02001035 if (ret)
1036 return ret;
1037
1038 if (post_cmd) {
1039 ret = system(post_cmd);
1040 if (ret)
1041 return ret;
1042 }
1043
1044 return ret;
1045}
1046
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001047static void print_counters(struct timespec *ts, int argc, const char **argv)
1048{
Jiri Olsa01748202018-08-30 08:32:25 +02001049 /* Do not print anything if we record to the pipe. */
1050 if (STAT_RECORD && perf_stat.data.is_pipe)
1051 return;
Andi Kleen55a4de92020-10-26 17:27:36 -07001052 if (stat_config.quiet)
1053 return;
Jiri Olsa01748202018-08-30 08:32:25 +02001054
Arnaldo Carvalho de Melo71273722020-11-30 14:55:12 -03001055 evlist__print_counters(evsel_list, &stat_config, &target, ts, argc, argv);
Jiri Olsaa5a9eac2018-08-30 08:32:24 +02001056}
1057
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001058static volatile int signr = -1;
1059
Ingo Molnar52425192009-05-26 09:17:18 +02001060static void skip_signal(int signo)
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001061{
Jiri Olsaec0d3d12015-07-21 14:31:25 +02001062 if ((child_pid == -1) || stat_config.interval)
Liming Wang60666c62009-12-31 16:05:50 +08001063 done = 1;
1064
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001065 signr = signo;
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001066 /*
1067 * render child_pid harmless
1068 * won't send SIGTERM to a random
1069 * process in case of race condition
1070 * and fast PID recycling
1071 */
1072 child_pid = -1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001073}
1074
1075static void sig_atexit(void)
1076{
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001077 sigset_t set, oset;
1078
1079 /*
1080 * avoid race condition with SIGCHLD handler
1081 * in skip_signal() which is modifying child_pid
1082 * goal is to avoid send SIGTERM to a random
1083 * process
1084 */
1085 sigemptyset(&set);
1086 sigaddset(&set, SIGCHLD);
1087 sigprocmask(SIG_BLOCK, &set, &oset);
1088
Chris Wilson933da832009-10-04 01:35:01 +01001089 if (child_pid != -1)
1090 kill(child_pid, SIGTERM);
1091
Stephane Eraniand07f0b12013-06-04 17:44:26 +02001092 sigprocmask(SIG_SETMASK, &oset, NULL);
1093
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02001094 if (signr == -1)
1095 return;
1096
1097 signal(signr, SIG_DFL);
1098 kill(getpid(), signr);
Ingo Molnar52425192009-05-26 09:17:18 +02001099}
Ingo Molnarddcacfa2009-04-20 15:37:32 +02001100
Paul A. Clarked778a772020-05-20 11:23:35 -05001101void perf_stat__set_big_num(int set)
1102{
1103 stat_config.big_num = (set != 0);
1104}
1105
Jin Yao0bdad972021-03-19 15:01:55 +08001106void perf_stat__set_no_csv_summary(int set)
1107{
1108 stat_config.no_csv_summary = (set != 0);
1109}
1110
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001111static int stat__set_big_num(const struct option *opt __maybe_unused,
1112 const char *s __maybe_unused, int unset)
Stephane Eraniand7470b62010-12-01 18:49:05 +02001113{
1114 big_num_opt = unset ? 0 : 1;
Paul A. Clarked778a772020-05-20 11:23:35 -05001115 perf_stat__set_big_num(!unset);
Stephane Eraniand7470b62010-12-01 18:49:05 +02001116 return 0;
1117}
1118
Andi Kleen44b1e602016-05-30 12:49:42 -03001119static int enable_metric_only(const struct option *opt __maybe_unused,
1120 const char *s __maybe_unused, int unset)
1121{
1122 force_metric_only = true;
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001123 stat_config.metric_only = !unset;
Andi Kleen44b1e602016-05-30 12:49:42 -03001124 return 0;
1125}
1126
Andi Kleenb18f3e32017-08-31 12:40:31 -07001127static int parse_metric_groups(const struct option *opt,
1128 const char *str,
1129 int unset __maybe_unused)
1130{
Ian Rogers05530a72020-05-20 11:20:10 -07001131 return metricgroup__parse_groups(opt, str,
1132 stat_config.metric_no_group,
1133 stat_config.metric_no_merge,
1134 &stat_config.metric_events);
Andi Kleenb18f3e32017-08-31 12:40:31 -07001135}
1136
Alexey Budankov27e97692020-07-17 10:05:41 +03001137static int parse_control_option(const struct option *opt,
1138 const char *str,
1139 int unset __maybe_unused)
1140{
Adrian Hunter9864a662020-09-01 12:37:53 +03001141 struct perf_stat_config *config = opt->value;
Alexey Budankov27e97692020-07-17 10:05:41 +03001142
Adrian Huntera8fcbd22020-09-02 13:57:07 +03001143 return evlist__parse_control(str, &config->ctl_fd, &config->ctl_fd_ack, &config->ctl_fd_close);
1144}
1145
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09001146static int parse_stat_cgroups(const struct option *opt,
1147 const char *str, int unset)
1148{
1149 if (stat_config.cgroup_list) {
1150 pr_err("--cgroup and --for-each-cgroup cannot be used together\n");
1151 return -1;
1152 }
1153
1154 return parse_cgroups(opt, str, unset);
1155}
1156
Michael Petlan51433ea2018-12-10 11:00:04 -05001157static struct option stat_options[] = {
Jiri Olsae0547312015-11-05 15:40:45 +01001158 OPT_BOOLEAN('T', "transaction", &transaction_run,
1159 "hardware transaction statistics"),
1160 OPT_CALLBACK('e', "event", &evsel_list, "event",
1161 "event selector. use 'perf list' to list available events",
1162 parse_events_option),
1163 OPT_CALLBACK(0, "filter", &evsel_list, "filter",
1164 "event filter", parse_filter),
Jiri Olsa5698f262018-08-30 08:32:12 +02001165 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit,
Jiri Olsae0547312015-11-05 15:40:45 +01001166 "child tasks do not inherit counters"),
1167 OPT_STRING('p', "pid", &target.pid, "pid",
1168 "stat events on existing process id"),
1169 OPT_STRING('t', "tid", &target.tid, "tid",
1170 "stat events on existing thread id"),
Song Liufa853c42020-12-29 13:42:14 -08001171#ifdef HAVE_BPF_SKEL
1172 OPT_STRING('b', "bpf-prog", &target.bpf_str, "bpf-prog-id",
1173 "stat events on existing bpf program id"),
Song Liu7fac83a2021-03-16 14:18:35 -07001174 OPT_BOOLEAN(0, "bpf-counters", &target.use_bpf,
1175 "use bpf program to count events"),
1176 OPT_STRING(0, "bpf-attr-map", &target.attr_map, "attr-map-path",
1177 "path to perf_event_attr map"),
Song Liufa853c42020-12-29 13:42:14 -08001178#endif
Jiri Olsae0547312015-11-05 15:40:45 +01001179 OPT_BOOLEAN('a', "all-cpus", &target.system_wide,
1180 "system-wide collection from all CPUs"),
1181 OPT_BOOLEAN('g', "group", &group,
1182 "put the counters into a counter group"),
Andi Kleen75998bb2019-03-14 15:50:01 -07001183 OPT_BOOLEAN(0, "scale", &stat_config.scale,
1184 "Use --no-scale to disable counter scaling for multiplexing"),
Jiri Olsae0547312015-11-05 15:40:45 +01001185 OPT_INCR('v', "verbose", &verbose,
1186 "be more verbose (show counter open errors, etc)"),
Jiri Olsad97ae042018-08-30 08:32:36 +02001187 OPT_INTEGER('r', "repeat", &stat_config.run_count,
Jiri Olsae0547312015-11-05 15:40:45 +01001188 "repeat command and print average + stddev (max: 100, forever: 0)"),
Jiri Olsa54ac0b12018-08-30 08:32:50 +02001189 OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table,
Jiri Olsae55c14a2018-04-23 11:08:21 +02001190 "display details about each run (only with -r option)"),
Jiri Olsaaea0dca2018-08-30 08:32:41 +02001191 OPT_BOOLEAN('n', "null", &stat_config.null_run,
Jiri Olsae0547312015-11-05 15:40:45 +01001192 "null run - dont start any counters"),
1193 OPT_INCR('d', "detailed", &detailed_run,
1194 "detailed run - start a lot of events"),
1195 OPT_BOOLEAN('S', "sync", &sync_run,
1196 "call sync() before starting a run"),
1197 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL,
1198 "print large numbers with thousands\' separators",
1199 stat__set_big_num),
1200 OPT_STRING('C', "cpu", &target.cpu_list, "cpu",
1201 "list of cpus to monitor in system-wide"),
1202 OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode,
1203 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsafdee3352018-08-30 08:32:48 +02001204 OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"),
Jiri Olsafa7070a2018-08-30 08:32:29 +02001205 OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator",
Jiri Olsae0547312015-11-05 15:40:45 +01001206 "print counts with custom separator"),
1207 OPT_CALLBACK('G', "cgroup", &evsel_list, "name",
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09001208 "monitor event in cgroup name only", parse_stat_cgroups),
1209 OPT_STRING(0, "for-each-cgroup", &stat_config.cgroup_list, "name",
1210 "expand events for each cgroup"),
Jiri Olsae0547312015-11-05 15:40:45 +01001211 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1212 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"),
1213 OPT_INTEGER(0, "log-fd", &output_fd,
1214 "log output to fd, instead of stderr"),
1215 OPT_STRING(0, "pre", &pre_cmd, "command",
1216 "command to run prior to the measured command"),
1217 OPT_STRING(0, "post", &post_cmd, "command",
1218 "command to run after to the measured command"),
1219 OPT_UINTEGER('I', "interval-print", &stat_config.interval,
Alexey Budankov9dc9a952018-04-03 21:18:33 +03001220 "print counts at regular interval in ms "
1221 "(overhead is possible for values <= 100ms)"),
yuzhoujiandb06a262018-01-29 10:25:22 +01001222 OPT_INTEGER(0, "interval-count", &stat_config.times,
1223 "print counts for fixed number of times"),
Jiri Olsa132c6ba2018-08-30 08:32:30 +02001224 OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear,
Jiri Olsa9660e082018-06-07 00:15:06 +02001225 "clear screen in between new interval"),
yuzhoujianf1f8ad52018-01-29 10:25:23 +01001226 OPT_UINTEGER(0, "timeout", &stat_config.timeout,
1227 "stop workload and print counts after a timeout period in ms (>= 10ms)"),
Jiri Olsae0547312015-11-05 15:40:45 +01001228 OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode,
1229 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -07001230 OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode,
1231 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsae0547312015-11-05 15:40:45 +01001232 OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode,
1233 "aggregate counts per physical processor core", AGGR_CORE),
1234 OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode,
1235 "aggregate counts per thread", AGGR_THREAD),
Jiri Olsa86895b42019-08-28 10:17:43 +02001236 OPT_SET_UINT(0, "per-node", &stat_config.aggr_mode,
1237 "aggregate counts per numa node", AGGR_NODE),
Alexey Budankov2162b9c2020-07-17 10:04:33 +03001238 OPT_INTEGER('D', "delay", &stat_config.initial_delay,
1239 "ms to wait before starting measurement after program start (-1: start with events disabled)"),
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001240 OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL,
Andi Kleen44b1e602016-05-30 12:49:42 -03001241 "Only print computed metrics. No raw values", enable_metric_only),
Ian Rogers05530a72020-05-20 11:20:10 -07001242 OPT_BOOLEAN(0, "metric-no-group", &stat_config.metric_no_group,
1243 "don't group metric events, impacts multiplexing"),
1244 OPT_BOOLEAN(0, "metric-no-merge", &stat_config.metric_no_merge,
1245 "don't try to share events between metrics in a group"),
Andi Kleen44b1e602016-05-30 12:49:42 -03001246 OPT_BOOLEAN(0, "topdown", &topdown_run,
Kan Liang63e39aa2021-02-02 12:09:12 -08001247 "measure top-down statistics"),
1248 OPT_UINTEGER(0, "td-level", &stat_config.topdown_level,
1249 "Set the metrics level for the top-down statistics (0: max level)"),
Kan Liangdaefd0b2017-05-26 12:05:38 -07001250 OPT_BOOLEAN(0, "smi-cost", &smi_cost,
1251 "measure SMI cost"),
Andi Kleenb18f3e32017-08-31 12:40:31 -07001252 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list",
1253 "monitor specified metrics or metric groups (separated by ,)",
1254 parse_metric_groups),
Jin Yaodd071022019-10-11 13:05:45 +08001255 OPT_BOOLEAN_FLAG(0, "all-kernel", &stat_config.all_kernel,
1256 "Configure all used events to run in kernel space.",
1257 PARSE_OPT_EXCLUSIVE),
1258 OPT_BOOLEAN_FLAG(0, "all-user", &stat_config.all_user,
1259 "Configure all used events to run in user space.",
1260 PARSE_OPT_EXCLUSIVE),
Jin Yao1af62ce2020-02-14 16:04:52 +08001261 OPT_BOOLEAN(0, "percore-show-thread", &stat_config.percore_show_thread,
1262 "Use with 'percore' event qualifier to show the event "
1263 "counts of one hardware thread by sum up total hardware "
1264 "threads of same physical core"),
Jin Yaoee6a9612020-09-03 09:01:13 +08001265 OPT_BOOLEAN(0, "summary", &stat_config.summary,
1266 "print summary for interval mode"),
Jin Yao0bdad972021-03-19 15:01:55 +08001267 OPT_BOOLEAN(0, "no-csv-summary", &stat_config.no_csv_summary,
1268 "don't print 'summary' for CSV summary output"),
Andi Kleen55a4de92020-10-26 17:27:36 -07001269 OPT_BOOLEAN(0, "quiet", &stat_config.quiet,
1270 "don't print output (useful with record)"),
Stephane Eranian70943492020-05-05 11:29:43 -07001271#ifdef HAVE_LIBPFM
1272 OPT_CALLBACK(0, "pfm-events", &evsel_list, "event",
1273 "libpfm4 event selector. use 'perf list' to list available events",
1274 parse_libpfm_events_option),
1275#endif
Adrian Huntera8fcbd22020-09-02 13:57:07 +03001276 OPT_CALLBACK(0, "control", &stat_config, "fd:ctl-fd[,ack-fd] or fifo:ctl-fifo[,ack-fifo]",
Alexey Budankov27e97692020-07-17 10:05:41 +03001277 "Listen on ctl-fd descriptor for command to control measurement ('enable': enable events, 'disable': disable events).\n"
Adrian Huntera8fcbd22020-09-02 13:57:07 +03001278 "\t\t\t Optionally send control command completion ('ack\\n') to ack-fd descriptor.\n"
1279 "\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 +03001280 parse_control_option),
Alexander Antonovf07952b2021-04-19 12:41:44 +03001281 OPT_CALLBACK_OPTARG(0, "iostat", &evsel_list, &stat_config, "default",
1282 "measure I/O performance metrics provided by arch/platform",
1283 iostat_parse),
Jiri Olsae0547312015-11-05 15:40:45 +01001284 OPT_END()
1285};
1286
James Clark2760f5a12020-11-26 16:13:20 +02001287static struct aggr_cpu_id perf_stat__get_socket(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001288 struct perf_cpu_map *map, int cpu)
Jiri Olsa1fe7a302015-10-16 12:41:15 +02001289{
1290 return cpu_map__get_socket(map, cpu, NULL);
1291}
1292
James Clark2760f5a12020-11-26 16:13:20 +02001293static struct aggr_cpu_id perf_stat__get_die(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001294 struct perf_cpu_map *map, int cpu)
Kan Liangdb5742b2019-06-04 15:50:42 -07001295{
1296 return cpu_map__get_die(map, cpu, NULL);
1297}
1298
James Clark2760f5a12020-11-26 16:13:20 +02001299static struct aggr_cpu_id perf_stat__get_core(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_core(map, cpu, NULL);
1303}
1304
James Clark2760f5a12020-11-26 16:13:20 +02001305static struct aggr_cpu_id perf_stat__get_node(struct perf_stat_config *config __maybe_unused,
Jiri Olsa86895b42019-08-28 10:17:43 +02001306 struct perf_cpu_map *map, int cpu)
1307{
1308 return cpu_map__get_node(map, cpu, NULL);
1309}
1310
James Clark2760f5a12020-11-26 16:13:20 +02001311static struct aggr_cpu_id perf_stat__get_aggr(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +02001312 aggr_get_id_t get_id, struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001313{
1314 int cpu;
James Clark2760f5a12020-11-26 16:13:20 +02001315 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001316
1317 if (idx >= map->nr)
James Clark2760f5a12020-11-26 16:13:20 +02001318 return id;
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001319
1320 cpu = map->map[idx];
1321
James Clarkff523292020-11-26 16:13:23 +02001322 if (cpu_map__aggr_cpu_id_is_empty(config->cpus_aggr_map->map[cpu]))
1323 config->cpus_aggr_map->map[cpu] = get_id(config, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001324
James Clarkff523292020-11-26 16:13:23 +02001325 id = config->cpus_aggr_map->map[cpu];
James Clark2760f5a12020-11-26 16:13:20 +02001326 return id;
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001327}
1328
James Clark2760f5a12020-11-26 16:13:20 +02001329static struct aggr_cpu_id perf_stat__get_socket_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +02001330 struct perf_cpu_map *map, int idx)
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001331{
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001332 return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx);
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001333}
1334
James Clark2760f5a12020-11-26 16:13:20 +02001335static struct aggr_cpu_id perf_stat__get_die_cached(struct perf_stat_config *config,
Jiri Olsaf8548392019-07-21 13:23:49 +02001336 struct perf_cpu_map *map, int idx)
Kan Liangdb5742b2019-06-04 15:50:42 -07001337{
1338 return perf_stat__get_aggr(config, perf_stat__get_die, map, idx);
1339}
1340
James Clark2760f5a12020-11-26 16:13:20 +02001341static struct aggr_cpu_id perf_stat__get_core_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_core, 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_node_cached(struct perf_stat_config *config,
Jiri Olsa86895b42019-08-28 10:17:43 +02001348 struct perf_cpu_map *map, int idx)
1349{
1350 return perf_stat__get_aggr(config, perf_stat__get_node, map, idx);
1351}
1352
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001353static bool term_percore_set(void)
1354{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001355 struct evsel *counter;
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001356
1357 evlist__for_each_entry(evsel_list, counter) {
1358 if (counter->percore)
1359 return true;
1360 }
1361
1362 return false;
1363}
1364
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001365static int perf_stat_init_aggr_mode(void)
1366{
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001367 int nr;
1368
Jiri Olsa421a50f2015-07-21 14:31:22 +02001369 switch (stat_config.aggr_mode) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001370 case AGGR_SOCKET:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001371 if (cpu_map__build_socket_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001372 perror("cannot build socket map");
1373 return -1;
1374 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001375 stat_config.aggr_get_id = perf_stat__get_socket_cached;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001376 break;
Kan Liangdb5742b2019-06-04 15:50:42 -07001377 case AGGR_DIE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001378 if (cpu_map__build_die_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Kan Liangdb5742b2019-06-04 15:50:42 -07001379 perror("cannot build die map");
1380 return -1;
1381 }
1382 stat_config.aggr_get_id = perf_stat__get_die_cached;
1383 break;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001384 case AGGR_CORE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001385 if (cpu_map__build_core_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
Stephane Eranian12c08a92013-02-14 13:57:29 +01001386 perror("cannot build core map");
1387 return -1;
1388 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001389 stat_config.aggr_get_id = perf_stat__get_core_cached;
Stephane Eranian12c08a92013-02-14 13:57:29 +01001390 break;
Jiri Olsa86895b42019-08-28 10:17:43 +02001391 case AGGR_NODE:
1392 if (cpu_map__build_node_map(evsel_list->core.cpus, &stat_config.aggr_map)) {
1393 perror("cannot build core map");
1394 return -1;
1395 }
1396 stat_config.aggr_get_id = perf_stat__get_node_cached;
1397 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001398 case AGGR_NONE:
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001399 if (term_percore_set()) {
Jiri Olsaf72f9012019-07-21 13:24:41 +02001400 if (cpu_map__build_core_map(evsel_list->core.cpus,
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001401 &stat_config.aggr_map)) {
1402 perror("cannot build core map");
1403 return -1;
1404 }
1405 stat_config.aggr_get_id = perf_stat__get_core_cached;
1406 }
1407 break;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001408 case AGGR_GLOBAL:
Jiri Olsa32b8af82015-06-26 11:29:27 +02001409 case AGGR_THREAD:
Jiri Olsa208df992015-10-16 12:41:04 +02001410 case AGGR_UNSET:
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001411 default:
1412 break;
1413 }
Jiri Olsa1e5a2932015-10-25 15:51:18 +01001414
1415 /*
1416 * The evsel_list->cpus is the base we operate on,
1417 * taking the highest cpu number to be the size of
1418 * the aggregation translate cpumap.
1419 */
Jiri Olsa4256d432019-09-02 14:12:53 +02001420 nr = perf_cpu_map__max(evsel_list->core.cpus);
James Clarkd526e1a2020-11-26 16:13:22 +02001421 stat_config.cpus_aggr_map = cpu_aggr_map__empty_new(nr + 1);
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001422 return stat_config.cpus_aggr_map ? 0 : -ENOMEM;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01001423}
1424
James Clarkd526e1a2020-11-26 16:13:22 +02001425static void cpu_aggr_map__delete(struct cpu_aggr_map *map)
1426{
1427 if (map) {
1428 WARN_ONCE(refcount_read(&map->refcnt) != 0,
1429 "cpu_aggr_map refcnt unbalanced\n");
1430 free(map);
1431 }
1432}
1433
1434static void cpu_aggr_map__put(struct cpu_aggr_map *map)
1435{
1436 if (map && refcount_dec_and_test(&map->refcnt))
1437 cpu_aggr_map__delete(map);
1438}
1439
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09001440static void perf_stat__exit_aggr_mode(void)
1441{
James Clarkd526e1a2020-11-26 16:13:22 +02001442 cpu_aggr_map__put(stat_config.aggr_map);
1443 cpu_aggr_map__put(stat_config.cpus_aggr_map);
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001444 stat_config.aggr_map = NULL;
1445 stat_config.cpus_aggr_map = NULL;
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09001446}
1447
Jiri Olsaf8548392019-07-21 13:23:49 +02001448static inline int perf_env__get_cpu(struct perf_env *env, struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001449{
1450 int cpu;
1451
1452 if (idx > map->nr)
1453 return -1;
1454
1455 cpu = map->map[idx];
1456
Jan Stancekda8a58b2017-02-17 12:10:26 +01001457 if (cpu >= env->nr_cpus_avail)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001458 return -1;
1459
1460 return cpu;
1461}
1462
James Clark2760f5a12020-11-26 16:13:20 +02001463static struct aggr_cpu_id perf_env__get_socket(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001464{
1465 struct perf_env *env = data;
1466 int cpu = perf_env__get_cpu(env, map, idx);
James Clark2760f5a12020-11-26 16:13:20 +02001467 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Jiri Olsa68d702f2015-11-05 15:40:58 +01001468
James Clark2760f5a12020-11-26 16:13:20 +02001469 if (cpu != -1)
James Clark1a270cb2020-11-26 16:13:25 +02001470 id.socket = env->cpu[cpu].socket_id;
James Clark2760f5a12020-11-26 16:13:20 +02001471
1472 return id;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001473}
1474
James Clark2760f5a12020-11-26 16:13:20 +02001475static struct aggr_cpu_id perf_env__get_die(struct perf_cpu_map *map, int idx, void *data)
Kan Liangdb5742b2019-06-04 15:50:42 -07001476{
1477 struct perf_env *env = data;
James Clark2760f5a12020-11-26 16:13:20 +02001478 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
1479 int cpu = perf_env__get_cpu(env, map, idx);
Kan Liangdb5742b2019-06-04 15:50:42 -07001480
1481 if (cpu != -1) {
1482 /*
James Clark1a270cb2020-11-26 16:13:25 +02001483 * die_id is relative to socket, so start
1484 * with the socket ID and then add die to
1485 * make a unique ID.
Kan Liangdb5742b2019-06-04 15:50:42 -07001486 */
James Clark1a270cb2020-11-26 16:13:25 +02001487 id.socket = env->cpu[cpu].socket_id;
James Clarkba2ee162020-11-26 16:13:26 +02001488 id.die = env->cpu[cpu].die_id;
Kan Liangdb5742b2019-06-04 15:50:42 -07001489 }
1490
James Clark2760f5a12020-11-26 16:13:20 +02001491 return id;
Kan Liangdb5742b2019-06-04 15:50:42 -07001492}
1493
James Clark2760f5a12020-11-26 16:13:20 +02001494static struct aggr_cpu_id perf_env__get_core(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001495{
1496 struct perf_env *env = data;
James Clark2760f5a12020-11-26 16:13:20 +02001497 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
1498 int cpu = perf_env__get_cpu(env, map, idx);
Jiri Olsa68d702f2015-11-05 15:40:58 +01001499
1500 if (cpu != -1) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001501 /*
Kan Liangdb5742b2019-06-04 15:50:42 -07001502 * core_id is relative to socket and die,
James Clarkb9933812020-11-26 16:13:27 +02001503 * we need a global id. So we set
1504 * socket, die id and core id
Jiri Olsa68d702f2015-11-05 15:40:58 +01001505 */
James Clark1a270cb2020-11-26 16:13:25 +02001506 id.socket = env->cpu[cpu].socket_id;
James Clarkba2ee162020-11-26 16:13:26 +02001507 id.die = env->cpu[cpu].die_id;
James Clarkb9933812020-11-26 16:13:27 +02001508 id.core = env->cpu[cpu].core_id;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001509 }
1510
James Clark2760f5a12020-11-26 16:13:20 +02001511 return id;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001512}
1513
James Clark2760f5a12020-11-26 16:13:20 +02001514static struct aggr_cpu_id perf_env__get_node(struct perf_cpu_map *map, int idx, void *data)
Jiri Olsa86895b42019-08-28 10:17:43 +02001515{
1516 int cpu = perf_env__get_cpu(data, map, idx);
James Clark2760f5a12020-11-26 16:13:20 +02001517 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Jiri Olsa86895b42019-08-28 10:17:43 +02001518
James Clarkfcd83a32020-11-26 16:13:24 +02001519 id.node = perf_env__numa_node(data, cpu);
James Clark2760f5a12020-11-26 16:13:20 +02001520 return id;
Jiri Olsa86895b42019-08-28 10:17:43 +02001521}
1522
Jiri Olsaf8548392019-07-21 13:23:49 +02001523static int perf_env__build_socket_map(struct perf_env *env, struct perf_cpu_map *cpus,
James Clarkd526e1a2020-11-26 16:13:22 +02001524 struct cpu_aggr_map **sockp)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001525{
1526 return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env);
1527}
1528
Jiri Olsaf8548392019-07-21 13:23:49 +02001529static int perf_env__build_die_map(struct perf_env *env, struct perf_cpu_map *cpus,
James Clarkd526e1a2020-11-26 16:13:22 +02001530 struct cpu_aggr_map **diep)
Kan Liangdb5742b2019-06-04 15:50:42 -07001531{
1532 return cpu_map__build_map(cpus, diep, perf_env__get_die, env);
1533}
1534
Jiri Olsaf8548392019-07-21 13:23:49 +02001535static int perf_env__build_core_map(struct perf_env *env, struct perf_cpu_map *cpus,
James Clarkd526e1a2020-11-26 16:13:22 +02001536 struct cpu_aggr_map **corep)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001537{
1538 return cpu_map__build_map(cpus, corep, perf_env__get_core, env);
1539}
1540
Jiri Olsa86895b42019-08-28 10:17:43 +02001541static int perf_env__build_node_map(struct perf_env *env, struct perf_cpu_map *cpus,
James Clarkd526e1a2020-11-26 16:13:22 +02001542 struct cpu_aggr_map **nodep)
Jiri Olsa86895b42019-08-28 10:17:43 +02001543{
1544 return cpu_map__build_map(cpus, nodep, perf_env__get_node, env);
1545}
1546
James Clark2760f5a12020-11-26 16:13:20 +02001547static struct aggr_cpu_id perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001548 struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001549{
1550 return perf_env__get_socket(map, idx, &perf_stat.session->header.env);
1551}
James Clark2760f5a12020-11-26 16:13:20 +02001552static struct aggr_cpu_id perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001553 struct perf_cpu_map *map, int idx)
Kan Liangdb5742b2019-06-04 15:50:42 -07001554{
1555 return perf_env__get_die(map, idx, &perf_stat.session->header.env);
1556}
Jiri Olsa68d702f2015-11-05 15:40:58 +01001557
James Clark2760f5a12020-11-26 16:13:20 +02001558static struct aggr_cpu_id perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsaf8548392019-07-21 13:23:49 +02001559 struct perf_cpu_map *map, int idx)
Jiri Olsa68d702f2015-11-05 15:40:58 +01001560{
1561 return perf_env__get_core(map, idx, &perf_stat.session->header.env);
1562}
1563
James Clark2760f5a12020-11-26 16:13:20 +02001564static struct aggr_cpu_id perf_stat__get_node_file(struct perf_stat_config *config __maybe_unused,
Jiri Olsa86895b42019-08-28 10:17:43 +02001565 struct perf_cpu_map *map, int idx)
1566{
1567 return perf_env__get_node(map, idx, &perf_stat.session->header.env);
1568}
1569
Jiri Olsa68d702f2015-11-05 15:40:58 +01001570static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
1571{
1572 struct perf_env *env = &st->session->header.env;
1573
1574 switch (stat_config.aggr_mode) {
1575 case AGGR_SOCKET:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001576 if (perf_env__build_socket_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001577 perror("cannot build socket map");
1578 return -1;
1579 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001580 stat_config.aggr_get_id = perf_stat__get_socket_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001581 break;
Kan Liangdb5742b2019-06-04 15:50:42 -07001582 case AGGR_DIE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001583 if (perf_env__build_die_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Kan Liangdb5742b2019-06-04 15:50:42 -07001584 perror("cannot build die map");
1585 return -1;
1586 }
1587 stat_config.aggr_get_id = perf_stat__get_die_file;
1588 break;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001589 case AGGR_CORE:
Jiri Olsaf72f9012019-07-21 13:24:41 +02001590 if (perf_env__build_core_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
Jiri Olsa68d702f2015-11-05 15:40:58 +01001591 perror("cannot build core map");
1592 return -1;
1593 }
Jiri Olsa6f6b6592018-08-30 08:32:45 +02001594 stat_config.aggr_get_id = perf_stat__get_core_file;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001595 break;
Jiri Olsa86895b42019-08-28 10:17:43 +02001596 case AGGR_NODE:
1597 if (perf_env__build_node_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) {
1598 perror("cannot build core map");
1599 return -1;
1600 }
1601 stat_config.aggr_get_id = perf_stat__get_node_file;
1602 break;
Jiri Olsa68d702f2015-11-05 15:40:58 +01001603 case AGGR_NONE:
1604 case AGGR_GLOBAL:
1605 case AGGR_THREAD:
1606 case AGGR_UNSET:
1607 default:
1608 break;
1609 }
1610
1611 return 0;
1612}
1613
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001614/*
1615 * Add default attributes, if there were no attributes specified or
1616 * if -d/--detailed, -d -d or -d -d -d is used:
1617 */
1618static int add_default_attributes(void)
1619{
Andi Kleen44b1e602016-05-30 12:49:42 -03001620 int err;
Andi Kleen9dec4472016-02-26 16:27:56 -08001621 struct perf_event_attr default_attrs0[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001622
1623 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK },
1624 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES },
1625 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS },
1626 { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS },
1627
1628 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES },
Andi Kleen9dec4472016-02-26 16:27:56 -08001629};
1630 struct perf_event_attr frontend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001631 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001632};
1633 struct perf_event_attr backend_attrs[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001634 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
Andi Kleen9dec4472016-02-26 16:27:56 -08001635};
1636 struct perf_event_attr default_attrs1[] = {
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001637 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS },
1638 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
1639 { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES },
1640
1641};
1642
1643/*
1644 * Detailed stats (-d), covering the L1 and last level data caches:
1645 */
1646 struct perf_event_attr detailed_attrs[] = {
1647
1648 { .type = PERF_TYPE_HW_CACHE,
1649 .config =
1650 PERF_COUNT_HW_CACHE_L1D << 0 |
1651 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1652 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1653
1654 { .type = PERF_TYPE_HW_CACHE,
1655 .config =
1656 PERF_COUNT_HW_CACHE_L1D << 0 |
1657 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1658 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1659
1660 { .type = PERF_TYPE_HW_CACHE,
1661 .config =
1662 PERF_COUNT_HW_CACHE_LL << 0 |
1663 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1664 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1665
1666 { .type = PERF_TYPE_HW_CACHE,
1667 .config =
1668 PERF_COUNT_HW_CACHE_LL << 0 |
1669 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1670 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1671};
1672
1673/*
1674 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches:
1675 */
1676 struct perf_event_attr very_detailed_attrs[] = {
1677
1678 { .type = PERF_TYPE_HW_CACHE,
1679 .config =
1680 PERF_COUNT_HW_CACHE_L1I << 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_L1I << 0 |
1687 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1688 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1689
1690 { .type = PERF_TYPE_HW_CACHE,
1691 .config =
1692 PERF_COUNT_HW_CACHE_DTLB << 0 |
1693 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1694 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1695
1696 { .type = PERF_TYPE_HW_CACHE,
1697 .config =
1698 PERF_COUNT_HW_CACHE_DTLB << 0 |
1699 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1700 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1701
1702 { .type = PERF_TYPE_HW_CACHE,
1703 .config =
1704 PERF_COUNT_HW_CACHE_ITLB << 0 |
1705 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1706 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1707
1708 { .type = PERF_TYPE_HW_CACHE,
1709 .config =
1710 PERF_COUNT_HW_CACHE_ITLB << 0 |
1711 (PERF_COUNT_HW_CACHE_OP_READ << 8) |
1712 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1713
1714};
1715
1716/*
1717 * Very, very detailed stats (-d -d -d), adding prefetch events:
1718 */
1719 struct perf_event_attr very_very_detailed_attrs[] = {
1720
1721 { .type = PERF_TYPE_HW_CACHE,
1722 .config =
1723 PERF_COUNT_HW_CACHE_L1D << 0 |
1724 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1725 (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) },
1726
1727 { .type = PERF_TYPE_HW_CACHE,
1728 .config =
1729 PERF_COUNT_HW_CACHE_L1D << 0 |
1730 (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) |
1731 (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) },
1732};
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001733 struct parse_events_error errinfo;
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03001734
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001735 /* Set attrs if no event is selected and !null_run: */
Jiri Olsaaea0dca2018-08-30 08:32:41 +02001736 if (stat_config.null_run)
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001737 return 0;
1738
Ian Rogersa910e462019-11-15 23:46:52 -08001739 bzero(&errinfo, sizeof(errinfo));
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001740 if (transaction_run) {
Thomas Richter742d92f2018-06-26 09:17:01 +02001741 /* Handle -T as -M transaction. Once platform specific metrics
Ingo Molnar4d39c892021-03-23 17:09:15 +01001742 * support has been added to the json files, all architectures
Thomas Richter742d92f2018-06-26 09:17:01 +02001743 * will use this approach. To determine transaction support
1744 * on an architecture test for such a metric name.
1745 */
1746 if (metricgroup__has_metric("transaction")) {
1747 struct option opt = { .value = &evsel_list };
1748
1749 return metricgroup__parse_groups(&opt, "transaction",
Ian Rogers05530a72020-05-20 11:20:10 -07001750 stat_config.metric_no_group,
1751 stat_config.metric_no_merge,
Jiri Olsad0192fd2018-08-30 08:32:51 +02001752 &stat_config.metric_events);
Thomas Richter742d92f2018-06-26 09:17:01 +02001753 }
1754
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001755 if (pmu_have_event("cpu", "cycles-ct") &&
1756 pmu_have_event("cpu", "el-start"))
Thomas Richterfca323402018-03-08 15:57:35 +01001757 err = parse_events(evsel_list, transaction_attrs,
1758 &errinfo);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001759 else
Thomas Richterfca323402018-03-08 15:57:35 +01001760 err = parse_events(evsel_list,
1761 transaction_limited_attrs,
1762 &errinfo);
Jiri Olsaa4547422015-06-03 16:25:53 +02001763 if (err) {
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001764 fprintf(stderr, "Cannot set up transaction events\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001765 parse_events_print_error(&errinfo, transaction_attrs);
Andi Kleen4cabc3d2013-08-21 16:47:26 -07001766 return -1;
1767 }
1768 return 0;
1769 }
1770
Kan Liangdaefd0b2017-05-26 12:05:38 -07001771 if (smi_cost) {
1772 int smi;
1773
1774 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) {
1775 fprintf(stderr, "freeze_on_smi is not supported.\n");
1776 return -1;
1777 }
1778
1779 if (!smi) {
1780 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) {
1781 fprintf(stderr, "Failed to set freeze_on_smi.\n");
1782 return -1;
1783 }
1784 smi_reset = true;
1785 }
1786
1787 if (pmu_have_event("msr", "aperf") &&
1788 pmu_have_event("msr", "smi")) {
1789 if (!force_metric_only)
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02001790 stat_config.metric_only = true;
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001791 err = parse_events(evsel_list, smi_cost_attrs, &errinfo);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001792 } else {
1793 fprintf(stderr, "To measure SMI cost, it needs "
1794 "msr/aperf/, msr/smi/ and cpu/cycles/ support\n");
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001795 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001796 return -1;
1797 }
1798 if (err) {
Ian Rogersa910e462019-11-15 23:46:52 -08001799 parse_events_print_error(&errinfo, smi_cost_attrs);
Kan Liangdaefd0b2017-05-26 12:05:38 -07001800 fprintf(stderr, "Cannot set up SMI cost events\n");
1801 return -1;
1802 }
1803 return 0;
1804 }
1805
Andi Kleen44b1e602016-05-30 12:49:42 -03001806 if (topdown_run) {
Kan Liang63e39aa2021-02-02 12:09:12 -08001807 const char **metric_attrs = topdown_metric_attrs;
1808 unsigned int max_level = 1;
Andi Kleen44b1e602016-05-30 12:49:42 -03001809 char *str = NULL;
1810 bool warn = false;
1811
Andi Kleen55c36a92020-09-11 07:48:07 -07001812 if (!force_metric_only)
1813 stat_config.metric_only = true;
1814
Kan Liang63e39aa2021-02-02 12:09:12 -08001815 if (pmu_have_event("cpu", topdown_metric_L2_attrs[5])) {
1816 metric_attrs = topdown_metric_L2_attrs;
1817 max_level = 2;
1818 }
1819
1820 if (stat_config.topdown_level > max_level) {
1821 pr_err("Invalid top-down metrics level. The max level is %u.\n", max_level);
1822 return -1;
1823 } else if (!stat_config.topdown_level)
1824 stat_config.topdown_level = max_level;
1825
1826 if (topdown_filter_events(metric_attrs, &str, 1) < 0) {
Andi Kleen55c36a92020-09-11 07:48:07 -07001827 pr_err("Out of memory\n");
1828 return -1;
1829 }
Kan Liang63e39aa2021-02-02 12:09:12 -08001830 if (metric_attrs[0] && str) {
Andi Kleen55c36a92020-09-11 07:48:07 -07001831 if (!stat_config.interval && !stat_config.metric_only) {
1832 fprintf(stat_config.output,
1833 "Topdown accuracy may decrease when measuring long periods.\n"
1834 "Please print the result regularly, e.g. -I1000\n");
1835 }
1836 goto setup_metrics;
1837 }
1838
1839 zfree(&str);
1840
Andi Kleen44b1e602016-05-30 12:49:42 -03001841 if (stat_config.aggr_mode != AGGR_GLOBAL &&
1842 stat_config.aggr_mode != AGGR_CORE) {
1843 pr_err("top down event configuration requires --per-core mode\n");
1844 return -1;
1845 }
1846 stat_config.aggr_mode = AGGR_CORE;
1847 if (nr_cgroups || !target__has_cpu(&target)) {
1848 pr_err("top down event configuration requires system-wide mode (-a)\n");
1849 return -1;
1850 }
1851
Andi Kleen44b1e602016-05-30 12:49:42 -03001852 if (topdown_filter_events(topdown_attrs, &str,
1853 arch_topdown_check_group(&warn)) < 0) {
1854 pr_err("Out of memory\n");
1855 return -1;
1856 }
1857 if (topdown_attrs[0] && str) {
1858 if (warn)
1859 arch_topdown_group_warn();
Andi Kleen55c36a92020-09-11 07:48:07 -07001860setup_metrics:
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001861 err = parse_events(evsel_list, str, &errinfo);
Andi Kleen44b1e602016-05-30 12:49:42 -03001862 if (err) {
1863 fprintf(stderr,
1864 "Cannot set up top down events %s: %d\n",
1865 str, err);
Jiri Olsaa5cfa622018-06-07 00:15:10 +02001866 parse_events_print_error(&errinfo, str);
Leo Yanc74b0502019-07-02 18:34:11 +08001867 free(str);
Andi Kleen44b1e602016-05-30 12:49:42 -03001868 return -1;
1869 }
1870 } else {
1871 fprintf(stderr, "System does not support topdown\n");
1872 return -1;
1873 }
1874 free(str);
1875 }
1876
Jiri Olsa6484d2f2019-07-21 13:24:28 +02001877 if (!evsel_list->core.nr_entries) {
Namhyung Kima1f3d562016-05-13 15:01:03 +09001878 if (target__has_cpu(&target))
1879 default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK;
1880
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001881 if (evlist__add_default_attrs(evsel_list, default_attrs0) < 0)
Andi Kleen9dec4472016-02-26 16:27:56 -08001882 return -1;
1883 if (pmu_have_event("cpu", "stalled-cycles-frontend")) {
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001884 if (evlist__add_default_attrs(evsel_list, frontend_attrs) < 0)
Andi Kleen9dec4472016-02-26 16:27:56 -08001885 return -1;
1886 }
1887 if (pmu_have_event("cpu", "stalled-cycles-backend")) {
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001888 if (evlist__add_default_attrs(evsel_list, backend_attrs) < 0)
Andi Kleen9dec4472016-02-26 16:27:56 -08001889 return -1;
1890 }
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001891 if (evlist__add_default_attrs(evsel_list, default_attrs1) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001892 return -1;
Kan Liang42641d62021-01-21 05:37:52 -08001893
1894 if (arch_evlist__add_default_attrs(evsel_list) < 0)
1895 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001896 }
1897
1898 /* Detailed events get appended to the event list: */
1899
1900 if (detailed_run < 1)
1901 return 0;
1902
1903 /* Append detailed run extra attributes: */
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001904 if (evlist__add_default_attrs(evsel_list, detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001905 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001906
1907 if (detailed_run < 2)
1908 return 0;
1909
1910 /* Append very detailed run extra attributes: */
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001911 if (evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0)
Arnaldo Carvalho de Melo50d08e42011-11-04 09:10:59 -02001912 return -1;
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001913
1914 if (detailed_run < 3)
1915 return 0;
1916
1917 /* Append very, very detailed run extra attributes: */
Arnaldo Carvalho de Meloe251abe2020-06-17 09:16:20 -03001918 return evlist__add_default_attrs(evsel_list, very_very_detailed_attrs);
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02001919}
1920
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001921static const char * const stat_record_usage[] = {
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001922 "perf stat record [<options>]",
1923 NULL,
1924};
1925
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001926static void init_features(struct perf_session *session)
1927{
1928 int feat;
1929
1930 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++)
1931 perf_header__set_feat(&session->header, feat);
1932
Jiri Olsa8002a632019-04-09 12:01:56 +02001933 perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT);
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001934 perf_header__clear_feat(&session->header, HEADER_BUILD_ID);
1935 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA);
1936 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK);
1937 perf_header__clear_feat(&session->header, HEADER_AUXTRACE);
1938}
1939
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001940static int __cmd_record(int argc, const char **argv)
1941{
1942 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001943 struct perf_data *data = &perf_stat.data;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001944
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01001945 argc = parse_options(argc, argv, stat_options, stat_record_usage,
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001946 PARSE_OPT_STOP_AT_NON_OPTION);
1947
1948 if (output_name)
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001949 data->path = output_name;
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001950
Jiri Olsad97ae042018-08-30 08:32:36 +02001951 if (stat_config.run_count != 1 || forever) {
Jiri Olsae9d6db8e82015-11-05 15:40:53 +01001952 pr_err("Cannot use -r option with perf stat record.\n");
1953 return -1;
1954 }
1955
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001956 session = perf_session__new(data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05301957 if (IS_ERR(session)) {
1958 pr_err("Perf session creation failed\n");
1959 return PTR_ERR(session);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001960 }
1961
Jiri Olsa3ba78bd2015-11-05 15:40:47 +01001962 init_features(session);
1963
Jiri Olsa4979d0c2015-11-05 15:40:46 +01001964 session->evlist = evsel_list;
1965 perf_stat.session = session;
1966 perf_stat.record = true;
1967 return argc;
1968}
1969
Jiri Olsa89f16882018-09-13 14:54:03 +02001970static int process_stat_round_event(struct perf_session *session,
1971 union perf_event *event)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001972{
Jiri Olsa72932372019-08-28 15:57:16 +02001973 struct perf_record_stat_round *stat_round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001974 struct evsel *counter;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001975 struct timespec tsh, *ts = NULL;
1976 const char **argv = session->header.env.cmdline_argv;
1977 int argc = session->header.env.nr_cmdline;
1978
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001979 evlist__for_each_entry(evsel_list, counter)
Jiri Olsaa56f9392015-11-05 15:40:59 +01001980 perf_stat_process_counter(&stat_config, counter);
1981
Andi Kleene3b03b62016-05-05 16:04:03 -07001982 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL)
1983 update_stats(&walltime_nsecs_stats, stat_round->time);
Jiri Olsaa56f9392015-11-05 15:40:59 +01001984
Andi Kleene3b03b62016-05-05 16:04:03 -07001985 if (stat_config.interval && stat_round->time) {
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -03001986 tsh.tv_sec = stat_round->time / NSEC_PER_SEC;
1987 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC;
Jiri Olsaa56f9392015-11-05 15:40:59 +01001988 ts = &tsh;
1989 }
1990
1991 print_counters(ts, argc, argv);
1992 return 0;
1993}
1994
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001995static
Jiri Olsa89f16882018-09-13 14:54:03 +02001996int process_stat_config_event(struct perf_session *session,
1997 union perf_event *event)
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01001998{
Jiri Olsa89f16882018-09-13 14:54:03 +02001999 struct perf_tool *tool = session->tool;
Jiri Olsa68d702f2015-11-05 15:40:58 +01002000 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2001
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002002 perf_event__read_stat_config(&stat_config, &event->stat_config);
Jiri Olsa68d702f2015-11-05 15:40:58 +01002003
Jiri Olsa315c0a12019-08-22 13:11:39 +02002004 if (perf_cpu_map__empty(st->cpus)) {
Jiri Olsa89af4e02015-11-05 15:41:02 +01002005 if (st->aggr_mode != AGGR_UNSET)
2006 pr_warning("warning: processing task data, aggregation mode not set\n");
2007 return 0;
2008 }
2009
2010 if (st->aggr_mode != AGGR_UNSET)
2011 stat_config.aggr_mode = st->aggr_mode;
2012
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002013 if (perf_stat.data.is_pipe)
Jiri Olsa68d702f2015-11-05 15:40:58 +01002014 perf_stat_init_aggr_mode();
2015 else
2016 perf_stat_init_aggr_mode_file(st);
2017
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002018 return 0;
2019}
2020
Jiri Olsa1975d362015-11-05 15:40:56 +01002021static int set_maps(struct perf_stat *st)
2022{
2023 if (!st->cpus || !st->threads)
2024 return 0;
2025
2026 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n"))
2027 return -EINVAL;
2028
Jiri Olsa453fa032019-07-21 13:24:43 +02002029 perf_evlist__set_maps(&evsel_list->core, st->cpus, st->threads);
Jiri Olsa1975d362015-11-05 15:40:56 +01002030
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03002031 if (evlist__alloc_stats(evsel_list, true))
Jiri Olsa1975d362015-11-05 15:40:56 +01002032 return -ENOMEM;
2033
2034 st->maps_allocated = true;
2035 return 0;
2036}
2037
2038static
Jiri Olsa89f16882018-09-13 14:54:03 +02002039int process_thread_map_event(struct perf_session *session,
2040 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01002041{
Jiri Olsa89f16882018-09-13 14:54:03 +02002042 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01002043 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
2044
2045 if (st->threads) {
2046 pr_warning("Extra thread map event, ignoring.\n");
2047 return 0;
2048 }
2049
2050 st->threads = thread_map__new_event(&event->thread_map);
2051 if (!st->threads)
2052 return -ENOMEM;
2053
2054 return set_maps(st);
2055}
2056
2057static
Jiri Olsa89f16882018-09-13 14:54:03 +02002058int process_cpu_map_event(struct perf_session *session,
2059 union perf_event *event)
Jiri Olsa1975d362015-11-05 15:40:56 +01002060{
Jiri Olsa89f16882018-09-13 14:54:03 +02002061 struct perf_tool *tool = session->tool;
Jiri Olsa1975d362015-11-05 15:40:56 +01002062 struct perf_stat *st = container_of(tool, struct perf_stat, tool);
Jiri Olsaf8548392019-07-21 13:23:49 +02002063 struct perf_cpu_map *cpus;
Jiri Olsa1975d362015-11-05 15:40:56 +01002064
2065 if (st->cpus) {
2066 pr_warning("Extra cpu map event, ignoring.\n");
2067 return 0;
2068 }
2069
2070 cpus = cpu_map__new_data(&event->cpu_map.data);
2071 if (!cpus)
2072 return -ENOMEM;
2073
2074 st->cpus = cpus;
2075 return set_maps(st);
2076}
2077
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002078static const char * const stat_report_usage[] = {
Jiri Olsaba6039b62015-11-05 15:40:55 +01002079 "perf stat report [<options>]",
2080 NULL,
2081};
2082
2083static struct perf_stat perf_stat = {
2084 .tool = {
2085 .attr = perf_event__process_attr,
Jiri Olsafa6ea782015-11-05 15:41:00 +01002086 .event_update = perf_event__process_event_update,
Jiri Olsa1975d362015-11-05 15:40:56 +01002087 .thread_map = process_thread_map_event,
2088 .cpu_map = process_cpu_map_event,
Jiri Olsa62ba18ba2015-11-05 15:40:57 +01002089 .stat_config = process_stat_config_event,
Jiri Olsaa56f9392015-11-05 15:40:59 +01002090 .stat = perf_event__process_stat_event,
2091 .stat_round = process_stat_round_event,
Jiri Olsaba6039b62015-11-05 15:40:55 +01002092 },
Jiri Olsa89af4e02015-11-05 15:41:02 +01002093 .aggr_mode = AGGR_UNSET,
Jiri Olsaba6039b62015-11-05 15:40:55 +01002094};
2095
2096static int __cmd_report(int argc, const char **argv)
2097{
2098 struct perf_session *session;
2099 const struct option options[] = {
2100 OPT_STRING('i', "input", &input_name, "file", "input file name"),
Jiri Olsa89af4e02015-11-05 15:41:02 +01002101 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode,
2102 "aggregate counts per processor socket", AGGR_SOCKET),
Kan Liangdb5742b2019-06-04 15:50:42 -07002103 OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode,
2104 "aggregate counts per processor die", AGGR_DIE),
Jiri Olsa89af4e02015-11-05 15:41:02 +01002105 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode,
2106 "aggregate counts per physical processor core", AGGR_CORE),
Jiri Olsa86895b42019-08-28 10:17:43 +02002107 OPT_SET_UINT(0, "per-node", &perf_stat.aggr_mode,
2108 "aggregate counts per numa node", AGGR_NODE),
Jiri Olsa89af4e02015-11-05 15:41:02 +01002109 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode,
2110 "disable CPU count aggregation", AGGR_NONE),
Jiri Olsaba6039b62015-11-05 15:40:55 +01002111 OPT_END()
2112 };
2113 struct stat st;
2114 int ret;
2115
Jiri Olsa8a59f3c2016-01-12 10:35:29 +01002116 argc = parse_options(argc, argv, options, stat_report_usage, 0);
Jiri Olsaba6039b62015-11-05 15:40:55 +01002117
2118 if (!input_name || !strlen(input_name)) {
2119 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
2120 input_name = "-";
2121 else
2122 input_name = "perf.data";
2123 }
2124
Jiri Olsa2d4f2792019-02-21 10:41:30 +01002125 perf_stat.data.path = input_name;
2126 perf_stat.data.mode = PERF_DATA_MODE_READ;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002127
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002128 session = perf_session__new(&perf_stat.data, false, &perf_stat.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05302129 if (IS_ERR(session))
2130 return PTR_ERR(session);
Jiri Olsaba6039b62015-11-05 15:40:55 +01002131
2132 perf_stat.session = session;
2133 stat_config.output = stderr;
2134 evsel_list = session->evlist;
2135
2136 ret = perf_session__process_events(session);
2137 if (ret)
2138 return ret;
2139
2140 perf_session__delete(session);
2141 return 0;
2142}
2143
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002144static void setup_system_wide(int forks)
2145{
2146 /*
2147 * Make system wide (-a) the default target if
2148 * no target was specified and one of following
2149 * conditions is met:
2150 *
2151 * - there's no workload specified
2152 * - there is workload specified but all requested
2153 * events are system wide events
2154 */
2155 if (!target__none(&target))
2156 return;
2157
2158 if (!forks)
2159 target.system_wide = true;
2160 else {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002161 struct evsel *counter;
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002162
2163 evlist__for_each_entry(evsel_list, counter) {
Jin Yao002a3d62020-09-22 09:50:04 +08002164 if (!counter->core.system_wide &&
2165 strcmp(counter->name, "duration_time")) {
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002166 return;
Jin Yao002a3d62020-09-22 09:50:04 +08002167 }
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002168 }
2169
Jiri Olsa6484d2f2019-07-21 13:24:28 +02002170 if (evsel_list->core.nr_entries)
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002171 target.system_wide = true;
2172 }
2173}
2174
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002175int cmd_stat(int argc, const char **argv)
Ingo Molnar52425192009-05-26 09:17:18 +02002176{
Arnaldo Carvalho de Melob070a542012-10-01 15:20:58 -03002177 const char * const stat_usage[] = {
2178 "perf stat [<options>] [<command>]",
2179 NULL
2180 };
Song Liufa853c42020-12-29 13:42:14 -08002181 int status = -EINVAL, run_idx, err;
Stephane Eranian4aa90152011-08-15 22:22:33 +02002182 const char *mode;
Jiri Olsa58215222015-07-21 14:31:24 +02002183 FILE *output = stderr;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002184 unsigned int interval, timeout;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002185 const char * const stat_subcommands[] = { "record", "report" };
Song Liufa853c42020-12-29 13:42:14 -08002186 char errbuf[BUFSIZ];
Ingo Molnar42202dd2009-06-13 14:57:28 +02002187
Stephane Eranian5af52b52010-05-18 15:00:01 +02002188 setlocale(LC_ALL, "");
2189
Jiri Olsa0f98b112019-07-21 13:23:55 +02002190 evsel_list = evlist__new();
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02002191 if (evsel_list == NULL)
2192 return -ENOMEM;
2193
Wang Nan1669e502016-02-19 11:43:58 +00002194 parse_events__shrink_config_terms();
Michael Petlan51433ea2018-12-10 11:00:04 -05002195
2196 /* String-parsing callback-based options would segfault when negated */
2197 set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
2198 set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
2199 set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);
2200
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002201 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands,
2202 (const char **) stat_usage,
2203 PARSE_OPT_STOP_AT_NON_OPTION);
Andi Kleen37932c12017-03-20 13:17:08 -07002204 perf_stat__collect_metric_expr(evsel_list);
Andi Kleenfb4605b2016-03-01 10:57:52 -08002205 perf_stat__init_shadow_stats();
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002206
Jiri Olsafa7070a2018-08-30 08:32:29 +02002207 if (stat_config.csv_sep) {
2208 stat_config.csv_output = true;
2209 if (!strcmp(stat_config.csv_sep, "\\t"))
2210 stat_config.csv_sep = "\t";
Jiri Olsa6edb78a2015-11-05 15:41:01 +01002211 } else
Jiri Olsafa7070a2018-08-30 08:32:29 +02002212 stat_config.csv_sep = DEFAULT_SEPARATOR;
Jiri Olsa6edb78a2015-11-05 15:41:01 +01002213
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002214 if (argc && !strncmp(argv[0], "rec", 3)) {
2215 argc = __cmd_record(argc, argv);
2216 if (argc < 0)
2217 return -1;
Jiri Olsaba6039b62015-11-05 15:40:55 +01002218 } else if (argc && !strncmp(argv[0], "rep", 3))
2219 return __cmd_report(argc, argv);
Stephane Eraniand7470b62010-12-01 18:49:05 +02002220
Jiri Olsaec0d3d12015-07-21 14:31:25 +02002221 interval = stat_config.interval;
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002222 timeout = stat_config.timeout;
Jiri Olsaec0d3d12015-07-21 14:31:25 +02002223
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002224 /*
2225 * For record command the -o is already taken care of.
2226 */
2227 if (!STAT_RECORD && output_name && strcmp(output_name, "-"))
Stephane Eranian4aa90152011-08-15 22:22:33 +02002228 output = NULL;
2229
Jim Cromie56f3bae2011-09-07 17:14:00 -06002230 if (output_name && output_fd) {
2231 fprintf(stderr, "cannot use both --output and --log-fd\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002232 parse_options_usage(stat_usage, stat_options, "o", 1);
2233 parse_options_usage(NULL, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002234 goto out;
Jim Cromie56f3bae2011-09-07 17:14:00 -06002235 }
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002236
Jiri Olsa0ce5aa02018-08-30 08:32:31 +02002237 if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) {
Andi Kleen54b50912016-03-03 15:57:36 -08002238 fprintf(stderr, "--metric-only is not supported with --per-thread\n");
2239 goto out;
2240 }
2241
Jiri Olsad97ae042018-08-30 08:32:36 +02002242 if (stat_config.metric_only && stat_config.run_count > 1) {
Andi Kleen54b50912016-03-03 15:57:36 -08002243 fprintf(stderr, "--metric-only is not supported with -r\n");
2244 goto out;
2245 }
2246
Jiri Olsa54ac0b12018-08-30 08:32:50 +02002247 if (stat_config.walltime_run_table && stat_config.run_count <= 1) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02002248 fprintf(stderr, "--table is only supported with -r\n");
2249 parse_options_usage(stat_usage, stat_options, "r", 1);
2250 parse_options_usage(NULL, stat_options, "table", 0);
2251 goto out;
2252 }
2253
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002254 if (output_fd < 0) {
2255 fprintf(stderr, "argument to --log-fd must be a > 0\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002256 parse_options_usage(stat_usage, stat_options, "log-fd", 0);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002257 goto out;
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002258 }
2259
Andi Kleen55a4de92020-10-26 17:27:36 -07002260 if (!output && !stat_config.quiet) {
Stephane Eranian4aa90152011-08-15 22:22:33 +02002261 struct timespec tm;
2262 mode = append_file ? "a" : "w";
2263
2264 output = fopen(output_name, mode);
2265 if (!output) {
2266 perror("failed to create output file");
David Ahernfceda7f2012-08-26 12:24:44 -06002267 return -1;
Stephane Eranian4aa90152011-08-15 22:22:33 +02002268 }
2269 clock_gettime(CLOCK_REALTIME, &tm);
2270 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec));
Stephane Eranianfc3e4d02012-05-15 13:11:11 +02002271 } else if (output_fd > 0) {
Jim Cromie56f3bae2011-09-07 17:14:00 -06002272 mode = append_file ? "a" : "w";
2273 output = fdopen(output_fd, mode);
2274 if (!output) {
2275 perror("Failed opening logfd");
2276 return -errno;
2277 }
Stephane Eranian4aa90152011-08-15 22:22:33 +02002278 }
2279
Jiri Olsa58215222015-07-21 14:31:24 +02002280 stat_config.output = output;
2281
Stephane Eraniand7470b62010-12-01 18:49:05 +02002282 /*
2283 * let the spreadsheet do the pretty-printing
2284 */
Jiri Olsafa7070a2018-08-30 08:32:29 +02002285 if (stat_config.csv_output) {
Jim Cromie61a9f322011-09-07 17:14:04 -06002286 /* User explicitly passed -B? */
Stephane Eraniand7470b62010-12-01 18:49:05 +02002287 if (big_num_opt == 1) {
2288 fprintf(stderr, "-B option not supported with -x\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002289 parse_options_usage(stat_usage, stat_options, "B", 1);
2290 parse_options_usage(NULL, stat_options, "x", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002291 goto out;
Stephane Eraniand7470b62010-12-01 18:49:05 +02002292 } else /* Nope, so disable big number formatting */
Jiri Olsa34ff0862018-08-30 08:32:47 +02002293 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02002294 } else if (big_num_opt == 0) /* User passed --no-big-num */
Jiri Olsa34ff0862018-08-30 08:32:47 +02002295 stat_config.big_num = false;
Stephane Eraniand7470b62010-12-01 18:49:05 +02002296
Song Liufa853c42020-12-29 13:42:14 -08002297 err = target__validate(&target);
2298 if (err) {
2299 target__strerror(&target, err, errbuf, BUFSIZ);
2300 pr_warning("%s\n", errbuf);
2301 }
2302
Jiri Olsae3ba76d2017-02-27 10:48:18 +01002303 setup_system_wide(argc);
David Ahernac3063b2013-09-30 07:37:37 -06002304
Jiri Olsa0ce2da12018-06-05 14:13:13 +02002305 /*
2306 * Display user/system times only for single
2307 * run and when there's specified tracee.
2308 */
Jiri Olsad97ae042018-08-30 08:32:36 +02002309 if ((stat_config.run_count == 1) && target__none(&target))
Jiri Olsa8897a892018-08-30 08:32:44 +02002310 stat_config.ru_display = true;
Jiri Olsa0ce2da12018-06-05 14:13:13 +02002311
Jiri Olsad97ae042018-08-30 08:32:36 +02002312 if (stat_config.run_count < 0) {
Namhyung Kimcc03c542013-11-01 16:33:15 +09002313 pr_err("Run count must be a positive number\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002314 parse_options_usage(stat_usage, stat_options, "r", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002315 goto out;
Jiri Olsad97ae042018-08-30 08:32:36 +02002316 } else if (stat_config.run_count == 0) {
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002317 forever = true;
Jiri Olsad97ae042018-08-30 08:32:36 +02002318 stat_config.run_count = 1;
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002319 }
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002320
Jiri Olsa54ac0b12018-08-30 08:32:50 +02002321 if (stat_config.walltime_run_table) {
2322 stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0]));
2323 if (!stat_config.walltime_run) {
Jiri Olsae55c14a2018-04-23 11:08:21 +02002324 pr_err("failed to setup -r option");
2325 goto out;
2326 }
2327 }
2328
Jin Yao1d9f8d12017-12-05 22:03:10 +08002329 if ((stat_config.aggr_mode == AGGR_THREAD) &&
2330 !target__has_task(&target)) {
2331 if (!target.system_wide || target.cpu_list) {
2332 fprintf(stderr, "The --per-thread option is only "
2333 "available when monitoring via -p -t -a "
2334 "options or only --per-thread.\n");
2335 parse_options_usage(NULL, stat_options, "p", 1);
2336 parse_options_usage(NULL, stat_options, "t", 1);
2337 goto out;
2338 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002339 }
2340
2341 /*
2342 * no_aggr, cgroup are for system-wide only
2343 * --per-thread is aggregated per thread, we dont mix it with cpu mode
2344 */
Jiri Olsa421a50f2015-07-21 14:31:22 +02002345 if (((stat_config.aggr_mode != AGGR_GLOBAL &&
2346 stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) &&
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002347 !target__has_cpu(&target)) {
Stephane Eranian023695d2011-02-14 11:20:01 +02002348 fprintf(stderr, "both cgroup and no-aggregation "
2349 "modes only available in system-wide mode\n");
2350
Jiri Olsae0547312015-11-05 15:40:45 +01002351 parse_options_usage(stat_usage, stat_options, "G", 1);
2352 parse_options_usage(NULL, stat_options, "A", 1);
2353 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002354 goto out;
Stephane Eraniand7e7a452013-02-06 15:46:02 +01002355 }
2356
Alexander Antonovf07952b2021-04-19 12:41:44 +03002357 if (stat_config.iostat_run) {
2358 status = iostat_prepare(evsel_list, &stat_config);
2359 if (status)
2360 goto out;
2361 if (iostat_mode == IOSTAT_LIST) {
2362 iostat_list(evsel_list, &stat_config);
2363 goto out;
2364 } else if (verbose)
2365 iostat_list(evsel_list, &stat_config);
2366 }
2367
Ingo Molnar2cba3ff2011-05-19 13:30:56 +02002368 if (add_default_attributes())
2369 goto out;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002370
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09002371 if (stat_config.cgroup_list) {
2372 if (nr_cgroups > 0) {
2373 pr_err("--cgroup and --for-each-cgroup cannot be used together\n");
2374 parse_options_usage(stat_usage, stat_options, "G", 1);
2375 parse_options_usage(NULL, stat_options, "for-each-cgroup", 0);
2376 goto out;
2377 }
2378
Namhyung Kimb214ba82020-09-24 21:44:53 +09002379 if (evlist__expand_cgroup(evsel_list, stat_config.cgroup_list,
Namhyung Kimbb1c15b2020-10-27 16:28:55 +09002380 &stat_config.metric_events, true) < 0) {
2381 parse_options_usage(stat_usage, stat_options,
2382 "for-each-cgroup", 0);
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09002383 goto out;
Namhyung Kimbb1c15b2020-10-27 16:28:55 +09002384 }
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +09002385 }
2386
Jin Yao1d9f8d12017-12-05 22:03:10 +08002387 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide))
2388 target.per_thread = true;
2389
Arnaldo Carvalho de Melo7748bb72020-11-30 14:56:52 -03002390 if (evlist__create_maps(evsel_list, &target) < 0) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002391 if (target__has_task(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09002392 pr_err("Problems finding threads of monitor\n");
Jiri Olsae0547312015-11-05 15:40:45 +01002393 parse_options_usage(stat_usage, stat_options, "p", 1);
2394 parse_options_usage(NULL, stat_options, "t", 1);
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03002395 } else if (target__has_cpu(&target)) {
Namhyung Kim77a6f012012-05-07 14:09:04 +09002396 perror("failed to parse CPUs map");
Jiri Olsae0547312015-11-05 15:40:45 +01002397 parse_options_usage(stat_usage, stat_options, "C", 1);
2398 parse_options_usage(NULL, stat_options, "a", 1);
Namhyung Kimcc03c542013-11-01 16:33:15 +09002399 }
2400 goto out;
Arnaldo Carvalho de Melo60d567e2011-01-03 17:49:48 -02002401 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002402
Jiri Olsaa9a179022020-06-02 12:17:36 +02002403 evlist__check_cpu_maps(evsel_list);
2404
Jiri Olsa32b8af82015-06-26 11:29:27 +02002405 /*
2406 * Initialize thread_map with comm names,
2407 * so we could print it out on output.
2408 */
Jin Yao56739442017-12-05 22:03:07 +08002409 if (stat_config.aggr_mode == AGGR_THREAD) {
Jiri Olsa03617c22019-07-21 13:24:42 +02002410 thread_map__read_comms(evsel_list->core.threads);
Jin Yao56739442017-12-05 22:03:07 +08002411 if (target.system_wide) {
2412 if (runtime_stat_new(&stat_config,
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002413 perf_thread_map__nr(evsel_list->core.threads))) {
Jin Yao56739442017-12-05 22:03:07 +08002414 goto out;
2415 }
2416 }
2417 }
Jiri Olsa32b8af82015-06-26 11:29:27 +02002418
Jiri Olsa86895b42019-08-28 10:17:43 +02002419 if (stat_config.aggr_mode == AGGR_NODE)
2420 cpu__setup_cpunode_map();
2421
yuzhoujiandb06a262018-01-29 10:25:22 +01002422 if (stat_config.times && interval)
2423 interval_count = true;
2424 else if (stat_config.times && !interval) {
2425 pr_err("interval-count option should be used together with "
2426 "interval-print.\n");
2427 parse_options_usage(stat_usage, stat_options, "interval-count", 0);
2428 parse_options_usage(stat_usage, stat_options, "I", 1);
2429 goto out;
2430 }
Stephane Eranianc45c6ea2010-05-28 12:00:01 +02002431
yuzhoujianf1f8ad52018-01-29 10:25:23 +01002432 if (timeout && timeout < 100) {
2433 if (timeout < 10) {
2434 pr_err("timeout must be >= 10ms.\n");
2435 parse_options_usage(stat_usage, stat_options, "timeout", 0);
2436 goto out;
2437 } else
2438 pr_warning("timeout < 100ms. "
2439 "The overhead percentage could be high in some cases. "
2440 "Please proceed with caution.\n");
2441 }
2442 if (timeout && interval) {
2443 pr_err("timeout option is not supported with interval-print.\n");
2444 parse_options_usage(stat_usage, stat_options, "timeout", 0);
2445 parse_options_usage(stat_usage, stat_options, "I", 1);
2446 goto out;
2447 }
2448
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03002449 if (evlist__alloc_stats(evsel_list, interval))
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03002450 goto out;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -03002451
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002452 if (perf_stat_init_aggr_mode())
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -03002453 goto out;
Stephane Eranian86ee6e12013-02-14 13:57:27 +01002454
Ingo Molnar58d7e992009-05-15 11:03:23 +02002455 /*
Jiri Olsa7d9ad162018-08-30 08:32:14 +02002456 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless
2457 * while avoiding that older tools show confusing messages.
2458 *
2459 * However for pipe sessions we need to keep it zero,
2460 * because script's perf_evsel__check_attr is triggered
2461 * by attr->sample_type != 0, and we can't run it on
2462 * stat sessions.
2463 */
2464 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe);
2465
2466 /*
Ingo Molnar58d7e992009-05-15 11:03:23 +02002467 * We dont want to block the signals - that would cause
2468 * child tasks to inherit that and Ctrl-C would not work.
2469 * What we want is for Ctrl-C to work in the exec()-ed
2470 * task, but being ignored by perf stat itself:
2471 */
Peter Zijlstraf7b7c262009-06-10 15:55:59 +02002472 atexit(sig_atexit);
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002473 if (!forever)
2474 signal(SIGINT, skip_signal);
Stephane Eranian13370a92013-01-29 12:47:44 +01002475 signal(SIGCHLD, skip_signal);
Ingo Molnar58d7e992009-05-15 11:03:23 +02002476 signal(SIGALRM, skip_signal);
2477 signal(SIGABRT, skip_signal);
2478
Alexey Budankov27e97692020-07-17 10:05:41 +03002479 if (evlist__initialize_ctlfd(evsel_list, stat_config.ctl_fd, stat_config.ctl_fd_ack))
2480 goto out;
2481
Ingo Molnar42202dd2009-06-13 14:57:28 +02002482 status = 0;
Jiri Olsad97ae042018-08-30 08:32:36 +02002483 for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) {
2484 if (stat_config.run_count != 1 && verbose > 0)
Stephane Eranian4aa90152011-08-15 22:22:33 +02002485 fprintf(output, "[ perf stat: executing run #%d ... ]\n",
2486 run_idx + 1);
Ingo Molnarf9cef0a2011-04-28 18:17:11 +02002487
Srikar Dronamrajub63fd112019-09-04 15:17:37 +05302488 if (run_idx != 0)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03002489 evlist__reset_prev_raw_counts(evsel_list);
Srikar Dronamrajub63fd112019-09-04 15:17:37 +05302490
Jiri Olsae55c14a2018-04-23 11:08:21 +02002491 status = run_perf_stat(argc, argv, run_idx);
Srikar Dronamraju443f2d52019-09-04 15:17:38 +05302492 if (forever && status != -1 && !interval) {
Jiri Olsad4f63a42015-06-26 11:29:26 +02002493 print_counters(NULL, argc, argv);
Jiri Olsa254ecbc72015-06-26 11:29:13 +02002494 perf_stat__reset_stats();
Frederik Deweerdta7e191c2013-03-01 13:02:27 -05002495 }
Ingo Molnar42202dd2009-06-13 14:57:28 +02002496 }
2497
Jin Yaoc7e5b322020-05-20 12:27:37 +08002498 if (!forever && status != -1 && (!interval || stat_config.summary))
Jiri Olsad4f63a42015-06-26 11:29:26 +02002499 print_counters(NULL, argc, argv);
Arnaldo Carvalho de Melod134ffb2013-03-18 11:24:21 -03002500
Alexey Budankov27e97692020-07-17 10:05:41 +03002501 evlist__finalize_ctlfd(evsel_list);
2502
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002503 if (STAT_RECORD) {
2504 /*
2505 * We synthesize the kernel mmap record just so that older tools
2506 * don't emit warnings about not being able to resolve symbols
Ingo Molnar4d39c892021-03-23 17:09:15 +01002507 * due to /proc/sys/kernel/kptr_restrict settings and instead provide
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002508 * a saner message about no samples being in the perf.data file.
2509 *
2510 * This also serves to suppress a warning about f_header.data.size == 0
Jiri Olsa8b99b1a2015-11-05 15:40:48 +01002511 * in header.c at the moment 'perf stat record' gets introduced, which
2512 * is not really needed once we start adding the stat specific PERF_RECORD_
2513 * records, but the need to suppress the kptr_restrict messages in older
2514 * tools remain -acme
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002515 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002516 int fd = perf_data__fd(&perf_stat.data);
Song Liufa853c42020-12-29 13:42:14 -08002517
2518 err = perf_event__synthesize_kernel_mmap((void *)&perf_stat,
2519 process_synthesized_event,
2520 &perf_stat.session->machines.host);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002521 if (err) {
2522 pr_warning("Couldn't synthesize the kernel mmap record, harmless, "
2523 "older tools may produce warnings about this file\n.");
2524 }
2525
Jiri Olsa7aad0c32015-11-05 15:40:52 +01002526 if (!interval) {
2527 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL))
2528 pr_err("failed to write stat round event\n");
2529 }
2530
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002531 if (!perf_stat.data.is_pipe) {
Jiri Olsa664c98d2015-11-05 15:40:50 +01002532 perf_stat.session->header.data_size += perf_stat.bytes_written;
2533 perf_session__write_header(perf_stat.session, evsel_list, fd, true);
2534 }
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002535
Jiri Olsa750b4ed2019-07-21 13:24:07 +02002536 evlist__close(evsel_list);
Jiri Olsa4979d0c2015-11-05 15:40:46 +01002537 perf_session__delete(perf_stat.session);
2538 }
2539
Masami Hiramatsu544c2ae2015-12-09 11:11:27 +09002540 perf_stat__exit_aggr_mode();
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03002541 evlist__free_stats(evsel_list);
Arnaldo Carvalho de Melo0015e2e2011-02-01 16:18:10 -02002542out:
Alexander Antonovf07952b2021-04-19 12:41:44 +03002543 if (stat_config.iostat_run)
2544 iostat_release(evsel_list);
2545
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03002546 zfree(&stat_config.walltime_run);
Jiri Olsae55c14a2018-04-23 11:08:21 +02002547
Kan Liangdaefd0b2017-05-26 12:05:38 -07002548 if (smi_cost && smi_reset)
2549 sysfs__write_int(FREEZE_ON_SMI_PATH, 0);
2550
Jiri Olsac12995a2019-07-21 13:23:56 +02002551 evlist__delete(evsel_list);
Jin Yao56739442017-12-05 22:03:07 +08002552
Jiri Olsa9afe5652020-06-02 23:47:38 +02002553 metricgroup__rblist_exit(&stat_config.metric_events);
Jin Yao56739442017-12-05 22:03:07 +08002554 runtime_stat_delete(&stat_config);
Adrian Hunteree7fe312020-09-03 15:29:37 +03002555 evlist__close_control(stat_config.ctl_fd, stat_config.ctl_fd_ack, &stat_config.ctl_fd_close);
Jin Yao56739442017-12-05 22:03:07 +08002556
Ingo Molnar42202dd2009-06-13 14:57:28 +02002557 return status;
Ingo Molnarddcacfa2009-04-20 15:37:32 +02002558}